3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iTunes ディレクトリ(アーティスト一覧)(mp4 メタ情報)

Last updated at Posted at 2016-02-18

こんにちは。
iTunes ディレクトリ(アーティスト一覧)」に関して、今度は mp4 メタ情報を読み取る方法で一覧を作って見ました。mp4info コマンドを利用しました。

$ find ~/Music -name "*m4a" -print0 | xargs -0 mp4info | grep -E ^\ Artist: | sed -e 's/ Artist: //' | ruby -pe '$_.gsub!(/\s{0,1}(_|,|;|:|-|&|and|And)\s/, "\n")' |sort|uniq
Karl Böhm
Karl Leister
Karl Richter
Karl Suske

mp4info コマンドは、homebrew でも導入できます。

$ brew info mp4v2
mp4v2: stable 2.0.0 (bottled)
Read, create, and modify MP4 files
https://code.google.com/p/mp4v2/
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?