LinuxがMP3にタグを付けるためにどのアプリケーションを推奨しますか? Windowsでは、Tag&Renameを使っていましたが、とても気に入りました。それはワインの下でうまく機能しますが、私はネイティブで実行されるものを望みます。
主にmid3v2
を使用します。 UbuntuではSudo apt-get install python-mutagen
、OS XではSudo easy_install pip;Sudo pip install mutagen
を使用してインストールできます。
$ mid3v2 -h
Usage: mid3v2 [OPTION] [FILE]...
Mutagen-based replacement for id3lib's id3v2.
Options:
--version show program's version number and exit
-h, --help show this help message and exit
-v, --verbose be verbose
-q, --quiet be quiet (the default)
-e, --escape enable interpretation of backslash escapes
-f, --list-frames Display all possible frames for ID3v2.3 / ID3v2.4
--list-frames-v2.2 Display all possible frames for ID3v2.2
-L, --list-genres Lists all ID3v1 genres
-l, --list Lists the tag(s) on the open(s)
--list-raw Lists the tag(s) on the open(s) in Python format
-d, --delete-v2 Deletes ID3v2 tags
-s, --delete-v1 Deletes ID3v1 tags
-D, --delete-all Deletes ID3v1 and ID3v2 tags
--delete-frames=FID1,FID2,...
Delete the given frames
-C, --convert Convert tags to ID3v2.4 (any editing will do this)
-a "ARTIST", --artist="ARTIST"
Set the artist information
-A "ALBUM", --album="ALBUM"
Set the album title information
-t "SONG", --song="SONG"
Set the song title information
-c "DESCRIPTION":"COMMENT":"LANGUAGE", --comment="DESCRIPTION":"COMMENT":"LANGUAGE"
Set the comment information
-g "GENRE", --genre="GENRE"
Set the genre or genre number
-y YYYY[-MM-DD], --year=YYYY[-MM-DD], --date=YYYY[-MM-DD]
Set the year/date
-T "num/num", --track="num/num"
Set the track number/(optional) total tracks
You can set the value for any ID3v2 frame by using '--' and then a frame ID.
For example:
mid3v2 --TIT3 "Monkey!" file.mp3
would set the "Subtitle/Description" frame to "Monkey!".
Any editing operation will cause the ID3 tag to be upgraded to ID3v2.4.
id3v2
およびid3tag
はUnicodeをサポートせず、id3tool
およびmp3info
はID3v2をサポートしません。
Ex Falsoを使用しています。 QuodLibet音楽プレーヤーと一緒にインストールされたので、試してみました。
私はそれを単一のファイル、ファイルのバッチで使用しました...それはかなり直感的で、何よりも非常にうまく機能します。
私はこのスレッドを見つけ、id3toolを使用することにしました。私は非常に軽量なツールにのみ興味があり、コマンドラインは問題ありませんでした。重量のあるGUIを多用するツールが原因でシステムが乱雑にならないようにする。
Linux Mintでのインストールは非常に簡単でした。
Sudo apt-get install id3tool
私が覚えている限り、それは追加のライブラリや何かを必要としませんでした。利用可能なオプションの完全なリストを取得するには:
man id3tool
Mp3ファイルの現在のメタデータを表示するには:
id3tool <filename.mp3>
これは、かなり少数のmp3を更新するために使用したコマンドです。
id3tool -t "<song title>" -a "<album name>" -r "<artist name>" -y "<year>" -c <track number, no quotes, just the number, like 1> <filename.mp3>
これを行った後、私はミュージックライブラリを再スキャンするようBansheeに指示したところ、「不明」カテゴリのファイルはなくなりました。このヒントを提供してくれたstrangeronyourtrainに感謝します。
私はかなり前から Picard の熱心なユーザーでした。本当にしっかりしていると感じる唯一のクロスプラットフォームのタガー。 MusicBrainzの巨大な音楽データベースを忘れないでください。
puddletag と呼ばれるこの小さなプログラムを発見しました。 Tag&Renameほど素晴らしいものではありませんが、十分に近いです。
website から:
puddletagは、Windowsプログラム、Mp3tagに似たGNU/Linux用のオーディオタグエディター(主に作成)です。 GNU/Linuxのほとんどのタガーとは異なり、スプレッドシートのようなレイアウトを使用しているため、手動で編集するすべてのタグが表示され、簡単に編集できます。
ファイル名からのタグ情報の抽出、パターンと基本的なタグ編集を使用したタグに基づくファイル名の変更など、通常のタグエディター機能がサポートされています。
次に、テキストの置換、トリミング、大文字小文字の変換などを実行できる関数があります。アクションを使用すると、反復的なタスクを自動化できます。 Amazon(カバーアートを含む)、Discogs(カバーアートも!)、FreeDB、MusicBrainzを使用してWeb検索を行うこともサポートされています。まだまだありますが、コンマの割り当てに達しました。
サポートされている形式:ID3v1、ID3v2(mp3)、MP4(mp4、m4aなど)、VorbisComments(ogg、flac)、Musepack(mpc)、Monkey’s Audio(.ape)、WavPack(wv)。
lltag もお勧めします。
コマンドラインで動作し、かなり簡単で高速です。 CDDBもサポートしています。
私はeyeD3が好きです。
しかし、python pipからインストールします。aptからではありません。aptは現在0.6バージョンをインストールしますが、pipは最新のものをインストールします。ドキュメントはこちら: https://eyed3.readthedocs.io/en/ latest / 。eyeD3には優れたドキュメントがあるので、簡単に開始できます。また、便利なプラグインもたくさんあります-ぜひお試しください!
$ pip install eyeD3
#!/bin/bash
for i in *.mp3 ; do
resto=$(echo "${i}" | sed 's/.mp3$//')
mid3v2 -t "${resto}" "${i}"
echo "${i}"
done