diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 4b996764..38d3af20 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -461,11 +461,9 @@ def timeline(video, prefix, modes=None, size=None): '-o', prefix, '-c', os.path.join(prefix, 'cuts.json'), ] + video - p = subprocess.Popen(cmd, stdin=subprocess.PIPE, - stdout=subprocess.PIPE, stderr=subprocess.PIPE, - close_fds=True) # print(cmd) - # p = subprocess.Popen(cmd) + p = subprocess.Popen(cmd, stdin=subprocess.PIPE, + close_fds=True) p.wait()