[ffmpeg] Document more formats that are supported for remux/recode

This commit is contained in:
pukkandan
2021-01-28 09:26:50 +05:30
parent 02fd60d305
commit 179122495b
3 changed files with 17 additions and 8 deletions

View File

@@ -402,7 +402,7 @@ class FFmpegVideoRemuxerPP(FFmpegPostProcessor):
else 'already is in target format %s' if sourceext == targetext
else None)
if _skip_msg:
self.to_screen('Not remuxing media file %s - %s' % (path, _skip_msg % sourceext))
self.to_screen('Not remuxing media file %s; %s' % (path, _skip_msg % sourceext))
return [], information
options = ['-c', 'copy', '-map', '0', '-dn']