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 550582 - [oggdemux] KATE streams not recognised
[oggdemux] KATE streams not recognised
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
git master
Other Linux
: Normal normal
: 0.10.21
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-09-03 00:39 UTC by Bastien Nocera
Modified: 2008-09-15 15:14 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
add typefinder for KATE streams and a description for the media type (1.70 KB, patch)
2008-09-13 12:00 UTC, Tim-Philipp Müller
committed Details | Review

Description Bastien Nocera 2008-09-03 00:39:49 UTC
Similarly to bug 537599, in http://ftp.gnu.org/video/Stephen_Fry-Happy_Birthday_GNU-hq_600px_780kbit.ogv
Some streams aren't understood, and we get:
** Message: don't know how to handle application/octet-stream
** Message: don't know how to handle application/octet-stream
** Message: Missing plugin: gstreamer|0.10|totem|application/octet-stream decoder|decoder-application/octet-stream (application/octet-stream decoder)
** Message: Missing plugin: gstreamer|0.10|totem|application/octet-stream decoder|decoder-application/octet-stream (application/octet-stream decoder)

This might be because of streams 4 and 5 (from ogginfo):
New logical stream (#1, serial: 42f214b7): type skeleton
New logical stream (#2, serial: 743f0b46): type theora
New logical stream (#3, serial: 75ece5e5): type vorbis
New logical stream (#4, serial: 7a26cd5c): type kate
New logical stream (#5, serial: 6f01d8a6): type kate

Which seem to be subtitles (strings has "Content-Type: application/x-kate"). Probably just a missing typefind?
Comment 1 Tim-Philipp Müller 2008-09-13 11:57:49 UTC
> Probably just a missing typefind?

Yeah, but we also don't have a kate decoder yet in GStreamer (there's one in bugzilla though, see bug #525743). (You could add it to blacklisted_mimes in gstplaybasebin.c if you want to avoid triggering the missing plugin thing, or blacklist it in totem).
Comment 2 Tim-Philipp Müller 2008-09-13 12:00:39 UTC
Created attachment 118652 [details] [review]
add typefinder for KATE streams and a description for the media type
Comment 3 Tim-Philipp Müller 2008-09-13 12:02:02 UTC
Jan, any chance this could go in for the upcoming release?
Comment 4 Jan Schmidt 2008-09-15 13:46:02 UTC
OK
Comment 5 Tim-Philipp Müller 2008-09-15 15:14:40 UTC
 2008-09-15  Tim-Philipp Müller  <tim.muller at collabora co uk>

	* gst-libs/gst/pbutils/descriptions.c:
	* gst/typefind/gsttypefindfunctions.c:
	  Recognise Kate subtitle streams (#550582).