瀏覽代碼

Embed cover arts into mp3 files from the flacs

master
moex3 1 年之前
父節點
當前提交
7f36a00b66
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: ABC92E00CF59BB7A
共有 1 個檔案被更改,包括 26 行新增0 行删除
  1. +26
    -0
      flac2mp3.pl

+ 26
- 0
flac2mp3.pl 查看文件

@@ -5,6 +5,7 @@ use Getopt::Long;
use File::Find;
use Data::Dumper;
use File::Basename;
use File::Temp qw/ tempfile /;

my $opt_no_genre;
my $opt_comment;
@@ -214,6 +215,31 @@ sub iterFlac {
if ($? != 0) {
exit(1);
}

embedImageFromFlac($flac, $dest);
}

sub embedImageFromFlac {
my $flac = shift;
my $mp3 = shift;

# I can't get the automatic deletion working :c
my (undef, $fname) = tempfile();
# Export image from flac
qx(metaflac --export-picture-to='$fname' -- '$flac');
if ($? != 0) {
# Probably no image
unlink($fname);
return;
}
# Extract mime type too
my $pinfo = qx(metaflac --list --block-type=PICTURE -- '$flac');
$pinfo =~ m/MIME type: (.*)/;
my $mimeType = $1;

# Add image to mp3
qx(mid3v2 -p '${fname}:cover:3:$mimeType' -- '$mp3');
unlink($fname);
}

sub argsToTags {


Loading…
取消
儲存