Remove the SSH pseudoterminal

This caused some issues with ffprobe if the remote command ever sends
something to stderr (which then gets sent to stdout locally, causing
format issues).

However, from some testing, this was original though needed to ensure
the 'q' sent to FFmpeg was sent directly over the pipe, but this seems
to not be required (any longer?).
This commit is contained in:
Joshua M. Boniface 2020-02-23 23:54:12 -05:00
parent f83ab6de74
commit e431c4072b

View file

@ -146,7 +146,6 @@ rffmpeg_command = list()
# Add SSH component
rffmpeg_command.append('ssh')
rffmpeg_command.append('-tt')
rffmpeg_command.append('-q')
for arg in config['remote_args']:
if arg: