After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 620039 - Some videos fail silently when named (incorrectly?) as .mp4
Some videos fail silently when named (incorrectly?) as .mp4
Status: RESOLVED FIXED
Product: totem-pl-parser
Classification: Core
Component: General
2.30.x
Other Linux
: Normal normal
: ---
Assigned To: totem-pl-parser-maint
totem-pl-parser-maint
Depends on:
Blocks:
 
 
Reported: 2010-05-29 17:21 UTC by Pekka Lampila
Modified: 2010-09-13 13:41 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Pekka Lampila 2010-05-29 17:21:24 UTC
Giving certain FLV files a filename extension .mp4 makes them fail silently in Totem. There is no error message or even any --debug output, nothing happens when you try to play them.

I'm using Ubuntu 10.04 with the GStreamer version of Totem.

Example:

$ youtube-dl --version
2010.04.04

$ youtube-dl -b -o test.mp4 'http://www.youtube.com/watch?v=K2oLoBpFmho'

$ totem --version
totem 2.30.2

$ totem test.mp4
Won't work

$ mv test.mp4 test.whatever

$ totem test.whatever
Works fine
Comment 1 Bastien Nocera 2010-05-31 14:47:38 UTC
Works fine here. It just takes a long while to start playing (which is likely a GStreamer problem).
Comment 2 Pekka Lampila 2010-06-01 10:24:45 UTC
Definitely not just slow. Works instantly with any other extension and not at all with mp4.

Also gst-launch playbin2 uri=file:`pwd`/test.mp4 works just fine for me.
Comment 3 Felipe Besoaín Pino 2010-09-11 12:18:34 UTC
Closing this bug report as no further information has been provided. Please feel free to reopen this bug if you can provide the information asked for.
Thanks!
Comment 4 Pekka Lampila 2010-09-13 07:46:26 UTC
What information?
Comment 5 Bastien Nocera 2010-09-13 13:41:39 UTC
commit 0e3d58f61615c6a6a9c4a27ee58fd545e18fe7c3
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Sep 13 14:32:17 2010 +0100

    Make sure videos disguised as MP4 aren't unhandled
    
    *.mp4 files were ignored if they were actually detected
    as any other type. This was the case for 3gpp files, but
    it would happen for *all* files types that weren't listed.
    
    And we can't list every file type as possibly being a quicktime file.
    
    So we ignore files that are text/plain, or a sub-class of it.
    
    This makes FLV hiding as an MP4, or 3GPP hiding as an MP4 work
    correctly.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=620039