GNOME Bugzilla – Bug 587849
GStreamer extractor should use giosrc instead of filesrc
Last modified: 2009-07-27 08:17:04 UTC
The GStreamer extractor currently tries to set the `location' property of a `filesrc' element to a URI. `filesrc' operates only on filesystem paths, so this will always result in a "no such file" error. The solution is to either 1) convert the URI to an absolute path 2) use `giosrc'. Since Tracker seems to depend on `giosrc' anyway, that seems the best option.
Created attachment 137902 [details] [review] Use `giosrc'
Approved and committed. Thanks for the patch.