]> git.sesse.net Git - mlt/blob - src/modules/gtk2/filter_dynamictext.c
Add outline to pango and dynamic text services. Add pad and align to
[mlt] / src / modules / gtk2 / filter_dynamictext.c
1 /*
2  * filter_dynamictext.c -- dynamic text overlay filter
3  * Copyright (C) 2011 Ushodaya Enterprises Limited
4  * Author: Brian Matherly <pez4brian@yahoo.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <framework/mlt.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <math.h>
25 #include <sys/types.h> // for stat()
26 #include <sys/stat.h>  // for stat()
27 #include <unistd.h>    // for stat()
28 #include <time.h>      // for strftime() and gtime()
29
30 #define MAX_TEXT_LEN 512
31
32 /** Get the next token and indicate whether it is enclosed in "# #".
33 */
34 static int get_next_token(char* str, int* pos, char* token, int* is_keyword)
35 {
36         int token_pos = 0;
37         int str_len = strlen(str);
38
39         if( (*pos) >= str_len || str[*pos] == '\0' )
40         {
41                 return 0;
42         }
43
44         if( str[*pos] == '#' )
45         {
46                 *is_keyword = 1;
47                 (*pos)++;
48         }
49         else
50         {
51                 *is_keyword = 0;
52         }
53
54         while( *pos < str_len && token_pos < MAX_TEXT_LEN - 1)
55         {
56                 if( str[*pos] == '\\' && str[(*pos) + 1] == '#' )
57                 {
58                         // Escape Sequence - "#" preceeded by "\" - copy the # into the token.
59                         token[token_pos] = '#';
60                         token_pos++;
61                         (*pos)++; // skip "\"
62                         (*pos)++; // skip "#"
63                 }
64                 else if( str[*pos] == '#' )
65                 {
66                         if( *is_keyword )
67                         {
68                                 // Found the end of the keyword
69                                 (*pos)++;
70                         }
71                         break;
72                 }
73                 else
74                 {
75                         token[token_pos] = str[*pos];
76                         token_pos++;
77                         (*pos)++;
78                 }
79         }
80
81         token[token_pos] = '\0';
82
83         return 1;
84 }
85
86 static void get_timecode_str( mlt_filter filter, mlt_frame frame, char* text )
87 {
88         int frames = mlt_frame_get_position( frame );
89         double fps = mlt_profile_fps( mlt_service_profile( MLT_FILTER_SERVICE( filter ) ) );
90         char tc[12] = "";
91         if (fps == 0)
92         {
93                 strncat( text, "-", MAX_TEXT_LEN - strlen(text) - 1 );
94         }
95         else
96         {
97                 int seconds = frames / fps;
98                 frames = frames % lrint( fps );
99                 int minutes = seconds / 60;
100                 seconds = seconds % 60;
101                 int hours = minutes / 60;
102                 minutes = minutes % 60;
103                 sprintf(tc, "%.2d:%.2d:%.2d:%.2d", hours, minutes, seconds, frames);
104                 strncat( text, tc, MAX_TEXT_LEN - strlen(text) - 1 );
105         }
106 }
107
108 static void get_frame_str( mlt_filter filter, mlt_frame frame, char* text )
109 {
110         int pos = mlt_frame_get_position( frame );
111         char s[12];
112         snprintf( s, sizeof(s) - 1, "%d", pos );
113         strncat( text, s, MAX_TEXT_LEN - strlen(text) - 1 );
114 }
115
116 static void get_filedate_str( mlt_filter filter, mlt_frame frame, char* text )
117 {
118         mlt_producer producer = mlt_producer_cut_parent(mlt_frame_get_original_producer( frame ));
119         mlt_properties producer_properties = MLT_PRODUCER_PROPERTIES(producer);
120         char* filename = mlt_properties_get( producer_properties, "resource");
121         struct stat file_info;
122
123         if( !stat(filename, &file_info))
124         {
125                 struct tm* time_info = gmtime( &(file_info.st_mtime) );
126                 char date[11] = "";
127                 strftime( date, 11, "%Y/%m/%d", time_info );
128                 strncat( text, date, MAX_TEXT_LEN - strlen(text) - 1);
129         }
130 }
131
132
133 /** Perform substitution for keywords that are enclosed in "# #".
134 */
135
136 static void substitute_keywords(mlt_filter filter, char* result, char* value, mlt_frame frame)
137 {
138         char keyword[MAX_TEXT_LEN] = "";
139         int pos = 0;
140         int is_keyword = 0;
141
142         while ( get_next_token(value, &pos, keyword, &is_keyword) )
143         {
144                 if(!is_keyword)
145                 {
146                         strncat( result, keyword, MAX_TEXT_LEN - strlen(result) - 1 );
147                 }
148                 else if ( !strcmp( keyword, "timecode" ) )
149                 {
150                         get_timecode_str(filter, frame, result);
151                 }
152                 else if ( !strcmp( keyword, "frame" ) )
153                 {
154                         get_frame_str(filter, frame, result);
155                 }
156                 else if ( !strcmp( keyword, "filedate" ) )
157                 {
158                         get_filedate_str(filter, frame, result);
159                 }
160                 else if ( !strcmp( keyword, "resource" ) )
161                 {
162                         // special case: replace #resource# with cut parent resource name
163                         mlt_producer producer = mlt_producer_cut_parent(mlt_frame_get_original_producer( frame ));
164                         mlt_properties producer_properties = MLT_PRODUCER_PROPERTIES(producer);
165                         strncat( result, mlt_properties_get( producer_properties, "resource"), MAX_TEXT_LEN - strlen(result) - 1 );
166                 }
167                 else
168                 {
169                         // replace keyword with property value from this frame
170                         mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
171                         char *frame_value = mlt_properties_get( frame_properties, keyword );
172                         if( frame_value )
173                         {
174                                 strncat( result, frame_value, MAX_TEXT_LEN - strlen(result) - 1 );
175                         }
176                 }
177         }
178 }
179
180 static void apply_filter(mlt_filter filter, mlt_frame frame )
181 {
182         mlt_properties my_properties = MLT_FILTER_PROPERTIES( filter );
183         mlt_filter watermark = mlt_properties_get_data( my_properties, "_watermark", NULL );
184         mlt_properties watermark_properties = MLT_FILTER_PROPERTIES( watermark );
185         char* dynamic_text = mlt_properties_get( my_properties, "argument");
186
187         // Check for keywords in dynamic text
188         if ( dynamic_text )
189         {
190                 // Apply keyword substitution before passing the text to the filter.
191                 char result[MAX_TEXT_LEN] = "";
192                 substitute_keywords( filter, result, dynamic_text, frame );
193                 mlt_properties_set( watermark_properties, "producer.markup", (char*) result );
194         }
195
196         // Pass the properties to the watermark filter composite transition
197         mlt_properties_set( watermark_properties, "composite.geometry", mlt_properties_get( my_properties, "geometry" ) );
198         mlt_properties_set( watermark_properties, "composite.halign", mlt_properties_get( my_properties, "halign" ) );
199         mlt_properties_set( watermark_properties, "composite.valign", mlt_properties_get( my_properties, "valign" ) );
200
201         // Pass the properties to the watermark filter pango producer
202         mlt_properties_set( watermark_properties, "producer.font", mlt_properties_get( my_properties, "font" ) );
203         mlt_properties_set( watermark_properties, "producer.weight", mlt_properties_get( my_properties, "weight" ) );
204         mlt_properties_set( watermark_properties, "producer.fgcolour", mlt_properties_get( my_properties, "fgcolour" ) );
205         mlt_properties_set( watermark_properties, "producer.bgcolour", mlt_properties_get( my_properties, "bgcolour" ) );
206         mlt_properties_set( watermark_properties, "producer.olcolour", mlt_properties_get( my_properties, "olcolour" ) );
207         mlt_properties_set( watermark_properties, "producer.pad", mlt_properties_get( my_properties, "pad" ) );
208         mlt_properties_set( watermark_properties, "producer.outline", mlt_properties_get( my_properties, "outline" ) );
209
210         // Process the filter
211         mlt_filter_process( watermark, frame );
212 }
213
214 /** Get the image.
215 */
216
217 static int filter_get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
218 {
219         // Pop the service
220         mlt_filter filter = mlt_frame_pop_service( frame );
221
222         mlt_service_lock( MLT_FILTER_SERVICE( filter ) );
223
224         apply_filter(filter, frame);
225
226         mlt_service_unlock( MLT_FILTER_SERVICE( filter ) );
227
228         // Need to get the image
229         return mlt_frame_get_image( frame, image, format, width, height, 1 );
230 }
231
232
233 /** Filter processing.
234 */
235
236 static mlt_frame filter_process( mlt_filter filter, mlt_frame frame )
237 {
238         // Push the filter
239         mlt_frame_push_service( frame, filter );
240
241         // Register the get image method
242         mlt_frame_push_get_image( frame, filter_get_image );
243
244         // Return the frame
245         return frame;
246 }
247
248 /** Constructor for the filter.
249 */
250
251 mlt_filter filter_dynamictext_init( mlt_profile profile, mlt_service_type type, const char *id, void *arg )
252 {
253         // Create the filter
254         mlt_filter filter = mlt_filter_new( );
255         mlt_filter watermark = mlt_factory_filter( profile, "watermark", "pango:" );
256
257         // Initialise it
258         if ( filter && watermark )
259         {
260                 // Get the properties
261                 mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
262
263                 // Store the watermark filter for future use
264                 mlt_properties_set_data( properties, "_watermark", watermark, 0, ( mlt_destructor )mlt_filter_close, NULL );
265
266                 // Assign default values
267                 mlt_properties_set( properties, "argument", arg ? arg: "#timecode#" );
268                 mlt_properties_set( properties, "geometry", "0%/0%:100%x100%:100" );
269                 mlt_properties_set( properties, "font", "Sans 48" );
270                 mlt_properties_set( properties, "weight", "400" );
271                 mlt_properties_set( properties, "fgcolour", "0x000000ff" );
272                 mlt_properties_set( properties, "bgcolour", "0x00000020" );
273                 mlt_properties_set( properties, "olcolour", "0x00000000" );
274                 mlt_properties_set( properties, "pad", "0" );
275                 mlt_properties_set( properties, "halign", "left" );
276                 mlt_properties_set( properties, "valign", "top" );
277                 mlt_properties_set( properties, "outline", "0" );
278
279                 // Specify the processing method
280                 filter->process = filter_process;
281         }
282         else // filter or watermark failed for some reason
283         {
284                 if( filter )
285                 {
286                         mlt_filter_close(filter);
287                 }
288
289                 if( watermark )
290                 {
291                         mlt_filter_close(watermark);
292                 }
293
294                 filter = NULL;
295         }
296
297         return filter;
298 }