I am transcoding some video files that include eia_608 subtitles (Stream #0:50(eng): Subtitle: eia_608 (c608 / 0x38303663)) which I want to exclude. Is there a way to automatically copy all the other subtitles, but exclude these?
I tried using map -XXX
but can't figure out how to specify a type.
ffmpeg -i Original.mp4 -map 0 -map -0:s:eia_608 -c:a copy -c:v copy -codec copy -t 120 ffmpeg.mp4
This code results in the error Invalid stream specifier: s:eia_608
as it is expecting a stream specifier and not the subtitle type.