]> git.sesse.net Git - vlc/blob - modules/access/cdda/cdda.c
7d67c1641d14bf871b7fdbe29d41fbab66ed2c45
[vlc] / modules / access / cdda / cdda.c
1 /*****************************************************************************
2  * cdda.c : CD digital audio input module for vlc using libcdio
3  *****************************************************************************
4  * Copyright (C) 2000, 2003, 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Rocky Bernstein <rocky@panix.com>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #include "callback.h"
29 #include "access.h"
30
31 /*****************************************************************************
32  * Module descriptor
33  *****************************************************************************/
34
35 /*****************************************************************************
36  * Option help text
37  *****************************************************************************/
38
39 #define DEBUG_LONGTEXT N_( \
40     "This integer when viewed in binary is a debugging mask\n" \
41     "meta info          1\n" \
42     "events             2\n" \
43     "MRL                4\n" \
44     "external call      8\n" \
45     "all calls (0x10)  16\n" \
46     "LSN       (0x20)  32\n" \
47     "seek      (0x40)  64\n" \
48     "libcdio   (0x80) 128\n" \
49     "libcddb  (0x100) 256\n" )
50
51 #define CACHING_LONGTEXT N_( \
52     "Allows you to modify the default caching value for CDDA streams. This " \
53     "value should be set in millisecond units." )
54
55 #define BLOCKS_PER_READ_LONGTEXT N_( \
56     "Allows you to specify how many CD blocks to get on a single CD read. " \
57     "Generally on newer/faster CDs, this increases throughput at the " \
58     "expense of a little more memory usage and initial delay. SCSI-MMC " \
59     "limitations generally don't allow for more than 25 blocks per access.")
60
61 #define CDDB_TITLE_FMT_LONGTEXT N_( \
62 "Format used in the GUI Playlist Title. Similar to the Unix date \n" \
63 "Format specifiers that start with a percent sign. Specifiers are: \n" \
64 "   %a : The artist (for the album)\n" \
65 "   %A : The album information\n" \
66 "   %C : Category\n" \
67 "   %e : The extended data (for a track)\n" \
68 "   %I : CDDB disk ID\n" \
69 "   %G : Genre\n" \
70 "   %M : The current MRL\n" \
71 "   %m : The CD-DA Media Catalog Number (MCN)\n" \
72 "   %n : The number of tracks on the CD\n" \
73 "   %p : The artist/performer/composer in the track\n" \
74 "   %T : The track number\n" \
75 "   %s : Number of seconds in this track \n" \
76 "   %t : The track title or MRL if no title\n" \
77 "   %Y : The year 19xx or 20xx\n" \
78 "   %% : a % \n")
79
80 #define TITLE_FMT_LONGTEXT N_( \
81 "Format used in the GUI Playlist Title. Similar to the Unix date \n" \
82 "Format specifiers that start with a percent sign. Specifiers are: \n" \
83 "   %M : The current MRL\n" \
84 "   %m : The CD-DA Media Catalog Number (MCN)\n" \
85 "   %n : The number of tracks on the CD\n" \
86 "   %T : The track number\n" \
87 "   %s : Number of seconds in this track \n" \
88 "   %t : The track title or MRL if no title\n" \
89 "   %% : a % \n")
90
91 /*****************************************************************************
92  * Module descriptor
93  *****************************************************************************/
94
95 vlc_module_begin();
96     add_usage_hint( N_("cddax://[device-or-file][@[T]track]") );
97     set_description( _("Compact Disc Digital Audio (CD-DA) input") );
98     set_capability( "access2", 10 /* compare with priority of cdda */ );
99     set_callbacks( E_(CDDAOpen), E_(CDDAClose) );
100     add_shortcut( "cddax" );
101     add_shortcut( "cd" );
102
103     /* Configuration options */
104     add_integer ( MODULE_STRING "-debug", 0, E_(CDDADebugCB),
105                   N_("If nonzero, this gives additional debug information."),
106                   DEBUG_LONGTEXT, VLC_TRUE );
107
108     add_integer( MODULE_STRING "-caching",
109                  DEFAULT_PTS_DELAY / MILLISECONDS_PER_SEC, NULL,
110                  N_("Caching value in microseconds"),
111                  CACHING_LONGTEXT, VLC_TRUE );
112
113     add_integer( MODULE_STRING "-blocks-per-read",
114                  DEFAULT_BLOCKS_PER_READ, E_(CDDABlocksPerReadCB),
115                  N_("Number of blocks per CD read"),
116                  BLOCKS_PER_READ_LONGTEXT, VLC_TRUE );
117
118     add_string( MODULE_STRING "-author-format",
119                 "%A - %a %C %I", NULL,
120                 N_("Format to use in playlist \"author\" field"),
121                 TITLE_FMT_LONGTEXT, VLC_TRUE );
122
123     add_string( MODULE_STRING "-title-format",
124                 "Track %T. %t", NULL,
125                 N_("Format to use in playlist \"title\" field when no CDDB"),
126                 TITLE_FMT_LONGTEXT, VLC_TRUE );
127
128 #ifdef HAVE_LIBCDDB
129     add_string( MODULE_STRING "-cddb-title-format",
130                 "Track %T. %t - %p", NULL,
131                 N_("Format to use in playlist \"title\" field when using CDDB"),
132                 CDDB_TITLE_FMT_LONGTEXT, VLC_TRUE );
133
134     add_bool( MODULE_STRING "-cddb-enabled", 1, E_(CDDBEnabledCB),
135               N_("Do CDDB lookups?"),
136               N_("If set, lookup CD-DA track information using the CDDB "
137                  "protocol"),
138               VLC_FALSE );
139
140     add_string( MODULE_STRING "-cddb-server", "freedb.freedb.org", NULL,
141                 N_("CDDB server"),
142                 N_( "Contact this CDDB server look up CD-DA information"),
143                 VLC_TRUE );
144
145     add_integer( MODULE_STRING "-cddb-port", 8880, NULL,
146                  N_("CDDB server port"),
147                  N_("CDDB server uses this port number to communicate on"),
148                  VLC_TRUE );
149
150     add_string( MODULE_STRING "-cddb-email", "me@home", NULL,
151                 N_("email address reported to CDDB server"),
152                 N_("email address reported to CDDB server"),
153                 VLC_TRUE );
154
155     add_bool( MODULE_STRING "-cddb-enable-cache", VLC_TRUE, NULL,
156               N_("Cache CDDB lookups?"),
157               N_("If set cache CDDB information about this CD"),
158               VLC_FALSE );
159
160     add_bool( MODULE_STRING "-cddb-httpd", VLC_FALSE, NULL,
161               N_("Contact CDDB via the HTTP protocol?"),
162               N_("If set, the CDDB server gets information via the CDDB HTTP "
163                  "protocol"),
164               VLC_TRUE );
165
166     add_integer( MODULE_STRING "-cddb-timeout", 10, NULL,
167                  N_("CDDB server timeout"),
168                  N_("Time (in seconds) to wait for a response from the "
169                     "CDDB server"),
170                  VLC_FALSE );
171
172     add_string( MODULE_STRING "-cddb-cachedir", "~/.cddbslave", NULL,
173                 N_("Directory to cache CDDB requests"),
174                 N_("Directory to cache CDDB requests"),
175                 VLC_TRUE );
176
177     add_bool( MODULE_STRING "-cdtext-prefer", VLC_TRUE, E_(CDTextPreferCB),
178               N_("Prefer CD-Text info to CDDB info?"),
179               N_("If set, CD-Text information will be preferred "
180                  "to CDDB information when both are available"),
181               VLC_FALSE );
182
183 #endif
184
185     add_bool( MODULE_STRING "-cdtext-enabled", VLC_TRUE, E_(CDTextEnabledCB),
186               N_("Do CD-Text lookups?"),
187               N_("If set, get CD-Text information"),
188               VLC_FALSE );
189
190 vlc_module_end();