fix remux

This commit is contained in:
j 2023-11-20 20:58:58 +00:00
parent de818c4204
commit 4794c0f68a
2 changed files with 14 additions and 6 deletions

View File

@ -733,18 +733,23 @@ def remux_stream(src, dst):
cmd = [
settings.FFMPEG,
'-nostats', '-loglevel', 'error',
'-map_metadata', '-1', '-sn',
'-i', src,
'-map_metadata', '-1', '-sn',
] + video + [
] + audio + [
'-movflags', '+faststart',
dst
]
print(cmd)
p = subprocess.Popen(cmd, stdin=subprocess.PIPE,
stdout=open('/dev/null', 'w'),
stderr=open('/dev/null', 'w'),
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
close_fds=True)
p.wait()
stdout, stderr = p.communicate()
if stderr:
logger.error("failed to remux %s %s", cmd, stderr)
return False, stderr
else:
return True, None

View File

@ -821,6 +821,9 @@ class Stream(models.Model):
done = True
elif self.file.can_remux():
ok, error = extract.remux_stream(media, target)
if ok:
self.available = True
self.save()
done = True
if not done:
ok, error = extract.stream(media, target, self.name(), info, flags=self.flags)