I had a similar issue, but simply renamed all my .ISO files to .iso :D I
think a better fix would be to do these sort of comparisons with a version
of the url that has been put into all lower case. The case of the
extension really shouldn't matter, I should be able to play .Iso, .iSo,
.isO etc.


> I see that xine is not selected to paly few of my .ISO files. I need to
> change following to use xine for playing my ripped .iso files.
>
> [EMAIL PROTECTED] site-packages]$ diff -c --show-c-function
> ./freevo/video/videoitem.py.sav ./freevo/video/videoitem.py
> *** ./freevo/video/videoitem.py.sav    2008-08-24 07:00:14.000000000 -0700
> --- ./freevo/video/videoitem.py    2008-09-24 14:54:58.000000000 -0700
> *************** class VideoItem(Item):
> *** 183,192 ****
>               else:
>                   self.filename = ''
>
> !         elif url.endswith('.iso') and self.info['mime'] == 'video/dvd':
>               self.mimetype = 'dvd'
>               self.mode     = 'dvd'
> !             self.__dict__['url'] = 'dvd' + self.url[4:] + '/'
>
>           # cover image
>           if not self.image or (self.parent and self.image ==
> self.parent.image):
> --- 183,192 ----
>               else:
>                   self.filename = ''
>
> !         elif url.endswith('.iso') or url.endswith('.ISO') and
> self.info['mime'] == 'video/dvd':
>               self.mimetype = 'dvd'
>               self.mode     = 'dvd'
> !             self.__dict__['url'] = 'dvd' + self.url[4:]
>
>           # cover image
>           if not self.image or (self.parent and self.image ==
> self.parent.image):
> [EMAIL PROTECTED] site-packages]$
>
> Do you see that it is a issue and fix is ok ?
>
> Sandip
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/_______________________________________________
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to