3
4

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.

FLACファイルからアルバムアートを取り出す方法

Last updated at Posted at 2017-12-19

FLACファイルにはCUEシートやアルバムアートを埋め込むことができるが、対応していないプレイヤー向けにそれらを取り出したい時がある。

FLACエンコーダーの準備

FLAC公式サイトから最新のエンコーダー(v1.3.2)をダウンロードし、適当な場所に展開する。
ここではC:\Programs\flac-1.3.2-winに展開したものとする。

アルバムアートを取り出す

Cmd
rem 64bitOS向け
cd C:\Programs\flac-1.3.2-win\win64
metaflac.exe --export-picture-to={画像ファイル.jpg} {FLACファイル}

画像ファイルは形式が何で格納されているかわからないため、JPEGで表示できなければPNGに変えてみたりすること。
IrfanViewを使うと、拡張子が間違っていれば自動で修正してくれるのでおすすめ。

参考

3
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?