]> git.sesse.net Git - vlc/blob - modules/demux/playlist/playlist.c
* playlist.c, asx.c: add new --playlist-skip-ads option (default enabled) to skip...
[vlc] / modules / demux / playlist / playlist.c
1 /*****************************************************************************
2  * playlist.c :  Playlist import module
3  *****************************************************************************
4  * Copyright (C) 2004 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
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc_demux.h>
29 #include <vlc_playlist.h>
30
31 #include "playlist.h"
32
33 /*****************************************************************************
34  * Module descriptor
35  *****************************************************************************/
36 #define AUTOSTART_TEXT N_( "Auto start" )
37 #define AUTOSTART_LONGTEXT N_( "Automatically start playing the playlist " \
38                 "content once it's loaded." )
39
40 #define SHOW_ADULT_TEXT N_( "Show shoutcast adult content" )
41 #define SHOW_ADULT_LONGTEXT N_( "Show NC17 rated video streams when " \
42                 "using shoutcast video playlists." )
43
44 #define SKIP_ADS_TEXT N_( "Skip ads" )
45 #define SKIP_ADS_LONGTEXT N_( "Use playlist options usually used to prevent " \
46     "ads skipping to detect ads and prevent adding them to the playlist." )
47
48 vlc_module_begin();
49     add_shortcut( "playlist" );
50     set_category( CAT_INPUT );
51     set_subcategory( SUBCAT_INPUT_DEMUX );
52
53     add_bool( "playlist-autostart", 1, NULL,
54               AUTOSTART_TEXT, AUTOSTART_LONGTEXT, VLC_FALSE );
55
56     add_integer( "parent-item", 0, NULL, NULL, NULL, VLC_TRUE );
57         change_internal();
58
59     add_bool( "playlist-skip-ads", 1, NULL,
60               SKIP_ADS_TEXT, SKIP_ADS_LONGTEXT, VLC_FALSE );
61
62     set_shortname( _("Playlist") );
63     set_description( _("Playlist") );
64     add_submodule();
65         set_description( _("M3U playlist import") );
66         add_shortcut( "m3u-open" );
67         set_capability( "demux2", 10 );
68         set_callbacks( E_(Import_M3U), E_(Close_M3U) );
69     add_submodule();
70         set_description( _("PLS playlist import") );
71         add_shortcut( "pls-open" );
72         set_capability( "demux2", 10 );
73         set_callbacks( E_(Import_PLS), E_(Close_PLS) );
74     add_submodule();
75         set_description( _("B4S playlist import") );
76         add_shortcut( "b4s-open" );
77         add_shortcut( "shout-b4s" );
78         set_capability( "demux2", 10 );
79         set_callbacks( E_(Import_B4S), E_(Close_B4S) );
80     add_submodule();
81         set_description( _("DVB playlist import") );
82         add_shortcut( "dvb-open" );
83         set_capability( "demux2", 10 );
84         set_callbacks( E_(Import_DVB), E_(Close_DVB) );
85     add_submodule();
86         set_description( _("Podcast parser") );
87         add_shortcut( "podcast" );
88         set_capability( "demux2", 10 );
89         set_callbacks( E_(Import_podcast), E_(Close_podcast) );
90     add_submodule();
91         set_description( _("XSPF playlist import") );
92         add_shortcut( "xspf-open" );
93         set_capability( "demux2", 10 );
94         set_callbacks( E_(Import_xspf),E_(Close_xspf) );
95     add_submodule();
96         set_description( _("New winamp 5.2 shoutcast import") );
97         add_shortcut( "shout-winamp" );
98         set_capability( "demux2", 10 );
99         set_callbacks( E_(Import_Shoutcast), E_(Close_Shoutcast) );
100         add_bool( "shoutcast-show-adult", VLC_FALSE, NULL,
101                    SHOW_ADULT_TEXT, SHOW_ADULT_LONGTEXT, VLC_FALSE );
102     add_submodule();
103         set_description( _("ASX playlist import") );
104         add_shortcut( "asx-open" );
105         set_capability( "demux2", 10 );
106         set_callbacks( E_(Import_ASX), E_(Close_ASX) );
107     add_submodule();
108         set_description( _("Kasenna MediaBase parser") );
109         add_shortcut( "sgimb" );
110         set_capability( "demux2", 10 );
111         set_callbacks( E_(Import_SGIMB), E_(Close_SGIMB) );
112     add_submodule();
113         set_description( _("QuickTime Media Link importer") );
114         add_shortcut( "qtl" );
115         set_capability( "demux2", 10 );
116         set_callbacks( E_(Import_QTL), E_(Close_QTL) );
117     add_submodule();
118         set_description( _("Google Video Playlist importer") );
119         add_shortcut( "gvp" );
120         set_capability( "demux2", 10 );
121         set_callbacks( E_(Import_GVP), E_(Close_GVP) );
122     add_submodule();
123         set_description( _("Dummy ifo demux") );
124         set_capability( "demux2", 12 );
125         set_callbacks( E_(Import_IFO), E_(Close_IFO) );
126 vlc_module_end();
127
128
129 /**
130  * Find directory part of the path to the playlist file, in case of
131  * relative paths inside
132  */
133 char *E_(FindPrefix)( demux_t *p_demux )
134 {
135     char *psz_name;
136     char *psz_path = strdup( p_demux->psz_path );
137
138 #ifndef WIN32
139     psz_name = strrchr( psz_path, '/' );
140 #else
141     psz_name = strrchr( psz_path, '\\' );
142     if( !psz_name ) psz_name = strrchr( psz_path, '/' );
143 #endif
144     if( psz_name ) psz_name[1] = '\0';
145     else *psz_path = '\0';
146
147     return psz_path;
148 }
149
150 /**
151  * Add the directory part of the playlist file to the start of the
152  * mrl, if the mrl is a relative file path
153  */
154 char *E_(ProcessMRL)( char *psz_mrl, char *psz_prefix )
155 {
156     /* Check for a protocol name.
157      * for URL, we should look for "://"
158      * for MRL (Media Resource Locator) ([[<access>][/<demux>]:][<source>]),
159      * we should look for ":", so we end up looking simply for ":"
160      * PB: on some file systems, ':' are valid characters though */
161
162     /* Simple cases first */
163     if( !psz_mrl || !*psz_mrl ) return NULL;
164     if( !psz_prefix || !*psz_prefix ) return strdup( psz_mrl );
165
166     /* Check if the line specifies an absolute path */
167     if( *psz_mrl == '/' || *psz_mrl == '\\' ) return strdup( psz_mrl );
168
169     /* Check if the line specifies an mrl/url
170      * (and on win32, contains a drive letter) */
171     if( strchr( psz_mrl, ':' ) ) return strdup( psz_mrl );
172
173     /* This a relative path, prepend the prefix */
174     asprintf( &psz_mrl, "%s%s", psz_prefix, psz_mrl );
175     return psz_mrl;
176 }