0

目前我在 codeigniter 项目中工作,因为我需要将 Jw player 5 与播放列表集成。我刚刚创建了动态且工作正常的 plalist。所以,现在我想获取当前播放视频的标题或其他一些详细信息。我尝试了很多,但没有运气。我刚刚在这里发布了一些 javascript 代码,我从 Jw 播放器网站论坛获得,但它对我不起作用。我只是通过静态尝试。这是代码..

<!DOCTYPE HTML>
<html>

        <div id="mediaplayer">
    </div>

    <script type="text/javascript" src="http://172.16.1.181:85/test/player1/jwplayer.js"></script>


            <script type="text/javascript">
                    jwplayer("mediaplayer").setup({
            flashplayer: "http://172.16.1.181:85/test/player1/player.swf",
                    height:"350",
                    width:"500",
                    autostart: "true",
                    'playlist': [{
            'file': 'http://172.16.1.181:85/test/flash/test.flv',
                    'image': 'http://172.16.1.181:85/test/images/no_image.gif',
                    'title': 'Test_video_1'
            },
            {
                'file': 'http://172.16.1.181:85/test/flash/test.flv',
                        'image': 'http://172.16.1.181:85/test/images/no_image.gif',
                        'title': 'Test_video_2'
                }
            ],
                    repeat: 'list'
            });

        </script>



<p>In the body:</p>
      <div id="nowplaying">

      <script type="text/javascript">
      jwplayer().getPlaylistItem().index
      </script>
      </div>


</html>

播放器播放视频很好。但我不知道如何获取当前正在播放的视频的详细信息..请帮帮我..

4

2 回答 2

2
 <div id="nowplaying">
    <script type="text/javascript">
       var current = jwplayer().getPlaylistItem();
       console.log(current.title);
    </script>
</div>
于 2013-11-15T13:52:44.607 回答
0

你不需要使用任何第三方框架来做这件事。你只需要一些 JavaScript 基本函数...

var video = document.getElementById('vid');
var video_src = video.src;
// The above code gets the source of video
var name_with_ext = video_src.split('/');
// This returns an array 
name_with_ext = name_with_ext[name_with_ext.length - 1];
// This returns the name of the file with the extension
var video_ext = name_with_ext.split('.');
// This returns an array too
video_ext = video_ext[video_ext.length -1];
// This returns the extension of video
var name = name_with_ext.replace(video_ext, '')
//This returns the name
<video src="vid.mp4" id="vid" class="vid"></video>

于 2020-11-19T11:43:07.790 回答