http ://hichannel.hinet.net/. Radio station. ·. Website. See all. Related Pages. 映暉.服裝品牌的隱形推手. Clothing (Brand). 12,261 people like this. ... <看更多>
「https hichannel hinet net」的推薦目錄:
- 關於https hichannel hinet net 在 [教學] 詳解Hinedo 抓取Hinet 廣播的原理- 精華區EZsoft 的評價
- 關於https hichannel hinet net 在 HiNet HiChannel - Home | Facebook 的評價
- 關於https hichannel hinet net 在 Node.js 取得HiNet hichannel 台灣電台的m3u8 串流網址 - GitHub 的評價
- 關於https hichannel hinet net 在 免費的網路電臺fstream 直接添加位址即可 - Mobile01 的評價
- 關於https hichannel hinet net 在 [請問] 線上聽廣播出現錯誤#2032:串流錯誤- 看板ask 的評價
- 關於https hichannel hinet net 在 世紀名人錄 的評價
https hichannel hinet net 在 Node.js 取得HiNet hichannel 台灣電台的m3u8 串流網址 - GitHub 的推薦與評價
注意. HiNet hichannel m3u8 串流網址會阻擋國外IP 訪問(HTTP 403 Forbidden)。 播放端IP 和用來取得m3u8 ... ... <看更多>
https hichannel hinet net 在 免費的網路電臺fstream 直接添加位址即可 - Mobile01 的推薦與評價
KissRadio大眾電臺mms://bcr.media.hinet.net/RA000040KissRadio網路音樂 ... http://hichannel.hinet.net/radio/mobile/index.do?id=308 ... <看更多>
https hichannel hinet net 在 [請問] 線上聽廣播出現錯誤#2032:串流錯誤- 看板ask 的推薦與評價
我用chrome瀏覽器點網頁http://hichannel.hinet.net/radio/index.do 要聽廣播, ... 來自: 111.248.198.228 ※ 文章網址: https://www.ptt.cc/bbs/ask/M.1496850878. ... <看更多>
https hichannel hinet net 在 世紀名人錄 的推薦與評價
電台網站: http://www.fm1007lucky.com/index.aspx 節目FB粉絲頁: ... 中華電信HiChannel線上收聽: http://hichannel.hinet.net/radio/inde. ... <看更多>
https hichannel hinet net 在 [教學] 詳解Hinedo 抓取Hinet 廣播的原理- 精華區EZsoft 的推薦與評價
既然 coca 都開口了,我就針對 Hinedo 寫一份 hacking guide
希望下次 hinet 改版的時候,各位可以比我先修改好相關程式
然後寄給我 :P
其實這些抓法都是從閱讀網頁原始碼來的,需要略懂 html,我示範一次:
這個範例,是假設你從 hinet 網頁點進 HitFm 聯播網 台中91.5 進去
網址為 https://hichannel.hinet.net/radio/radio.jsp?chid=88
檢視原始碼:
在網頁上可以內嵌影片,需要使用 object 或 embed 這兩個 html 標籤
於是在網頁原始碼中尋找 <object 或 <embed 字樣,可是卻找不到?
這表示,如果那段不是用 javascript 動態產生的,就是用 iframe 從其他網頁引入
果然,原始碼中找到多處 iframe 標籤,而在其中,這行顯然看起來最像是我們的目標
(如果不知道哪個才是,可以一個一個試連,網址開頭 ad.hinet 看就知道是廣告,免試)
<iframe width="378" height="338" frameborder="0" scrolling="no"
src="../player/player-radio2.jsp?id=88">
src=後面就是播放介面的網址,開頭的 ../ 是相對路徑,表示到目前網址的上一層目錄
也就是 https://hichannel.hinet.net/radio/ 的上一層
所以合起來就是 https://hichannel.hinet.net/player/player-radio2.jsp?id=88
於是,我們再次連到 https://hichannel.hinet.net/player/player-radio2.jsp?id=88
再次進入網頁原始碼
還是找不到 embed 或 object,表示嵌入播放器的不是目前網頁,還要再找
整個檔案並不長,稍微閱讀之後,我們發現機關藏在 javascript 內
play = openPlayer = function()
{
w = window.open('/player/radio-f1.jsp?id=88','hichannelPlayer',
'width=675,height=530,scrollbars=yes,resizable=no,status=no,
toolbar=no,menubar=no,location=no');
try{w.focus()}catch(e){};
return false;
}
window.open 這個函數,就是會開新的視窗,而第一個參數就是新視窗的網址
也就是 /player/radio-f1.jsp?id=88
剛剛 ../ 是表示上一層,而 / 是表示根目錄,就是所有目錄的最上層
也就是主機網址 + /,就是 https://hichannel.hinet.net/
所以 /player/radio-f1.jsp?id=88 完整的網址,就是在
https://hichannel.hinet.net/player/radio-f1.jsp?id=88
再次連線到這個網址,果然被我們逮到了!
再看原始碼... 程式有點長,不過,耐心還是找得到...
setMovieFile("../api/streamFreeRadio.jsp?id=88&r="+(new Date()).
getTime(),playerwidth,1,1);
這個函數看起來就有鬼,主要是從 ?id=88 看出來的,88 是電台代碼
可以注意到剛剛一層一層剝進來的時候,網址都帶著 ?id=88 這個參數
一樣,找出完整的網址:
https://hichannel.hinet.net/api/streamFreeRadio.jsp?id=88
後面本來還有用 javascript 依照日期時間,動態產生的參數 r
但是經過測試 Hinet 並沒有檢查這參數,省略照樣可以播放,
看來只是用來混淆視聽的,所以,就拿掉它吧。
連到我們剛找出的網址
https://hichannel.hinet.net/api/streamFreeRadio.jsp?id=88
接著連到這個網址,用瀏覽器有時候沒辦法取得這個頁面的原始碼
原因我並不清楚,我是在 Linux 下用 wget 或是其他工具抓網頁下來的
看原始碼會發現少少的沒幾行,而電台的網址就在一行 HREF="" 的裡面
用 regular expression 很容易就可以抽出來了
詳解 Hinedo 的 Play.vbs
Option explicit
Dim sh, reg, matches, match, page, url, base
'這個網址就是上面我們抓出來的網址
base = "https://hichannel.hinet.net/api/streamFreeRadio.jsp?id="
url = base + WScript.Arguments(0) <<--- 第一個命令列參數為電台代碼
Set sh = CreateObject("WScript.Shell")
Function Download( url_to_download ) 用來呼叫主程式下載網頁的函數
Dim o
Set o = sh.Exec( """Hinedo.exe"" dl " + url_to_download )
Download = o.StdOut.Readall
Set o = Nothing
End Function
Set reg = New RegExp
reg.Global=True
reg.IgnoreCase = True 'regular expression 忽略大小寫差異
page = Download( url )
reg.Pattern = "HREF=""([^""]*)"".*>"
Set matches = reg.Execute( page )
If matches.Count = 0 Then
MsgBox "Error!"
WScript.Quit 1
End If
url = matches(0).SubMatches(0)
page = Download( url )
reg.Pattern = "HREF=""([^""]*)"".*>"
Set matches = reg.Execute( page )
If matches.Count = 0 Then
MsgBox "Error!"
WScript.Quit 1
End If
url = matches(0).SubMatches(0)
'如果有找到網址,則丟給主程式,否則秀'錯誤'
If url <> "" Then
sh.Run """Hinedo.exe"" " + url
Else
MsgBox "Error!"
End If
--
個人網頁: https://pcman.sayya.org/ 上面有自畫像及各種聯絡資訊
PCMan 全系列 BBS 連線軟體 https://pcman.ptt.cc/ https://pcmanx.csie.net/
新酷音輸入法 for Windows https://chewing.csie.net/
IE Tab Firefox plugin/extension https://ietab.mozdev.org/
PCMan 油畫作品集:https://www.wretch.cc/album/album.php?id=pcman&book=1
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 163.29.223.38
... <看更多>