Merge branch 'patch-1' of https://github.com/Jonatan6/voidrice into Jonatan6-patch-1
This commit is contained in:
commit
e7b6d4d211
1 changed files with 3 additions and 1 deletions
|
@ -12,6 +12,7 @@ cache="${XDG_CACHE_HOME:-$HOME/.cache}/slider"
|
||||||
while getopts "hvrpi:c:a:o:d:f:t:e:x:" o; do case "${o}" in
|
while getopts "hvrpi:c:a:o:d:f:t:e:x:" o; do case "${o}" in
|
||||||
c) bgc="$OPTARG" ;;
|
c) bgc="$OPTARG" ;;
|
||||||
t) fgc="$OPTARG" ;;
|
t) fgc="$OPTARG" ;;
|
||||||
|
f) font="$OPTARG" ;;
|
||||||
i) file="$OPTARG" ;;
|
i) file="$OPTARG" ;;
|
||||||
a) audio="$OPTARG" ;;
|
a) audio="$OPTARG" ;;
|
||||||
o) outfile="$OPTARG" ;;
|
o) outfile="$OPTARG" ;;
|
||||||
|
@ -34,6 +35,7 @@ while getopts "hvrpi:c:a:o:d:f:t:e:x:" o; do case "${o}" in
|
||||||
-c color of background (use html names, black is default)
|
-c color of background (use html names, black is default)
|
||||||
-t text color for text slides (white is default)
|
-t text color for text slides (white is default)
|
||||||
-s text font size for text slides (150 is default)
|
-s text font size for text slides (150 is default)
|
||||||
|
-f text font for text slides (FreeSans is default)
|
||||||
-o output video file
|
-o output video file
|
||||||
-e if no audio given, the time in seconds that the last slide will be shown (5 is default)
|
-e if no audio given, the time in seconds that the last slide will be shown (5 is default)
|
||||||
-x resolution (1920x1080 is default)
|
-x resolution (1920x1080 is default)
|
||||||
|
@ -96,7 +98,7 @@ do
|
||||||
convert -size "${res:-1920x1080}" canvas:"${bgc:-black}" -gravity center "$content" -resize 1920x1080 -composite "$prepdir/$base"
|
convert -size "${res:-1920x1080}" canvas:"${bgc:-black}" -gravity center "$content" -resize 1920x1080 -composite "$prepdir/$base"
|
||||||
else
|
else
|
||||||
{ [ ! -f "$prepdir/$base" ] || [ -n "${redo+x}" ] ;} &&
|
{ [ ! -f "$prepdir/$base" ] || [ -n "${redo+x}" ] ;} &&
|
||||||
convert -size "${res:-1920x1080}" -background "${bgc:-black}" -fill "${fgc:-white}" -pointsize "${ppt:-150}" -gravity center label:"$content" "$prepdir/$base"
|
convert -size "${res:-1920x1080}" -background "${bgc:-black}" -fill "${fgc:-white}" -font "${font:-FreeSans}" -pointsize "${ppt:-150}" -gravity center label:"$content" "$prepdir/$base"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If the first line, do not write yet.
|
# If the first line, do not write yet.
|
||||||
|
|
Loading…
Reference in a new issue