6

我尝试让 jwplayer 在 android 手机上工作,当我放置 rtsp 协议文件源时它在 android 中工作正常,但显示文件无法在 iOS 和 PC 中播放的错误

没有 rtsp 文件源可以在 pc 和 iOS 上正常工作 rtsp 文件源只能在 android 上工作

jwplayer("mediaplayer").setup({
            playlist: [{
                sources: [
                        {file:'rtmp://localhost:1935/vod/mp4:dexter.mp4'}//used it to PC ,
                        {file:'rtsp://localhost:1935/dexter/dexter.mp4'}// used it to android,
                        {file:'http://localhost:1935/vod/mp4:dexter.mp4/playlist.m3u8'}//and this for iOS                       
                        ],
                title: 'dexter',

        width: 854,
        height: 480,
    });
4

3 回答 3

3

我已经通过检查设备是否是android解决了这个问题

 var ua = navigator.userAgent.toLowerCase();
    var isAndroid = ua.indexOf("android") > -1;
    jwplayer("mediaplayer").setup({
        playlist: [{
            sources: [
                    (isAndroid)?{file:'rtsp://localhost:1935/vod/dexter/dexter.mp4'}:{file:'rtmp://localhost:1935/vod/mp4:dexter/dexter.mp4'},
                    {file:'http://localhost:1935/vod/mp4:dexter.mp4/playlist.m3u8'}                     
                    ],
    title: 'dexter',
    width: 854,
    height: 480,
});
于 2013-07-14T06:51:15.430 回答
1

您不能将 RTSP 放在 setup(), 块中,因为 Flash 或 HTML5 都不支持它。

你应该做这里提到的工作 - http://www.longtailvideo.com/support/jw-player/28856/using-apple-hls-streaming

Android 上的 HLS 直播

对于直播流,在 Android 或其他非 iOS 移动平台上播放还没有很好的解决方案。一种解决方法是为 Android 提供本机应用程序,其中可以支持 HLS 流。这超出了 JW Player 的范围。如果您使用 Wowza 媒体服务器,另一种选择是为不支持 HLS 的设备提供备用 RTSP 流。例如:

<div id="myElement">
    <a href="rtsp://example.com/vod/mp4:myVideo.mp4">watch this stream over RTSP</a>
</div> 

jwplayer("myElement").setup({
    file: "http://example.com:1935/vod/mp4:myVideo.mp4/playlist.m3u8",
    image: "/assets/myPoster.jpg",
    fallback: false
});
于 2013-07-10T15:54:18.430 回答
0

似乎没有人提到 HLS 带来的可怕延迟是“块视频”,它可以是 30 秒,如果你正在做实时流媒体,比如视频测量,RTMP 和 RTSP 是更好的解决方案. RTSP 通过 VLC 在 iOS 和 Android 上运行良好,延迟为 1 到 2 秒。

于 2013-11-09T01:31:51.807 回答