flv ready ?

Post your questions here and we'll all try to help.
Post Reply
HEYJUNIOR!
Posts: 1
Joined: Mon Nov 19, 2007 18:10

flv ready ?

Post by HEYJUNIOR! »

es there any plugin for flv?

i wanne use some youtube clips,
is ther any way to use flv files without
converting them?

at the moment i try v2.41

anyone an idea ? thx !

DayVeeJay
Posts: 388
Joined: Mon Nov 05, 2007 23:38
Location: Chicago, IL

Post by DayVeeJay »

try vixy.net or zamzar.com. you copy/paste the url of the video you want and it converts it into a usable format

norm
Posts: 2
Joined: Wed Jun 07, 2006 09:56
Location: Brussels

Post by norm »

I use ffmpeg, a command-line app. It's used in many other open source apps. You can download the compiled Windows version here:
http://arrozcru.no-ip.org/ffmpeg_builds/
Decompress the file and put the files in the windows/system32 (or anywhere else but it should be reachable through the PATH-Var).
Now create a new batch-file (e.g. convert.bat .. it's a plain text-file with the .bat extension).
Open the .bat-file and put the following line in it..:
FOR %%a IN (*.mov *.flv *.avi *.mpg) DO ffmpeg -i "%%a" -f avi -vcodec mjpeg -qmin 4 -qmax 2 -y -an -s 400x300 "%%a.avi"
This command will take all the movie-files found in the current directory and convert them to .AVI-files in 400x300 encoded in MJPEG in high quality. None of the files get overwritten by this, they'll have an additional .avi-extension.
.. save the file and run it..
FFMPEG is far the fastest encoder and understands a big bunch of media-files.
If you want to go in the depth with it, have look at the documentation:
http://ffmpeg.mplayerhq.hu/ffmpeg-doc.html

Post Reply