|
||||||
| Forums FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| ARCHIVES - Multimedia Don't know how to watch DVDs using mplayer? Asking yourself what the heck mplayer is? This is the right place to ask. |
|
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
i just posted a howto at videohelp about prepping a compressed type AVI for DVD authoring using only the tools readily available to us suse users(no need to compile a new version of something or other). it's mostly the same as what i posted here but with more detail and explanation.
http://forum.videohelp.com/viewtopic.php?t...aea5e7f1c9cc960 |
|
|||
|
Quote:
|
|
|||
|
HOW TO CONVERT STILL IMAGES TO SHORT VIDEO CLIPS
I've copied this from another web site (referenced below). I find, given the relatively poor state of Linux Non-Linear Video Editors in mixing still images with video clips, it useful to be able to convert one's still images, to short 3 or 4 second long (or longer) video clips, that can then be imported into the Linux Non Linear Video editor, and mixed with various original movie clips. I found this information here on this "relatively old" (but still very good) post: http://gecius.de/linux/dvd.html The following quote explains how to create the short video clips (from still images): Quote:
|
|
|||
|
Quote:
Code:
$ avidemux2_cli --load video.avi --output-format ES --video-codec DVD --filters resize_border.flt --video-conf cbr=4000 --save video.mpg anyway, on my system*, the video conversion is very close to real time(an hour of video takes about an hour to convert). the next longest process would be the audio extraction. again, on my system, IIRC it's about 1:10(1 minute to 10 minutes of audio). the rest of them should be pretty quick. *AMD Athlon 64 Processor 3800+ 1GB corsair xms ddr dfi infinity nf4 sli mobo |
|
|||
|
Reference: http://forums.suselinuxsupport.de/index.ph...st&p=238643
========================================== Credits to Microchip for contributing the above. |
|
|||
|
1. ffmpeg -i input-movie.avi -s 320x240 -ar 44100 -r 12 output-movie.flv
2. cat output-movie.flv | flvtool2 -U stdin output-movie.flv[/b] Reference for the above is here: http://flowplayer.org/documentation/encoding I don't know why the second line is necessary. If someone can point out the reason, I'll edit this post of mine. I did install flvtool (it uses ruby to build) and ran it, but I noticed no difference. http://rubyforge.org/projects/flvtool2/ BUT the overall quality of the flv file created by line#1 (the ffmpeg command) is a vast improvement of the one quoted. Edit: the explanation given for the flvtool2 command is here (and I don't know enough about FLV format to understand why this is important): Quote:
|
|
|||
|
Here is a handy reference providing various command line video conversion methods:
http://en.linuxreviews.org/HOWTO_Convert_video_files The explanations are useful. |
|
|||
|
ffmpeg -i input-video.flv -ab 56 -ar 22050 -b 500 -s 320x240 output-video.avi Could anyone please tell me where you get the info about the values of ab, ar, b, resolution 320X240...etc? I mean how you determine what values to put in the above command? Thank you! |
|
|||
|
Quote:
using following command can do almost lossless convertion ffmpeg -i sourcefile -sameq outputfile it's in "man ffmpeg" |
|
|||
|
Extracting mp3 audio directly from flv file:
ffmpeg -i video.flv -f mp3 -ab 128k audio_track.mp3 video.flv --> your video file 128k --> change for your preferred bitrate audio_track.mp3 --> your output mp3 audio For instance, I downloaded this from youTube and wanted the song badly; to achieve it, I typed this in the terminal: ffmpeg -i KillerInstinct2-ComboTheme.flv -f mp3 -ab 128k KillerInstinct2-ComboTheme.mp3 h34r: <OF> |
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|