GNOME Bugzilla – Bug 581620
Gstreamer plays not files with a "#" in pathnames
Last modified: 2009-05-07 14:05:21 UTC
Please describe the problem: Gstreamer plays not files with a "#" in pathnames see http://sourceforge.net/mailarchive/message.php?msg_name=49E66FD7.7000200%40openelec.tv Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? yes Other information:
Right, I can confirm this here. filesrc thinks it's an invalid URI if there's a # in there.
Actually this seems to be a bug in glib: g_filename_from_uri() fails on URIs that contain a "#"
Right, file:///bla/bla/bl#/bla.mp3 is not a valid URI. The # needs to be escaped with %23 which should be done by applications before passing URIs to GStreamer. If it's passed as location to filesrc for example the # is handled correctly. Closing this bug as NOTABUG