You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
190 B
Python
11 lines
190 B
Python
8 years ago
|
import subprocess
|
||
|
p = subprocess.Popen(["cvlc", "--loop", "0", "inthemood.mp3"], stdin=subprocess.PIPE)
|
||
|
|
||
|
from time import sleep
|
||
|
|
||
|
while True:
|
||
|
sleep(1)
|
||
|
p.stdin.write("+")
|
||
|
print ("FASTER")
|
||
|
|