V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
Rodanna
V2EX  ›  Apple

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

  •  
  •   Rodanna · 2017-03-14 20:09:44 +08:00 · 2341 次点击
    这是一个创建于 2593 天前的主题,其中的信息可能已经有所发展或是发生改变。

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

    11 条回复    2017-03-15 14:28:19 +08:00
    Zhengqing
        1
    Zhengqing  
       2017-03-14 21:14:40 +08:00 via iPhone   ❤️ 1
    有一款软件叫 meta 编辑音乐的
    Zhengqing
        2
    Zhengqing  
       2017-03-14 21:14:54 +08:00 via iPhone
    编辑 id3 标签的
    minamike
        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
    Rodanna
        4
    Rodanna  
    OP
       2017-03-15 01:03:29 +08:00
    @Zhengqing 谢谢,下了个试用版感觉不错
    Rodanna
        5
    Rodanna  
    OP
       2017-03-15 01:03:37 +08:00
    @minamike 谢谢
    abirdcanfly
        6
    abirdcanfly  
       2017-03-15 08:25:21 +08:00 via iPhone
    mp3tag
    z273703837
        7
    z273703837  
       2017-03-15 09:17:08 +08:00
    MP3tag
    spongebobsun
        8
    spongebobsun  
       2017-03-15 09:43:00 +08:00 via iPhone
    mp3tag +1s

    话说楼主为啥要去除…
    hackpro
        9
    hackpro  
       2017-03-15 10:55:13 +08:00
    Rodanna
        10
    Rodanna  
    OP
       2017-03-15 14:19:41 +08:00
    @spongebobsun 放到车里听,音乐文件比较大,大概 5g ,去掉 100 多 M 的封面后能稍微省点空间
    spongebobsun
        11
    spongebobsun  
       2017-03-15 14:28:19 +08:00
    @Rodanna 哦哦哦原来如此…我还一直在补全媒体库里没有封面的东西(笑哭)看来还是我 too young 了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1310 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 17:36 · PVG 01:36 · LAX 10:36 · JFK 13:36
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.