Stephen Rowles wrote:
> Duncan Webb wrote:
>> Stephen Rowles wrote:
>>   
>>> Hi all,
>>>
>>> I've just upgraded to 1.6.2 and dvd playback of iso images has stopped 
>>> working. Freevo is launching xine using the file:/// location, when to 
>>> play a DVD iso image it needs to launch using dvd:/// to correctly play 
>>> back the dvd.
>>>
>>> Does anyone know what I need to adjust to make this work again? It 
>>> worked fine before but now I cannot view any of my ripped DVD's :(
>>>     
>> Try running freevo cache --rebuild
>>
>> Can't think of a reason why it should be needed, it has sorted out
>> similar problems in the past.
>>
>> Duncan
> Thanks for the suggestion, but that hasn't worked, it still tries to use 
> the file:/// location to play the iso image. :(
> 
> Any other suggestions?

I'm pretty certain it has to do with the cache, here's the code in xine
that does this:
  if item.mode == 'dvd' and hasattr(item, 'filename') and \
    item.filename and item.filename.endswith('.iso'):
      # dvd:///full/path/to/image.iso/
      command.append('dvd://%s/' % item.filename)

You could add a:
print 'item.mode:', item.mode just before the if and aligned to start in
the same column as the if. line 151 of src/video/plugins/xine.py.

The only reasons that this would not work are because the mode is not
dvd and the file end with a non lowercase iso.

IIRC the mode is somehow set by the cache. If in doubt delete the
/var/cache/freevo/mediainfo and maybe freevo.sqlite in the same
directory, then run freevo cache.

Duncan


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to