Closed
Bug 779209
Opened 13 years ago
Closed 13 years ago
Add support for 3GPP media files
Categories
(Firefox OS Graveyard :: General, defect)
Tracking
(blocking-basecamp:+, firefox18 fixed, firefox19 fixed)
RESOLVED
FIXED
| blocking-basecamp | + |
People
(Reporter: ikumar, Assigned: mikeh)
References
Details
Attachments
(1 file, 1 obsolete file)
|
1.13 KB,
patch
|
cajbir
:
review+
|
Details | Diff | Splinter Review |
Add support for 3gpp media files. Camcorder in certain configurations generates recorded files in 3gpp format.
Along with the attached patch following changes need to be made:
netwerk/mime/nsMimeTypes.h:
+#define VIDEO_3GPP "video/3gpp"
uriloader/exthandler/nsExternalHelperAppService.cpp:
- { AUDIO_WAV, "wav", "Waveform Audio" }
+ { AUDIO_WAV, "wav", "Waveform Audio" },
+ { VIDEO_3GPP, "3gpp,3gp", "3GPP Video" }
| Assignee | ||
Comment 2•13 years ago
|
||
| Assignee | ||
Updated•13 years ago
|
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
QA Contact: mhabicher
| Assignee | ||
Updated•13 years ago
|
Summary: Add support for 3GPP media files → Camera - video recording - Add support for 3GPP media files
Updated•13 years ago
|
blocking-basecamp: --- → ?
Comment 3•13 years ago
|
||
Do we have support for playing 3GPP files in the video player?
Comment 4•13 years ago
|
||
That is essentially what this patch is enabling. Currently the video player chokes on a .3gpp extension
Updated•13 years ago
|
Attachment #647594 -
Attachment is obsolete: true
Updated•13 years ago
|
Summary: Camera - video recording - Add support for 3GPP media files → Add support for 3GPP media files
Comment 5•13 years ago
|
||
While enabling this is trivial and I see no reason *not* to land this patch, I don't think this is something we'd block on. Please remember, just because we're -ing here, it doesn't mean we wouldn't like to see this fixed :)
blocking-basecamp: ? → -
Comment 6•13 years ago
|
||
Sorry to nit as I'm sure we will land this patch in time for v1 regardless, but I want to ensure that the appropriate priority is placed on it. If we don't land this patch for v1 then the videos that the user records will not be playable on their own device.
| Assignee | ||
Updated•13 years ago
|
Attachment #647647 -
Flags: review?(chris.double)
Comment 7•13 years ago
|
||
Is there a chance to record in a web format instead of 3gpp?
Comment 8•13 years ago
|
||
We can do an mp4 container format as well, with a h263, h264 or m4v video codec
It's configurable via /system/etc/media_profiles.xml
eg: http://bit.ly/OSQ1q3
Updated•13 years ago
|
Attachment #647647 -
Flags: review?(chris.double) → review+
| Assignee | ||
Updated•13 years ago
|
Keywords: checkin-needed
Whups, this should not have been minused.
blocking-basecamp: - → +
Comment 10•13 years ago
|
||
Updated•13 years ago
|
Whiteboard: [needs-checkin-aurora]
Updated•13 years ago
|
Keywords: checkin-needed
Comment 11•13 years ago
|
||
Keywords: checkin-needed
Whiteboard: [needs-checkin-aurora]
Comment 12•13 years ago
|
||
Crap, this got checked in to both branches as bug 722975. Stupid copy/paste error on my fault when I was giving this a commit message (one of the reasons I prefer they be there ahead of time :)...).
https://hg.mozilla.org/mozilla-central/rev/05006509aa53
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Updated•13 years ago
|
status-firefox18:
--- → fixed
status-firefox19:
--- → fixed
You need to log in
before you can comment on or make changes to this bug.
Description
•