swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] convert a jpeg picture into swf


From: Matthias Kramm
Subject: Re: [Swftools-common] convert a jpeg picture into swf
Date: Fri, 5 Aug 2005 11:21:29 +0200
User-agent: Mutt/1.5.6i

On Thu, Aug 04, 2005 at 12:14:01PM +0300, Andy Djagel wrote:
>    I want to convert a jpeg picture into a swf file which must be 3
>    seconds long. After that I want to concatenate it with another
>    flash movie. I prefer to use .
> 
>    I have converted a picture into swf using
>      jpeg2swf -r 0.33 qwe.jpeg -o qwe.swf
>    but after concatenation
>        swfcombine --cat qwe.swf file.swf
>    framerate of resulting output.swf was 0.33 fps, but I need a
> framerate identical with file.swf's one, e.g. 30, 50 etc. fps.
> 
>    So, a question is - what to do?

If you know the framerate of file.swf in advance, you can write 
a short swfc script instead of using jpeg2swf for creating qwe.swf:

.flash version=6 filename="qwe.swf" fps=50
    .jpeg image "qwe.jpeg"
    .put image

    .frame 150 # 3 seconds multiplied by the fps
    .del image
.end

And then run (as before)

    swfcombine --cat qwe.swf file.swf

Greetings

Matthias






reply via email to

[Prev in Thread] Current Thread [Next in Thread]