use " instead of '

This commit is contained in:
Uwe Steinmann 2023-10-14 08:50:48 +02:00
parent 2b3d127808
commit 69cab29178

View File

@ -136,8 +136,8 @@ video/mp4
This will take 12th frame of a video and converts into a png. It requires
ffmpeg to be installed.
convert -resize %wx '%f[12]' 'png:%o'
convert -resize %wx "%f[12]" "png:%o"
audio/mpeg
sox '%f' -n spectrogram -x 600 -Y 550 -r -l -o - | convert -resize %wx png:- 'png:%o'
sox "%f" -n spectrogram -x 600 -Y 550 -r -l -o - | convert -resize %wx png:- "png:%o"