Last active
February 2, 2025 03:37
-
-
Save Apihplays/c085dc05d672635c5afeb62bcedb362c to your computer and use it in GitHub Desktop.
Convert .ts to .mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for %%f in (*.ts) do call ffmpeg -i "%%~f" -vcodec copy -acodec copy "%%~nf.mp4" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put this file into directory containing .ts file . Once open it will automatically convert all .ts file in directory to .mp4 file.