This guide is primarily targeted at those who need to recursively transcode or remux their media using a shell environment.
Strip all subtitles from input file
# standard
ffmpeg -i inputfile -map 0:v -map 0:a -c:v copy -c:a copy outputfile
# alternatively you can use the '-sn' parameter:
ffmpeg -i inputfile -map 0 -sn -codec copy outputfile
# for loop
