视频元素错误:MEDIA_ERR_SRC_NOT_SUPPORTED
Posted
技术标签:
【中文标题】视频元素错误:MEDIA_ERR_SRC_NOT_SUPPORTED【英文标题】:Video Element Error: MEDIA_ERR_SRC_NOT_SUPPORTED 【发布时间】:2017-06-29 07:34:23 【问题描述】:我正在尝试使用 dash.js 播放 dash mpd 文件。我使用 axinom tutorial 获得指导,建议使用以下命令生成 mpd 文件。
mkdir dash_unprotected
MP4Box -dash 4000 -rap -frag-rap -sample-groups-traf -profile dashavc264:live
-bs-switching no -segment-name dash_$RepresentationID$_$Number$ -url-template
video-700k.mp4 video-1000k.mp4 video-1500k.mp4 video-2000k.mp4 audio.mp4 -out
"dash_unprotected/manifest.mpd"
生成的 mpd 文件
<?xml version="1.0"?>
<!-- MPD file Generated with GPAC version 0.5.1-DEV-rev5619 on 2017-06-29T06:08:26Z-->
<MPD xmlns="urn:mpeg:dash:schema:mpd:2011" minBufferTime="PT1.500000S" type="static" mediaPresentationDuration="PT0H1M55.01S" profiles="urn:mpeg:dash:profile:isoff-live:2011, http://dashif.org/guildelines/dash264">
<ProgramInformation moreInformationURL="http://gpac.sourceforge.net">
<Title>dash_unprotected/manifest.mpd generated by GPAC</Title>
</ProgramInformation>
<Period duration="PT0H1M55.01S">
<AdaptationSet segmentAlignment="true" maxWidth="316" maxHeight="576" maxFrameRate="30" par="316:576" lang="und">
<SegmentTemplate timescale="15360" media="dash_dash_unprotected$$Number$.m4s" startNumber="1" duration="49009" initialization="dash_dash_unprotected$init.mp4"/>
<Representation id="1" mimeType="video/mp4" codecs="avc1.64002a" frameRate="30" sar="396:395" startWithSAP="1" band>
</Representation>
<Representation id="2" mimeType="video/mp4" codecs="avc1.64002a" frameRate="30" sar="1:1" startWithSAP="1" band>
</Representation>
<Representation id="3" mimeType="video/mp4" codecs="avc1.64002a" frameRate="30" sar="1:1" startWithSAP="1" band>
</Representation>
<Representation id="4" mimeType="video/mp4" codecs="avc1.64002a" frameRate="30" sar="396:395" startWithSAP="1" band>
</Representation>
</AdaptationSet>
<AdaptationSet segmentAlignment="true" lang="und">
<SegmentTemplate timescale="44100" media="dash_dash_unprotected$$Number$.m4s" startNumber="1" duration="174856" initialization="dash_dash_unprotected$init.mp4"/>
<Representation id="5" mimeType="audio/mp4" codecs="mp4a.40.2" audiosamplingRate="44100" startWithSAP="1" band>
<AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/>
</Representation>
</AdaptationSet>
</Period>
</MPD>
然后我尝试使用下面的 javascript 代码在 dash.js 中播放它
var url = "drm/dash_unprotected/manifest.mpd";
var player = dashjs.MediaPlayer().create();
$(function()
player.initialize(document.querySelector("#videoPlayer"),null, true);
player.attachVideoContainer(document.getElementById("videoContainer"));
$('#playButton').click(function()
player.attachSource(url);
);
);
但是 dash.js 会抛出错误
[42585] Video Element Error: MEDIA_ERR_SRC_NOT_SUPPORTED (CHUNK_DEMUXER_ERROR_APPEND_FAILED: audio object type 0x40 does not match what is specified in the mimetype.)
dash.all.debug.js:14793 [42586] [object MediaError]
dash.all.debug.js:14793 [42588] Schedule controller stopping for video
dash.all.debug.js:14793 [42589] Schedule controller stopping for audio
dash.all.debug.js:14793 [42591] Caught pending play exception - continuing (NotSupportedError: Failed to load because no supported source was found.)
我该如何解决这个错误?我是 dash.js 和 mpeg-dash 工作人员的新手
【问题讨论】:
Please don't put tags in question titles @Liam 哦,对不起。感谢指正 【参考方案1】:我能够通过删除-segment-name
选项及其值来解决错误。所以我的命令看起来像这样
mkdir dash_unprotected
MP4Box -dash 4000 -rap -frag-rap -sample-groups-traf -profile dashavc264:live
-bs-switching no -url-template
video-700k.mp4 video-1000k.mp4 video-1500k.mp4 video-2000k.mp4 audio.mp4 -out
"dash_unprotected/manifest.mpd"
-segment-name
选项使我的段相互覆盖。例如要被音频片段覆盖的视频片段。
正在发生覆盖,因为即使我对 -segment-name
选项使用唯一值,视频和音频段也被赋予相同的名称。
-segment-name $RepresentationID$$
或 -segment-name $Time$$
消除此选项使 MP4Box 使用默认值 %s_dash
为 -segment-name
。所以音频片段会这样命名
audio_dash1.m4s
还有这样的视频片段
`video_dash1.m4s`
【讨论】:
以上是关于视频元素错误:MEDIA_ERR_SRC_NOT_SUPPORTED的主要内容,如果未能解决你的问题,请参考以下文章
视频元素错误:MEDIA_ERR_SRC_NOT_SUPPORTED
播放 youtube 视频 iOS 7 时 MPMoviePlayerController 错误 _itemFailedToPlayToEnd