Comment 15 for bug 191760

Revision history for this message
Petar Vasić (p-vasic) wrote :

I already wrote this in https://bugs.launchpad.net/ubuntu/+source/totem/+bug/214416, cc-ing here, as it seems more appropriate

In totem plugins 2.22.1-ubuntu1, I get same error.

Upon further inspection I've discovered that the plugin tries, and fails to find "souphttpsrc" gstreamer plugin.
(relevant line in /usr/lib/totem/plugins/youtube/youtube.py:
  if registry.find_plugin ("flvdemux") == None or registry.find_plugin ("souphttpsrc") == None:
)
if the line is changed to:
  if registry.find_plugin ("flvdemux") == None:

video playback works.

I have all of the gstreamer codecs installed.