Skip to content
Snippets Groups Projects
Verified Commit 177c2252 authored by dos's avatar dos
Browse files

encode-mpg: Correctly handle arguments with spaces

parent 882a0361
Branches
Tags
1 merge request!288encode-mpg: Correctly handle arguments with spaces
Pipeline #7662 passed
...@@ -5,6 +5,6 @@ if (( $# != 2 )); then ...@@ -5,6 +5,6 @@ if (( $# != 2 )); then
exit exit
fi fi
ffmpeg -i $1 -vf scale=128:96 -c:v mpeg1video -b:v 96k -ac 1 -c:a mp2 -format mpeg -b:a 64k -ar 48000 -r 24 $2 ffmpeg -i "$1" -vf scale=128:96 -c:v mpeg1video -b:v 96k -ac 1 -c:a mp2 -format mpeg -b:a 64k -ar 48000 -r 24 "$2"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment