fixes #1 by using ffplay instead of afplay

Thanks @unascribed and @DJSundog!
This commit is contained in:
Matt Behrens 2017-12-28 19:29:29 -05:00
commit 097bdd0d95

View file

@ -25,7 +25,7 @@ class Queue(object):
def run_thread(filename, cb_complete):
print('==> Playing', filename)
run(['afplay', filename])
run(['ffplay', '-v', '0', '-nostats', '-hide_banner', '-autoexit', '-nodisp', filename])
cb_complete()
thread = Thread(target=run_thread, args=(filename, cb_complete))