]> git.sesse.net Git - mlt/blob - src/inigo/inigo.c
Big modification - switch to macros for parent class access
[mlt] / src / inigo / inigo.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4
5 #include <framework/mlt.h>
6
7 #include "io.h"
8
9 static void transport_action( mlt_producer producer, char *value )
10 {
11         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
12         mlt_multitrack multitrack = mlt_properties_get_data( properties, "multitrack", NULL );
13
14         mlt_properties_set_int( properties, "stats_off", 0 );
15
16         if ( strlen( value ) == 1 )
17         {
18                 switch( value[ 0 ] )
19                 {
20                         case 'q':
21                                 mlt_properties_set_int( properties, "done", 1 );
22                                 break;
23                         case '0':
24                                 mlt_producer_set_speed( producer, 1 );
25                                 mlt_producer_seek( producer, 0 );
26                                 break;
27                         case '1':
28                                 mlt_producer_set_speed( producer, -10 );
29                                 break;
30                         case '2':
31                                 mlt_producer_set_speed( producer, -5 );
32                                 break;
33                         case '3':
34                                 mlt_producer_set_speed( producer, -2 );
35                                 break;
36                         case '4':
37                                 mlt_producer_set_speed( producer, -1 );
38                                 break;
39                         case '5':
40                                 mlt_producer_set_speed( producer, 0 );
41                                 break;
42                         case '6':
43                         case ' ':
44                                 mlt_producer_set_speed( producer, 1 );
45                                 break;
46                         case '7':
47                                 mlt_producer_set_speed( producer, 2 );
48                                 break;
49                         case '8':
50                                 mlt_producer_set_speed( producer, 5 );
51                                 break;
52                         case '9':
53                                 mlt_producer_set_speed( producer, 10 );
54                                 break;
55                         case 'd':
56                                 if ( multitrack != NULL )
57                                 {
58                                         int i = 0;
59                                         mlt_position last = -1;
60                                         fprintf( stderr, "\n" );
61                                         for ( i = 0; 1; i ++ )
62                                         {
63                                                 mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_start, i );
64                                                 if ( time == last )
65                                                         break;
66                                                 last = time;
67                                                 fprintf( stderr, "%d: %d\n", i, time );
68                                         }
69                                 }
70                                 break;
71
72                         case 'g':
73                                 if ( multitrack != NULL )
74                                 {
75                                         mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_current, 0 );
76                                         mlt_producer_seek( producer, time );
77                                 }
78                                 break;
79                         case 'H':
80                                 if ( producer != NULL )
81                                 {
82                                         mlt_position position = mlt_producer_position( producer );
83                                         mlt_producer_seek( producer, position - ( mlt_producer_get_fps( producer ) * 60 ) );
84                                 }
85                                 break;
86                         case 'h':
87                                 if ( producer != NULL )
88                                 {
89                                         mlt_position position = mlt_producer_position( producer );
90                                         mlt_producer_set_speed( producer, 0 );
91                                         mlt_producer_seek( producer, position - 1 );
92                                 }
93                                 break;
94                         case 'j':
95                                 if ( multitrack != NULL )
96                                 {
97                                         mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_current, 1 );
98                                         mlt_producer_seek( producer, time );
99                                 }
100                                 break;
101                         case 'k':
102                                 if ( multitrack != NULL )
103                                 {
104                                         mlt_position time = mlt_multitrack_clip( multitrack, mlt_whence_relative_current, -1 );
105                                         mlt_producer_seek( producer, time );
106                                 }
107                                 break;
108                         case 'l':
109                                 if ( producer != NULL )
110                                 {
111                                         mlt_position position = mlt_producer_position( producer );
112                                         mlt_producer_set_speed( producer, 0 );
113                                         mlt_producer_seek( producer, position + 1 );
114                                 }
115                                 break;
116                         case 'L':
117                                 if ( producer != NULL )
118                                 {
119                                         mlt_position position = mlt_producer_position( producer );
120                                         mlt_producer_seek( producer, position + ( mlt_producer_get_fps( producer ) * 60 ) );
121                                 }
122                                 break;
123                 }
124         }
125
126         mlt_properties_set_int( properties, "stats_off", 0 );
127 }
128
129 static mlt_consumer create_consumer( char *id, mlt_producer producer )
130 {
131         char *arg = id != NULL ? strchr( id, ':' ) : NULL;
132         if ( arg != NULL )
133                 *arg ++ = '\0';
134         mlt_consumer consumer = mlt_factory_consumer( id, arg );
135         if ( consumer != NULL )
136         {
137                 mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
138                 mlt_properties_set_data( properties, "transport_callback", transport_action, 0, NULL, NULL );
139                 mlt_properties_set_data( properties, "transport_producer", producer, 0, NULL, NULL );
140         }
141         return consumer;
142 }
143
144 static void transport( mlt_producer producer, mlt_consumer consumer )
145 {
146         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
147         int silent = mlt_properties_get_int( MLT_CONSUMER_PROPERTIES( consumer ), "silent" );
148         struct timespec tm = { 0, 40000 };
149
150         if ( mlt_properties_get_int( properties, "done" ) == 0 && !mlt_consumer_is_stopped( consumer ) )
151         {
152                 if ( !silent )
153                 {
154                         term_init( );
155
156                         fprintf( stderr, "+-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+\n" );
157                         fprintf( stderr, "|1=-10| |2= -5| |3= -2| |4= -1| |5=  0| |6=  1| |7=  2| |8=  5| |9= 10|\n" );
158                         fprintf( stderr, "+-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+ +-----+\n" );
159
160                         fprintf( stderr, "+---------------------------------------------------------------------+\n" );
161                         fprintf( stderr, "|               H = back 1 minute,  L = forward 1 minute              |\n" );
162                         fprintf( stderr, "|                 h = previous frame,  l = next frame                 |\n" );
163                         fprintf( stderr, "|           g = start of clip, j = next clip, k = previous clip       |\n" );
164                         fprintf( stderr, "|                0 = restart, q = quit, space = play                  |\n" );
165                         fprintf( stderr, "+---------------------------------------------------------------------+\n" );
166                 }
167
168                 while( mlt_properties_get_int( properties, "done" ) == 0 && !mlt_consumer_is_stopped( consumer ) )
169                 {
170                         int value = silent ? -1 : term_read( );
171
172                         if ( value != -1 )
173                                 transport_action( producer, ( char * )&value );
174
175                         if ( !silent && mlt_properties_get_int( properties, "stats_off" ) == 0 )
176                                 fprintf( stderr, "Current Position: %10d\r", mlt_producer_position( producer ) );
177
178                         if ( silent )
179                                 nanosleep( &tm, NULL );
180                 }
181
182                 if ( !silent )
183                         fprintf( stderr, "\n" );
184         }
185 }
186
187 int main( int argc, char **argv )
188 {
189         int i;
190         mlt_consumer consumer = NULL;
191         mlt_producer inigo = NULL;
192         FILE *store = NULL;
193         char *name = NULL;
194
195         // Construct the factory
196         mlt_factory_init( NULL );
197
198         // Check for serialisation switch first
199         for ( i = 1; i < argc; i ++ )
200         {
201                 if ( !strcmp( argv[ i ], "-serialise" ) )
202                 {
203                         name = argv[ ++ i ];
204                         if ( strstr( name, ".inigo" ) )
205                                 store = fopen( name, "w" );
206                 }
207         }
208
209         // Get inigo producer
210         if ( argc > 1 )
211                 inigo = mlt_factory_producer( "inigo", &argv[ 1 ] );
212
213         if ( argc > 1 && inigo != NULL && mlt_producer_get_length( inigo ) > 0 )
214         {
215                 // Get inigo's properties
216                 mlt_properties inigo_props = MLT_PRODUCER_PROPERTIES( inigo );
217
218                 // Get the last group
219                 mlt_properties group = mlt_properties_get_data( inigo_props, "group", 0 );
220
221                 // Parse the arguments
222                 for ( i = 1; i < argc; i ++ )
223                 {
224                         if ( !strcmp( argv[ i ], "-consumer" ) )
225                         {
226                                 consumer = create_consumer( argv[ ++ i ], inigo );
227                                 while ( argv[ i + 1 ] != NULL && strstr( argv[ i + 1 ], "=" ) )
228                                         mlt_properties_parse( group, argv[ ++ i ] );
229                         }
230                         else if ( !strcmp( argv[ i ], "-serialise" ) )
231                         {
232                                 i ++;
233                         }
234                         else
235                         {
236                                 if ( store != NULL )
237                                         fprintf( store, "%s\n", argv[ i ] );
238
239                                 i ++;
240
241                                 while ( argv[ i ] != NULL && argv[ i ][ 0 ] != '-' )
242                                 {
243                                         if ( store != NULL )
244                                                 fprintf( store, "%s\n", argv[ i ] );
245                                         i += 1;
246                                 }
247
248                                 i --;
249                         }
250                 }
251
252                 // If we have no consumer, default to sdl
253                 if ( store == NULL && consumer == NULL )
254                         consumer = create_consumer( NULL, inigo );
255
256                 if ( consumer != NULL && store == NULL )
257                 {
258                         // Apply group settings
259                         mlt_properties properties = MLT_CONSUMER_PROPERTIES( consumer );
260                         mlt_properties_inherit( properties, group );
261
262                         // Connect consumer to inigo
263                         mlt_consumer_connect( consumer, MLT_PRODUCER_SERVICE( inigo ) );
264
265                         // Start the consumer
266                         mlt_consumer_start( consumer );
267
268                         // Transport functionality
269                         transport( inigo, consumer );
270
271                         // Stop the consumer
272                         mlt_consumer_stop( consumer );
273                 }
274                 else if ( store != NULL )
275                 {
276                         fprintf( stderr, "Project saved as %s.\n", name );
277                         fclose( store );
278                 }
279         }
280         else
281         {
282                 fprintf( stderr, "Usage: inigo [ -group [ name=value ]* ]\n"
283                                                  "             [ -consumer id[:arg] [ name=value ]* ]\n"
284                                                  "             [ -filter filter[:arg] [ name=value ] * ]\n"
285                                                  "             [ -attach filter[:arg] [ name=value ] * ]\n"
286                                                  "             [ -mix length [ -mixer transition ]* ]\n"
287                                                  "             [ -transition id[:arg] [ name=value ] * ]\n"
288                                                  "             [ -blank frames ]\n"
289                                                  "             [ -track ]\n"
290                                                  "             [ -split relative-frame ]\n"
291                                                  "             [ -join clips ]\n"
292                                                  "             [ -repeat times ]\n"
293                                                  "             [ producer [ name=value ] * ]+\n" );
294         }
295
296         // Close the consumer
297         if ( consumer != NULL )
298                 mlt_consumer_close( consumer );
299
300         // Close the producer
301         if ( inigo != NULL )
302                 mlt_producer_close( inigo );
303
304         // Close the factory
305         mlt_factory_close( );
306
307         return 0;
308 }