Re: Python help: Sending a "play" command to quicktime, or playing a movie in python
>>>> >>>> Any suggestions? >>> >>> import subprocess >>> subprocess.Popen(["open", "path/to/the/movie.file"]) >>> >>> Docs for the subprocess module: >>> http://docs.python.org/library/subprocess.html
Re: Python help: Sending a "play" command to quicktime, or playing a movie in python
Thanks, That works wonderfuly. Once I set quicktimes preferences to "play on open" it opens and plays the movie exactly like I want. But now I need a line of code to bring python to the front again so it can read my input. Any more suggestions? On Fri, Oct 23, 2009 at 5:17 PM, Chris Rebert wrote: