jnphgs / BatchMOVtoGIF

multiple file conversion (.mov to .gif) with ffmpeg and python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BatchMOVtoGIF

Usage

Multiple file conversion on macOS

  1. Change directory to working directory.
  2. Put MOV files (ex. something.mov) to src directory.
  3. Run python script. python convert.py
  4. All MOV files inside ./src will be converted and saved to ./dst

Options

Actual command for conversion with ffmpeg is following code.

command = "ffmpeg -i " + source + " -r 10 -s 960x540 -loop -1 " + dist

About

multiple file conversion (.mov to .gif) with ffmpeg and python.

License:MIT License


Languages

Language:Python 100.0%