2007-02-24 20:36:27 +00:00
|
|
|
//
|
|
|
|
// TagLibMetadataReader.m
|
|
|
|
// TagLib
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/24/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "TagLibMetadataReader.h"
|
2015-01-07 12:09:29 +00:00
|
|
|
#import <taglib/fileref.h>
|
|
|
|
#import <taglib/tag.h>
|
2021-02-07 01:48:49 +00:00
|
|
|
#import <taglib/mpcproperties.h>
|
|
|
|
#import <taglib/audioproperties.h>
|
2015-01-07 12:09:29 +00:00
|
|
|
#import <taglib/mpeg/mpegfile.h>
|
|
|
|
#import <taglib/mp4/mp4file.h>
|
2021-02-07 01:48:49 +00:00
|
|
|
#import <taglib/xiphcomment.h>
|
|
|
|
#import <taglib/vorbisfile.h>
|
2021-07-03 22:31:26 +00:00
|
|
|
#import <taglib/flacfile.h>
|
2015-01-07 12:09:29 +00:00
|
|
|
#import <taglib/mpeg/id3v2/id3v2tag.h>
|
|
|
|
#import <taglib/mpeg/id3v2/frames/attachedpictureframe.h>
|
2007-02-24 20:36:27 +00:00
|
|
|
|
|
|
|
@implementation TagLibMetadataReader
|
|
|
|
|
2007-10-09 01:20:46 +00:00
|
|
|
+ (NSDictionary *)metadataForURL:(NSURL *)url
|
2007-02-24 20:36:27 +00:00
|
|
|
{
|
2009-03-08 20:04:09 +00:00
|
|
|
if (![url isFileURL]) {
|
|
|
|
return [NSDictionary dictionary];
|
|
|
|
}
|
2008-11-21 15:14:23 +00:00
|
|
|
|
2009-03-08 20:04:09 +00:00
|
|
|
NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
|
2007-02-24 20:36:27 +00:00
|
|
|
|
2021-02-07 01:48:49 +00:00
|
|
|
// if ( !*TagLib::ascii_encoding ) {
|
|
|
|
// NSStringEncoding enc = [NSString defaultCStringEncoding];
|
|
|
|
// CFStringEncoding cfenc = CFStringConvertNSStringEncodingToEncoding(enc);
|
|
|
|
// NSString *ref = (NSString *)CFStringConvertEncodingToIANACharSetName(cfenc);
|
|
|
|
// UInt32 cp = CFStringConvertEncodingToWindowsCodepage(cfenc);
|
|
|
|
//
|
|
|
|
// // Most tags are using windows codepage, so remap OS X codepage to Windows one.
|
|
|
|
//
|
|
|
|
// static struct {
|
|
|
|
// UInt32 from, to;
|
|
|
|
// } codepage_remaps[] = {
|
|
|
|
// { 10001, 932 }, // Japanese Shift-JIS
|
|
|
|
// { 10002, 950 }, // Traditional Chinese
|
|
|
|
// { 10003, 949 }, // Korean
|
|
|
|
// { 10004, 1256 }, // Arabic
|
|
|
|
// { 10005, 1255 }, // Hebrew
|
|
|
|
// { 10006, 1253 }, // Greek
|
|
|
|
// { 10007, 1251 }, // Cyrillic
|
|
|
|
// { 10008, 936 }, // Simplified Chinese
|
|
|
|
// { 10029, 1250 }, // Central European (latin2)
|
|
|
|
// };
|
|
|
|
//
|
|
|
|
// int i;
|
|
|
|
// int max = sizeof(codepage_remaps)/sizeof(codepage_remaps[0]);
|
|
|
|
// for ( i=0; i<max; i++ )
|
|
|
|
// if ( codepage_remaps[i].from == cp )
|
|
|
|
// break;
|
|
|
|
// if ( i < max )
|
|
|
|
// sprintf(TagLib::ascii_encoding, "windows-%d", codepage_remaps[i].to);
|
|
|
|
// else
|
|
|
|
// strcpy(TagLib::ascii_encoding, [ref UTF8String]);
|
|
|
|
//
|
|
|
|
// }
|
2015-01-15 06:02:24 +00:00
|
|
|
|
|
|
|
|
2008-03-03 01:55:25 +00:00
|
|
|
TagLib::FileRef f((const char *)[[url path] UTF8String], false);
|
|
|
|
if (!f.isNull())
|
2007-02-24 20:36:27 +00:00
|
|
|
{
|
2008-03-03 01:55:25 +00:00
|
|
|
const TagLib::Tag *tag = f.tag();
|
2007-02-24 20:36:27 +00:00
|
|
|
|
|
|
|
if (tag)
|
|
|
|
{
|
2021-10-02 02:18:42 +00:00
|
|
|
TagLib::String artist, albumartist, title, album, genre, comment;
|
2009-03-08 20:04:09 +00:00
|
|
|
int year, track;
|
2021-02-07 03:50:28 +00:00
|
|
|
float rgAlbumGain, rgAlbumPeak, rgTrackGain, rgTrackPeak;
|
2009-03-08 20:04:09 +00:00
|
|
|
|
|
|
|
artist = tag->artist();
|
2021-10-02 02:18:42 +00:00
|
|
|
albumartist = tag->albumartist();
|
2009-03-08 20:04:09 +00:00
|
|
|
title = tag->title();;
|
|
|
|
album = tag->album();
|
|
|
|
genre = tag->genre();
|
|
|
|
comment = tag->comment();
|
2007-02-24 20:36:27 +00:00
|
|
|
|
2009-03-08 20:04:09 +00:00
|
|
|
year = tag->year();
|
|
|
|
[dict setObject:[NSNumber numberWithInt:year] forKey:@"year"];
|
2007-02-24 20:36:27 +00:00
|
|
|
|
2009-03-08 20:04:09 +00:00
|
|
|
track = tag->track();
|
|
|
|
[dict setObject:[NSNumber numberWithInt:track] forKey:@"track"];
|
2021-02-07 03:50:28 +00:00
|
|
|
|
|
|
|
rgAlbumGain = tag->rgAlbumGain();
|
|
|
|
rgAlbumPeak = tag->rgAlbumPeak();
|
|
|
|
rgTrackGain = tag->rgTrackGain();
|
|
|
|
rgTrackPeak = tag->rgTrackPeak();
|
|
|
|
[dict setObject:[NSNumber numberWithFloat:rgAlbumGain] forKey:@"replayGainAlbumGain"];
|
|
|
|
[dict setObject:[NSNumber numberWithFloat:rgAlbumPeak] forKey:@"replayGainAlbumPeak"];
|
|
|
|
[dict setObject:[NSNumber numberWithFloat:rgTrackGain] forKey:@"replayGainTrackGain"];
|
|
|
|
[dict setObject:[NSNumber numberWithFloat:rgTrackPeak] forKey:@"replayGainTrackPeak"];
|
2007-02-24 20:36:27 +00:00
|
|
|
|
2021-02-07 01:48:49 +00:00
|
|
|
if (!artist.isEmpty())
|
2009-03-08 20:04:09 +00:00
|
|
|
[dict setObject:[NSString stringWithUTF8String:artist.toCString(true)] forKey:@"artist"];
|
2021-10-02 02:18:42 +00:00
|
|
|
|
|
|
|
if (!albumartist.isEmpty())
|
|
|
|
[dict setObject:[NSString stringWithUTF8String:albumartist.toCString(true)] forKey:@"albumartist"];
|
2008-03-03 01:55:25 +00:00
|
|
|
|
2021-02-07 01:48:49 +00:00
|
|
|
if (!album.isEmpty())
|
2009-03-08 20:04:09 +00:00
|
|
|
[dict setObject:[NSString stringWithUTF8String:album.toCString(true)] forKey:@"album"];
|
2007-02-24 20:36:27 +00:00
|
|
|
|
2021-02-07 01:48:49 +00:00
|
|
|
if (!title.isEmpty())
|
2009-03-08 20:04:09 +00:00
|
|
|
[dict setObject:[NSString stringWithUTF8String:title.toCString(true)] forKey:@"title"];
|
|
|
|
|
2021-02-07 01:48:49 +00:00
|
|
|
if (!genre.isEmpty())
|
2009-03-08 20:04:09 +00:00
|
|
|
[dict setObject:[NSString stringWithUTF8String:genre.toCString(true)] forKey:@"genre"];
|
|
|
|
}
|
2021-02-07 01:48:49 +00:00
|
|
|
|
2013-10-09 20:53:13 +00:00
|
|
|
// Try to load the image.
|
|
|
|
NSData * image = nil;
|
|
|
|
|
2013-10-12 20:51:36 +00:00
|
|
|
// Try to load the image.
|
2013-10-09 20:53:13 +00:00
|
|
|
// WARNING: HACK
|
|
|
|
TagLib::MPEG::File *mf = dynamic_cast<TagLib::MPEG::File *>(f.file());
|
|
|
|
if (mf) {
|
|
|
|
TagLib::ID3v2::Tag *tag = mf->ID3v2Tag();
|
|
|
|
if (tag) {
|
|
|
|
TagLib::ID3v2::FrameList pictures = mf->ID3v2Tag()->frameListMap()["APIC"];
|
|
|
|
if (!pictures.isEmpty()) {
|
|
|
|
TagLib::ID3v2::AttachedPictureFrame *pic = static_cast<TagLib::ID3v2::AttachedPictureFrame *>(pictures.front());
|
2013-10-12 20:51:36 +00:00
|
|
|
|
|
|
|
image = [NSData dataWithBytes:pic->picture().data() length:pic->picture().size()];
|
|
|
|
}
|
|
|
|
}
|
2009-03-08 20:04:09 +00:00
|
|
|
}
|
|
|
|
|
2013-10-12 20:51:36 +00:00
|
|
|
|
|
|
|
// D-D-D-DOUBLE HACK!
|
|
|
|
TagLib::MP4::File *m4f = dynamic_cast<TagLib::MP4::File *>(f.file());
|
|
|
|
if (m4f) {
|
|
|
|
TagLib::MP4::Tag *tag = m4f->tag();
|
|
|
|
if (tag) {
|
2021-02-07 01:48:49 +00:00
|
|
|
auto covr = tag->item("covr");
|
|
|
|
if (covr.isValid()) {
|
|
|
|
auto coverArtList = covr.toCoverArtList();
|
2013-10-12 20:51:36 +00:00
|
|
|
if (!coverArtList.isEmpty()) {
|
|
|
|
TagLib::MP4::CoverArt coverArt = coverArtList.front();
|
|
|
|
image = [NSData dataWithBytes:coverArt.data().data() length:coverArt.data().size()];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-07 01:48:49 +00:00
|
|
|
TagLib::Ogg::Vorbis::File *vorbis = dynamic_cast<TagLib::Ogg::Vorbis::File*>(f.file());
|
|
|
|
if (vorbis) {
|
|
|
|
TagLib::Ogg::XiphComment *tag = vorbis->tag();
|
|
|
|
if (tag) {
|
|
|
|
auto list = tag->pictureList();
|
|
|
|
if (!list.isEmpty()) {
|
|
|
|
// Just get the first image for now.
|
|
|
|
TagLib::FLAC::Picture* coverArt = list.front();
|
|
|
|
if (coverArt) {
|
|
|
|
// Look into TagLib::FLAC::Picture::Type for type description.
|
|
|
|
NSLog(@"Loading image metadata from Ogg Vorbis, type = %d",
|
|
|
|
static_cast<int>(coverArt->type()));
|
|
|
|
image = [NSData dataWithBytes:coverArt->data().data()
|
|
|
|
length:coverArt->data().size()];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-03 22:31:26 +00:00
|
|
|
TagLib::FLAC::File *flac = dynamic_cast<TagLib::FLAC::File*>(f.file());
|
|
|
|
if (flac) {
|
|
|
|
auto list = flac->pictureList();
|
|
|
|
if (!list.isEmpty()) {
|
|
|
|
// Just get the first image for now.
|
|
|
|
TagLib::FLAC::Picture* coverArt = list.front();
|
|
|
|
if (coverArt) {
|
|
|
|
// Look into TagLib::FLAC::Picture::Type for type description.
|
|
|
|
NSLog(@"Loading image metadata from FLAC, type = %d",
|
|
|
|
static_cast<int>(coverArt->type()));
|
|
|
|
image = [NSData dataWithBytes:coverArt->data().data()
|
|
|
|
length:coverArt->data().size()];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-12 20:51:36 +00:00
|
|
|
if (nil == image) {
|
2010-04-05 17:40:17 +00:00
|
|
|
// Try to load image from external file
|
|
|
|
|
|
|
|
NSString *path = [[url path] stringByDeletingLastPathComponent];
|
|
|
|
|
|
|
|
// Gather list of candidate image files
|
|
|
|
|
2013-10-09 20:53:13 +00:00
|
|
|
NSArray *fileNames = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:nil];
|
2021-02-07 00:52:32 +00:00
|
|
|
NSArray *types = @[@"jpg", @"jpeg", @"png"];
|
|
|
|
NSArray *imageFileNames = [fileNames pathsMatchingExtensions:types];
|
2013-10-09 20:53:13 +00:00
|
|
|
|
2013-10-10 08:44:45 +00:00
|
|
|
for (NSString *fileName in imageFileNames) {
|
2013-10-09 20:53:13 +00:00
|
|
|
if ([TagLibMetadataReader isCoverFile:fileName]) {
|
|
|
|
image = [NSData dataWithContentsOfFile:[path stringByAppendingPathComponent:fileName]];
|
|
|
|
break;
|
2010-04-05 17:40:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-08 20:04:09 +00:00
|
|
|
if (nil != image) {
|
|
|
|
[dict setObject:image forKey:@"albumArt"];
|
2007-02-24 20:36:27 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-08 20:04:09 +00:00
|
|
|
|
2016-05-05 20:05:39 +00:00
|
|
|
return dict;
|
2007-02-24 20:36:27 +00:00
|
|
|
}
|
|
|
|
|
2010-04-05 17:40:17 +00:00
|
|
|
+ (BOOL)isCoverFile:(NSString *)fileName
|
|
|
|
{
|
2013-10-10 08:44:45 +00:00
|
|
|
for (NSString *coverFileName in [TagLibMetadataReader coverNames]) {
|
2010-04-05 17:40:17 +00:00
|
|
|
if ([[[[fileName lastPathComponent] stringByDeletingPathExtension] lowercaseString] hasSuffix:coverFileName]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSArray *)coverNames
|
|
|
|
{
|
|
|
|
return [NSArray arrayWithObjects:@"cover", @"folder", @"album", @"front", nil];
|
|
|
|
}
|
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
+ (NSArray *)fileTypes
|
|
|
|
{
|
|
|
|
//May be a way to get a list of supported formats
|
2020-03-22 07:16:13 +00:00
|
|
|
return [NSArray arrayWithObjects:@"ape", @"asf", @"wma", @"ogg", @"opus", @"mpc", @"flac", @"m4a", @"mp3", @"tak", @"ac3", @"apl", @"dts", @"dtshd", @"tta", @"wav", @"aif", @"aiff", @"wv", @"wvp", nil];
|
2007-10-14 18:56:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSArray *)mimeTypes
|
|
|
|
{
|
2020-03-22 07:16:13 +00:00
|
|
|
return [NSArray arrayWithObjects:@"audio/x-ape", @"audio/x-ms-wma", @"application/ogg", @"application/x-ogg", @"audio/x-vorbis+ogg", @"audio/x-musepack", @"audio/x-flac", @"audio/x-m4a", @"audio/mpeg", @"audio/x-mp3", @"audio/x-tak", @"audio/x-ac3", @"audio/x-apl", @"audio/x-dts", @"audio/x-dtshd", @"audio/x-tta", @"audio/wav", @"audio/aiff", @"audio/x-wavpack", nil];
|
2007-02-24 20:36:27 +00:00
|
|
|
}
|
|
|
|
|
2015-04-13 07:39:24 +00:00
|
|
|
+ (float)priority
|
|
|
|
{
|
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
@end
|