diff options
author | katherine <shmibs@users.noreply.github.com> | 2017-03-24 04:31:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 04:31:52 -0700 |
commit | 94bb19ee2e39b25eeea556c85b0f30092fa34a29 (patch) | |
tree | a196ed8f24c3ca7ea93d2ccd2017b8da22bfd793 | |
parent | 454e722ac096b4849972b0cdaf339ba8574d9958 (diff) | |
download | make-gif-94bb19ee2e39b25eeea556c85b0f30092fa34a29.tar.gz |
add some example usages to readme
-rw-r--r-- | Readme.md | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -14,10 +14,31 @@ subtitles, various dithering algorithms, cropping, and post-optimisation (via just clone and run `make-gif -h` to get started! +examples +======== + +some example usages and their outputs: + +`make-gif -o -s 36:18 -t 3 菊次郎の夏.mkv out.gif` + +![default](examples/default.gif) + +`make-gif -or -s 36:18 -t 3 -c 64 -d bayer2 菊次郎の夏.mkv out.gif` + +![c-64_d-bayer2_r](examples/c-64_d-bayer2_r.gif) + +`make-gif -o -s 36:18 -t 3 -c 8 -d bayer5 -f 15 -w 320 菊次郎の夏.mkv out.gif` + +![c-8_d-bayer5_f-15](examples/c-8_d-bayer5_f-15_w-320.gif) + +`make-gif -o -s 16:21 -t 3.5 -b 0 'Christiane F.mkv' out.gif` + +![subtitles](examples/subtitles.gif) + dependencies ============ -in addition to being run via zsh, make-gif makes use the following external +in addition to being run via zsh, make-gif makes use of the following external commands: * **required**: `ffmpeg`, `ffprobe`, `grep` |