]> git.sesse.net Git - mlt/blob - src/melt/melt.c
Add colorspace to auto-profile.
[mlt] / src / melt / melt.c
1 /*
2  * melt.c -- MLT command line utility
3  * Copyright (C) 2002-2010 Ushodaya Enterprises Limited
4  * Authors: Charles Yates <charles.yates@pandora.be>
5  *          Dan Dennedy <dan@dennedy.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software Foundation,
19  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef _GNU_SOURCE
23 #define _GNU_SOURCE
24 #endif
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sched.h>
29 #include <libgen.h>
30 #include <limits.h>
31
32 #include <framework/mlt.h>
33
34 #ifdef __DARWIN__
35 #include <SDL.h>
36 #endif
37
38 #include "io.h"
39
40 static void transport_action( mlt_producer producer, char *value )
41 {
42         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
43         mlt_multitrack multitrack = mlt_properties_get_data( properties, "multitrack", NULL );
44         mlt_consumer consumer = mlt_properties_get_data( properties, "transport_consumer", NULL );
45
46         mlt_properties_set_int( properties, "stats_off", 1 );
47
48         if ( strlen( value ) == 1 )
49         {
50                 switch( value[ 0 ] )
51                 {
52                         case 'q':
53                                 mlt_properties_set_int( properties, "done", 1 );
54                                 break;
55                         case '0':
56                                 mlt_producer_set_speed( producer, 1 );
57                                 mlt_producer_seek( producer, 0 );
58                                 break;
59                         case '1':
60                                 mlt_producer_set_speed( producer, -10 );
61                                 break;
62                         case '2':
63                                 mlt_producer_set_speed( producer, -5 );
64                                 break;
65                         case '3':
66                                 mlt_producer_set_speed( producer, -2 );
67                                 break;
68                         case '4':
69                                 mlt_producer_set_speed( producer, -1 );
70                                 break;
71                         case '5':
72                                 mlt_producer_set_speed( producer, 0 );
73                                 break;
74                         case '6':
75                         case ' ':
76                                 mlt_producer_set_speed( producer, 1 );
77                                 break;
78                         case '7':
79                                 mlt_producer_set_speed( producer, 2 );
80                                 break;
81                         case '8':
82                                 mlt_producer_set_speed( producer, 5 );
83                                 break;
84                         case '9':
85                                 mlt_producer_set_speed( producer, 10 );
86                                 break;
87                         case 'd':
88                                 if ( multitrack != NULL )
89                                 {
90                                         int i = 0;
91                                         mlt_position last = -1;
92                                         fprintf( stderr, "\n" );
93                                         for ( i = 0; 1; i ++ )
94                                         {
95                                                 mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_start, i );
96                                                 if ( time == last )
97                                                         break;
98                                                 last = time;
99                                                 fprintf( stderr, "%d: %d\n", i, (int)time );
100                                         }
101                                 }
102                                 break;
103
104                         case 'g':
105                                 if ( multitrack != NULL )
106                                 {
107                                         mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_current, 0 );
108                                         mlt_producer_seek( producer, time );
109                                 }
110                                 break;
111                         case 'H':
112                                 if ( producer != NULL )
113                                 {
114                                         mlt_position position = mlt_producer_position( producer );
115                                         mlt_producer_seek( producer, position - ( mlt_producer_get_fps( producer ) * 60 ) );
116                                 }
117                                 break;
118                         case 'h':
119                                 if ( producer != NULL )
120                                 {
121                                         mlt_position position = mlt_producer_position( producer );
122                                         mlt_producer_set_speed( producer, 0 );
123                                         mlt_producer_seek( producer, position - 1 );
124                                 }
125                                 break;
126                         case 'j':
127                                 if ( multitrack != NULL )
128                                 {
129                                         mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_current, 1 );
130                                         mlt_producer_seek( producer, time );
131                                 }
132                                 break;
133                         case 'k':
134                                 if ( multitrack != NULL )
135                                 {
136                                         mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_current, -1 );
137                                         mlt_producer_seek( producer, time );
138                                 }
139                                 break;
140                         case 'l':
141                                 if ( producer != NULL )
142                                 {
143                                         mlt_position position = mlt_producer_position( producer );
144                                         if ( mlt_producer_get_speed( producer ) != 0 )
145                                                 mlt_producer_set_speed( producer, 0 );
146                                         else
147                                                 mlt_producer_seek( producer, position + 1 );
148                                 }
149                                 break;
150                         case 'L':
151                                 if ( producer != NULL )
152                                 {
153                                         mlt_position position = mlt_producer_position( producer );
154                                         mlt_producer_seek( producer, position + ( mlt_producer_get_fps( producer ) * 60 ) );
155                                 }
156                                 break;
157                 }
158
159                 mlt_properties_set_int( MLT_CONSUMER_PROPERTIES( consumer ), "refresh", 1 );
160         }
161
162         mlt_properties_set_int( properties, "stats_off", 0 );
163 }
164
165 static mlt_consumer create_consumer( mlt_profile profile, char *id )
166 {
167         char *myid = id ? strdup( id ) : NULL;
168         char *arg = myid ? strchr( myid, ':' ) : NULL;
169         if ( arg != NULL )
170                 *arg ++ = '\0';
171         mlt_consumer consumer = mlt_factory_consumer( profile, myid, arg );
172         if ( consumer != NULL )
173         {
174                 mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
175                 mlt_properties_set_data( properties, "transport_callback", transport_action, 0, NULL, NULL );
176         }
177         if ( myid )
178                 free( myid );
179         return consumer;
180 }
181
182 static void load_consumer( mlt_consumer *consumer, mlt_profile profile, int argc, char **argv )
183 {
184         int i;
185         for ( i = 1; i < argc; i ++ )
186         {
187                 if ( !strcmp( argv[ i ], "-consumer" ) )
188                 {
189                         if ( *consumer )
190                                 mlt_consumer_close( *consumer );
191                         *consumer = create_consumer( profile, argv[ ++ i ] );
192                         if ( *consumer )
193                         {
194                                 mlt_properties properties = MLT_CONSUMER_PROPERTIES( *consumer );
195                                 while ( argv[ i + 1 ] != NULL && strstr( argv[ i + 1 ], "=" ) )
196                                         mlt_properties_parse( properties, argv[ ++ i ] );
197                         }
198                 }
199         }
200 }
201
202 #ifdef __DARWIN__
203
204 static void event_handling( mlt_producer producer, mlt_consumer consumer )
205 {
206         SDL_Event event;
207
208         while ( SDL_PollEvent( &event ) )
209         {
210                 switch( event.type )
211                 {
212                         case SDL_QUIT:
213                                 mlt_properties_set_int( MLT_PRODUCER_PROPERTIES( consumer ), "done", 1 );
214                                 break;
215
216                         case SDL_KEYDOWN:
217                                 if ( event.key.keysym.unicode < 0x80 && event.key.keysym.unicode > 0 )
218                                 {
219                                         char keyboard[ 2 ] = { event.key.keysym.unicode, 0 };
220                                         transport_action( producer, keyboard );
221                                 }
222                                 break;
223                 }
224         }
225 }
226
227 #endif
228
229 static void transport( mlt_producer producer, mlt_consumer consumer )
230 {
231         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
232         int silent = mlt_properties_get_int( MLT_CONSUMER_PROPERTIES( consumer ), "silent" );
233         int progress = mlt_properties_get_int( MLT_CONSUMER_PROPERTIES( consumer ), "progress" );
234         struct timespec tm = { 0, 40000 };
235         int total_length = mlt_producer_get_length( producer );
236         int last_position = 0;
237
238         if ( mlt_properties_get_int( properties, "done" ) == 0 && !mlt_consumer_is_stopped( consumer ) )
239         {
240                 if ( !silent && !progress )
241                 {
242                         term_init( );
243
244                         fprintf( stderr, "+-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+\n" );
245                         fprintf( stderr, "|1=-10| |2= -5| |3= -2| |4= -1| |5=  0| |6=  1| |7=  2| |8=  5| |9= 10|\n" );
246                         fprintf( stderr, "+-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+\n" );
247
248                         fprintf( stderr, "+---------------------------------------------------------------------+\n" );
249                         fprintf( stderr, "|               H = back 1 minute,  L = forward 1 minute              |\n" );
250                         fprintf( stderr, "|                 h = previous frame,  l = next frame                 |\n" );
251                         fprintf( stderr, "|           g = start of clip, j = next clip, k = previous clip       |\n" );
252                         fprintf( stderr, "|                0 = restart, q = quit, space = play                  |\n" );
253                         fprintf( stderr, "+---------------------------------------------------------------------+\n" );
254                 }
255
256                 while( mlt_properties_get_int( properties, "done" ) == 0 && !mlt_consumer_is_stopped( consumer ) )
257                 {
258                         int value = ( silent || progress )? -1 : term_read( );
259
260                         if ( value != -1 )
261                         {
262                                 char string[ 2 ] = { value, 0 };
263                                 transport_action( producer, string );
264                         }
265
266 #ifdef __DARWIN__
267                         event_handling( producer, consumer );
268 #endif
269
270                         if ( !silent && mlt_properties_get_int( properties, "stats_off" ) == 0 )
271                         {
272                                 if ( progress )
273                                 {
274                                         int current_position = mlt_producer_position( producer );
275                                         if ( current_position > last_position )
276                                         {
277                                                 fprintf( stderr, "Current Frame: %10d, percentage: %10d\r",
278                                                         current_position, 100 * current_position / total_length );
279                                                 last_position = current_position;
280                                         }
281                                 }
282                                 else
283                                 {
284                                         fprintf( stderr, "Current Position: %10d\r", (int)mlt_producer_position( producer ) );
285                                 }
286                         }
287
288                         if ( silent || progress )
289                                 nanosleep( &tm, NULL );
290                 }
291
292                 if ( !silent )
293                         fprintf( stderr, "\n" );
294         }
295 }
296
297 static void show_usage( char *program_name )
298 {
299         fprintf( stderr,
300 "Usage: %s [options] [producer [name=value]* ]+\n"
301 "Options:\n"
302 "  -attach filter[:arg] [name=value]*       Attach a filter to the output\n"
303 "  -attach-cut filter[:arg] [name=value]*   Attach a filter to a cut\n"
304 "  -attach-track filter[:arg] [name=value]* Attach a filter to a track\n"
305 "  -attach-clip filter[:arg] [name=value]*  Attach a filter to a producer\n"
306 "  -audio-track | -hide-video               Add an audio-only track\n"
307 "  -blank frames                            Add blank silence to a track\n"
308 "  -consumer id[:arg] [name=value]*         Set the consumer (sink)\n"
309 "  -debug                                   Set the logging level to debug\n"
310 "  -filter filter[:arg] [name=value]*       Add a filter to the current track\n"
311 "  -group [name=value]*                     Apply properties repeatedly\n"
312 "  -help                                    Show this message\n"
313 "  -join clips                              Join multiple clips into one cut\n"
314 "  -mix length                              Add a mix between the last two cuts\n"
315 "  -mixer transition                        Add a transition to the mix\n"
316 "  -null-track | -hide-track                Add a hidden track\n"
317 "  -profile name                            Set the processing settings\n"
318 "  -progress                                Display progress along with position\n"
319 "  -remove                                  Remove the most recent cut\n"
320 "  -repeat times                            Repeat the last cut\n"
321 "  -query                                   List all of the registered services\n"
322 "  -query \"consumers\" | \"consumer\"=id       List consumers or show info about one\n"
323 "  -query \"filters\" | \"filter\"=id           List filters or show info about one\n"
324 "  -query \"producers\" | \"producer\"=id       List producers or show info about one\n"
325 "  -query \"transitions\" | \"transition\"=id   List transitions, show info about one\n"
326 "  -serialise [filename]                    Write the commands to a text file\n"
327 "  -silent                                  Do not display position/transport\n"
328 "  -split relative-frame                    Split the last cut into two cuts\n"
329 "  -swap                                    Rearrange the last two cuts\n"
330 "  -track                                   Add a track\n"
331 "  -transition id[:arg] [name=value]*       Add a transition\n"
332 "  -verbose                                 Set the logging level to verbose\n"
333 "  -version                                 Show the version and copyright\n"
334 "  -video-track | -hide-audio               Add a video-only track\n"
335 "For more help: <http://www.mltframework.org/>\n",
336         basename( program_name ) );
337 }
338
339 static void guess_profile( mlt_producer melt, mlt_profile profile )
340 {
341         mlt_frame fr = NULL;
342         uint8_t *buffer;
343         mlt_image_format fmt = mlt_image_yuv422;
344         mlt_properties p;
345         int w = profile->width;
346         int h = profile->height;
347
348         if ( ! mlt_service_get_frame( MLT_PRODUCER_SERVICE(melt), &fr, 0 ) && fr )
349         {
350                 if ( ! mlt_frame_get_image( fr, &buffer, &fmt, &w, &h, 0 ) )
351                 {
352                         // Some source properties are not exposed until after the first get_image call.
353                         mlt_frame_close( fr );
354                         mlt_service_get_frame( MLT_PRODUCER_SERVICE(melt), &fr, 0 );
355                         p = MLT_FRAME_PROPERTIES( fr );
356 //                      mlt_properties_dump(p, stderr);
357                         if ( mlt_properties_get_int( p, "meta.media.frame_rate_den" ) && mlt_properties_get_int( p, "meta.media.sample_aspect_den" ) )
358                         {
359                                 profile->width = mlt_properties_get_int( p, "meta.media.width" );
360                                 profile->height = mlt_properties_get_int( p, "meta.media.height" );
361                                 profile->progressive = mlt_properties_get_int( p, "meta.media.progressive" );
362                                 profile->frame_rate_num = mlt_properties_get_int( p, "meta.media.frame_rate_num" );
363                                 profile->frame_rate_den = mlt_properties_get_int( p, "meta.media.frame_rate_den" );
364                                 profile->sample_aspect_num = mlt_properties_get_int( p, "meta.media.sample_aspect_num" );
365                                 profile->sample_aspect_den = mlt_properties_get_int( p, "meta.media.sample_aspect_den" );
366                                 profile->colorspace = mlt_properties_get_int( p, "meta.media.colorspace" );
367                                 profile->display_aspect_num = (int) ( (double) profile->sample_aspect_num * profile->width / profile->sample_aspect_den + 0.5 );
368                                 profile->display_aspect_den = profile->height;
369                                 free( profile->description );
370                                 profile->description = strdup( "automatic" );
371                                 profile->is_explicit = 0;
372                         }
373                 }
374         }
375         mlt_frame_close( fr );
376         mlt_producer_seek( melt, 0 );
377 }
378
379 static void query_metadata( mlt_repository repo, mlt_service_type type, const char *typestr, char *id )
380 {
381         mlt_properties metadata = mlt_repository_metadata( repo, type, id );
382         if ( metadata )
383         {
384                 char *s = mlt_properties_serialise_yaml( metadata );
385                 fprintf( stderr, "%s", s );
386                 free( s );
387         }
388         else
389         {
390                 fprintf( stderr, "# No metadata for %s \"%s\"\n", typestr, id );
391         }
392 }
393
394 static void query_services( mlt_repository repo, mlt_service_type type )
395 {
396         mlt_properties services = NULL;
397         const char *typestr = NULL;
398         switch ( type )
399         {
400                 case consumer_type:
401                         services = mlt_repository_consumers( repo );
402                         typestr = "consumers";
403                         break;
404                 case filter_type:
405                         services = mlt_repository_filters( repo );
406                         typestr = "filters";
407                         break;
408                 case producer_type:
409                         services = mlt_repository_producers( repo );
410                         typestr = "producers";
411                         break;
412                 case transition_type:
413                         services = mlt_repository_transitions( repo );
414                         typestr = "transitions";
415                         break;
416                 default:
417                         return;
418         }
419         fprintf( stderr, "---\n%s:\n", typestr );
420         if ( services )
421         {
422                 int j;
423                 for ( j = 0; j < mlt_properties_count( services ); j++ )
424                         fprintf( stderr, "  - %s\n", mlt_properties_get_name( services, j ) );
425         }
426         fprintf( stderr, "...\n" );
427 }
428
429 int main( int argc, char **argv )
430 {
431         int i;
432         mlt_consumer consumer = NULL;
433         mlt_producer melt = NULL;
434         FILE *store = NULL;
435         char *name = NULL;
436         mlt_profile profile = NULL;
437         int is_progress = 0;
438         int is_silent = 0;
439         mlt_profile backup_profile;
440
441         // Construct the factory
442         mlt_repository repo = mlt_factory_init( NULL );
443
444         for ( i = 1; i < argc; i ++ )
445         {
446                 // Check for serialisation switch
447                 if ( !strcmp( argv[ i ], "-serialise" ) )
448                 {
449                         name = argv[ ++ i ];
450                         if ( name != NULL && strstr( name, ".melt" ) )
451                                 store = fopen( name, "w" );
452                         else
453                         {
454                                 if ( name == NULL || name[0] == '-' )
455                                         store = stdout;
456                                 name = NULL;
457                         }
458                 }
459                 // Look for the profile option
460                 else if ( !strcmp( argv[ i ], "-profile" ) )
461                 {
462                         const char *pname = argv[ ++ i ];
463                         if ( pname && pname[0] != '-' )
464                                 profile = mlt_profile_init( pname );
465                 }
466                 else if ( !strcmp( argv[ i ], "-progress" ) )
467                 {
468                         is_progress = 1;
469                 }
470                 // Look for the query option
471                 else if ( !strcmp( argv[ i ], "-query" ) )
472                 {
473                         const char *pname = argv[ ++ i ];
474                         if ( pname && pname[0] != '-' )
475                         {
476                                 if ( !strcmp( pname, "consumers" ) || !strcmp( pname, "consumer" ) )
477                                         query_services( repo, consumer_type );
478                                 else if ( !strcmp( pname, "filters" ) || !strcmp( pname, "filter" ) )
479                                         query_services( repo, filter_type );
480                                 else if ( !strcmp( pname, "producers" ) || !strcmp( pname, "producer" ) )
481                                         query_services( repo, producer_type );
482                                 else if ( !strcmp( pname, "transitions" ) || !strcmp( pname, "transition" ) )
483                                         query_services( repo, transition_type );
484                                 
485                                 else if ( !strncmp( pname, "consumer=", 9 ) )
486                                         query_metadata( repo, consumer_type, "consumer", strchr( pname, '=' ) + 1 );
487                                 else if ( !strncmp( pname, "filter=", 7 ) )
488                                         query_metadata( repo, filter_type, "filter", strchr( pname, '=' ) + 1 );
489                                 else if ( !strncmp( pname, "producer=", 9 ) )
490                                         query_metadata( repo, producer_type, "producer", strchr( pname, '=' ) + 1 );
491                                 else if ( !strncmp( pname, "transition=", 11 ) )
492                                         query_metadata( repo, transition_type, "transition", strchr( pname, '=' ) + 1 );
493                                 else
494                                         goto query_all;
495                         }
496                         else
497                         {
498 query_all:
499                                 query_services( repo, consumer_type );
500                                 query_services( repo, filter_type );
501                                 query_services( repo, producer_type );
502                                 query_services( repo, transition_type );
503                                 fprintf( stderr, "# You can query the metadata for a specific service using:\n"
504                                         "# -query <type>=<identifer>\n"
505                                         "# where <type> is one of: consumer, filter, producer, or transition.\n" );
506                         }
507                         goto exit_factory;
508                 }
509                 else if ( !strcmp( argv[ i ], "-silent" ) )
510                 {
511                         is_silent = 1;
512                 }
513                 else if ( !strcmp( argv[ i ], "-verbose" ) )
514                 {
515                         mlt_log_set_level( MLT_LOG_VERBOSE );
516                 }
517                 else if ( !strcmp( argv[ i ], "-version" ) || !strcmp( argv[ i ], "--version" ) )
518                 {
519                         fprintf( stderr, "MLT %s " VERSION "\n"
520                                 "Copyright (C) 2002-2010 Ushodaya Enterprises Limited\n"
521                                 "<http://www.mltframework.org/>\n"
522                                 "This is free software; see the source for copying conditions.  There is NO\n"
523                                 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
524                                 basename( argv[0] ) );
525                         goto exit_factory;
526                 }
527                 else if ( !strcmp( argv[ i ], "-debug" ) )
528                 {
529                         mlt_log_set_level( MLT_LOG_DEBUG );
530                 }
531         }
532
533         // Create profile if not set explicitly
534         if ( profile == NULL )
535                 profile = mlt_profile_init( NULL );
536         else
537                 profile->is_explicit = 1;
538
539         // Look for the consumer option to load profile settings from consumer properties
540         backup_profile = mlt_profile_clone( profile );
541         load_consumer( &consumer, profile, argc, argv );
542
543         // If the consumer changed the profile, then it is explicit.
544         if ( backup_profile && !profile->is_explicit && (
545              profile->width != backup_profile->width ||
546              profile->height != backup_profile->height ||
547              profile->sample_aspect_num != backup_profile->sample_aspect_num ||
548              profile->sample_aspect_den != backup_profile->sample_aspect_den ||
549              profile->frame_rate_den != backup_profile->frame_rate_den ||
550              profile->frame_rate_num != backup_profile->frame_rate_num ||
551              profile->colorspace != backup_profile->colorspace ) )
552                 profile->is_explicit = 1;
553         mlt_profile_close( backup_profile );
554
555         // Get melt producer
556         if ( argc > 1 )
557                 melt = mlt_factory_producer( profile, "melt", &argv[ 1 ] );
558
559         if ( melt )
560         {
561                 // Generate an automatic profile if needed.
562                 if ( ! profile->is_explicit )
563                         guess_profile( melt, profile );
564
565                 // Reload the consumer with the fully qualified profile.
566                 // The producer or guess_profile could have changed the profile.
567                 load_consumer( &consumer, profile, argc, argv );
568
569                 // If we have no consumer, default to sdl
570                 if ( store == NULL && consumer == NULL )
571                         consumer = create_consumer( profile, NULL );
572         }
573         
574         // Set transport properties on consumer and produder
575         if ( consumer != NULL && melt != NULL )
576         {
577                 mlt_properties_set_data( MLT_CONSUMER_PROPERTIES( consumer ), "transport_producer", melt, 0, NULL, NULL );
578                 mlt_properties_set_data( MLT_PRODUCER_PROPERTIES( melt ), "transport_consumer", consumer, 0, NULL, NULL );
579                 if ( is_progress )
580                         mlt_properties_set_int(  MLT_CONSUMER_PROPERTIES( consumer ), "progress", is_progress );
581                 if ( is_silent )
582                         mlt_properties_set_int(  MLT_CONSUMER_PROPERTIES( consumer ), "silent", is_silent );
583         }
584
585         if ( argc > 1 && melt != NULL && mlt_producer_get_length( melt ) > 0 )
586         {
587                 // Parse the arguments
588                 for ( i = 1; i < argc; i ++ )
589                 {
590                         if ( !strcmp( argv[ i ], "-serialise" ) )
591                         {
592                                 if ( store != stdout )
593                                         i ++;
594                         }
595                         else
596                         {
597                                 if ( store != NULL )
598                                         fprintf( store, "%s\n", argv[ i ] );
599
600                                 i ++;
601
602                                 while ( argv[ i ] != NULL && argv[ i ][ 0 ] != '-' )
603                                 {
604                                         if ( store != NULL )
605                                                 fprintf( store, "%s\n", argv[ i ] );
606                                         i += 1;
607                                 }
608
609                                 i --;
610                         }
611                 }
612
613                 if ( consumer != NULL && store == NULL )
614                 {
615                         // Get melt's properties
616                         mlt_properties melt_props = MLT_PRODUCER_PROPERTIES( melt );
617         
618                         // Get the last group
619                         mlt_properties group = mlt_properties_get_data( melt_props, "group", 0 );
620         
621                         // Apply group settings
622                         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
623                         mlt_properties_inherit( properties, group );
624
625                         // Connect consumer to melt
626                         mlt_consumer_connect( consumer, MLT_PRODUCER_SERVICE( melt ) );
627
628                         // Start the consumer
629                         mlt_consumer_start( consumer );
630
631                         // Transport functionality
632                         transport( melt, consumer );
633
634                         // Stop the consumer
635                         mlt_consumer_stop( consumer );
636                 }
637                 else if ( store != NULL && store != stdout && name != NULL )
638                 {
639                         fprintf( stderr, "Project saved as %s.\n", name );
640                         fclose( store );
641                 }
642         }
643         else
644         {
645                 show_usage( argv[0] );
646         }
647
648         // Close the producer
649         if ( melt != NULL )
650                 mlt_producer_close( melt );
651
652         // Close the consumer
653         if ( consumer != NULL )
654                 mlt_consumer_close( consumer );
655
656         // Close the factory
657         mlt_profile_close( profile );
658
659 exit_factory:
660                 
661         mlt_factory_close( );
662
663         return 0;
664 }