Re: [Freevo-users] How to Play pls files

2008-12-17 Thread Helmut Auer
Hi To play pls files you have to modify lines 141-143 in freevo-1.8.3/lib/python2.5/site-packages/freevo/audio/plugins/mplayer.py: [original] if item.network_play: if str(ext) in ('.m3u', '.pls', '.asx'): is_playlist = True [modified] #if

Re: [Freevo-users] How to Play pls files

2008-12-15 Thread Francisco Eduardo Álvarez Solano
To play pls files you have to modify lines 141-143 in freevo-1.8.3/lib/python2.5/site-packages/freevo/audio/plugins/mplayer.py: [original] if item.network_play: if str(ext) in ('.m3u', '.pls', '.asx'): is_playlist = True [modified] #if

Re: [Freevo-users] How to Play pls files

2008-12-15 Thread Manfred Schmitt
Francisco Eduardo Álvarez Solano wrote: As you can see in the bug report, Duncan thinks that this modification may break something else. But I don't know enough freevo/python to write another audio plugin, as Duncan suggest. I'm used to modify manually this lines in every release since

Re: [Freevo-users] How to Play pls files

2008-12-15 Thread Manfred Schmitt
Just one minor minor correction... Manfred Schmitt wrote: So to me it seems with an unmodified, actual freevo-version and without using a wrapper around mplayer, there are two methods to play local file:// or http:// m3u/pls-playlists: Play them from a Video-Dir or reference the playlists

Re: [Freevo-users] How to Play pls files

2008-12-14 Thread Manfred Schmitt
Helmut Auer wrote: I've creates .pls files for shoutcast streams, just containing the URL of the satation. How can I play these with freevo ? Add pls to MPLAYER_ARGS with -playlist as parameter. Minimalistic example: MPLAYER_ARGS = { 'pls': '-user-agent xmms/1.2.7 -cache

Re: [Freevo-users] How to Play pls files

2008-12-14 Thread Helmut Auer
Hi Add pls to MPLAYER_ARGS with -playlist as parameter. Minimalistic example: MPLAYER_ARGS = { 'pls': '-user-agent xmms/1.2.7 -cache 192 -playlist', 'default': '-autosync 0 -cache 750' } Thats not working for audio files, mplayer_args are only used with

Re: [Freevo-users] How to Play pls files

2008-12-14 Thread Manfred Schmitt
Helmut Auer schrieb: Add pls to MPLAYER_ARGS with -playlist as parameter. Minimalistic example: MPLAYER_ARGS = { 'pls': '-user-agent xmms/1.2.7 -cache 192 -playlist', 'default': '-autosync 0 -cache 750' } Thats not working for audio files,

Re: [Freevo-users] How to Play pls files

2008-12-14 Thread Manfred Schmitt
Manfred Schmitt wrote: That__s what I do all the day mainly to detect a good cache size for Argl, I think claws-mail is breaking my apostrophs :-( Already saw that in my mail to the list a few days ago but I thought I maybe really typed that shit. Bye, Manne

Re: [Freevo-users] How to Play pls files

2008-12-14 Thread Manfred Schmitt
OK, there__s a bug entry: http://sourceforge.net/tracker/index.php?func=detailaid=2186340group_id=46652atid=446895 Hm, if I understand it right Duncan means it should work because freevo parses the playlist (or only m3u?) and then plays the mentioned files seperately? I will try to figure out if