python-video-converter icon indicating copy to clipboard operation
python-video-converter copied to clipboard

Add support for subtitles

Open mstrelan opened this issue 12 years ago • 3 comments

It would be good if this script would allow converting subtitles also. Example ffmpeg usage:

C:\ffmpeg.exe -i "D:\input.mkv" -vcodec copy -acodec copy -scodec mov_text -map 0 D:\output.mp4

MP4 output requires the mov_text codec, but other containers could use copy instead.

The option -map 0 also copies ALL streams instead of just the first of each. Perhaps you want to expand upon that as well as per http://ffmpeg.org/ffmpeg.html#Subtitle-options_003a so users can copy all subtitle streams.

mstrelan avatar Feb 19 '13 07:02 mstrelan

maybe this helps #33

cytec avatar Sep 30 '13 11:09 cytec

Since #33 is now merged, I believe all of this now works, right @cytec?

senko avatar Jan 09 '14 11:01 senko

yes, map is implemented as well as subtitle codecs

cytec avatar Jan 09 '14 12:01 cytec