]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
Qt4 - Sout: add a file mask on the known muxers.
[vlc] / modules / gui / qt4 / dialogs / sout.cpp
1 /*****************************************************************************
2  * sout.cpp : Stream output dialog ( old-style )
3  ****************************************************************************
4  * Copyright ( C ) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Jean-François Massol <jf.massol -at- gmail.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * ( at your option ) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include "dialogs/sout.hpp"
27 #include "qt4.hpp"
28 #include <vlc_streaming.h>
29
30 #include <iostream>
31 #include <QString>
32 #include <QFileDialog>
33
34 SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf,
35                      bool _transcode_only ) : QVLCDialog( parent,  _p_intf )
36 {
37     setWindowTitle( qtr( "Stream output" ) );
38
39     b_transcode_only = _transcode_only;
40
41     /* UI stuff */
42     ui.setupUi( this );
43
44 /* ADD HERE for new profiles */
45 #define ADD_PROFILE( name, shortname ) ui.profileBox->addItem( qtr( name ), QVariant( QString( shortname ) ) );
46     ADD_PROFILE( "Custom" , "Custom" )
47     ADD_PROFILE( "IPod (mp4/aac)", "IPod" )
48     ADD_PROFILE( "XBox", "XBox" )
49     ADD_PROFILE( "Windows (wmv/asf)", "Windows" )
50     ADD_PROFILE( "PSP", "PSP")
51     ADD_PROFILE( "GSM", "GSM" )
52
53 #define ADD_VCODEC( name, fourcc ) ui.vCodecBox->addItem( name, QVariant( fourcc ) );
54     ADD_VCODEC( "MPEG-1", "mp1v" )
55     ADD_VCODEC( "MPEG-2", "mp2v" )
56     ADD_VCODEC( "MPEG-4", "mp4v" )
57     ADD_VCODEC( "DIVX 1" , "DIV1" )
58     ADD_VCODEC( "DIVX 2" , "DIV1" )
59     ADD_VCODEC( "DIVX 3" , "DIV1" )
60     ADD_VCODEC( "H-263", "H263" )
61     ADD_VCODEC( "H-264", "h264" )
62     ADD_VCODEC( "WMV1", "WMV1" )
63     ADD_VCODEC( "WMV2" , "WMV2" )
64     ADD_VCODEC( "M-JPEG", "MJPG" )
65     ADD_VCODEC( "Theora", "theo" )
66
67 #define ADD_ACODEC( name, fourcc ) ui.aCodecBox->addItem( name, QVariant( fourcc ) );
68     ADD_ACODEC( "MPEG Audio", "mpga" )
69     ADD_ACODEC( "MP3", "mp3" )
70     ADD_ACODEC( "MPEG 4 Audio ( AAC )", "mp4a" )
71     ADD_ACODEC( "A52/AC-3", "a52" )
72     ADD_ACODEC( "Vorbis", "vorb" )
73     ADD_ACODEC( "Flac", "flac" )
74     ADD_ACODEC( "Speex", "spx" )
75     ADD_ACODEC( "WAV", "s16l" )
76     ADD_ACODEC( "WMA", "wma" )
77
78 #define ADD_SCALING( factor ) ui.vScaleBox->addItem( factor );
79     ADD_SCALING( "0.25" )
80     ADD_SCALING( "0.5" )
81     ADD_SCALING( "0.75" )
82     ADD_SCALING( "1" )
83     ADD_SCALING( "1.25" )
84     ADD_SCALING( "1.5" )
85     ADD_SCALING( "1.75" )
86     ADD_SCALING( "2" )
87
88     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n This is automatically generated "
89                                                 "when you change the above settings,\n but you can update it manually." ) ) ;
90
91 //     /* Connect everything to the updateMRL function */
92  #define CB( x ) CONNECT( ui.x, clicked( bool ), this, updateMRL() );
93  #define CT( x ) CONNECT( ui.x, textChanged( const QString ), this, updateMRL() );
94  #define CS( x ) CONNECT( ui.x, valueChanged( int ), this, updateMRL() );
95  #define CC( x ) CONNECT( ui.x, currentIndexChanged( int ), this, updateMRL() );
96 //     /* Output */
97      CB( fileOutput ); CB( HTTPOutput ); CB( localOutput );
98      CB( UDPOutput ); CB( MMSHOutput ); CB( rawInput );
99      CT( fileEdit ); CT( HTTPEdit ); CT( UDPEdit ); CT( MMSHEdit );
100      CS( HTTPPort ); CS( UDPPort ); CS( MMSHPort );
101 //     /* Transcode */
102      CC( vCodecBox ); CC( subsCodecBox ); CC( aCodecBox ) ;
103      CB( transcodeVideo ); CB( transcodeAudio ); CB( transcodeSubs );
104 //     CB( sOverlay );
105      CS( vBitrateSpin ); CS( aBitrateSpin ); CS( aChannelsSpin ); CC( vScaleBox );
106 //     /* Mux */
107      CB( PSMux ); CB( TSMux ); CB( MPEG1Mux ); CB( OggMux ); CB( ASFMux );
108      CB( MP4Mux ); CB( MOVMux ); CB( WAVMux ); CB( RAWMux ); CB( FLVMux );
109 //     /* Misc */
110      CB( soutAll ); CS( ttl ); CT( sapName ); CT( sapGroup );
111 //
112     CONNECT( ui.profileBox, activated( const QString & ), this, setOptions() );
113     CONNECT( ui.fileSelectButton, clicked() , this, fileBrowse()  );
114     CONNECT( ui.transcodeVideo, toggled( bool ), this, setVTranscodeOptions( bool ) );
115     CONNECT( ui.transcodeAudio, toggled( bool ), this, setATranscodeOptions( bool ) );
116     CONNECT( ui.transcodeSubs, toggled( bool ), this, setSTranscodeOptions( bool ) );
117     CONNECT( ui.rawInput, toggled( bool ), this, setRawOptions( bool ) );
118
119     okButton = new QPushButton( qtr( "&Stream" ) );
120     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
121
122     okButton->setDefault( true );
123     ui.acceptButtonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
124     ui.acceptButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
125
126     BUTTONACT( okButton, ok() );
127     BUTTONACT( cancelButton, cancel() );
128
129     if( b_transcode_only ) toggleSout();
130 }
131
132 void SoutDialog::fileBrowse()
133 {
134     ui.tabWidget->setTabEnabled( 0,false );
135     QString fileName = QFileDialog::getOpenFileName( this, qtr( "Save file" ), "",
136         qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
137     ui.fileEdit->setText( fileName );
138     updateMRL();
139 }
140
141 void SoutDialog::setVTranscodeOptions( bool b_trans )
142 {
143     ui.vCodecLabel->setEnabled( b_trans );
144     ui.vCodecBox->setEnabled( b_trans );
145     ui.vBitrateLabel->setEnabled( b_trans );
146     ui.vBitrateSpin->setEnabled( b_trans );
147     ui.vScaleLabel->setEnabled( b_trans );
148     ui.vScaleBox->setEnabled( b_trans );
149 }
150
151 void SoutDialog::setATranscodeOptions( bool b_trans )
152 {
153     ui.aCodecLabel->setEnabled( b_trans );
154     ui.aCodecBox->setEnabled( b_trans );
155     ui.aBitrateLabel->setEnabled( b_trans );
156     ui.aBitrateSpin->setEnabled( b_trans );
157     ui.aChannelsLabel->setEnabled( b_trans );
158     ui.aChannelsSpin->setEnabled( b_trans );
159 }
160
161 void SoutDialog::setSTranscodeOptions( bool b_trans )
162 {
163     ui.subsCodecBox->setEnabled( b_trans );
164     ui.subsOverlay->setEnabled( b_trans );
165 }
166
167 void SoutDialog::setRawOptions( bool b_raw )
168 {
169     if ( b_raw )
170     {
171         ui.tabWidget->setDisabled( true );
172     }
173     else
174     {
175         SoutDialog::setOptions();
176     }
177 }
178
179 int indexFromItemData( QComboBox *aCombo, QString aString )
180 {
181     for( int i=0; i < aCombo->count(); i++ )
182     {
183         if( aCombo->itemData( i ).toString() == aString ) return i;
184     }
185     return -1;
186 }
187
188 void SoutDialog::setOptions()
189 {
190     QString profileString = ui.profileBox->itemData( ui.profileBox->currentIndex() ).toString();
191     msg_Dbg( p_intf, "Profile Used: %s",  qta( profileString ));
192     int index;
193
194 #define setProfile( muxName, hasVideo, vCodecName, hasAudio, aCodecName ) \
195     { \
196         ui.muxName ##Mux->setChecked( true ); \
197         \
198         ui.transcodeAudio->setChecked( hasAudio ); \
199         index = indexFromItemData( ui.aCodecBox, vCodecName );  \
200         if( index >= 0 ) ui.aCodecBox->setCurrentIndex( index ); \
201         \
202         ui.transcodeVideo->setChecked( hasVideo ); \
203         index = indexFromItemData( ui.aCodecBox, vCodecName );  \
204         if( index >=0 ) ui.vCodecBox->setCurrentIndex( index ); \
205     }
206
207     /* ADD HERE the profiles you want and need */
208     if( profileString == "IPod" ) setProfile( MP4, true, "mp4a", true, "mp4v" )
209     else if( profileString == "XBox" ) setProfile( ASF, true, "wma", true, "WMV2" )
210
211         /* If the profile is not a custom one, then disable the tabWidget */
212         if ( profileString == "Custom" )
213         {
214             ui.tabWidget->setEnabled( true );
215         }
216         else
217         {
218             ui.tabWidget->setDisabled( true );
219         }
220
221     /* Update the MRL !! */
222     updateMRL();
223 }
224
225 void SoutDialog::toggleSout()
226 {
227     //Toggle all the streaming options.
228     #define TGV( x ) { \
229         if( ( x->isHidden() ) )  \
230         x->show();          \
231         else  x->hide();\
232     }
233     TGV( ui.HTTPOutput ) ; TGV( ui.UDPOutput ) ; TGV( ui.MMSHOutput ) ;
234     TGV( ui.HTTPEdit ) ; TGV( ui.UDPEdit ) ; TGV( ui.MMSHEdit ) ;
235     TGV( ui.HTTPLabel ) ; TGV( ui.UDPLabel ) ; TGV( ui.MMSHLabel ) ;
236     TGV( ui.HTTPPortLabel ) ; TGV( ui.UDPPortLabel ) ; TGV( ui.MMSHPortLabel ) ;
237     TGV( ui.HTTPPort ) ; TGV( ui.UDPPort ) ; TGV( ui.MMSHPort ) ;
238
239     TGV( ui.sap ); TGV( ui.sapName );
240     TGV( ui.sapGroup ); TGV( ui.sapGroupLabel );
241     TGV( ui.ttlLabel ); TGV( ui.ttl );
242
243     if( b_transcode_only ) okButton->setText( "&Save" );
244     else okButton->setText( "&Stream" );
245
246     updateGeometry();
247 }
248
249 void SoutDialog::ok()
250 {
251     mrl = ui.mrlEdit->text();
252     accept();
253 }
254 void SoutDialog::cancel()
255 {
256     mrl = ui.mrlEdit->text();
257     reject();
258 }
259
260 void SoutDialog::updateMRL()
261 {
262     sout_gui_descr_t sout;
263     memset( &sout, 0, sizeof( sout_gui_descr_t ) );
264
265     sout.b_local = ui.localOutput->isChecked();
266     sout.b_file = ui.fileOutput->isChecked();
267     sout.b_http = ui.HTTPOutput->isChecked();
268     sout.b_mms = ui.MMSHOutput->isChecked();
269     sout.b_udp = ui.UDPOutput->isChecked();
270     sout.b_sap = ui.sap->isChecked();
271     sout.b_all_es = ui.soutAll->isChecked();
272     sout.psz_vcodec = strdup( qtu( ui.vCodecBox->itemData( ui.vCodecBox->currentIndex() ).toString() ) );
273     sout.psz_acodec = strdup( qtu( ui.aCodecBox->itemData( ui.aCodecBox->currentIndex() ).toString() ) );
274     sout.psz_scodec = strdup( qtu( ui.subsCodecBox->itemData( ui.subsCodecBox->currentIndex() ).toString() ) );
275     sout.psz_file = strdup( qtu( ui.fileEdit->text() ) );
276     sout.psz_http = strdup( qtu( ui.HTTPEdit->text() ) );
277     sout.psz_mms = strdup( qtu( ui.MMSHEdit->text() ) );
278     sout.psz_udp = strdup( qtu( ui.UDPEdit->text() ) );
279     sout.i_http = ui.HTTPPort->value();
280     sout.i_mms = ui.MMSHPort->value();
281     sout.i_udp = ui.UDPPort->value();
282     sout.i_ab = ui.aBitrateSpin->value();
283     sout.i_vb = ui.vBitrateSpin->value();
284     sout.i_channels = ui.aChannelsSpin->value();
285     sout.f_scale = atof( qta( ui.vScaleBox->currentText() ) );
286     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
287     sout.psz_name = strdup( qtu( ui.sapName->text() ) );
288
289 #define SMUX( x, txt ) if( ui.x->isChecked() ) sout.psz_mux = strdup( txt );
290     SMUX( PSMux, "ps" );
291     SMUX( TSMux, "ts" );
292     SMUX( MPEG1Mux, "mpeg" );
293     SMUX( OggMux, "ogg" );
294     SMUX( ASFMux, "asf" );
295     SMUX( MP4Mux, "mp4" );
296     SMUX( MOVMux, "mov" );
297     SMUX( WAVMux, "wav" );
298     SMUX( RAWMux, "raw" );
299     SMUX( FLVMux, "flv" );
300
301     bool trans = false;
302     bool more = false;
303
304     if ( ui.transcodeVideo->isChecked() || ui.transcodeAudio->isChecked() )
305     {
306         if ( ui.transcodeVideo->isChecked() )
307         {
308             mrl = ":sout=#transcode{";
309             mrl.append( "vcodec=" );
310             mrl.append( sout.psz_vcodec );
311             mrl.append( "," );
312             mrl.append( "vb=" );
313             mrl.append( QString::number( sout.i_vb,10 ) );
314             mrl.append( "," );
315             mrl.append( "scale=" );
316             mrl.append( QString::number( sout.f_scale ) );
317             trans = true;
318         }
319
320         if ( ui.transcodeAudio->isChecked() )
321         {
322             if ( trans )
323             {
324                 mrl.append( "," );
325             }
326             else
327             {
328                 mrl = ":sout=#transcode{";
329             }
330             mrl.append( "acodec=" );
331             mrl.append( sout.psz_acodec );
332             mrl.append( "," );
333             mrl.append( "ab=" );
334             mrl.append( QString::number( sout.i_ab,10 ) );
335             mrl.append( "," );
336             mrl.append( "channels=" );
337             mrl.append( QString::number( sout.i_channels,10 ) );
338             trans = true;
339         }
340         mrl.append( "}" );
341     }
342
343     if ( sout.b_local || sout.b_file || sout.b_http || sout.b_mms || sout.b_udp )
344     {
345
346 #define ISMORE() if ( more ) mrl.append( "," );
347
348         if ( trans )
349         {
350             mrl.append( ":duplicate{" );
351         }
352         else
353         {
354             mrl = ":sout=#";
355         }
356
357         if ( sout.b_local )
358         {
359             ISMORE();
360             mrl.append( "dst=display" );
361             more = true;
362         }
363
364         if ( sout.b_file )
365         {
366             ISMORE();
367             mrl.append( "dst=std{access=file,mux=" );
368             mrl.append( sout.psz_mux );
369             mrl.append( ",dst=" );
370             mrl.append( sout.psz_file );
371             mrl.append( "}" );
372             more = true;
373         }
374
375         if ( sout.b_http )
376         {
377             ISMORE();
378             mrl.append( "dst=std{access=http,mux=" );
379             mrl.append( sout.psz_mux );
380             mrl.append( ",dst=" );
381             mrl.append( sout.psz_http );
382             mrl.append( ":" );
383             mrl.append( QString::number( sout.i_http,10 ) );
384             mrl.append( "}" );
385             more = true;
386         }
387
388         if ( sout.b_mms )
389         {
390             ISMORE();
391             mrl.append( "dst=std{access=mmsh,mux=" );
392             mrl.append( sout.psz_mux );
393             mrl.append( ",dst=" );
394             mrl.append( sout.psz_mms );
395             mrl.append( ":" );
396             mrl.append( QString::number( sout.i_mms,10 ) );
397             mrl.append( "}" );
398             more = true;
399         }
400
401         if ( sout.b_udp )
402         {
403             ISMORE();
404             mrl.append( "dst=std{access=udp,mux=" );
405             mrl.append( sout.psz_mux );
406             mrl.append( ",dst=" );
407             mrl.append( sout.psz_udp );
408             mrl.append( ":" );
409             mrl.append( QString::number( sout.i_udp,10 ) );
410             if ( sout.b_sap )
411             {
412                 mrl.append( ",sap," );
413                 mrl.append( "group=\"" );
414                 mrl.append( sout.psz_group );
415                 mrl.append( "\"," );
416                 mrl.append( "name=\"" );
417                 mrl.append( sout.psz_name );
418                 mrl.append( "\"" );
419             }
420             mrl.append( "}" );
421             more = true;
422         }
423
424         if ( trans )
425         {
426             mrl.append( "}" );
427         }
428     }
429
430     if ( sout.b_all_es )
431         mrl.append( ":sout-all" );
432
433     ui.mrlEdit->setText( mrl );
434     free( sout.psz_acodec ); free( sout.psz_vcodec ); free( sout.psz_scodec );
435     free( sout.psz_file );free( sout.psz_http ); free( sout.psz_mms );
436     free( sout.psz_udp ); free( sout.psz_mux );
437     free( sout.psz_name ); free( sout.psz_group );
438 }