dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit cd804108af9ba16de7f0b84cb54106ec63c2e319
parent 4846ee65d89a65d365f215b1a5a8e4f9f60edf23
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 31 Jul 2019 16:57:39 +0200

anythingtogif: quote arguments

Former-commit-id: b677c943777f2d26e5e22cc5843302ede6ad90d3
Diffstat:
Mscripts/anythingtogif | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/anythingtogif b/scripts/anythingtogif @@ -4,5 +4,5 @@ palette="/tmp/palette.png" filters="fps=24,scale=0:-1:flags=lanczos" -ffmpeg -v warning -i $1 -vf "$filters,palettegen" -y $palette -ffmpeg -v warning -i $1 -i $palette -lavfi "$filters [x]; [x][1:v] paletteuse" -y $2 +ffmpeg -v warning -i "$1" -vf "$filters,palettegen" -y "$palette" +ffmpeg -v warning -i "$1" -i "$palette" -lavfi "$filters [x]; [x][1:v] paletteuse" -y "$2"