Created
August 1, 2020 12:51
-
-
Save hansgafriedzal/7e90eaefcb87990a97879c952557e46f to your computer and use it in GitHub Desktop.
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 *.m2ts ` | |
| %{ "file '$($_.Name)'"} ` | |
| Out-File mylist.txt -Encoding ascii | |
# copy video | |
# transcode audio to aac | |
# - copying pcm_bluray will produce audio error | |
# - transcoding to pcm_s16be will make the stream unreadable | |
ffmpeg -f concat -safe 0 -i mylist.txt -c:v copy -c:a aac output.ts -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment