我通过谷歌发现了这个bash脚本,并希望稍微修改它以从桌面文件夹调用indie生成jpg缩略图。我所有的mts文件都是按照他们的确切时间命名的,并且安装了ffmpeg。
这是原始剧本:
for f in *.mov; do
ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mov}.jpg";
done
我把它更改为:
for f in Desktop/indie/*.mts; do
ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mts}.jpg";
done
我希望有人可以告诉我哪里出错了(我的终端输出只是说没有这样的文件)。
由于