寻找一个支持图片的mp3和ogg的命令行标注工具

寻找一个支持图片的mp3和ogg的命令行标注工具

我正在搜索一个命令行标记工具,它支持 ogg 和 mp3 标记,并允许将图片添加到标记中。

目前我使用lltag但不支持图片。dagger是我以前使用的工具,但它也缺乏图片支持。

答案1

对于 MP3,请尝试眼睛D3, 在发现所以回答。

  --add-image=IMG_PATH:TYPE[:DESCRIPTION]
                      Add an image to the tag.  The description and type
                      optional, but when used, both ':' delimiters must be
                      present.  The type MUST be an string that corresponds
                      to one given with --list-image-types. If the IMG_PATH
                      value is empty the APIC frame with TYPE is removed.

对于奥格来说,有前言。它不支持开箱即用地加载图像文件,但 Vorbis 中的封面艺术标签只是以 base64 编码的图像文件,存储在 COVERART 标签及其 COVERARTMIME 中的 mimetype 中 - 类似于

coverart=$(base64 $jpegfile)
vorbiscomment -a -t 'COVERART=$coverart' -t 'COVERARTMIME=image/jpeg' $infile $outfile

答案2

标签编辑器支持各种各样的格式,并且同时具有图形用户界面命令行界面界面。

tageditor set \
    album="${album}" \
    artist="${artist}" \
    title="${title}" \
    genre="${genre}" \
    --files "${file}"

答案3

https://github.com/quodlibet/mutagen提供mid3v2.它比经典版慢,id3v2但运行绝对可靠。

相关内容