From: Kevin A. <ka...@us...> - 2004-08-16 22:10:55
|
Update of /cvsroot/pythoncard/PythonCard/samples/mp3player In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13165/samples/mp3player Modified Files: mp3player.rsrc.py readme.txt Log Message: another window height tweak and added link to Movie docs Index: mp3player.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/mp3player/mp3player.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mp3player.rsrc.py 3 Aug 2004 17:09:19 -0000 1.1 --- mp3player.rsrc.py 16 Aug 2004 22:08:07 -0000 1.2 *************** *** 5,9 **** 'name':'bgTemplate', 'title':'simple mp3player', ! 'size':(404, 362), 'menubar': {'type':'MenuBar', --- 5,9 ---- 'name':'bgTemplate', 'title':'simple mp3player', ! 'size':(404, 380), 'menubar': {'type':'MenuBar', Index: readme.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/mp3player/readme.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** readme.txt 3 Aug 2004 17:09:19 -0000 1.1 --- readme.txt 16 Aug 2004 22:08:08 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- mp3player is a quick sample I wrote during one of the VanPy Workshop '04 presentations. mp3player uses the Movie class of PyGame to do all the real work. + http://www.pygame.org/docs/ref/Movie.html + It might make more sense to just roll MP3 support into the PythonCard.sound module except that it will require PyGame to work and Movie has a lot more playback options than the WAV file playback in wxPython. |