-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
本地运行demo报错,无法播放flv文件 #65
Comments
我是直接在浏览器里打开了index.html文件 |
Not allowed to load local resource似乎是因为chrome的安全限制禁止这样加载本地资源。 |
刚刚开了apache试了试,chrome和edge都可以顺利播放了。 |
用Apache 也是报错[MSEController] > MediaSource onSourceOpen |
@cyfour 完整的代码是: |
改了本地的 Uncaught (in promise) Error: Uncaught, unspecified "error" event. (MediaError)(…) |
换了另外的FLV 又出现不同的报错 [FLVDemuxer] > Parsed onMetaData |
哪里有flv.min.js? |
仅支持H264+AAC |
1.我不是很明白你的意思 @xqq 仅支持H264+AAC |
|
求一个 H264+AAC 的FLV 我这边只能用格式工厂转化成H264+AAC 的MP4。 |
@cyfour |
flv.min.js:5 [TransmuxingController] > DemuxException: type = CodecUnsupported, info = Flv: Unsupported codec in video frame: 2谷歌提示这个 360浏览器可以播放 |
@shunzizhan |
@Riricho 也发一份给我哈~谢谢。 |
@cyfour 我没找到你邮箱_(:з)∠)_ |
sigh |
@Riricho 请问ios您是选择的测试版本是什么,我这里用ipad air测试失败,无法播放 |
不支持ios |
@tenglongwentian 5s/ios10/safari. |
2017年3月8日测试,chrome内核浏览器,奇数版本号不支持,偶数版本号支持,Android端;网上搜索称:奇数版本号是beta版,偶数版本号是stable版 @Riricho ,目前正在寻求IOS能够播放之道 |
@Riricho 能不能也发我一份 |
|
大佬,我也遇到这个问题,有办法解决吗 |
var mediaDataSource = {"type":"flv","url":"vedio2.flv"};
同目录下放了个vedio2.flv 的文件,运行demo里的index.html,
浏览器报错:
index.html:1 Not allowed to load local resource: blob:null/f50df6a4-3cd2-4297-8903-95a6ceef65f7
作者大大,这是什么原因?需要怎么改?同样的方法,播放mp4文件就可以
使用README.md里给的代码:
if (flvjs.isSupported()) {
var videoElement = document.getElementById('videoElement');
var flvPlayer = flvjs.createPlayer({
type: 'flv',
url: 'http://example.com/flv/video.flv'
});
flvPlayer.attachMediaElement(videoElement);
flvPlayer.load();
flvPlayer.play();
}
也是报同样的错误
The text was updated successfully, but these errors were encountered: