* Log which file has extra-long vorbis comments.
* Gather duration and bitrate information from FLAC files.
This commit is contained in:
@ -263,9 +263,6 @@ readtags(char *path, struct song_metadata *psong, struct stat *stat, char *lang,
|
||||
fname = strrchr(psong->path, '/');
|
||||
psong->basename = fname ? fname + 1 : psong->path;
|
||||
|
||||
// get tag
|
||||
found |= _get_tags(path, psong);
|
||||
|
||||
if(stat)
|
||||
{
|
||||
if(!psong->time_modified)
|
||||
@ -273,6 +270,9 @@ readtags(char *path, struct song_metadata *psong, struct stat *stat, char *lang,
|
||||
psong->file_size = stat->st_size;
|
||||
}
|
||||
|
||||
// get tag
|
||||
found |= _get_tags(path, psong);
|
||||
|
||||
// get fileinfo
|
||||
found |= _get_fileinfo(path, psong);
|
||||
|
||||
|
Reference in New Issue
Block a user