GNOME Bugzilla – Bug 723166
qtdemux: incorrect tag character
Last modified: 2014-02-13 15:57:11 UTC
Created attachment 267405 [details] 140127Mata-16x9-truncated.mp4 the 'Ð' that appears in totem for example is supposed to be a '–'. mplayer shows the name correctly, GStreamer doesn't. Downloaded from http://www.theguardian.com/football/video/2014/jan/27/juan-mata-unveiled-manchester-united-player-video
The char in question has a value of D0, that is a Ð in UTF8, but it is stored into one of the (C) atoms that needs some special parsing that is yet unhandled in qtdemux. Will look into it.
(In reply to comment #1) > The char in question has a value of D0, that is a Ð in UTF8, but it is stored > into one of the (C) atoms that needs some special parsing that is yet unhandled > in qtdemux. Will look into it. I learnt something. Do you have some details on what that parsing is supposed to be?
'User Data Text Strings and Language Codes' section from the qtff pdf: https://developer.apple.com/library/mac/documentation/QuickTime/qtff/qtff.pdf The section above that has a few examples of the (C) metadata atoms.
commit 7f1d51ba90275a53e00339a75746bc638edded0c Author: Thiago Santos <ts.santos@sisa.samsung.com> Date: Thu Feb 13 12:29:13 2014 -0300 qtdemux: handle tags in mac encoding Check the charset from (C)*** tags and set the charset to convert from MAC encoding if suitable. https://bugzilla.gnome.org/show_bug.cgi?id=723166