这些音乐不想导入 itunes ,有没有什么软件可以批量一键去除的?
1
Zhengqing 2017-03-14 21:14:40 +08:00 via iPhone 1
有一款软件叫 meta 编辑音乐的
|
2
Zhengqing 2017-03-14 21:14:54 +08:00 via iPhone
编辑 id3 标签的
|
3
minamike 2017-03-14 21:30:48 +08:00 1
打开 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 |
6
abirdcanfly 2017-03-15 08:25:21 +08:00 via iPhone
mp3tag
|
7
z273703837 2017-03-15 09:17:08 +08:00
MP3tag
|
8
spongebobsun 2017-03-15 09:43:00 +08:00 via iPhone
mp3tag +1s
话说楼主为啥要去除… |
9
hackpro 2017-03-15 10:55:13 +08:00
|
10
Rodanna OP @spongebobsun 放到车里听,音乐文件比较大,大概 5g ,去掉 100 多 M 的封面后能稍微省点空间
|
11
spongebobsun 2017-03-15 14:28:19 +08:00
@Rodanna 哦哦哦原来如此…我还一直在补全媒体库里没有封面的东西(笑哭)看来还是我 too young 了
|