diff --git a/morituri/common/gstreamer.py b/morituri/common/gstreamer.py index 16fdbb6..f1a2a56 100644 --- a/morituri/common/gstreamer.py +++ b/morituri/common/gstreamer.py @@ -45,10 +45,11 @@ def removeAudioParsers(): log.debug('gstreamer', 'Found audioparsers plugin from %s %s', plugin.get_source(), plugin.get_version()) - # was fixed after 0.10.30 and before 0.10.31 - if plugin.get_source() == 'gst-plugins-good' \ - and plugin.get_version() > '0.10.30.1': - return + # the query bug was fixed after 0.10.30 and before 0.10.31 + # the seek bug is still there though + # if plugin.get_source() == 'gst-plugins-good' \ + # and plugin.get_version() > '0.10.30.1': + # return registry.remove_plugin(plugin)