Created
November 16, 2017 11:26
-
-
Save ptantiku/4a3d6b10994f8e440a9e224f32762dd0 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
#!/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