Skip to content

Instantly share code, notes, and snippets.

@hansgafriedzal
Created August 1, 2020 12:51
Show Gist options
  • Save hansgafriedzal/7e90eaefcb87990a97879c952557e46f to your computer and use it in GitHub Desktop.
Save hansgafriedzal/7e90eaefcb87990a97879c952557e46f to your computer and use it in GitHub Desktop.
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