回答例†
for f in *.spc; do set -x; ffmpeg -hide_banner -loglevel error -y -i "$f" -t "$(espctag -gnL "$f")" "${f%.spc}.wav"; set +x; done
- spcファイルの中には、永久にループ再生する前提のものがあり、変換後にとてつもなくデカいファイルが生成されることがある
Some spc files are supposed to be played in a loop forever, and after conversion, a huge file may be generated.