0

我有一个非常简单的 shell 脚本,在完成前两项工作后,它只是停下来坐在那里,什么都不做,第三项工作似乎无关紧要,如果我切换顺序等,它不会完成它。

任何想法都会很棒...

这是我的shell脚本

for f in "$@"
do
name=$(basename "$f")
dir=$(dirname "$f")
/opt/local/bin/ffmpeg -i "$f" -y -b 250k -deinterlace -vcodec vp8 -acodec libvorbis -nostdin "$dir/webm/${name%.*}.webm"
/opt/local/bin/ffmpeg -i "$f" -y -b 250k -strict experimental -deinterlace -vcodec h264 -acodec aac -nostdin "$dir/mp4/${name%.*}.mp4"
/opt/local/bin/ffmpeg -i "$f" -y -ss 00:00:15.000 -deinterlace -vcodec mjpeg -vframes 1 -an -f rawvideo -s 720x480 "$dir/img/${name%.*}.jpg"
done
4

1 回答 1

1

你的最后ffmpeg一行需要-nostdin

从 Shell 脚本 /bin/sh 运行 FFMPEG

于 2013-02-14T23:30:15.463 回答