2 * producer_inigo.c -- simple inigo test case
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include "producer_inigo.h"
27 #include <framework/mlt.h>
29 mlt_producer
producer_inigo_file_init( char *file
)
31 FILE *input
= fopen( file
, "r" );
32 char **args
= calloc( sizeof( char * ), 1000 );
38 while( fgets( temp
, 2048, input
) )
40 temp
[ strlen( temp
) - 1 ] = '\0';
41 if ( strcmp( temp
, "" ) )
42 args
[ count
++ ] = strdup( temp
);
46 mlt_producer result
= producer_inigo_init( args
);
50 mlt_properties properties
= mlt_producer_properties( result
);
51 mlt_properties_set( properties
, "resource", file
);
55 free( args
[ count
] );
61 static void track_service( mlt_field field
, void *service
, mlt_destructor destructor
)
63 mlt_properties properties
= mlt_field_properties( field
);
64 int registered
= mlt_properties_get_int( properties
, "registered" );
65 char *key
= mlt_properties_get( properties
, "registered" );
66 mlt_properties_set_data( properties
, key
, service
, 0, destructor
, NULL
);
67 mlt_properties_set_int( properties
, "registered", ++ registered
);
70 static mlt_producer
create_producer( mlt_field field
, char *file
)
72 mlt_producer result
= mlt_factory_producer( "fezzik", file
);
75 track_service( field
, result
, ( mlt_destructor
)mlt_producer_close
);
80 static mlt_filter
create_attach( mlt_field field
, char *id
, int track
)
82 char *arg
= strchr( id
, ':' );
85 mlt_filter filter
= mlt_factory_filter( id
, arg
);
87 track_service( field
, filter
, ( mlt_destructor
)mlt_filter_close
);
91 static mlt_filter
create_filter( mlt_field field
, char *id
, int track
)
93 char *arg
= strchr( id
, ':' );
96 mlt_filter filter
= mlt_factory_filter( id
, arg
);
99 mlt_field_plant_filter( field
, filter
, track
);
100 track_service( field
, filter
, ( mlt_destructor
)mlt_filter_close
);
105 static mlt_transition
create_transition( mlt_field field
, char *id
, int track
)
107 char *arg
= strchr( id
, ':' );
110 mlt_transition transition
= mlt_factory_transition( id
, arg
);
111 if ( transition
!= NULL
)
113 mlt_field_plant_transition( field
, transition
, track
, track
+ 1 );
114 track_service( field
, transition
, ( mlt_destructor
)mlt_transition_close
);
119 mlt_producer
producer_inigo_init( char **argv
)
123 mlt_producer producer
= NULL
;
124 mlt_tractor mix
= NULL
;
125 mlt_playlist playlist
= mlt_playlist_init( );
126 mlt_properties group
= mlt_properties_new( );
127 mlt_properties properties
= group
;
128 mlt_tractor tractor
= mlt_tractor_new( );
129 mlt_field field
= mlt_tractor_field( tractor
);
130 mlt_properties field_properties
= mlt_field_properties( field
);
131 mlt_multitrack multitrack
= mlt_tractor_multitrack( tractor
);
134 // We need to track the number of registered filters
135 mlt_properties_set_int( field_properties
, "registered", 0 );
137 // Parse the arguments
138 for ( i
= 0; argv
[ i
] != NULL
; i
++ )
140 if ( !strcmp( argv
[ i
], "-group" ) )
142 if ( mlt_properties_count( group
) != 0 )
144 mlt_properties_close( group
);
145 group
= mlt_properties_new( );
150 else if ( !strcmp( argv
[ i
], "-attach" ) )
152 mlt_filter filter
= create_attach( field
, argv
[ ++ i
], track
);
153 if ( filter
!= NULL
)
155 if ( properties
!= NULL
)
156 mlt_service_attach( ( mlt_service
)properties
, filter
);
157 properties
= mlt_filter_properties( filter
);
158 mlt_properties_inherit( properties
, group
);
161 else if ( !strcmp( argv
[ i
], "-repeat" ) )
163 int repeat
= atoi( argv
[ ++ i
] );
164 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
165 mlt_playlist_append( playlist
, producer
);
167 if ( mlt_playlist_count( playlist
) > 0 )
169 mlt_playlist_clip_info info
;
170 mlt_playlist_repeat_clip( playlist
, mlt_playlist_count( playlist
) - 1, repeat
);
171 mlt_playlist_get_clip_info( playlist
, &info
, mlt_playlist_count( playlist
) - 1 );
173 properties
= mlt_producer_properties( producer
);
176 else if ( !strcmp( argv
[ i
], "-split" ) )
178 int split
= atoi( argv
[ ++ i
] );
179 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
180 mlt_playlist_append( playlist
, producer
);
182 if ( mlt_playlist_count( playlist
) > 0 )
184 mlt_playlist_clip_info info
;
185 mlt_playlist_get_clip_info( playlist
, &info
, mlt_playlist_count( playlist
) - 1 );
186 split
= split
< 0 ? info
.frame_out
+ split
: split
;
187 mlt_playlist_split( playlist
, mlt_playlist_count( playlist
) - 1, split
);
188 mlt_playlist_get_clip_info( playlist
, &info
, mlt_playlist_count( playlist
) - 1 );
190 properties
= mlt_producer_properties( producer
);
193 else if ( !strcmp( argv
[ i
], "-join" ) )
195 int clips
= atoi( argv
[ ++ i
] );
196 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
197 mlt_playlist_append( playlist
, producer
);
199 if ( mlt_playlist_count( playlist
) > 0 )
201 mlt_playlist_clip_info info
;
202 mlt_playlist_join( playlist
, mlt_playlist_count( playlist
) - clips
- 1, clips
, 0 );
203 mlt_playlist_get_clip_info( playlist
, &info
, mlt_playlist_count( playlist
) - 1 );
205 properties
= mlt_producer_properties( producer
);
208 else if ( !strcmp( argv
[ i
], "-mix" ) )
210 int length
= atoi( argv
[ ++ i
] );
211 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
212 mlt_playlist_append( playlist
, producer
);
214 if ( mlt_playlist_count( playlist
) >= 2 )
216 if ( mlt_playlist_mix( playlist
, mlt_playlist_count( playlist
) - 2, length
, NULL
) == 0 )
218 mlt_playlist_clip_info info
;
219 mlt_playlist_get_clip_info( playlist
, &info
, mlt_playlist_count( playlist
) - 1 );
220 if ( mlt_properties_get_data( ( mlt_properties
)info
.producer
, "mlt_mix", NULL
) == NULL
)
221 mlt_playlist_get_clip_info( playlist
, &info
, mlt_playlist_count( playlist
) - 2 );
222 mix
= ( mlt_tractor
)mlt_properties_get_data( ( mlt_properties
)info
.producer
, "mlt_mix", NULL
);
226 fprintf( stderr
, "Mix failed?\n" );
231 fprintf( stderr
, "Invalid position for a mix...\n" );
234 else if ( !strcmp( argv
[ i
], "-filter" ) )
236 mlt_filter filter
= create_filter( field
, argv
[ ++ i
], track
);
237 if ( filter
!= NULL
)
239 properties
= mlt_filter_properties( filter
);
240 mlt_properties_inherit( properties
, group
);
243 else if ( !strcmp( argv
[ i
], "-transition" ) )
245 mlt_transition transition
= create_transition( field
, argv
[ ++ i
], track
- 1 );
246 if ( transition
!= NULL
)
248 properties
= mlt_transition_properties( transition
);
249 mlt_properties_inherit( properties
, group
);
252 else if ( !strcmp( argv
[ i
], "-mixer" ) )
256 char *id
= strdup( argv
[ ++ i
] );
257 char *arg
= strchr( id
, ':' );
258 mlt_field field
= mlt_tractor_field( mix
);
259 mlt_transition transition
= NULL
;
262 transition
= mlt_factory_transition( id
, arg
);
263 if ( transition
!= NULL
)
265 properties
= mlt_transition_properties( transition
);
266 mlt_properties_inherit( properties
, group
);
267 mlt_field_plant_transition( field
, transition
, 0, 1 );
268 mlt_properties_set_position( properties
, "in", 0 );
269 mlt_properties_set_position( properties
, "out", mlt_producer_get_out( ( mlt_producer
)mix
) );
270 mlt_transition_close( transition
);
276 fprintf( stderr
, "Invalid mixer...\n" );
279 else if ( !strcmp( argv
[ i
], "-blank" ) )
281 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
282 mlt_playlist_append( playlist
, producer
);
284 mlt_playlist_blank( playlist
, atof( argv
[ ++ i
] ) );
286 else if ( !strcmp( argv
[ i
], "-track" ) ||
287 !strcmp( argv
[ i
], "-hide-track" ) ||
288 !strcmp( argv
[ i
], "-hide-video" ) ||
289 !strcmp( argv
[ i
], "-hide-audio" ) )
291 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
292 mlt_playlist_append( playlist
, producer
);
294 mlt_multitrack_connect( multitrack
, mlt_playlist_producer( playlist
), track
++ );
295 track_service( field
, playlist
, ( mlt_destructor
)mlt_playlist_close
);
296 playlist
= mlt_playlist_init( );
297 if ( playlist
!= NULL
)
299 properties
= mlt_playlist_properties( playlist
);
300 if ( !strcmp( argv
[ i
], "-hide-track" ) )
301 mlt_properties_set_int( properties
, "hide", 3 );
302 else if ( !strcmp( argv
[ i
], "-hide-video" ) )
303 mlt_properties_set_int( properties
, "hide", 1 );
304 else if ( !strcmp( argv
[ i
], "-hide-audio" ) )
305 mlt_properties_set_int( properties
, "hide", 2 );
308 else if ( strchr( argv
[ i
], '=' ) )
310 mlt_properties_parse( properties
, argv
[ i
] );
312 else if ( argv
[ i
][ 0 ] != '-' )
314 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
315 mlt_playlist_append( playlist
, producer
);
318 producer
= create_producer( field
, argv
[ i
] );
319 if ( producer
!= NULL
)
321 properties
= mlt_producer_properties( producer
);
322 mlt_properties_inherit( properties
, group
);
327 if ( !strcmp( argv
[ i
], "-serialise" ) )
329 else if ( !strcmp( argv
[ i
], "-consumer" ) )
332 while ( argv
[ i
] != NULL
&& strchr( argv
[ i
], '=' ) )
339 // Connect last producer to playlist
340 if ( producer
!= NULL
&& !mlt_producer_is_cut( producer
) )
341 mlt_playlist_append( playlist
, producer
);
343 // Track the last playlist too
344 track_service( field
, playlist
, ( mlt_destructor
)mlt_playlist_close
);
346 // We must have a playlist to connect
347 if ( mlt_playlist_count( playlist
) > 0 )
348 mlt_multitrack_connect( multitrack
, mlt_playlist_producer( playlist
), track
);
350 mlt_producer prod
= mlt_tractor_producer( tractor
);
351 mlt_properties props
= mlt_tractor_properties( tractor
);
352 mlt_properties_set_data( props
, "group", group
, 0, ( mlt_destructor
)mlt_properties_close
, NULL
);
353 mlt_properties_set_position( props
, "length", mlt_producer_get_out( mlt_multitrack_producer( multitrack
) ) + 1 );
354 mlt_producer_set_in_and_out( prod
, 0, mlt_producer_get_out( mlt_multitrack_producer( multitrack
) ) );
355 mlt_properties_set_double( props
, "fps", mlt_producer_get_fps( mlt_multitrack_producer( multitrack
) ) );
357 mlt_properties_set( props
, "title", strchr( title
, '/' ) ?
strrchr( title
, '/' ) + 1 : title
);