Set output of subprocess to stderr

Required otherwise Jellyfin doesn't pick up the output properly.
This commit is contained in:
Joshua Boniface 2019-11-02 15:55:12 -04:00
parent 9e5235a9fc
commit a142f48821

View file

@ -177,7 +177,7 @@ p = subprocess.run(rffmpeg_command,
universal_newlines=True,
stdin=sys.stdin,
stderr=sys.stderr,
stdout=sys.stdout)
stdout=sys.stderr)
###############################################################################
# Cleanup