diff --git a/src/downloaders/vreddit.py b/src/downloaders/vreddit.py index 521f112..4e87f0e 100644 --- a/src/downloaders/vreddit.py +++ b/src/downloaders/vreddit.py @@ -51,7 +51,7 @@ class VReddit: FNULL = open(os.devnull, 'w') cmd = f"ffmpeg -i {inputAudio} -i {inputVideo} -c:v copy -c:a aac -strict experimental {str(directory / filename)}" - subprocess.call(cmd, stdout=FNULL, stderr=subprocess.STDOUT) + subprocess.call(cmd.split(), stdout=FNULL, stderr=subprocess.STDOUT) os.remove(directory / video) os.remove(directory / audio) \ No newline at end of file