I'm wondering if I'm the only one having trouble installing? I tried using the easy_install script, which appeared to work, but now when I import mp3play I get the following error:
Traceback (most recent call last):
File "<pyshell#6>", line 1, in -toplevel-
import mp3play
File "C:\Python24\lib\site-packages\mp3play-0.1.15-py2.4.egg\mp3play\init.py", line 4
from .windows import AudioClip? as PlatformSpecificAudioClip?
After taking a closer look, it looks like there's a syntax error in the windows.py file, in the play() function. I could definitely be mistaken, but it won't run for me.
Can some one out there help me? When I try to run a mp3 player the error message I always get is "No module name, mp3play". I do not understand anything about that error.
I like very much your project. Easy to use. I'll find some project to put it or suggest to some friend. Matias
Hi. Does it work on vista now?
I'm wondering if I'm the only one having trouble installing? I tried using the easy_install script, which appeared to work, but now when I import mp3play I get the following error:
Traceback (most recent call last):
SyntaxError?: invalid syntaxI'm on Windows XP with Python 2.4. I don't imagine someone can point me in the correct direction? (wrybread at gmail dot you know what)
After taking a closer look, it looks like there's a syntax error in the windows.py file, in the play() function. I could definitely be mistaken, but it won't run for me.
Can some one out there help me? When I try to run a mp3 player the error message I always get is "No module name, mp3play". I do not understand anything about that error.
Hello,
First of all. Excellent library, thank you very much. By far the easiest way to play a mp3 file using Python in Windows.
I needed to loop a mp3 file so I add the following method to AudioClip? class:
def loop(self): return self._clip.loop()And the correspondent method to .windows.AudioClip?:
def loop(self): err,buf=self._mci.directsend('play %s repeat' % self._alias )Best regards
how to play the random seconds in the music for can't finding the relative APIs.
oh, I have found it in the source file. It is good library!!