metadata parsing for mp4 files is working, next need to work on AAC
git-svn-id: https://svn.musicpd.org/mpd/trunk@270 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
290102fddd
commit
02346f2f1a
|
@ -5,3 +5,5 @@ noinst_HEADERS = mp4ff.h
|
||||||
libmp4ff_la_SOURCES = mp4ff.c mp4atom.c mp4meta.c mp4sample.c mp4util.c \
|
libmp4ff_la_SOURCES = mp4ff.c mp4atom.c mp4meta.c mp4sample.c mp4util.c \
|
||||||
mp4tagupdate.c mp4ff.h mp4ffint.h mp4ff_int_types.h \
|
mp4tagupdate.c mp4ff.h mp4ffint.h mp4ff_int_types.h \
|
||||||
drms.h drms.c drmstables.h
|
drms.h drms.c drmstables.h
|
||||||
|
|
||||||
|
AM_CFLAGS = -DUSE_TAGGING=1
|
||||||
|
|
|
@ -125,4 +125,4 @@ int32_t mp4ff_meta_update(mp4ff_callback_t *f,const mp4ff_metadata_t * data);
|
||||||
}
|
}
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
133
src/tag.c
133
src/tag.c
|
@ -44,6 +44,10 @@
|
||||||
#include <id3tag.h>
|
#include <id3tag.h>
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_FAAD
|
||||||
|
#include <faad.h>
|
||||||
|
#include "mp4ff/mp4ff.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
void printMpdTag(FILE * fp, MpdTag * tag) {
|
void printMpdTag(FILE * fp, MpdTag * tag) {
|
||||||
if(tag->artist) myfprintf(fp,"Artist: %s\n",tag->artist);
|
if(tag->artist) myfprintf(fp,"Artist: %s\n",tag->artist);
|
||||||
|
@ -168,18 +172,129 @@ MpdTag * mp3TagDup(char * utf8file) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_FAAD
|
#ifdef HAVE_FAAD
|
||||||
|
/* copied from FAAD2 frontend */
|
||||||
|
int mp4GetAACTrack(mp4ff_t *infile) {
|
||||||
|
/* find AAC track */
|
||||||
|
int i, rc;
|
||||||
|
int numTracks = mp4ff_total_tracks(infile);
|
||||||
|
|
||||||
|
for (i = 0; i < numTracks; i++) {
|
||||||
|
unsigned char *buff = NULL;
|
||||||
|
int buff_size = 0;
|
||||||
|
mp4AudioSpecificConfig mp4ASC;
|
||||||
|
|
||||||
|
mp4ff_get_decoder_config(infile, i, &buff, &buff_size);
|
||||||
|
|
||||||
|
if (buff) {
|
||||||
|
rc = AudioSpecificConfig(buff, buff_size, &mp4ASC);
|
||||||
|
free(buff);
|
||||||
|
if (rc < 0) continue;
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* can't decode this */
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t mp4ReadCallback(void *user_data, void *buffer, uint32_t length) {
|
||||||
|
return fread(buffer, 1, length, (FILE*)user_data);
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t mp4SeekCallback(void *user_data, uint64_t position) {
|
||||||
|
return fseek((FILE*)user_data, position, SEEK_SET);
|
||||||
|
}
|
||||||
|
|
||||||
|
MpdTag * mp4DataDup(char * utf8file, int * mp4MetadataFound) {
|
||||||
|
MpdTag * ret = NULL;
|
||||||
|
FILE * fh;
|
||||||
|
mp4ff_t * mp4fh;
|
||||||
|
mp4ff_callback_t * cb;
|
||||||
|
int32_t track;
|
||||||
|
int32_t time;
|
||||||
|
int32_t scale;
|
||||||
|
|
||||||
|
*mp4MetadataFound = 0;
|
||||||
|
|
||||||
|
blockSignals();
|
||||||
|
|
||||||
|
fh = fopen(rmp2amp(utf8ToFsCharset(utf8file)),"r");
|
||||||
|
if(!fh) {
|
||||||
|
unblockSignals();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
cb = malloc(sizeof(mp4ff_callback_t));
|
||||||
|
cb->read = mp4ReadCallback;
|
||||||
|
cb->seek = mp4SeekCallback;
|
||||||
|
cb->user_data = fh;
|
||||||
|
|
||||||
|
mp4fh = mp4ff_open_read(cb);
|
||||||
|
if(!mp4fh) {
|
||||||
|
free(cb);
|
||||||
|
fclose(fh);
|
||||||
|
unblockSignals();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
track = mp4GetAACTrack(mp4fh);
|
||||||
|
if(track < 0) {
|
||||||
|
mp4ff_close(mp4fh);
|
||||||
|
fclose(fh);
|
||||||
|
free(cb);
|
||||||
|
unblockSignals();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = newMpdTag();
|
||||||
|
time = mp4ff_get_track_duration_use_offsets(mp4fh,track);
|
||||||
|
scale = mp4ff_time_scale(mp4fh,track);
|
||||||
|
if(scale < 0) {
|
||||||
|
mp4ff_close(mp4fh);
|
||||||
|
fclose(fh);
|
||||||
|
free(cb);
|
||||||
|
freeMpdTag(ret);
|
||||||
|
unblockSignals();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
ret->time = ((float)time)/scale+0.5;
|
||||||
|
|
||||||
|
if(!mp4ff_meta_get_artist(mp4fh,&ret->artist)) {
|
||||||
|
*mp4MetadataFound = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!mp4ff_meta_get_album(mp4fh,&ret->album)) {
|
||||||
|
*mp4MetadataFound = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!mp4ff_meta_get_title(mp4fh,&ret->title)) {
|
||||||
|
*mp4MetadataFound = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!mp4ff_meta_get_track(mp4fh,&ret->track)) {
|
||||||
|
*mp4MetadataFound = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mp4ff_close(mp4fh);
|
||||||
|
fclose(fh);
|
||||||
|
free(cb);
|
||||||
|
unblockSignals();
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
MpdTag * mp4TagDup(char * utf8file) {
|
MpdTag * mp4TagDup(char * utf8file) {
|
||||||
MpdTag * ret = NULL;
|
MpdTag * ret = NULL;
|
||||||
int time;
|
int mp4MetadataFound = 0;
|
||||||
|
|
||||||
#warning implement mp4 tag parsing, this includes using mp4v2 and id3
|
ret = mp4DataDup(utf8file,&mp4MetadataFound);
|
||||||
#warning getMp4TotalTime needs implementing
|
if(!mp4MetadataFound) {
|
||||||
//time = getMp4TotalTime(rmp2amp(utf8ToFsCharset(utf8file)));
|
MpdTag * temp = id3Dup(utf8file);
|
||||||
time = 0;
|
if(temp) {
|
||||||
|
temp->time = ret->time;
|
||||||
if(time>=0) {
|
freeMpdTag(ret);
|
||||||
if(!ret) ret = newMpdTag();
|
ret = temp;
|
||||||
ret->time = time;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue