ffmpeg 在 while 循环内使用 find 无意中改变了迭代变量
有人可以向我解释一下这里发生了什么吗?这就是我将我的情况简化为: # make 20 test gifs out of the same source file. for i in {1..20}; do cp -p ../some-random-source-file.gif "${i}.gif"; done # grab, then process them. while read f; do echo "→ $f"; ffmpeg -i "$f" -y -loglevel quiet "same.mp4"; done < <(fin...