Closed
Bug 1039149
(DASH-IF)
Opened 10 years ago
Closed 9 years ago
Tracking bug for DASH-IF player support for EME/MSE
Categories
(Core :: Audio/Video: Playback, defect, P5)
Tracking
()
People
(Reporter: ajones, Unassigned)
References
(Depends on 1 open bug, Blocks 1 open bug, )
Details
Attachments
(2 obsolete files)
The dashif player doesn't work in the same configuration that is working for YouTube on MP4. See also https://bugzilla.mozilla.org/show_bug.cgi?id=778617#c20
The DASH IF uses the dash.js project https://github.com/Dash-Industry-Forum/dash.js as its reference player. We're eager to get it working with Firefox. It is built to play back DASH presentations conforming to the DASH-AVC/264 guidelines http://dashif.org/w/2013/08/DASH-AVC-264-v2.00-hd-mca.pdf (essentially ISOBMFF containers, H.264 video codec, HE-AACv2 audio, SMPTE-TT captions, ondemand and live profiles, common encryption). Conforming test vectors can be found at http://dashif.org/testvectors/. If there are any questions, reach us via our list server at https://groups.google.com/d/forum/dashjs. Bugs against dash.js can be filed at https://github.com/Dash-Industry-Forum/dash.js/issues?state=open. Identify yourself as Mozilla and we'll hop on it :) Cheers Will (on behalf of Microsoft, Akamai, Digital Primates, Google and the other dash.js contributors).
Updated•10 years ago
|
Summary: Support needed for dashif player → Tracking bug for dashif player support
Reporter | ||
Comment 2•10 years ago
|
||
(In reply to Will Law from comment #1) > Conforming test vectors can be found at http://dashif.org/testvectors/. YouTube plays successfully with patch and prefs in 1040550 although the adaptive is broken as per bug 1024858. I tried the Single Resolution Multi-Rate Test Vector 1 (among others) and it sat with a buffer length at 0. I will investigate this further next week. However I would also welcome any clues that you can give me.
Reporter | ||
Comment 3•10 years ago
|
||
Many of the test vectors are missing the 'ftyp' atom and instead start with a 'moov' atom. The change https://www.w3.org/Bugs/Public/show_bug.cgi?id=24903 appears in https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/isobmff-byte-stream-format.html#iso-init-segments
Reporter | ||
Comment 4•10 years ago
|
||
Reporter | ||
Updated•10 years ago
|
Assignee: nobody → ajones
Status: NEW → ASSIGNED
Comment 5•10 years ago
|
||
Unassigning because this is a tracking bug.
Assignee: ajones → nobody
Status: ASSIGNED → NEW
@AnthonyJones - The ftyp should be present in the init segments but is not required in the media segments. Can you reference a url that shows an example of content that is missing the 'ftyp' atom and we'll look in to it?
Reporter | ||
Comment 7•10 years ago
|
||
(In reply to Will Law from comment #6) > @AnthonyJones - The ftyp should be present in the init segments but is not > required in the media segments. Can you reference a url that shows an > example of content that is missing the 'ftyp' atom and we'll look in to it? The first test vector starts with a 'moov' atom. http://dashif.org/reference/players/javascript/1.0.0/index.html?mpd=http://dash.edgesuite.net/dash264/TestCases/1a/netflix/exMPD_BIP_TC1.mpd
Reporter | ||
Comment 8•10 years ago
|
||
Attachment #8464326 -
Flags: review?(kinetik)
Reporter | ||
Updated•10 years ago
|
Assignee: nobody → ajones
Status: NEW → ASSIGNED
Reporter | ||
Updated•10 years ago
|
Attachment #8464326 -
Attachment is obsolete: true
Attachment #8464326 -
Flags: review?(kinetik)
Reporter | ||
Updated•10 years ago
|
Attachment #8459972 -
Attachment is obsolete: true
Reporter | ||
Updated•10 years ago
|
Assignee: ajones → nobody
(In reply to Anthony Jones (:kentuckyfriedtakahe, :k17e) from comment #7) > (In reply to Will Law from comment #6) > > @AnthonyJones - The ftyp should be present in the init segments but is not > > required in the media segments. Can you reference a url that shows an > > example of content that is missing the 'ftyp' atom and we'll look in to it? > > The first test vector starts with a 'moov' atom. > http://dashif.org/reference/players/javascript/1.0.0/index.html?mpd=http:// > dash.edgesuite.net/dash264/TestCases/1a/netflix/exMPD_BIP_TC1.mpd That manifest specifies two source files http://dash.edgesuite.net/dash264/TestCases/1a/netflix/ElephantsDream_H264BPL30_0500.264.dash http://dash.edgesuite.net/dash264/TestCases/1a/netflix/ElephantsDream_AAC48K_064.mp4.dash Both do contain 'ftyp' as the first box. the character-mapped (hex to ascii) first 32 bytes containing the ftyp box for the representations respectively are: ... ftypiso2....isomiso2dashiso6 and ... ftypmp42....isomiso2dashiso6 It should be noted though that this is on-demand profile content, hence there is no separate initialization segment, the single segment provided is self-initializing. In other words, all top-level boxes (ftyp, moov, moof and mdat) exist in this single segment.
Reporter | ||
Comment 10•10 years ago
|
||
The 'ftyp' is in the file but the player is only returning a range for the 'moov' box and that dictates what gets appended. It can be demonstrated by this change here: --- a/app/js/dash/BaseURLExtensions.js +++ b/app/js/dash/BaseURLExtensions.js @@ -220,7 +220,7 @@ Dash.dependencies.BaseURLExtensions = function () { // We have the entire range, so continue. start = pos - 8; end = start + size - 1; - irange = start + "-" + end; + irange = 0 + "-" + end; self.debug.log("Found the initialization. Range: " + irange); deferred.resolve(irange); The range for the 'ftyp' box needs to be plumbed up so that gets appended as well.
Reporter | ||
Comment 11•10 years ago
|
||
https://github.com/Dash-Industry-Forum/dash.js/issues/188
Comment 12•10 years ago
|
||
This bug is necessary for basic playback of EME video on Windows.
Blocks: eme-m1
Reporter | ||
Updated•10 years ago
|
Priority: -- → P5
Comment 13•10 years ago
|
||
The current plan is that Yury will be helping with DASH-IF support.
Alias: DASH-IF
Assignee: nobody → ydelendik
Summary: Tracking bug for dashif player support → Tracking bug for DASH-IF player support for EME/MSE
Comment 14•10 years ago
|
||
State of DASH-IF: - The current version of DASH-IF was migrated to the event based framework (dijon), which make it harder to implement/use current EME API (see https://github.com/Dash-Industry-Forum/dash.js/pull/377) - Created pilot patch for the reference implementation to make EME implemented per new spec in Firefox Nightly work with the player (which similar to the PR 377; see https://github.com/yurydelendik/dash.js/) - Online demo of the player that uses video encoded with clearkey at http://people.mozilla.org/~ydelendik/tmp/eme-3/test.html - Old format of the requestMediaKeySystemAccess parameter does not match the new spec -- see bug 1134066.
Comment 15•10 years ago
|
||
Anthony: does DASH-IF support need to block Adobe MVP? Do you think we should create a new tracking bug just for the subset of adobe-eme bugs that block partner testing/release?
Flags: needinfo?(ajones)
Updated•9 years ago
|
Blocks: mse-everywhere
Updated•9 years ago
|
Component: Audio/Video → Audio/Video: Playback
Comment 17•9 years ago
|
||
DASH.js works in Firefox. The ftyp atom issue from comment has been fixed in DASH.js [1]. We have been reporting other DASH.js issues on their GitHub issue tracker. [1] https://github.com/Dash-Industry-Forum/dash.js/pull/210
Assignee: ydelendik → nobody
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
status-firefox44:
--- → verified
status-firefox45:
--- → verified
status-firefox46:
--- → verified
status-firefox47:
--- → verified
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•