2 Convert avi movie files into swf.
4 Part of the swftools package.
6 Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
27 #include "../config.h"
29 #include "../lib/args.h"
32 #include "videoreader_vfw.hh"
34 #include "videoreader_avifile.hh"
37 static char * filename
= 0;
38 static char * outputfilename
= "output.swf";
41 static int quality
= 80;
42 static double scale
= 1.0;
44 static int expensive
= 0;
45 static int flashversion
= 6;
46 static int keyframe_interval
= -1;
48 static float audio_adjust
= 0;
49 static int mp3_bitrate
= 32;
50 static int samplerate
= 11025;
51 static int numframes
= 0;
52 static char* skipframes
= 0;
54 static struct options_t options
[] = {
60 {"r", "mp3-samplerate"},
67 {"T", "flashversion"},
72 int args_callback_option(char*name
,char*val
)
74 if(!strcmp(name
, "V")) {
75 printf("avi2swf-ng - part of %s %s\n", PACKAGE
, VERSION
);
78 else if(!strcmp(name
, "o")) {
82 else if(!strcmp(name
, "n")) {
83 numframes
= atoi(val
);
86 else if(!strcmp(name
, "d")) {
90 else if(!strcmp(name
, "q")) {
98 else if(!strcmp(name
, "p")) {
102 else if(!strcmp(name
, "k")) {
103 keyframe_interval
= atoi(val
);
106 else if(!strcmp(name
, "A")) {
107 audio_adjust
= atof(val
);
110 else if(!strcmp(name
, "v")) {
114 else if(!strcmp(name
, "T")) {
115 flashversion
= atoi(val
);
118 else if(!strcmp(name
, "x")) {
122 else if(!strcmp(name
, "m")) {
123 mp3_bitrate
= atoi(val
);
126 else if(!strcmp(name
, "r")) {
127 samplerate
= atoi(val
);
128 if(samplerate
>= 11000 && samplerate
<= 12000)
130 else if(samplerate
>= 22000 && samplerate
<= 23000)
132 else if(samplerate
>= 44000 && samplerate
<= 45000)
135 fprintf(stderr
, "Invalid samplerate: %d\n", samplerate
);
136 fprintf(stderr
, "Allowed values: 11025, 22050, 44100\n", samplerate
);
141 else if(!strcmp(name
, "S")) {
145 else if(!strcmp(name
, "C")) {
146 skipframes
= strdup(val
);
149 else if(!strcmp(name
, "s")) {
150 scale
= atoi(val
)/100.0;
151 if(scale
>1.0 || scale
<=0) {
152 fprintf(stderr
, "Scale must be in the range 1-100!\n");
157 fprintf(stderr
, "Unknown option: -%s\n", name
);
160 int args_callback_longoption(char*name
,char*val
)
162 return args_long2shortoption(options
, name
, val
);
164 void args_callback_usage(char *name
)
167 printf("Usage: %s file.avi [-o output.swf]\n", name
);
169 printf("-h , --help Print help and exit\n");
170 printf("-o , --output filename Specify output filename\n");
171 printf("-A , --adjust seconds Audio adjust: Shift sound -seconds to the future or +seconds into the past.\n");
172 printf("-n , --num frames Number of frames to encode\n");
173 printf("-m , --mp3-bitrate <kbps> Set the mp3 bitrate to encode audio with\n");
174 printf("-r , --mp3-samplerate <hz> Set the mp3 samplerate to encode audio with (default: 11025)\n");
175 printf("-s , --scale <val> Scale down to factor <val>. (in %, e.g. 100 = original size)\n");
176 printf("-S , --skipframes <num> Skip <num> frames before starting the conversion.\n");
177 printf("-p , --flip Turn movie upside down\n");
178 printf("-q , --quality <val> Set the quality to <val>. (0-100, 0=worst, 100=best, default:80)\n");
179 printf("-k , --keyframe Set the number of intermediate frames between keyframes.\n");
180 printf("-x , --extragood Enable some *very* expensive compression strategies.\n");
181 printf("-T , --flashversion <n> Set output flash version to <n>.\n");
182 printf("-V , --version Print program version and exit\n");
185 int args_callback_command(char*name
,char*val
)
188 fprintf(stderr
, "Only one file allowed. You supplied at least two. (%s and %s)\n",
195 static char toabuf
[128];
196 static char*ftoa(double a
)
198 sprintf(toabuf
, "%f", a
);
201 static char*itoa(int a
)
203 sprintf(toabuf
, "%d", a
);
208 pthread_t main_thread
;
209 static void sigterm(int sig
)
211 if(pthread_equal (pthread_self(), main_thread
))
213 if(frameno
>0 && !shutdown_avi2swf
) {
215 printf("Thread [%08x] got sigterm %d\n", pthread_self(), sig
);
224 int main (int argc
,char ** argv
)
232 signal(SIGTERM
, sigterm
);
233 signal(SIGINT
, sigterm
);
234 signal(SIGQUIT
, sigterm
);
235 main_thread
= pthread_self();
238 processargs(argc
, argv
);
240 fprintf(stderr
, "You must supply a filename");
243 if(keyframe_interval
<0) {
245 keyframe_interval
=20;
250 fi
= fopen(outputfilename
, "wb");
252 fflush(stdout
); fflush(stderr
);
253 fprintf(stderr
, "Couldn't open %s\n", outputfilename
);
258 ret
= videoreader_vfw_open(&video
, filename
);
260 ret
= videoreader_avifile_open(&video
, filename
);
264 fprintf(stderr
, "Error opening %s\n", filename
);
269 printf("| video framerate: %f\n", video
.fps
);
270 printf("| video size: %dx%d\n", video
.width
, video
.height
);
271 printf("| audio rate: %d\n", video
.samplerate
);
272 printf("| audio channels: %d\n", video
.channels
);
275 ret
= v2swf_init(&v2swf
, &video
);
277 v2swf_setparameter(&v2swf
, "verbose", "1");
279 v2swf_setparameter(&v2swf
, "numframes", itoa(numframes
));
280 v2swf_setparameter(&v2swf
, "quality", itoa(quality
));
281 v2swf_setparameter(&v2swf
, "blockdiff", "0");
282 v2swf_setparameter(&v2swf
, "blockdiff_mode", "exact");
283 v2swf_setparameter(&v2swf
, "mp3_bitrate", itoa(mp3_bitrate
));
284 v2swf_setparameter(&v2swf
, "samplerate", itoa(samplerate
));
285 //v2swf_setparameter(&v2swf, "fixheader", "1");
286 //v2swf_setparameter(&v2swf, "framerate", "15");
287 v2swf_setparameter(&v2swf
, "scale", ftoa(scale
));
288 v2swf_setparameter(&v2swf
, "prescale", "1");
289 v2swf_setparameter(&v2swf
, "flash_version", itoa(flashversion
));
290 v2swf_setparameter(&v2swf
, "keyframe_interval", itoa(keyframe_interval
));
292 v2swf_setparameter(&v2swf
, "skipframes", skipframes
);
294 v2swf_setparameter(&v2swf
, "motioncompensation", "1");
296 video
.setparameter(&video
, "flip", "1");
298 video
.setparameter(&video
, "verbose", "1");
304 int num
= ((int)(audio_adjust
*video
.samplerate
))*video
.channels
*2;
305 void*buf
= malloc(num
);
306 video
.getsamples(&video
, buf
, num
);
308 } else if(audio_adjust
<0) {
309 int num
= (int)(-audio_adjust
*video
.fps
);
310 void*buf
= malloc(video
.width
*video
.height
*4);
313 video
.getimage(&video
, buf
);
320 void*buf
= malloc(video
.width
*video
.height
*4);
321 for(t
=0;t
<skip
;t
++) {
322 video
.getimage(&video
, buf
);
323 video
.getsamples(&video
, buf
, (int)((video
.samplerate
/video
.fps
)*video
.channels
*2));
325 printf("\rSkipping frame %d", video
.frame
);fflush(stdout
);
333 int l
=v2swf_read(&v2swf
, buffer
, 4096);
334 fwrite(buffer
, l
, 1, fi
);
338 printf("\rConverting frame %d", video
.frame
);fflush(stdout
);
344 v2swf_backpatch(&v2swf
, outputfilename
);