The Subtitle Track Remover produces the ffmpeg command that strips every subtitle stream out of a container while keeping the video and audio bit-for-bit identical. Enter a Video file and an Output file and the tool returns a one-line command built around -c copy -sn, ready to copy or download as .txt.
Unwanted subtitle tracks cause more trouble than people expect. Downloaded files often carry forced or machine-translated tracks that auto-enable on smart TVs, some hardware players choke on an unusual subtitle codec inside an MP4, and delivery specs frequently forbid extra streams outright, so a stray track means a rejected asset.
The mechanics are deliberately minimal. -c copy tells ffmpeg to remux rather than re-encode, so the exact video and audio packets from the source are written into the new container, while -sn disables subtitle stream selection so none are carried over. Nothing is decoded, which makes the operation I/O bound and far faster than any transcode. Note that this removes soft tracks only - captions already burned into the picture are part of the frames and cannot be stripped this way.
The generator never opens your file: it composes a string locally in your browser and nothing is uploaded.