Python snips
Memory aid to remember how I did stuff in Python, C++, Linux and Windows.
Tuesday, January 4, 2011
Thread
import os
import thread
def run_vlc():
os.chdir("C:\Program Files\VideoLAN\VLC")
os.system("vlc")
def close_vlc():
#code to close vlc
thread.start_new_thread(run_vlc, ())
t=threading.Timer(120.0,close_vlc)
t.start()
No comments:
Post a Comment
Newer Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment