Update of /cvsroot/freevo/freevo/src/audio/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv20376

Modified Files:
        mplayer.py 
Log Message:
fix playback problems with fxd files (and transform to list app style)

Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/audio/plugins/mplayer.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** mplayer.py  8 Nov 2003 13:21:18 -0000       1.24
--- mplayer.py  11 Nov 2003 18:01:44 -0000      1.25
***************
*** 10,13 ****
--- 10,16 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.25  2003/11/11 18:01:44  dischi
+ # fix playback problems with fxd files (and transform to list app style)
+ #
  # Revision 1.24  2003/11/08 13:21:18  dischi
  # network m3u support, added AUDIOCD plugin register
***************
*** 160,169 ****
                 extra_opts.find('-playlist') == -1:
              extra_opts += ' -playlist'
-         command = '%s -vo null -ao %s %s %s "%s"' % (mpl, config.MPLAYER_AO_DEV,
-                                                      demux, extra_opts, filename)
  
          if network_play:
!             command = '%s -cache 100' % command
!             
          if plugin.getbyname('MIXER'):
              plugin.getbyname('MIXER').reset()
--- 163,176 ----
                 extra_opts.find('-playlist') == -1:
              extra_opts += ' -playlist'
  
          if network_play:
!             extra_opts += ' -cache 100'
! 
!         command = '%s -vo null -ao %s %s %s' % (mpl, config.MPLAYER_AO_DEV, demux,
!                                                 extra_opts)
!         
!         command = command.replace('\n', '').split(' ')
!         command.append(filename)
!         
          if plugin.getbyname('MIXER'):
              plugin.getbyname('MIXER').reset()




-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to