Skip to content

Instantly share code, notes, and snippets.

@ptantiku
Created November 16, 2017 11:26
Show Gist options
  • Save ptantiku/4a3d6b10994f8e440a9e224f32762dd0 to your computer and use it in GitHub Desktop.
Save ptantiku/4a3d6b10994f8e440a9e224f32762dd0 to your computer and use it in GitHub Desktop.
#!/bin/bash
# an answer from https://superuser.com/questions/692990/use-ffmpeg-copy-codec-to-combine-ts-files-into-a-single-mp4
for i in `ls *.ts | sort -V`; do echo "file $i"; done >> mylist.txt
ffmpeg -f concat -i mylist.txt -c copy -bsf:a aac_adtstoasc video.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment