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;
52 static struct options_t options[] = {
58 {"r", "mp3-samplerate"},
64 {"T", "flashversion"},
69 int args_callback_option(char*name,char*val)
71 if(!strcmp(name, "V")) {
72 printf("avi2swf-ng - part of %s %s\n", PACKAGE, VERSION);
75 else if(!strcmp(name, "o")) {
79 else if(!strcmp(name, "q")) {
87 else if(!strcmp(name, "p")) {
91 else if(!strcmp(name, "k")) {
92 keyframe_interval = atoi(val);
95 else if(!strcmp(name, "A")) {
96 audio_adjust = atof(val);
99 else if(!strcmp(name, "v")) {
103 else if(!strcmp(name, "T")) {
104 flashversion = atoi(val);
107 else if(!strcmp(name, "x")) {
111 else if(!strcmp(name, "m")) {
112 mp3_bitrate = atoi(val);
115 else if(!strcmp(name, "r")) {
116 samplerate = atoi(val);
117 if(samplerate >= 11000 && samplerate <= 12000)
119 else if(samplerate >= 22000 && samplerate <= 23000)
121 else if(samplerate >= 44000 && samplerate <= 45000)
124 fprintf(stderr, "Invalid samplerate: %d\n", samplerate);
125 fprintf(stderr, "Allowed values: 11025, 22050, 44100\n", samplerate);
130 else if(!strcmp(name, "S")) {
134 else if(!strcmp(name, "s")) {
135 scale = atoi(val)/100.0;
136 if(scale>1.0 || scale<=0) {
137 fprintf(stderr, "Scale must be in the range 1-100!\n");
142 fprintf(stderr, "Unknown option: -%s\n", name);
145 int args_callback_longoption(char*name,char*val)
147 return args_long2shortoption(options, name, val);
149 void args_callback_usage(char *name)
152 printf("Usage: %s file.avi [-o output.swf]\n", name);
154 printf("-h , --help Print help and exit\n");
155 printf("-o , --output filename Specify output filename\n");
156 printf("-A , --adjust seconds Audio adjust: Shift sound -seconds to the future or +seconds into the past.\n");
157 printf("-n , --num frames Number of frames to encode\n");
158 printf("-m , --mp3-bitrate <kbps> Set the mp3 bitrate to encode audio with\n");
159 printf("-r , --mp3-samplerate <hz> Set the mp3 samplerate to encode audio with (default: 11025)\n");
160 printf("-d , --scale <val> Scale down to factor <val>. (in %, e.g. 100 = original size)\n");
161 printf("-p , --flip Turn movie upside down\n");
162 printf("-q , --quality <val> Set the quality to <val>. (0-100, 0=worst, 100=best, default:80)\n");
163 printf("-x , --extragood Enable some *very* expensive compression strategies.\n");
164 printf("-T , --flashversion <n> Set output flash version to <n>.\n");
165 printf("-V , --version Print program version and exit\n");
168 int args_callback_command(char*name,char*val)
171 fprintf(stderr, "Only one file allowed. You supplied at least two. (%s and %s)\n",
178 static char toabuf[128];
179 static char*ftoa(double a)
181 sprintf(toabuf, "%f", a);
184 static char*itoa(int a)
186 sprintf(toabuf, "%d", a);
191 pthread_t main_thread;
192 static void sigterm(int sig)
194 if(pthread_equal (pthread_self(), main_thread))
196 if(frameno>0 && !shutdown_avi2swf) {
198 printf("Thread [%08x] got sigterm %d\n", pthread_self(), sig);
207 int main (int argc,char ** argv)
215 signal(SIGTERM, sigterm);
216 signal(SIGINT , sigterm);
217 signal(SIGQUIT, sigterm);
218 main_thread = pthread_self();
221 processargs(argc, argv);
223 fprintf(stderr, "You must supply a filename");
226 if(keyframe_interval<0) {
228 keyframe_interval=20;
233 fi = fopen(outputfilename, "wb");
235 fflush(stdout); fflush(stderr);
236 fprintf(stderr, "Couldn't open %s\n", outputfilename);
241 ret = videoreader_vfw_open(&video, filename);
243 ret = videoreader_avifile_open(&video, filename);
247 fprintf(stderr, "Error opening %s\n", filename);
252 printf("| video framerate: %f\n", video.fps);
253 printf("| video size: %dx%d\n", video.width, video.height);
254 printf("| audio rate: %d\n", video.samplerate);
255 printf("| audio channels: %d\n", video.channels);
258 ret = v2swf_init(&v2swf, &video);
260 v2swf_setparameter(&v2swf, "verbose", "1");
261 v2swf_setparameter(&v2swf, "quality", itoa(quality));
262 v2swf_setparameter(&v2swf, "blockdiff", "0");
263 v2swf_setparameter(&v2swf, "blockdiff_mode", "exact");
264 v2swf_setparameter(&v2swf, "mp3_bitrate", itoa(mp3_bitrate));
265 v2swf_setparameter(&v2swf, "samplerate", itoa(samplerate));
266 //v2swf_setparameter(&v2swf, "fixheader", "1");
267 //v2swf_setparameter(&v2swf, "framerate", "15");
268 v2swf_setparameter(&v2swf, "scale", ftoa(scale));
269 v2swf_setparameter(&v2swf, "prescale", "1");
270 v2swf_setparameter(&v2swf, "flash_version", itoa(flashversion));
271 v2swf_setparameter(&v2swf, "keyframe_interval", itoa(keyframe_interval));
273 v2swf_setparameter(&v2swf, "motioncompensation", "1");
275 video.setparameter(&video, "flip", "1");
277 video.setparameter(&video, "verbose", "1");
283 int num = ((int)(audio_adjust*video.samplerate))*video.channels*2;
284 void*buf = malloc(num);
285 video.getsamples(&video, buf, num);
287 } else if(audio_adjust<0) {
288 int num = (int)(-audio_adjust*video.fps);
289 void*buf = malloc(video.width*video.height*4);
292 video.getimage(&video, buf);
299 void*buf = malloc(video.width*video.height*4);
300 for(t=0;t<skip;t++) {
301 video.getimage(&video, buf);
302 video.getsamples(&video, buf, (int)((video.samplerate/video.fps)*video.channels*2));
304 printf("\rSkipping frame %d", video.frame);fflush(stdout);
312 int l=v2swf_read(&v2swf, buffer, 4096);
313 fwrite(buffer, l, 1, fi);
317 printf("\rConverting frame %d", video.frame);fflush(stdout);
323 v2swf_backpatch(&v2swf, outputfilename);