Tags: Implement unsynced lyrics in FFmpeg plugin
Signed-off-by: Christopher Snowhill <kode54@gmail.com>xcode15
parent
190d6959fd
commit
593d7d155a
|
@ -575,6 +575,9 @@ static void setDictionary(NSMutableDictionary *dict, NSString *tag, NSString *va
|
||||||
} else {
|
} else {
|
||||||
setDictionary(_metaDict, @"title", _title);
|
setDictionary(_metaDict, @"title", _title);
|
||||||
}
|
}
|
||||||
|
} else if(!strcasecmp(tag->key, "unsynced lyrics") ||
|
||||||
|
!strcasecmp(tag->key, "lyrics")) {
|
||||||
|
setDictionary(_metaDict, @"unsyncedlyrics", guess_encoding_of_string(tag->value));
|
||||||
} else if(!strcasecmp(tag->key, "icy-url")) {
|
} else if(!strcasecmp(tag->key, "icy-url")) {
|
||||||
setDictionary(_metaDict, @"album", guess_encoding_of_string(tag->value));
|
setDictionary(_metaDict, @"album", guess_encoding_of_string(tag->value));
|
||||||
} else if(!strcasecmp(tag->key, "icy-genre")) {
|
} else if(!strcasecmp(tag->key, "icy-genre")) {
|
||||||
|
|
Loading…
Reference in New Issue