Closed GoogleCodeExporter closed 9 years ago
Hello, the errors you see in the command line are generated by MPlayer and are
"harmless".
The code that you posted contains no blocking call (i.e. all method and
function calls return immediately) that's why it reaches the last line, i.e.
player.quit(), immediately thereby terminating MPlayer.
Refer to the test code in core.py:
player = Player(sys.argv[1:], stderr=subprocess.PIPE)
# block execution
try:
raw_input()
except NameError: # raw_input() was renamed to input() in Python 3
input()
Original comment by daru...@gmail.com
on 16 Oct 2012 at 6:21
It works!
Thank you very much!
El 16/10/2012, a las 08:21, python-mplayer@googlecode.com escribi�:
Original comment by jjde...@gmail.com
on 22 Oct 2012 at 6:04
Original issue reported on code.google.com by
jjde...@gmail.com
on 7 Oct 2012 at 5:48