Skip to content

Instantly share code, notes, and snippets.

@LittleKey
Created August 30, 2016 17:32
Show Gist options
  • Save LittleKey/35b72e6a8802119785f9efe7a7a7fada to your computer and use it in GitHub Desktop.
Save LittleKey/35b72e6a8802119785f9efe7a7a7fada to your computer and use it in GitHub Desktop.
simple split mpeg4 media file ffmpeg script on windows
cd /d "%~dp0"
ffmpeg.exe -i "%~1" -acodec copy -vcodec copy -to 01:00:00.00 -f mp4 "%~dpn1"-first.mp4
ffmpeg.exe -ss 01:00:00.00 -i "%~1" -acodec copy -vcodec copy -f mp4 "%~dpn1"-second.mp4
PAUSE
@LittleKey
Copy link
Author

LittleKey commented Aug 30, 2016

切一个大于4g的小黄片的时候随手写的。。:)
120

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment