X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=src%2Fjpeg2swf.c;h=9981a15f65848e074403ad91742903b3d4c79716;hp=b53958a0fe27a1916f6e676cb3ebc00254440c56;hb=f29d8006b1d8253c50808d6eb4941bdeb808c601;hpb=98d547745ade4979ad9cdccf355a22ab899f9587 diff --git a/src/jpeg2swf.c b/src/jpeg2swf.c index b53958a..9981a15 100644 --- a/src/jpeg2swf.c +++ b/src/jpeg2swf.c @@ -546,6 +546,7 @@ static struct options_t options[] = { {"y", "yoffset"}, {"X", "width"}, {"Y", "height"}, +{"T", "flashversion"}, {"v", "verbose"}, {"V", "version"}, {"f", "fit-to-movie"}, @@ -593,6 +594,7 @@ void args_callback_usage(char *name) printf("-y , --yoffset vertically offset images by \n"); printf("-X , --width Force movie width to (default: autodetect)\n"); printf("-Y , --height Force movie height to (default: autodetect)\n"); + printf("-T , --flashversion Set flash file version to \n"); printf("-v , --verbose Set verbose level to (0=quiet, 1=default, 2=debug)\n"); printf("-V , --version Print version information and exit\n"); printf("-f , --fit-to-movie Fit images to movie size\n"); @@ -630,7 +632,7 @@ int main(int argc, char **argv) int i; for (i = 0; i < global.nfiles; i++) { if (VERBOSE(3)) - fprintf(stderr, "[%03i] %s (%i%%, 1/%i)\n", i, + fprintf(stderr, "[%03i] %s (%i%%)\n", i, image[i].filename, image[i].quality); t = MovieAddFrame(&swf, t, image[i].filename, image[i].quality, image[i].width, image[i].height);