|
|
| Next: FC 6 and Intel 965LT motherboards |
| Author |
Message |
"-Art- External

Since: Feb 25, 2007 Posts: 1
|
Posted: Sun Feb 25, 2007 7:51 pm Post subject: convert SWF to AVI format... Archived from groups: alt>os>linux>redhat (more info?) |
|
|
|
| Greetings,
Is there a way, using mencoder (?), to convert a swf file to an avi?
tia,
-Art- (not Art)
|
|
|
| Back to top |
|
 |
Allen Kistler External

Since: Jun 26, 2004 Posts: 367
|
Posted: Sat Mar 03, 2007 6:19 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
|
| -Art- (not Art) wrote:
> Is there a way, using mencoder (?), to convert a swf file to an avi?
I've never used mencoder, but I've done it with ffmpeg.
|
|
|
| Back to top |
|
 |
-Art- External

Since: Mar 03, 2007 Posts: 2
|
Posted: Sat Mar 03, 2007 6:19 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Sat, 03 Mar 2007 06:19:34 GMT, Allen Kistler <ackistler RemoveThis @oohay.moc>
wrote:
|:-Art- (not Art) wrote:
|:> Is there a way, using mencoder (?), to convert a swf file to an avi?
|:
|:I've never used mencoder, but I've done it with ffmpeg.
how pray tell?
-Art- (not Art) |
|
| Back to top |
|
 |
Allen Kistler External

Since: Jun 26, 2004 Posts: 367
|
Posted: Sat Mar 03, 2007 4:22 pm Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
-Art- wrote:
> On Sat, 03 Mar 2007 06:19:34 GMT, Allen Kistler <ackistler.RemoveThis@oohay.moc>
> wrote:
>
> |:-Art- (not Art) wrote:
> |:> Is there a way, using mencoder (?), to convert a swf file to an avi?
> |:
> |:I've never used mencoder, but I've done it with ffmpeg.
>
> how pray tell?
I don't remember the exact switches, since I don't really use it that
often. Mostly I read the man page, then applied a judicious use of the
info I found there. (FWIW, it was for the GitS title sequence from
their official web site. Don't worry too much if you don't know what
that is.) |
|
| Back to top |
|
 |
art2u External

Since: Aug 15, 2006 Posts: 10
|
Posted: Sat Mar 10, 2007 10:00 pm Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Sat, 03 Mar 2007 16:22:57 +0000, Allen Kistler wrote:
> -Art- wrote:
>> On Sat, 03 Mar 2007 06:19:34 GMT, Allen Kistler <ackistler.DeleteThis@oohay.moc>
>> wrote:
>>
>> |:-Art- (not Art) wrote:
>> |:> Is there a way, using mencoder (?), to convert a swf file to an
>> avi? |:
>> |:I've never used mencoder, but I've done it with ffmpeg.
>>
>> how pray tell?
>
> I don't remember the exact switches, since I don't really use it that
> often. Mostly I read the man page, then applied a judicious use of the
> info I found there. (FWIW, it was for the GitS title sequence from
> their official web site. Don't worry too much if you don't know what
> that is.)
http://www.thegitsmovie.com/ ???
--
-Art- (not Art) |
|
| Back to top |
|
 |
Jean Cote External

Since: Jul 26, 2004 Posts: 22
|
Posted: Mon Mar 12, 2007 8:53 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
art2u wrote:
> On Sat, 03 Mar 2007 16:22:57 +0000, Allen Kistler wrote:
>
>> -Art- wrote:
>>> On Sat, 03 Mar 2007 06:19:34 GMT, Allen Kistler <ackistler DeleteThis @oohay.moc>
>>> wrote:
>>>
>>> |:-Art- (not Art) wrote:
>>> |:> Is there a way, using mencoder (?), to convert a swf file to an
>>> avi? |:
>>> |:I've never used mencoder, but I've done it with ffmpeg.
>>>
>>> how pray tell?
>> I don't remember the exact switches, since I don't really use it that
>> often. Mostly I read the man page, then applied a judicious use of the
>> info I found there. (FWIW, it was for the GitS title sequence from
>> their official web site. Don't worry too much if you don't know what
>> that is.)
>
> http://www.thegitsmovie.com/ ???
This is an example of how I would do it in a two pass Xvid mode. Sound
will be mp3 (128k) and video will be Xvid/DivX in a .avi container.
mencoder file.swf -o /dev/null -oac copy -ovc xvid -xvidencopts pass=1:turbo
mencoder file.swf -o file.avi -oac lavc -lavcopts
acodec=mp3:abitrate=128 -ovc xvid -xvidencopts pass=2:bitrate=1600
man mencoder will explain the switch!
regards,
Jean |
|
| Back to top |
|
 |
"-Art- External

Since: Mar 18, 2007 Posts: 1
|
Posted: Sun Mar 18, 2007 7:36 pm Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
On Mon, 12 Mar 2007 08:53:48 -0400, Jean Cote <nospam.DeleteThis@nospam.nospam>
wrote:
<snip>.......
>>
>> http://www.thegitsmovie.com/ ???
>
>This is an example of how I would do it in a two pass Xvid mode. Sound
>will be mp3 (128k) and video will be Xvid/DivX in a .avi container.
>
>mencoder file.swf -o /dev/null -oac copy -ovc xvid -xvidencopts pass=1:turbo
>
>mencoder file.swf -o file.avi -oac lavc -lavcopts
>acodec=mp3:abitrate=128 -ovc xvid -xvidencopts pass=2:bitrate=1600
>
>man mencoder will explain the switch!
>
>regards,
>
>Jean
A very belated thanks!
-Art- (not Art0
-Art- (not Art) |
|
| Back to top |
|
 |
piero

Joined: Feb 16, 2007 Posts: 78
Location: UK
|
Posted: Thu Mar 22, 2007 8:19 am Post subject: [Login to view extended thread Info.] |
|
|
| Quote: |
Greetings,
Is there a way, using mencoder (?), to convert a swf file to an avi?
tia,
-Art- (not Art) |
I use for such goals Flash To Video Encoder.
 |
|
| Back to top |
|
 |
Cerin

Joined: May 04, 2007 Posts: 2
|
Posted: Fri May 04, 2007 2:30 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] |
|
|
| Jean Cote wrote: |
art2u wrote:
mencoder file.swf -o /dev/null -oac copy -ovc xvid -xvidencopts pass=1:turbo
mencoder file.swf -o file.avi -oac lavc -lavcopts
acodec=mp3:abitrate=128 -ovc xvid -xvidencopts pass=2:bitrate=1600
|
[swf @ 0x850c234]Compressed SWF format not supported |
|
| Back to top |
|
 |
Cerin

Joined: May 04, 2007 Posts: 2
|
Posted: Fri May 04, 2007 2:35 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] |
|
|
| It's interesting that this page is the only page found by Google claiming that mencoder supports SWF, when mencoder's man page clearly shows it does not support SWF. If you don't know how to use mencoder, it's better to say nothing at all then to give someone bad advice. |
|
| Back to top |
|
 |
dzark External

Since: Jun 09, 2007 Posts: 1
|
Posted: Sat Jun 09, 2007 5:21 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: alt>os>linux>redhat (more info?) |
|
|
Man page for mencoder states that it DOES NOT support swf!
--
dzark |
|
| Back to top |
|
 |
KH Jeron External

Since: Jun 16, 2007 Posts: 1
|
Posted: Sat Jun 16, 2007 5:23 pm Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
To accomplish a conversion from *.swf to *avi I succesfully used the
following workflow:
First I used a python script called edit.py from the pyvnc2swf
suite(pyvnc2swf-0.9.3) to convert input.swf to output.flv (yes its a
flash video movie)
edit.py -o output.flv input.swf
Then I used ffmpeg to convert output.flv to output.avi.
ffmpeg -i output.flv output.avi
I hope this helps
KH
--
KH Jeron |
|
| Back to top |
|
 |
dzark External

Since: Jun 16, 2007 Posts: 1
|
Posted: Sat Jun 16, 2007 11:50 pm Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Thanks KH Jeron!
Looking at this page on pyvnc2swf
http://www.unixuser.org/~euske/vnc2swf/pyvnc2swf.html#edit
it seems that it is possible to go straight from swf -> mpeg:
<<
$ edit.py -o outfile.swf [options] infile ...
Example
(Convert .swf into MPEG)
$ edit.py -o out.mpg input.swf
(Convert .swf into .flv)
$ edit.py -o out.flv input.swf
>>
Saving a lossey step converting flv->avi and giving a M$ format a
'heave-ho' at the same time
Am having a problem with embedded sound, but that may just be me and
and fact i have to be at work very soon and can't play any longer..
Thanks again KH Jeron!!!
Cheers,
wulf solter
--
dzark |
|
| Back to top |
|
 |
dzark External

Since: Jun 17, 2007 Posts: 1
|
Posted: Sun Jun 17, 2007 4:01 am Post subject: Re: convert SWF to AVI format... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Hi all,
To get a conversion happening with sound i needed to:
add the -V (video) switch in edit.py
$ edit.py -o out.mpg -V input.swf
and upgrade to latest flash player
$ sudo aptitude update && sudo aptitude install flashplugin-nonfree
(with edgy backports repo enabled)
also note that edit.py to mpeg requires PyMedia (http://pymedia.org/)
whereas SWF -> FLV -> AVI doesn't.
So much nicer than the nasty (and expensive) programs under windows
that just do a screen capture of a playing swf....
So here's all the links in one spot:
vnc2swf (edit.py): http://www.unixuser.org/~euske/vnc2swf/
PyMedia (Python MPEG): http://pymedia.org/
Flash9 Install Howto: http://www.psychocats.net/ubuntu/flash
Seveas Packages (for Lame3.97):
http://ubuntu-tutorials.com/2006/10/21/seveas-ubuntu-packages/
cheers,
wulf solter
--
dzark |
|
| Back to top |
|
 |
Maha

Joined: Sep 13, 2007 Posts: 30
|
Posted: Wed Oct 03, 2007 3:19 am Post subject: [Login to view extended thread Info.] |
|
|
| piero wrote: |
| Quote: |
Greetings,
Is there a way, using mencoder (?), to convert a swf file to an avi?
tia,
-Art- (not Art) |
I use for such goals Flash To Video Encoder.
 |
I also use Flash To Video Encoder ..
I think it is the best converter and I advice it to all people!!!!!!  |
|
| Back to top |
|
 |
Maha

Joined: Sep 13, 2007 Posts: 30
|
Posted: Wed Nov 14, 2007 2:26 am Post subject: [Login to view extended thread Info.] |
|
|
ALSO...
convert swf to any video files, add watermarks, logos and copyright messages to video file, select logo from any image or video file and add to video file... Flash To Video Encoder PRO  |
|
| Back to top |
|
 |
thunderfish

Joined: Nov 26, 2007 Posts: 1
|
Posted: Mon Nov 26, 2007 2:47 am Post subject: [Login to view extended thread Info.] |
|
|
I always use Moyea SWF to Video converter, it can convert swf to AVI (XVID Video/DIVX Video),AVI With Alpha, mpg,etc, it works well with my swf files.
you can learn how to use it on http://www.swfkits.com/swf_converter/ |
|
| Back to top |
|
 |
swordm

Joined: May 05, 2008 Posts: 10
|
Posted: Mon May 05, 2008 4:03 am Post subject: Magic Swf2Avi 2008 [Login to view extended thread Info.] |
|
|
Magic Swf2Avi 2008 can help you convert flash video to avi, simply, directly, high-quality.
you can download this software FREE:
http://www.effectmatrix.com/swf2avi/index.htm
or
http://www.google.com/search?hl=en&q=Magic+Swf2Avi+2008&btnG=G...le+Sear
features:
a. Three output mode(Auto/two compressions/a compression), you can high-quality, simple, rapid convert flash file.
b. One step to convert flash(swf) to your iPod, PSP, Zune, 3GP mobile phone(Nokia, Sony Ericsson, Motorola), Apple TV, iPhone, etc.
c. Convert and Burn flash(swf) file to DVD, SVCD, VCD and Audio CD.
d. Support the output video formats: AVI, MPEG, MPEG2 TS, MP4, WMV, 3GP, GIF, H.264/MPEG-4 AVC, H.264/PSP AVC Video, MOV, FLV, etc..
e. Extract and Convert flash(swf) file audio to other popular audio formats, like MP2, MP3, AC3, WMA, WAV, FLAC, M4A, OGG, AAC, AU, MMF etc..
f. Convert flash(swf) to JPG, BMP image sequences, TAG, TIFF, PNG image sequences with alpha transparent channel. |
|
| Back to top |
|
 |
polli

Joined: May 14, 2008 Posts: 1
|
Posted: Wed May 14, 2008 3:57 am Post subject: [Login to view extended thread Info.] |
|
|
Hi
For converting flash video to avi I use Flash to Video Encoder It`s great prog  |
|
| Back to top |
|
 |
liloo

Joined: Sep 18, 2007 Posts: 10
|
Posted: Wed Aug 13, 2008 6:07 am Post subject: [Login to view extended thread Info.] |
|
|
| I ue Flash To Video Encoder! Good soft! |
|
| Back to top |
|
 |
|
|
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
| |
|
|