Page 1 of 1
flv ready ?
Posted: Mon Nov 19, 2007 18:19
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 !
Posted: Mon Nov 19, 2007 19:51
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
Posted: Fri Nov 23, 2007 14:04
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