从JWPlayer中提取MP4-Direct链接?

时间:2013-12-31 15:05:31

标签: html5 video-streaming jwplayer

我正在尝试从流媒体网站中提取视频链接。

所以我使用PHP和“file_get_contents”打开视频链接,然后“爆炸”找到生成链接的链接

看起来像config5/videoid/generatedhash/,但您也可以使用config5/videoid/

访问它

所以当我打开这个链接时,我看到了这个:

document.write('<div id="mediaspace2" style="width:880px;height:495px">');

jwplayer.key="key";
document.write('<div id="mediaspace" itemprop="video"></div>');
var scrwid=window.screen.width;
var def=false;
if(scrwid<1200) def=true;
   jwplayer("mediaspace").setup({
        sources: [{
                file: "http://linkto.mp4",
                label: "1080p HD",
        type: "mp4"
                }
                 ,{
                file: "http://linkto.mp4",
                label: "720p HD",
                type: "mp4",
                }        ,{
                file: "http://linkto.mp4",
                label: "360p",
        type: "mp4",
        "default": def
            } 

还有更多东西

当我复制我选择的一个链接并在chrome中打开它时一切都很好。但是当我尝试用html5视频标签嵌入它时,会打开一个名为na.flv的文件

就像网站的安全性

我该怎么解密呢? :/

0 个答案:

没有答案