首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >RTMP链接查询

RTMP链接查询
EN

Stack Overflow用户
提问于 2013-04-19 18:24:42
回答 1查看 880关注 0票数 1

我在html代码中找到了一个指向实时视频提要的链接,如下所示:

代码语言:javascript
复制
<embed height="500" width="650" flashvars="file=foxmovies&amp;streamer=rtmp://198.7.58.79/edge&amp;rtmp.subscribe=true&amp;quality=best&amp;controlbar=bottom&amp;rtmp.tunneling=false&amp;frontcolor=#fff&amp;backcolor=#000&amp;stretching=exactfit&amp;autostart=true" wmode="transparent" allowfullscreen="true" allowscriptaccess="always" quality="high" src="http://s.zuuk.net/ply.swf" type="application/x-shockwave-flash">

我想知道到RTMP流的实际链接是什么。我被“文件”、“边缘”和闪光灯弄糊涂了。

谢谢

EDIT1

代码语言:javascript
复制
<script type="text/javascript">
jwplayer("dplayer").setup({
    id: 'dplayer',
       flashplayer: "http://player.ilive.to/player.swf",
    provider: "rtmp",
       streamer: "rtmp://redirect.isearch.to/edge",
    file: "2tag4dzgwof5ma2.flv",
    autostart: "true",
       plugins: {
           "http://player.ilive.to/ova/ova-jw.swf": {
              "ads": {
                 "schedule": [
                     {
                        "position": "pre-roll",
                        "tag": "http://ad4.liverail.com/?LR_PUBLISHER_ID=1912&LR_PARTNERS=718594&LR_SCHEMA=vast2-vpaid&LR_AUTOPLAY=1&LR_CONTENT=6&LR_VERTICALS=[entertainment]&LR_TITLE=[Disney_channel]&LR_VIDEO_ID=[38804]&LR_URL=[http://www.ilive.to/channels/38804/Disney_channel]"
                     }
                 ]
              },

              "debug": {
                  "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
              }
           } 
       },
       height: '100%',
       width: '100%'
});
</script>
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-04-19 18:52:19

flashvars是传递到Flash电影中的键/值对。

"& amp;“是键/值之间的分隔符(它实际上只是"&”,但可能已经在这条线的某个地方被html化了)。

因此,在您的例子中,正在传递的值是:

file =散乱电影

流光= rtmp://198.7.58.79/edge

rtmp.subscribe =真

质量=最佳

控制杆=底部

rtmp.tunneling=false

frontcolor=#fff

backcolor=#000

stretching=exactfit

autostart=true

Flash电影如何解释它们以生成流URL取决于Flash电影中的代码。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/16111210

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档