gpt4 book ai didi

jwplayer - 视频点播流与 jwplayer wowza android 问题

转载 作者:行者123 更新时间:2023-12-04 15:23:41 28 4
gpt4 key购买 nike

我尝试让 jwplayer 在 android 手机上工作,当我放置 rtsp 协议(protocol)文件源时它在 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,
});

最佳答案

我已经通过检查设备是否是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,
});

关于jwplayer - 视频点播流与 jwplayer wowza android 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17568993/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com