Hi all

I found a bug of interactive with MPlayer's single CDDA track playing.
Freevo cannot play single track of CDDA via MPlayer because it did not give
correct command to MPlayer.

Look at Line 117 in src/audio/audiodiskitem.py. Locate:

115:    for i in range(0, number):
116:         title=self.info['tracks'][i]['title']
117:         item = AudioItem('cdda://%d' % (i+1), self, title, scan=False)

Change it to be

item = AudioItem('cdda://%d-%d' % (i+1, i+1), self, title, scan=False) 

and then it works.

Anthony

__________________________________
Do you Yahoo!?
Find out what made the Top Yahoo! Searches of 2003
http://search.yahoo.com/top2003


-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to