Created
December 5, 2021 19:10
-
-
Save stesee/c80a42830a7c244e09943d4df6844e24 to your computer and use it in GitHub Desktop.
Remuxing TS Videos to Mp4 using powershell
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
dir *.ts | foreach-object { $newname = $_.Basename + ".mp4"; ffmpeg -i "$_" -f mp4 -c:v copy -c:a copy $newname } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment