Skip to content

Instantly share code, notes, and snippets.

@KenshoFujisaki
Last active September 25, 2016 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KenshoFujisaki/42c50e8a4465ca7920a2c45dff229cb8 to your computer and use it in GitHub Desktop.
Save KenshoFujisaki/42c50e8a4465ca7920a2c45dff229cb8 to your computer and use it in GitHub Desktop.
動画をpngに変換(要ffmpeg)
mkdir "%~dp0\%~n1"
ffmpeg -i "%1" -vcodec png -sameq "%~dp0\%~n1\%%d.png"
@KenshoFujisaki
Copy link
Author

KenshoFujisaki commented Sep 25, 2016

本バッチに動画ファイルをドラッグアンドドロップすると,
本バッチを配置しているフォルダに,動画ファイル名(拡張子は除く)のフォルダを自動的に作成し,
同フォルダに1.png,2.png,…のように画像ファイル(png,無劣化)を出力します.

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