* Fix a crash bug when generating a friendly name if the hostname does not contain a dot. * Implement folder browsing by media type. * Add initial DLNA-compliant music album art support. (Using a <=160x160 cover.jpg, or folder.jpg, etc)
59 lines
1.1 KiB
C
59 lines
1.1 KiB
C
/* Metadata extraction
|
|
*
|
|
* Project : minidlna
|
|
* Website : http://sourceforge.net/projects/minidlna/
|
|
* Author : Justin Maggard
|
|
* Copyright (c) 2008 Justin Maggard
|
|
* This software is subject to the conditions detailed in the
|
|
* LICENCE file provided in this distribution.
|
|
* */
|
|
#ifndef __METADATA_H__
|
|
#define __METADATA_H__
|
|
|
|
typedef struct metadata_s {
|
|
char *title;
|
|
char *artist;
|
|
char *album;
|
|
char *genre;
|
|
char *comment;
|
|
char *channels;
|
|
char *bitrate;
|
|
char *frequency;
|
|
char *bps;
|
|
char *resolution;
|
|
char *duration;
|
|
char *mime;
|
|
char *dlna_pn;
|
|
} metadata_t;
|
|
|
|
typedef struct tsinfo_s {
|
|
int x;
|
|
int packet_size;
|
|
} tsinfo_t;
|
|
|
|
typedef enum {
|
|
NONE,
|
|
EMPTY,
|
|
VALID
|
|
} ts_timestamp_t;
|
|
|
|
int
|
|
ends_with(const char * haystack, const char * needle);
|
|
|
|
char *
|
|
modifyString(char * string, const char * before, const char * after, short like);
|
|
|
|
sqlite_int64
|
|
GetFolderMetadata(const char * name, const char * artist, const char * genre, const char * album_art);
|
|
|
|
sqlite_int64
|
|
GetAudioMetadata(const char * path, char * name);
|
|
|
|
sqlite_int64
|
|
GetImageMetadata(const char * path, char * name);
|
|
|
|
sqlite_int64
|
|
GetVideoMetadata(const char * path, char * name);
|
|
|
|
#endif
|