Advertisement
Guest User

Untitled

a guest
Nov 25th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. set folder=G:\gopro\muu
  2.  
  3. for /r "%folder%" %%G in (*.MP4) do (
  4. echo file '%%~G' >> concat.txt
  5. echo duration 0.3 >> concat.txt
  6. )
  7.  
  8.  
  9. ffmpeg -safe 0 -f concat -i concat.txt -codec copy "vid.mp4"
  10. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement