Open /usr/lib/python2.5/site-packages/mytube/ystorage.py and on line 80 change Code: img = gtk.gdk.pixbuf_new_from_file_at_size(YStorage.getImgPath(filename), w, h) to Code: img = gtk.gdk.pixbuf_new_from_file(YStorage.getImgPath(filename)) Then it will work. One advice - don't try to play the file while it is downloaded - mplayer may hang. Otherwise it plays great. Another thing: I think mplayer version 24 fares generally better with flv
img = gtk.gdk.pixbuf_new_from_file_at_size(YStorage.getImgPath(filename), w, h)
img = gtk.gdk.pixbuf_new_from_file(YStorage.getImgPath(filename))