Update of /cvsroot/freevo/freevo/src/audio/plugins
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15884

Modified Files:
        mplayer.py mplayervbr.py 
Log Message:
Fixed webradio support for shoutcast streams using the 'pls' extension. Most
use m3u, but some (including ones in the webradio.fxd file) use pls.


Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/audio/plugins/mplayer.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** mplayer.py  19 Feb 2004 04:37:21 -0000      1.35
--- mplayer.py  9 Jul 2004 04:08:50 -0000       1.36
***************
*** 10,13 ****
--- 10,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.36  2004/07/09 04:08:50  outlyer
+ # Fixed webradio support for shoutcast streams using the 'pls' extension. Most
+ # use m3u, but some (including ones in the webradio.fxd file) use pls.
+ #
  # Revision 1.35  2004/02/19 04:37:21  gsbarbieri
  # MPlayer Audio Visualization support.
***************
*** 168,173 ****
          if hasattr(item, 'is_playlist') and item.is_playlist:
              is_playlist = True
!             
!         if item.network_play and filename.endswith('m3u'):
              is_playlist = True
  
--- 172,177 ----
          if hasattr(item, 'is_playlist') and item.is_playlist:
              is_playlist = True
!         
!         if item.network_play and ( str(filename).endswith('m3u') or 
str(filename).endswith('pls')):
              is_playlist = True
  

Index: mplayervbr.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/audio/plugins/mplayervbr.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mplayervbr.py       10 Jun 2004 00:47:38 -0000      1.1
--- mplayervbr.py       9 Jul 2004 04:08:50 -0000       1.2
***************
*** 19,22 ****
--- 19,26 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.2  2004/07/09 04:08:50  outlyer
+ # Fixed webradio support for shoutcast streams using the 'pls' extension. Most
+ # use m3u, but some (including ones in the webradio.fxd file) use pls.
+ #
  # Revision 1.1  2004/06/10 00:47:38  outlyer
  # This plugin uses the enhanced mplayer seeking mechanism for VBR
***************
*** 145,149 ****
              is_playlist = True
              
!         if item.network_play and filename.endswith('m3u'):
              is_playlist = True
  
--- 149,153 ----
              is_playlist = True
              
!         if item.network_play and ( str(filename).endswith('m3u') or 
str(filename).endswith('pls')):
              is_playlist = True
  



-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to