]> git.sesse.net Git - vlc/blob - modules/meta_engine/taglib.cpp
* Remove some unneeded complexity in playlist and directory
[vlc] / modules / meta_engine / taglib.cpp
1 /*****************************************************************************
2  * taglib.cpp: Taglib tag parser/writer
3  *****************************************************************************
4  * Copyright (C) 2003-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 #include <vlc/vlc.h>
24 #include <vlc_playlist.h>
25 #include <vlc/input.h>
26 #include <vlc_meta.h>
27
28 #include <fileref.h>
29 #include <tag.h>
30 #include <id3v2tag.h>
31 #include <mpegfile.h>
32 #include <flacfile.h>
33
34 static int  ReadMeta    ( vlc_object_t * );
35 static int  DownloadArt ( vlc_object_t * );
36 static int  WriteMeta   ( vlc_object_t * );
37
38 vlc_module_begin();
39     set_capability( "meta reader", 1000 );
40     set_callbacks( ReadMeta, NULL );
41     add_submodule();
42         set_capability( "art downloader", 50 );
43         set_callbacks( DownloadArt, NULL );
44     add_submodule();
45         set_capability( "meta writer", 50 );
46         set_callbacks( WriteMeta, NULL );
47 vlc_module_end();
48
49 static bool checkID3Image( const TagLib::ID3v2::Tag *tag )
50 {
51     TagLib::ID3v2::FrameList l = tag->frameListMap()[ "APIC" ];
52     return !l.isEmpty();
53 }
54
55 /* Try detecting embedded art */
56 static void DetectImage( TagLib::FileRef f, vlc_meta_t *p_meta )
57 {
58     if( TagLib::MPEG::File *mpeg =
59                dynamic_cast<TagLib::MPEG::File *>(f.file() ) )
60     {
61         if( mpeg->ID3v2Tag() && checkID3Image( mpeg->ID3v2Tag() ) )
62             vlc_meta_SetArtURL( p_meta, "APIC" );
63     }
64     else if( TagLib::FLAC::File *flac =
65              dynamic_cast<TagLib::FLAC::File *>(f.file() ) )
66     {
67         if( flac->ID3v2Tag() && checkID3Image( flac->ID3v2Tag() ) )
68             vlc_meta_SetArtURL( p_meta, "APIC" );
69     }
70 #if 0
71 /* This needs special additions to taglib */
72  * else if( TagLib::MP4::File *mp4 =
73                dynamic_cast<TagLib::MP4::File *>( f.file() ) )
74     {
75         TagLib::MP4::Tag *mp4tag =
76                 dynamic_cast<TagLib::MP4::Tag *>( mp4->tag() );
77         if( mp4tag && mp4tag->cover().size() )
78             vlc_meta_SetArtURL( p_meta, "MP4C" );
79     }
80 #endif
81 }
82
83 static int ReadMeta( vlc_object_t *p_this )
84 {
85     demux_t *p_demux = (demux_t *)p_this;
86
87     if( !strncmp( p_demux->psz_access, "file", 4 ) )
88     {
89         if( !p_demux->p_private )
90             p_demux->p_private = (void*)vlc_meta_New();
91         TagLib::FileRef f( p_demux->psz_path );
92         if( !f.isNull() && f.tag() && !f.tag()->isEmpty() )
93         {
94             TagLib::Tag *tag = f.tag();
95             vlc_meta_t *p_meta = (vlc_meta_t *)(p_demux->p_private );
96
97 #define SET( foo, bar ) vlc_meta_Set##foo( p_meta, tag->bar ().toCString(true))
98             SET( Title, title );
99             SET( Artist, artist );
100             SET( Album, album );
101 //            SET( Comment, comment );
102             SET( Genre, genre );
103 //            SET( Year, year ); Gra, this is an int, need to convert
104 //            SET( Tracknum , track ); Same
105 #undef SET
106             DetectImage( f, p_meta );
107
108             return VLC_SUCCESS;
109         }
110     }
111     return VLC_EGENERIC;
112 }
113
114 static int WriteMeta( vlc_object_t *p_this )
115 {
116     playlist_t *p_playlist = (playlist_t *)p_this;
117     meta_export_t *p_export = (meta_export_t *)p_playlist->p_private;
118     input_item_t *p_item = p_export->p_item;
119
120     TagLib::FileRef f( p_export->psz_file );
121     if( !f.isNull() && f.tag() )
122     {
123         TagLib::Tag *tag = f.tag();
124         tag->setArtist( p_item->p_meta->psz_artist );
125         f.save();
126         return VLC_SUCCESS;
127     }
128     return VLC_EGENERIC;
129 }
130
131 static int DownloadArt( vlc_object_t *p_this )
132 {
133     /* We need to be passed the file name
134      * Fetch the thing from the file, save it to the cache folder
135      */
136     return VLC_EGENERIC;
137 }