Closed Bug 1354090 Opened 8 years ago Closed 8 years ago

DASH stream doesn't play

Categories

(Core :: Audio/Video: Playback, defect, P1)

defect

Tracking

()

VERIFIED FIXED
mozilla55
Tracking Status
firefox53 --- wontfix
firefox54 --- verified
firefox55 --- verified

People

(Reporter: jya, Assigned: jya)

References

(Blocks 1 open bug, )

Details

Attachments

(5 files)

Playback of http://dash.edgesuite.net/envivio/Envivio-dash2/manifest.mpd doesn't start. This bug is about tracking on why (initial assumption is that the content is invalid and not per spec) But Chrome and Edge plays it (Safari doesn't either)
Component: Audio/Video: MediaStreamGraph → Audio/Video: Playback
in this content, each media content starts with a [ftyp] box. a [ftyp] box per ISOBMFF spec, defines an init segment starts (ftyp + moov) https://w3c.github.io/media-source/isobmff-byte-stream-format.html#iso-media-segments "Valid top-level boxes defined in ISO/IEC 14496-12 other than ftyp, moov, styp, moof, and mdat are allowed to appear between the end of an initialization segment or media segment and before the beginning of a new media segment. These boxes MUST be accepted and ignored by the user agent and are not considered part of the media segment in this specification. " so a ftyp box between an init segment and the media segment isn't to be ignored. In the MSE spec: Segment Parser Loop: https://w3c.github.io/media-source/index.html#sourcebuffer-segment-parser-loop So after processing the first init segment, we go back to append state == WAITING_FOR_SEGMENT Now we start processing the ftyp box: 1. If the beginning of the input buffer indicates the start of an initialization segment, set the append state to PARSING_INIT_SEGMENT. so append state is now PARSING_INIT_SEGMENT. We go to: 5.1 "If the input buffer does not contain a complete initialization segment yet, then jump to the need more data step below." So we continue parsing the data, or append state is always PARSING_INIT_SEGMENT, the moov is now processed, we do not have a complete initialization segment, we never return to append sate -- WAITING_FOR_SEGMENT and as such the media segment is never processed, the data will never be added to the track buffer, and the buffered range will stay empty. Or behaviour of this data is correct. Though seeing that two browsers do play it, we could maybe handle that case better and only assume we start a new init segment if immediately followed with a moov box. I don't like it though. This content is clearly invalid
Comment on attachment 8855789 [details] Bug 1354090: P3. Properly offset the media and init byte ranges. https://reviewboard.mozilla.org/r/127688/#review130674 ::: commit-message-b72d4:1 (Diff revision 1) > +Bug 1354090: P3. Properly offset the media and init byte range. r?gerald 'range' -> 'ranges' ::: commit-message-b72d4:3 (Diff revision 1) > +Bug 1354090: P3. Properly offset the media and init byte range. r?gerald > + > +The init and media segment byte ranged where not offset by the amount of bytes currently parsed. Whenever a new init segment signature was seen we would recreate a container parser. 'ranged where' -> 'ranges were' ::: dom/media/mediasource/ContainerParser.cpp:309 (Diff revision 1) > - mParser.EndSegmentOffset(mapping[endIdx].mClusterEndOffset)); > + mParser.EndSegmentOffset(mapping[endIdx].mClusterEndOffset)) + > + mGlobalOffset; Pedantic style: '+' should be at the start of a new line. (Only '||' and '&&' go at the end.)
Attachment #8855789 - Flags: review?(gsquelart) → review+
Comment on attachment 8855790 [details] Bug 1354090: P4. Only assume we have an init segment with moov box. https://reviewboard.mozilla.org/r/127690/#review130678
Attachment #8855790 - Flags: review?(gsquelart) → review+
Pushed by jyavenard@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/eaeef79b2bbf P1. Fix coding style. r=gerald https://hg.mozilla.org/integration/autoland/rev/d8be88ae3e46 P2. Add operator+(val). r=gerald https://hg.mozilla.org/integration/autoland/rev/fb6652b226ae P3. Properly offset the media and init byte ranges. r=gerald https://hg.mozilla.org/integration/autoland/rev/f66c473ef308 P4. Only assume we have an init segment with moov box. r=gerald
Comment on attachment 8855787 [details] Bug 1354090: P1. Fix coding style. Approval Request Comment [Feature/Bug causing the regression]: MSE [User impact if declined]: Some content won't play, and parsing corrupted data, this was the real reason behind bug 1353088 [Is this code covered by automated tests?]: yes [Has the fix been verified in Nightly?]: no [Needs manual test from QE? If yes, steps to reproduce]: STR provided in bug description [List of other uplifts needed for the feature/fix]: All 4 patches, though just Part 4 will do [Is the change risky?]: I don't believe so. [Why is the change risky/not risky?]: We look for a different signature in a file, one that must be there. [String changes made/needed]: none I understand that this it too late for beta, but I submit it just in case.
Attachment #8855787 - Flags: approval-mozilla-beta?
Attachment #8855787 - Flags: approval-mozilla-aurora?
Priority: -- → P1
Hi Brindusa, could you help find someone to verify if this issue was fixed as expected on a latest Nightly build? Thanks!
Flags: qe-verify+
Flags: needinfo?(brindusa.tot)
Actually, after reconsideration.. Part 1 to Part 3 are the most important part in that it prevents bug 1353088 completely... P4 allows to play the invalid stream, but it's invalid. We may or may not want to support it. But P1 to P3 must go in.
I tried verifying the bug on latest Nightly build 55.0a1, build ID 20170411030208 with Window 10 x64bit, but the playback of http://dash.edgesuite.net/envivio/Envivio-dash2/manifest.mpd doesn't start. File content is opened instead of playing the video. See attachment. Am I missing something? Note that it plays for me only Edge, but not on Chrome.
Flags: needinfo?(brindusa.tot) → needinfo?(jyavenard)
Flags: needinfo?(jyavenard)
Some questions. Is DASH in common use? Very common case for our users? When did the regression happen (when did this format work and then when did it break?)
Flags: needinfo?(jyavenard)
In other words did this work in 52 but won't in 53?
(In reply to Liz Henry (:lizzard) (needinfo? me) from comment #21) > Some questions. Is DASH in common use? Very common case for our users? When > did the regression happen (when did this format work and then when did it > break?) Yes very... It's used by YouTube, BBC, Ted to mention a few...
Flags: needinfo?(jyavenard)
So was it broken in 52? What changed?
Used by Youtube for every single video or just for some users? I'm just having a hard time believing that video for all of YouTube has been broken (since Firefox 41?) and no one noticed till now. Can we add some tests... manual testing even for this class of problem? And, can we live with this problem until 54 release in June? If not, please make it really clear that it is a problem with broad user impact (telemetry data?) and this can get into the RC2 build tomorrow. If this is related to bug 1353088 it looks like we already have a fix in that bug landed on all branches. In short I still feel like this missed the boat for 53 unless the situation is serious to the point of being a release blocker or a future dot-release driver.
Comment on attachment 8855787 [details] Bug 1354090: P1. Fix coding style. After some more discussion it sounds like this should be a fairly rare issue and we can hold off for 53. Gerry, up to you for aurora 54 to take this, i'll email you about it.
Attachment #8855787 - Flags: approval-mozilla-beta? → approval-mozilla-beta-
Comment on attachment 8855787 [details] Bug 1354090: P1. Fix coding style. Given some popular website users will be impacted, let's take this in aurora. Aurora54+.
Attachment #8855787 - Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Verified as fixed on the latest Nightly build 55.0a1 Build ID 20170412030252 and video plays on Windows 10x64 and Mac OS X 10.10, but does not play on Ubuntu 16.04 x64 bit. Jean, should this work on Ubuntu?
Flags: needinfo?(jyavenard)
(In reply to Brindusa Tot[:brindusat] from comment #29) > Verified as fixed on the latest Nightly build 55.0a1 Build ID 20170412030252 > and video plays on Windows 10x64 and Mac OS X 10.10, but does not play on > Ubuntu 16.04 x64 bit. > > Jean, should this work on Ubuntu? It certainly should... Do you have libavcodec installed? Does this stream http://pearce.org.nz/video/h264.html play on the same machine?
Flags: needinfo?(jyavenard)
(In reply to Jean-Yves Avenard [:jya] from comment #30) > It certainly should... Do you have libavcodec installed? > > Does this stream http://pearce.org.nz/video/h264.html play on the same > machine? The stream http://pearce.org.nz/video/h264.html plays on Ubuntu. Also, the stream http://dash.edgesuite.net/envivio/Envivio-dash2/manifest.mpd (that does not play on Firefox) plays correctly on Chromium(on the same Ubuntu machine) Related to libavcodec, I tried to install it, but get some error: sudo apt-get install libavcodec Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package libavcodec Is there something else I can try?
Flags: needinfo?(jyavenard)
if the h264.html video plays on your system, then there's nothing more to do. On ubuntu, the package to install is libavcodec-ffmpeg56 ; on 16.10 it's libavcodec57. I can confirm that it doesn't play in 16.10 either... interesting Chromium uses their own ffmpeg copy and doesn't rely on the system libavocdec
Flags: needinfo?(jyavenard)
hmmm.. it plays fine in my central build' but not with the nightly build of the day..
hmmm... This is using official mozilla nightly build: [4687] Caught pending play exception - continuing (NotSupportedError: The media resource indicated by the src attribute or assigned media provider object was not suitable.) dash.all.debug.js:3069:13 [4688] Video Element Error: MEDIA_ERR_SRC_NOT_SUPPORTED (NS_ERROR_DOM_MEDIA_DEMUXER_ERR (0x806e000c) - virtual RefPtr<mozilla::MozPromise<mozilla::MediaResult, mozilla::MediaResult, true> > mozilla::MP4Demuxer::Init(): No MP4 audio () or video () tracks) Working just fine using a central build (by myself) :rillian, could it be something to do with nightly build and the rust demuxer on linux? The init segment passed now is only made of the moov box.
Flags: needinfo?(giles)
Flags: needinfo?(ayang)
I can reproduce the failure on linux but not mac. It looks like this is a result of switching to the rust mp4parse output for h264 files on that platform in bug 1354963. If I set `media.rust.mp4parser = false` in about:config the stream at http://dashif.org/reference/players/javascript/nightly/dash.js/samples/dash-if-reference-player/index.html?mpd=http://dash.edgesuite.net/envivio/Envivio-dash2/manifest.mpd plays for me.
Flags: needinfo?(giles)
Depends on: 1356291
I filed bug 1356291 for follow-up of the linux demuxer issue.
So compiled with gcc 6.2.0 -> demuxer doesn't work compiled with clang 3.8.1 -> work. Will open a new bug about it
I found the problem, I'll have a fix later today. https://github.com/mozilla/mp4parse-rust/issues/90
Flags: needinfo?(ayang)
The Linux demuxer issue is tracked on bug 1356291. On Windows and Mac, this bug is fixed, per see comment 29. Mark this bug verified on FF 55.
Status: RESOLVED → VERIFIED
I've reproduced the bug with an old Nightly from 2017-04-06. This issue is also verified on 54 beta 1 (20170420011827) using Windows 10 x64 and Mac OS X 10.11.6.
Flags: qe-verify+
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: