Open
Bug 1248570
Opened 9 years ago
Updated 2 years ago
Firefox can't play wav in video or audio element
Categories
(Core :: Audio/Video: Playback, defect, P3)
Core
Audio/Video: Playback
Tracking
()
People
(Reporter: jya, Unassigned)
References
Details
(Whiteboard: [webcompat])
Attachments
(1 file)
In DecoderTraits.cpp we read:
> if (IsWaveType(nsDependentCString(aMIMEType))) {
> // We should not return true for Wave types, since there are some
> // Wave codecs actually in use in the wild that we don't support, and
> // we should allow those to be handled by plugins or helper apps.
> // Furthermore people can play Wave files on most platforms by other
> // means.
> return false;
> }
Following bug 1231793, we should be able to play most of them now.
No reason to prevent it from running
Reporter | ||
Comment 1•9 years ago
|
||
Review commit: https://reviewboard.mozilla.org/r/35091/diff/#index_header
See other reviews: https://reviewboard.mozilla.org/r/35091/
Reporter | ||
Updated•9 years ago
|
Assignee: nobody → jyavenard
Reporter | ||
Updated•9 years ago
|
Attachment #8719753 -
Flags: review?(lchristie)
Updated•9 years ago
|
Attachment #8719753 -
Flags: review?(lchristie) → review+
Comment 2•9 years ago
|
||
Comment on attachment 8719753 [details]
MozReview Request: Bug 1248570: Allow WAV into media element. r?lchristie
https://reviewboard.mozilla.org/r/35091/#review31731
Looks good to me. I'm fairly confident that after bug 524109 and bug 851530 we'll have support for nearly all uses of wave files.
Reporter | ||
Updated•9 years ago
|
Attachment #8719753 -
Flags: review+
Reporter | ||
Comment 3•9 years ago
|
||
Comment on attachment 8719753 [details]
MozReview Request: Bug 1248570: Allow WAV into media element. r?lchristie
https://reviewboard.mozilla.org/r/35091/#review31801
carrying r+ now that lchristie is known by mozreview
Comment 4•9 years ago
|
||
Reporter | ||
Comment 7•9 years ago
|
||
Reverting as roc pointed out we still don't play many of the file:
https://en.wikipedia.org/wiki/WAV#WAV_file_audio_coding_formats_compared
Our WAV demuxer can't handle codec of a different type than PCM this is wrong.
Comment 8•9 years ago
|
||
Indeed, the full list is here: http://www.rfc-editor.org/rfc/rfc2361.txt
So the question is whether we want to support playing the files we can play as Video Document, have an error for those we can't (and still allow them to be downloaded with "save link as"), or to continue the current behavior of opening the download dialogue automatically.
Is there some way to trigger the download pop-up if it's in a Video Document and we fail on WaveDataDecoder::IsWave()?
Updated•9 years ago
|
Priority: -- → P2
Mass change P2 -> P3
Priority: P2 → P3
Comment 10•8 years ago
|
||
(In reply to Louis Christie [:lchristie] from comment #8)
> So the question is whether we want to support playing the files we can play
> as Video Document, have an error for those we can't (and still allow them to
> be downloaded with "save link as"), or to continue the current behavior of
> opening the download dialogue automatically.
Most likely a duplicate bug: Bug 1337989
Updated•7 years ago
|
See Also: → https://webcompat.com/issues/17140
Updated•7 years ago
|
Flags: webcompat?
Whiteboard: [webcompat]
Updated•7 years ago
|
See Also: → https://webcompat.com/issues/17917
Comment 11•6 years ago
|
||
¡Hola!
Ended up here from https://support.mozilla.org/es/questions/1234703
Updating flags FWIW.
¡Gracias!
Alex
Comment 14•6 years ago
|
||
Migrating Webcompat whiteboard priorities to project flags. See bug 1547409.
Webcompat Priority: --- → ?
Comment 15•6 years ago
|
||
See bug 1547409. Migrating whiteboard priority tags to program flags.
Updated•5 years ago
|
Webcompat Priority: ? → ---
Comment 16•5 years ago
|
||
WAV does playback at video and audio element at Firefox 75 and Nightly 78. However, when navigating directly to the file prompt to download https://bugzilla.mozilla.org/show_bug.cgi?id=1247826.
Reporter | ||
Updated•4 years ago
|
Assignee: jya-moz → nobody
Comment 17•3 years ago
|
||
Should we close this as a duplicate of 1247826 then?
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•