diff --git a/lib/ffmpeg.js b/lib/ffmpeg.js index 37cf49df..9a090cf0 100644 --- a/lib/ffmpeg.js +++ b/lib/ffmpeg.js @@ -175,7 +175,7 @@ exports.ffprobe = function ffprobe(filename, cb) { child.stderr.on("data", function (data) { stderr += data; - if (stderr.match(/the tls connection was non-properly terminated|http error 416/i)) { + if (stderr.match(/the tls connection was non-properly terminated/i)) { fflog("Killing ffprobe for " + filename + " due to TLS error"); childErr = new Error("Remote server closed connection unexpectedly"); child.kill("SIGKILL");