Extend Moof Parser to correctly handle multiple tracks
Categories
(Core :: Audio/Video: Playback, defect, P5)
Tracking
()
People
(Reporter: ajones, Unassigned)
References
(Blocks 1 open bug)
Details
The current MoofParser implementation only deals with one track at a time. It needs to be separated out to parse multiple tracks.
Comment 1•9 years ago
|
||
Is this the bug that would address the known issue here: http://caniuse.com/#search=mpeg-4 Saying: "Browsers have trouble with more than one audio track in a video (for multi-language support): IE 11 supports it, Firefox plays the last track, Chrome plays the first track."
Reporter | ||
Comment 2•9 years ago
|
||
(In reply to Ben Kelly [:bkelly] from comment #1) > Is this the bug that would address the known issue here: No. It is not related.
Reporter | ||
Updated•9 years ago
|
Updated•8 years ago
|
Updated•1 year ago
|
(In reply to Anthony Jones (:ajones, :kentuckyfriedtakahe, :k17e) from comment #2)
(In reply to Ben Kelly [:bkelly] from comment #1)
Is this the bug that would address the known issue here:
No. It is not related.
Can you direct to a more relevant ticket then?
(In reply to Kyra from comment #3)
(In reply to Anthony Jones (:ajones, :kentuckyfriedtakahe, :k17e) from comment #2)
(In reply to Ben Kelly [:bkelly] from comment #1)
Is this the bug that would address the known issue here:
No. It is not related.
Can you direct to a more relevant ticket then?
Ah, I suspect it's this one: https://bugzilla.mozilla.org/show_bug.cgi?id=1169102
Surprising since MDN includes the following:
Enabling this feature adds the
HTMLMediaElement.audioTracks
andHTMLMediaElement.videoTracks
properties to all HTML media elements. However, because Firefox doesn't currently support multiple audio and video tracks, the most common use cases for these properties don't work, so they're both disabled by default. See Firefox bug 1057233 for more details.
Description
•