有没有什么软件可以把 Finder 里的音乐批量去除封面?

2017-03-14 20:09:44 +08:00
 Rodanna

这些音乐不想导入 itunes ,有没有什么软件可以批量一键去除的?

2351 次点击
所在节点    Apple
11 条回复
Zhengqing
2017-03-14 21:14:40 +08:00
有一款软件叫 meta 编辑音乐的
Zhengqing
2017-03-14 21:14:54 +08:00
编辑 id3 标签的
minamike
2017-03-14 21:30:48 +08:00
打开 iTunes 时按 option 新建一个 library 然后导入你的音乐 然后全选 然后运行一下 Apple Script
```
tell application "iTunes"
set fx to fixed indexing
set fixed indexing to true
copy (a reference to (get view of front window)) to thisPlaylist
if item 1 of selection exists then -- test if there is a selection...
set using_selection to true
copy (count selection's items) to idx
else -- its the whole playlist
set selectedTracks to (get a reference to thisPlaylist)
set using_selection to false
copy (count thisPlaylist's tracks) to idx
end if

-- later...

repeat with j from 1 to idx
if using_selection then
copy item j of selection to thisTrack
else
copy track j of selectedTracks to thisTrack
end if

delete artworks of thisTrack

end repeat
set fixed indexing to fx
end tell
```
from http://dougscripts.com/itunes/scripts/ss.php?sp=removeartwork
Rodanna
2017-03-15 01:03:29 +08:00
@Zhengqing 谢谢,下了个试用版感觉不错
Rodanna
2017-03-15 01:03:37 +08:00
@minamike 谢谢
abirdcanfly
2017-03-15 08:25:21 +08:00
mp3tag
z273703837
2017-03-15 09:17:08 +08:00
MP3tag
spongebobsun
2017-03-15 09:43:00 +08:00
mp3tag +1s

话说楼主为啥要去除…
hackpro
2017-03-15 10:55:13 +08:00
Rodanna
2017-03-15 14:19:41 +08:00
@spongebobsun 放到车里听,音乐文件比较大,大概 5g ,去掉 100 多 M 的封面后能稍微省点空间
spongebobsun
2017-03-15 14:28:19 +08:00
@Rodanna 哦哦哦原来如此…我还一直在补全媒体库里没有封面的东西(笑哭)看来还是我 too young 了

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/347462

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX