我无法在 rtmp 中流式传输视频

发布于 2024-11-25 17:48:18 字数 877 浏览 0 评论 0原文

我在流式传输视频时遇到错误

<html>

<body>

    <div id='container'>The player will be placed here</div>

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"> </script>

        <script type="text/javascript">
              var flashvars = {
                file:'user2.flv',
                streamer:'rtmp://localhost/myapp/',
                type : 'video'
              };

              swfobject.embedSWF('player.swf','container','480','270','9.0.115','false', flashvars,

                   {allowfullscreen:'true',allowscriptaccess:'always'},
                   {id:'jwplayer',name:'jwplayer'}
              );
            </script>
</body>

在此处输入图像描述

有人可以帮我解决这个问题吗?

I am getting error while streaming video

<html>

<body>

    <div id='container'>The player will be placed here</div>

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"> </script>

        <script type="text/javascript">
              var flashvars = {
                file:'user2.flv',
                streamer:'rtmp://localhost/myapp/',
                type : 'video'
              };

              swfobject.embedSWF('player.swf','container','480','270','9.0.115','false', flashvars,

                   {allowfullscreen:'true',allowscriptaccess:'always'},
                   {id:'jwplayer',name:'jwplayer'}
              );
            </script>
</body>

enter image description here

CAn anyone help me fixing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

英雄似剑 2024-12-02 17:48:18

在我看来,你有一个简单的“它不存在”的答案。要问的问题:

  • 您确定 rtmp://localhost/myapp/user2.flv 是有效路径吗?
  • 您是否在本地计算机上运行 RTMP 服务器?
  • 它有一个名为 myapp 的应用程序吗?
  • user2.flv确实存在吗?

Looks to me like you have a simple "it is not there" answer. Questions to ask:

  • Are you sure rtmp://localhost/myapp/user2.flv is a valid path?
  • Are you running an RTMP server on your local machine?
  • Does it have an app called myapp?
  • Does the user2.flv actually exist?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文