Skip to content

Instantly share code, notes, and snippets.

@kandrejevs
Created January 24, 2018 22:35
Show Gist options
  • Select an option

  • Save kandrejevs/9c6657ca2a8c3f9835b00c350195abfb to your computer and use it in GitHub Desktop.

Select an option

Save kandrejevs/9c6657ca2a8c3f9835b00c350195abfb to your computer and use it in GitHub Desktop.
Batch script for merging GoPro videos in current dir
for /r %%i in (*.mp4) do echo file '%%i'>> list.txt
ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment