1 Commits

Author SHA1 Message Date
kelciour 129a948f02 Revert "Replace Popen with check_call"
This reverts commit 34a99fdec0.
2021-02-14 17:31:02 +03:00
2 changed files with 1 additions and 1 deletions
View File
+1 -1
View File
@@ -238,7 +238,7 @@ def play_clips(clips, ending_mode, mpv_options):
with open(pipe_name, 'w'): # create pipe
pass
p = subprocess.check_call(cmd) # start mpv player in idle mode
p = subprocess.Popen(cmd) # start mpv player in idle mode
with open(pipe_name, "wb", 0) as f_pipe:
for clip_filename, clip_start, clip_end in clips: