Tiny-tools: Difference between revisions
From Habitat: Giardino
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
= [http://ffmpeg.org/ Ffmpeg] = | = [http://ffmpeg.org/ Ffmpeg] = | ||
FFmpeg provides simple usage to convert video such as .mkv, .mp3, .mp4, .mov to .gif. | |||
Install Ffmpeg on Mac OS | Install Ffmpeg on Mac OS | ||
brew install ffmpeg | brew install ffmpeg | ||
== .mov to .gif == | |||
ffmpeg -i <input.video> out.gif | |||
The file size of out.gif is sometimes a bit too big. In such a case, it's better to use -r option to specify frame rate. | |||
ffmpeg -i my-sample.mov -r 10 out.gif |
Revision as of 20:32, 21 April 2022
- Glitchy 3bit dither demo: https://jkirchartz.com/Glitchy3bitdither/
- https://constraint.systems/
Install Curl on Mac OS
brew install curl
Also to compress images for web use.
Install Imagemagick on Mac OS
brew install imagemagick
FFmpeg provides simple usage to convert video such as .mkv, .mp3, .mp4, .mov to .gif.
Install Ffmpeg on Mac OS
brew install ffmpeg
.mov to .gif
ffmpeg -i <input.video> out.gif
The file size of out.gif is sometimes a bit too big. In such a case, it's better to use -r option to specify frame rate.
ffmpeg -i my-sample.mov -r 10 out.gif