Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个 mp3 文件:
和他们的艺术品:
如何在批处理模式下将图像作为标签添加到 mp3 文件(1 到 1;2 到 2;3 到 3)?
使用eyeD3也许你需要一个循环:
eyeD3
n=1; while [ $n -le 3 ]; do eyeD3 add-image $n.image.png:ILLUSTRATION $n.audio.mp3 let n++ done
请注意,您的文件名应编号
1.image.png, 2.image.png, 1.audio.mp3 ..... ect.