ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more.
Getting infos from a video file
ffmpeg -i video.avi
Turn X images to a video sequence
ffmpeg -f image2 -i image%d.jpg video.mpg

This command will transform all the images from the current directory (named image1.jpg, image2.jpg, etc…) to a video file named video.mpg.

Turn a video to X images
ffmpeg -i video.mpg image%d.jpg

This command will generate the files named image1.jpg, image2.jpg, …

The following image formats are also availables : PGM, PPM, PAM, PGMYUV, JPEG, GIF, PNG, TIFF, SGI.

Encode a video sequence for the iPpod/iPhone
ffmpeg -i source_video.avi input -acodec aac -ab 128kb -vcodec mpeg4 -b 1200kb -mbd 2 -flags +4mv+trell -aic 2 -cmp 2 -subcmp 2 -s 320x180 -title X final_video.mp4

Explanations :

  • Source : source_video.avi
  • Audio codec : aac
  • Audio bitrate : 128kb/s
  • Video codec : mpeg4
  • Video bitrate : 1200kb/s
  • Video size : 320px par 180px
  • Generated video : final_video.mp4
Encode video for the PSP
ffmpeg -i source_video.avi -b 300 -s 320x240 -vcodec xvid -ab 32 -ar 24000 -acodec aac final_video.mp4

Explanations :

  • Source : source_video.avi
  • Audio codec : aac
  • Audio bitrate : 32kb/s
  • Video codec : xvid
  • Video bitrate : 1200kb/s
  • Video size : 320px par 180px
  • Generated video : final_video.mp4
Extracting sound from a video, and save it as Mp3
ffmpeg -i source_video.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 sound.mp3

Explanations :

  • Source video : source_video.avi
  • Audio bitrate : 192kb/s
  • output format : mp3
  • Generated sound : sound.mp3
Convert a wav file to Mp3
ffmpeg -i son_origine.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 son_final.mp3
Convert .avi video to .mpg
ffmpeg -i video_origine.avi video_finale.mpg
Convert .mpg to .avi
ffmpeg -i video_origine.mpg video_finale.avi
Convert .avi to animated gif(uncompressed)
ffmpeg -i video_origine.avi gif_anime.gif
Mix a video with a sound file
ffmpeg -i son.wav -i video_origine.avi video_finale.mpg
Convert .avi to .flv
ffmpeg -i video_origine.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv video_finale.flv
Convert .avi to dv
ffmpeg -i video_origine.avi -s pal -r pal -aspect 4:3 -ar 48000 -ac 2 video_finale.dv

Or:

ffmpeg -i video_origine.avi -target pal-dv video_finale.dv
Convert .avi to mpeg for dvd players
ffmpeg -i source_video.avi -target pal-dvd -ps 2000000000 -aspect 16:9 finale_video.mpeg

Explanations :

  • target pal-dvd : Output format
  • ps 2000000000 maximum size for the output file, in bits (here, 2 Gb)
  • aspect 16:9 : Widescreen
Compress .avi to divx
ffmpeg -i video_origine.avi -s 320x240 -vcodec msmpeg4v2 video_finale.avi
Compress Ogg Theora to Mpeg dvd
ffmpeg -i film_sortie_cinelerra.ogm -s 720x576 -vcodec mpeg2video -acodec mp3 film_terminée.mpg
Compress .avi to SVCD mpeg2

NTSC format:

ffmpeg -i video_origine.avi -target ntsc-svcd video_finale.mpg

PAL format:

ffmpeg -i video_origine.avi -target pal-svcd video_finale.mpg
Compress .avi to VCD mpeg2

NTSC format:

ffmpeg -i video_origine.avi -target ntsc-vcd video_finale.mpg

PAL format:

ffmpeg -i video_origine.avi -target pal-vcd video_finale.mpg
Multi-pass encoding with ffmpeg
ffmpeg -i fichierentree -pass 2 -passlogfile ffmpeg2pass fichiersortie-2
Find a webhost with ffmpeg enabled

Cirtex Hosting got web hosting plans starting at $2.99.

This article is an English adaptation of Jean Cartier ffmpeg exemples.

Related Posts

No related posts.
 

59 Comments

  1. Posted September 22, 2008 at 8:33 pm | Permalink

    Thanks for the cheat sheet, submitted this to stumble…

  2. Posted September 22, 2008 at 8:47 pm | Permalink

    Thanks, Stephen!

  3. Posted September 22, 2008 at 11:17 pm | Permalink

    Great article! Submitted to digg.

    Regards,

    Cecil

  4. Posted September 22, 2008 at 11:22 pm | Permalink

    Thanks, cesman!

  5. Posted September 23, 2008 at 6:05 am | Permalink

    You’re welcome.

  6. Posted September 23, 2008 at 10:04 am | Permalink

    Some of my favorite ffmpeg commands. I use mencoder for the rest.

  7. M Kenyon II
    Posted September 23, 2008 at 8:23 pm | Permalink

    How about DVD to avi?

  8. damien
    Posted September 23, 2008 at 8:33 pm | Permalink

    Pretty cool! In converting images to a video, how do you start in a different #… like say i want to do image50 to image100.jpg?

  9. damien
    Posted September 23, 2008 at 8:48 pm | Permalink

    I guess it didn’t take my comment. I was wondering if there was a way to turn images into video, but, by specifying a range of images… i.e. image50 – image500 . only converting those images?

  10. Posted September 23, 2008 at 9:48 pm | Permalink

    I only use ffmpeg with xine. I thought it was a library but it seems it is also a command line tool. And a very powerful at that.
    Thanks a lot.

  11. Posted September 23, 2008 at 9:54 pm | Permalink

    @damien: I don’t know why but Akismet flagged your comment as spam…Btw, I never tried to start of at image50.jpg, but I’m pretty sure that it will work if you define a integer shell variable named d which have 50 as a value.

    @Olivier: You can use ffmpeg both as a command line tool, or as a library. I’m pretty sure that Youtube uses it to convert mpeg and avi videos submitted by its users to the flv files they displays on the site.

  12. damien
    Posted September 23, 2008 at 10:10 pm | Permalink

    How would you define that in a command line? How about doing btws? Between image50 and image500? I know this is a lot to ask, but thanx for replying and your help!

  13. Michael B
    Posted September 23, 2008 at 10:47 pm | Permalink

    iPhone question (yeah, yeah, I know). From looking online it appears that the iPhone can play XVID/DIVX files, since they’re basically MPEG4. Does anyone know a way to do a fast transcode? Leave the data the same, just change the bare minimum (headers/container) so that iTunes will import and sync it to the iPod? It’d take up more space, but it would take minute or so to do an entire (for sake of argument, mind you) TV show that you found on the intertubes.

    (And thanks for the reminder on FFMPEG – I needed something like that last night)

  14. damien
    Posted September 24, 2008 at 3:47 pm | Permalink

    @ jbj

    I have images in sequence that look like this:

    image00001.jpg

    all the way to image05000.jpg

    I tried doing the code up there but nothing. I get an error. Here’s what i tried:

    ffmpeg -f image2 -i image%d.jpg video.mpg

    I get this error:

    image%d.jpg: I/O error occurred
    Usually that means that input file is truncated and/or corrupted.

    What’s interesting is if i change the file name to 001.jpg and so on, it works. I really don’t have control of what the jpg name is going to be so how do i get it to work with that naming convention? Thanx again!

  15. v3g
    Posted September 24, 2008 at 4:33 pm | Permalink

    Thanks for the recipe, but can’t encode tv show to mp4 ipod. I get “Unable to find a suitable output format for ‘input’” error. Tried on Ubuntu and FreeBSD, video is:
    Input #0, avi, from ‘Eureka.avi’:
    Duration: 00:41:56.8, start: 0.000000, bitrate: 1157 kb/s
    Stream #0.0: Video: mpeg4, yuv420p, 624×352, 23.98 fps(r)
    Stream #0.1: Audio: mp3, 48000 Hz, stereo, 128 kb/s
    Maybe, I need to install something else? I updated ffmpeg to the latest. Is there an option for dynamic scaling, or the tool can calculate it?

  16. Posted September 24, 2008 at 7:31 pm | Permalink

    @15 – v3g: “input” is a typo – just delete it. The OP is using the command line from the ffmpeg documentation, which uses “input” as a placeholder for the name of the input file.

    Also, if you get an error about not having the aac codec, use libfaac instead.

    http://ffmpeg.mplayerhq.hu/faq.html#SEC25

  17. v3g
    Posted September 25, 2008 at 11:28 am | Permalink

    Thanks, now its working, but the quality is awfull:
    ffmpeg -i xxxxx.avi -acodec libfaac -ab 128kb -vcodec libx264 -b 1157kb -mbd 2 -flags +4mv+trell -aic 2 -cmp 2 -subcmp 2 -s 312×176 -title X xxxxx.mp4

    Input #0, avi, from ‘xxxxx.avi’:
    Duration: 00:41:56.8, start: 0.000000, bitrate: 1157 kb/s
    Stream #0.0: Video: mpeg4, yuv420p, 624×352, 23.98 fps(r)
    Stream #0.1: Audio: mp3, 48000 Hz, stereo, 128 kb/s
    File ‘eureka.mp4′ already exists. Overwrite ? [y/N] y
    Output #0, mp4, to ‘xxxxx.mp4′:
    Stream #0.0: Video: libx264 (hq), yuv420p, 312×176, q=2-31, 1157 kb/s, 23.98 fps(c)
    Stream #0.1: Audio: libfaac, 48000 Hz, stereo, 128 kb/s

    And that worked on FreeBSD, not Ubuntu. For vcodec mpeg4, I couldn’t change the width and height, but only with libx264. And still doesn’t work with Ubuntu.

    How do you change the quality, something like ‘q=2′ or ‘q=9′?

  18. Posted September 25, 2008 at 3:16 pm | Permalink

    @v3g : When you change the video codec, you have to use the correct parameters. I have a few examples listed here for h.264:
    http://onlydarksets.wordpress.com/2008/09/19/convert-sage-recordings-to-iphone/#more-408

  19. SWATZ
    Posted September 27, 2008 at 7:05 am | Permalink

    TOUT SIMPLEMENT
    BRAVISIMO

    Thanks Dude , You Are the GNU :)

  20. PhillyPhanatic
    Posted September 30, 2008 at 4:09 pm | Permalink

    @damien

    might find some help here:

    http://ffmpeg.mplayerhq.hu/ffmpeg-doc.html#SEC3

  21. Matt
    Posted October 27, 2008 at 8:50 am | Permalink

    @M Kenyon II

    Handbrake-DVD to AVI (multiplatform, open source)
    http://www.applemacvideo.com/articles/rip-dvd-on-mac-using-handbrake.html#126

  22. socky
    Posted November 12, 2008 at 7:09 am | Permalink

    arrived through stumble… excellent info.

  23. Posted November 22, 2008 at 4:19 am | Permalink

    anyone has a code that will convert wmv to 3gp???

    Thank for the efforts!

  24. mrmanny
    Posted December 23, 2008 at 4:48 am | Permalink

    to encode an avi to to an nokia e71 recognized mp4 format:

    ffmpeg -y -i inputFILE.avi -acodec aac -ab 72k -s 320×176 -aspect 16:9 -vcodec h264 -b 300k -qcomp 0.6 -qmin 16 -qmax 51 -qdiff 4 -flags +loop -cmp +chroma -subq 7 -refs 6 -g 250 -keyint_min 25 -rc_eq ‘blurCplx^(1-qComp)’ -sc_threshold 40 -me_range 12 -i_qfactor 0.71 -directpred 3 outputFILE.mp4

    original file was 700MB, resulting mp4 encoded file slightly less then half @300MB…quality is excellent :)

    even though I don’t foresee watching many video’s on this amazing phone, I thought I would share my findings…

    hh,
    manny

  25. Jay
    Posted December 29, 2008 at 11:55 pm | Permalink

    Does anyone know if ffmpeg supports transparent images ? I’m trying to put a sequence of PNGs into a .flv or .mov movies but the transparent parts of the images become black. I searched on Google but can’t find any solution.

  26. Imran Ali
    Posted January 1, 2009 at 1:02 pm | Permalink

    Thanks for a really nice post, It really helped me alot. :-)

  27. Posted January 16, 2009 at 3:24 am | Permalink

    Awesome. Thanks!

  28. ajoism
    Posted January 31, 2009 at 10:43 pm | Permalink

    hello…thanks,it’s great but if i convert AVI format into jpg and 3GP into jpg at the same time, how we can determine it is the same frame?can u help me?

  29. TechDogg
    Posted February 7, 2009 at 8:50 pm | Permalink

    Hi! Thanks a lot for this pre-chewed tutorial! The only thing is that I came across errors when trying the command to convert a video to the iPhone/iPod format.

    I was able to fix it by removing the word “input” from the command line. Worked perfectly after that. Just wanted to share that with everyone!

    Merci encore!

    TechDogg

  30. Morshed Alam
    Posted February 15, 2009 at 5:57 pm | Permalink

    Hi,
    I am facing problem to convert video to .flv in my linux server using ffmpeg. I think ffmpeg is not execute in my server. I gave read/write/execute permission to ffmpeg. Can anyone give me idea of this type of problem or how can i solve this?

    Advanced thanks for helping me….

    :- Morshed Alam

  31. Posted February 15, 2009 at 11:42 pm | Permalink

    @Morshed
    No one can help w/ with such a vague question. It would help if you provided the context of the command you are trying to execute and the resulting error.

    Regards,

    Cecil

  32. jimmy
    Posted March 3, 2009 at 11:31 am | Permalink

    Thankyou so much
    A tutorial for humans!!
    Just what I’ve been looking for

  33. Nancy
    Posted March 4, 2009 at 5:21 am | Permalink

    Awesome cheat sheet! Thanks for all your work to put this together. Many good karma points for you :)

  34. Posted April 4, 2009 at 12:13 pm | Permalink

    what a great article

  35. Posted April 9, 2009 at 9:51 pm | Permalink

    Great article. Thanks.

  36. Posted May 13, 2009 at 8:37 am | Permalink

    Dude this is an awesome list of commands. Usually I am only able to find a couple by searching when I need them, kind of hit and miss. You have a great list much more than most. Many Thanks!

  37. Jason
    Posted May 26, 2009 at 2:24 pm | Permalink

    When using
    ffmpeg -f image2 -i image%d.jpg video.mpg
    what if I have hundreds of images starting at image4928.JPG and ending in image5028.JPG, is there a way with out renaming all the files? I tried
    ffmpeg -f image2 -i image%04d.jpg video.mpg

    but no worky

  38. suba
    Posted May 27, 2009 at 2:00 pm | Permalink

    Hello

    I have converted video using ffmpeg for .wmv and then taken a snapshot for that video
    Please check the below code
    exec($varFFMPEGpath.’ -i ‘.$n_file_name.’ -sameq -ar 44100 -r 25 -ac 2 -ab 128 -b 1200 -qmin 3 -qmax 6 ‘.$filename1);
    exec($varFFMPEGpath.’ -i ‘.$n_file_name.’ -deinterlace -an -ss 00:00:02 -r 1 -y -vcodec mjpeg -f mjpeg ‘.$Img_Name.” 2>&1″);

    Video is playing but the audio is not getting.
    Please suggest me to get through the issue. It will be grateful.

  39. R
    Posted June 3, 2009 at 6:50 pm | Permalink

    How to replace audio track in mpg file?
    Anybodu knows?

  40. akthar
    Posted June 23, 2009 at 5:59 am | Permalink

    Thanks for this nice tutorial,if any one can provide how to make watermark in videos using ffmpeg becaz vhook is not live now…..Pls provide this

  41. Jatin Sadana
    Posted June 23, 2009 at 1:07 pm | Permalink

    AWESOME

  42. Posted June 27, 2009 at 5:07 am | Permalink

    Using ffmpeg on our linux server to convert user uploaded videos to FLV. Sort of like a YouTube.

    I am not satisfied with the quality, and know there has to be a better way. I have tried several changes, but am not getting where I would like it to be. As good as YouTube.

    Please see my command line below, and suggest any changes I can make to improve the output quality.

    Please keep in mind that the uploaded “user.fil” could be an flv,avi,wmv or a mpg.

    ffmpeg -i user.fil -acodec libfaac -ab 156k -b 1024k output.flv

    Thank you for any help you can give, and this is a GREAT cheat sheet. I will keep a copy by my side!!!

  43. Posted June 28, 2009 at 7:02 am | Permalink

    Well, I think I got it.

    All I did is add the format key, and the results were 100% better. So remember this.

    BAD – ffmpeg -i user.fil -acodec libfaac -ab 156k -b 1024k output.flv

    GOOD – ffmpeg -i user.fil -acodec libfaac -ab 156k -b 1024k -f flv output.flv

  44. Posted July 10, 2009 at 11:46 am | Permalink

    Hello,

    I would like to cut the audio file for selected time..
    Say I have a .mp3 of duration 00:50 sec..
    I would like to cut the audio from 00:20 to 00:30 sec.
    Please help me using ffmpeg command line.

    Thanks in advance.
    –Kapil

  45. Posted July 10, 2009 at 12:36 pm | Permalink

    @Kapil: This is the code for cut specific area from mp3

    code:
    ffmpeg -ss starttime -t totalseconds -i inout.mp3 -acodec copy output.mp3

    startime=00:00:30
    totalseconds:25

    (Provided by Haleel Rahman)

  46. Haleel
    Posted July 16, 2009 at 5:33 am | Permalink

    Any can provide to make watermark in videos,also how do make the avi videos for mobile?

  47. sony
    Posted July 19, 2009 at 11:48 am | Permalink

    hi,
    i am using ubuntu hardy. i was searching for a tool to convert 700mb avi files to 300mb avi without losing quality. is there any to serve that?.
    thanks guys.

    -me

  48. Peter
    Posted August 27, 2009 at 2:01 pm | Permalink

    Thanks for the cool tips. Do you think, that there is ffmpeg preset page for all mobile phones?

  49. Jan
    Posted September 10, 2009 at 4:38 pm | Permalink

    with ffmpeg I am trying to record video from my Toshiba laptop webcam. Video Recording is going fine but with no sound . Recording with sound is working well with cheese.

    Please guide me how to do video recording with sound on ffmpeg with webcam.

    Regards

  50. Posted October 1, 2009 at 8:36 pm | Permalink

    there is also another way to get good quality ffmpeg flv: using AviSynth+VP6.2 codec+patched ffmpeg

  51. rabih
    Posted October 3, 2009 at 10:43 am | Permalink

    Hi All…I can see there is some experts in ffmpeg in this blog…
    I’m using ffmpeg in order to compress a continuous streamed mpeg2 retrieved from a dream box machine (satellite receiver)
    I want to compress each minute in a separate file…
    I’ve used the -t option, but in fact I’m loosing some gaps between each consecutive files
    this is the script i’m using:

    while test 1=1
    do
    ldt_now=”$(date +”%y-%m-%d-%H-%M-%S”)”
    ffmpeg -t 60 -i “http://IP…” /home/grabbing/file_compressed_for_$ldt_now.mpg
    done

    I’m wondering if any one can give me any hints regarding how to output from ffmpeg in different consecutive files without having any lost gaps

    Any help will be very appreciated
    TIA
    Rabih

  52. Posted November 1, 2009 at 4:19 pm | Permalink

    Hello,

    thanks for the samples.

    I think you should add a command to convert mp3 for iphones/ipods, this article is number one on google for linux convert mp3 for iphone.

    PS: fix a typo for IPpod and add a copy command flash button like on github for urls.

  53. Posted November 17, 2009 at 11:21 pm | Permalink

    # rename files sequentially for FFMPEG to work properly
    counter=10000
    for f in *.jpg; do
    let “counter+=1″
    mv $f screen${counter:1}.jpg
    done

    this will rename a set of files continuously from 0001 then do something like
    ffmpeg -i screen%04d.jpg outputmovie.mp4

    and a question. what is the ffmpeg command to capture a snapshot from the webcam? just a jpg? or is another library better for that?

    thanks,
    dan

  54. james
    Posted November 22, 2009 at 8:39 am | Permalink

    Hello, All!

    I’m using custom ffmpeg commands on a Drupal website for automatic conversion of uploaded files. It converts various file types to mpeg-4 (H.264) and is working fine. I need to add a simple slow motion to this process – simply repeated frames. In other words, I need a command to convert a video file with the following frames (A, B, C…) to (A, A, B, B, C, C…) for a 50% slomo.

    If there’s some fancy way to do it with interpolation that would be even better, but for now I’ll settle for frame duplication.

    Thanks in advance!

    -James

  55. Posted December 27, 2009 at 6:51 am | Permalink

    “Turn X images to a video sequence” – What can we do with it ? I don’t understand :-s . Can you explain for me ? Thank you very much.

  56. Posted January 6, 2010 at 11:21 am | Permalink

    Great info. Excellent list of commands for an amazing product like FFMPEG.

  57. Posted January 18, 2010 at 2:07 pm | Permalink

    That’s useful information to know. Thanks for sharing the how to back up tips.

  58. Cire
    Posted February 3, 2010 at 12:24 pm | Permalink

    Hello,

    I’ve been trying to convert a .flv file I got from youtube and convert it to a .mp4 file playable on my iPod but can’t seem to make it work. I type in:

    ffmpeg -i sniper.flv -acodec aac -ab 128kb -vcodec mpeg4 -b 1200kb -mbd 2 -flags +4mv+trell -aic 2 -cmp 2 -subcmp 2 -s 320×180 -title X sniper.mp4

    but it gives me the following message:

    FFmpeg version SVN-r21125, Copyright (c) 2000-2010 Fabrice Bellard, et al.
    built on Jan 10 2010 13:49:22 with gcc 4.4.1
    configuration: –enable-gpl –enable-version3 –enable-nonfree –enable-postproc –enable-pthreads –enable-libfaac –enable-libfaad –enable-libmp3lame –enable-libopencore-amrnb –enable-libopencore-amrwb –enable-libtheora –enable-libx264 –enable-libxvid –enable-x11grab
    libavutil 50. 7. 0 / 50. 7. 0
    libavcodec 52.47. 0 / 52.47. 0
    libavformat 52.46. 0 / 52.46. 0
    libavdevice 52. 2. 0 / 52. 2. 0
    libswscale 0. 8. 0 / 0. 8. 0
    libpostproc 51. 2. 0 / 51. 2. 0
    [flv @ 0x9815390]Estimating duration from bitrate, this may be inaccurate

    Seems stream 0 codec frame rate differs from container frame rate: 59.93 (29967/500) -> 29.92 (359/12)
    Input #0, flv, from ’sniper.flv’:
    Metadata:
    duration : 326
    starttime : 0
    totalduration : 326
    width : 320
    height : 180
    videodatarate : 201
    audiodatarate : 64
    totaldatarate : 271
    framerate : 30
    bytelength : 11073949
    canseekontime : true
    sourcedata : B4A7DA446
    Duration: 00:05:26.15, start: 0.000000, bitrate: 206 kb/s
    Stream #0.0: Video: h264, yuv420p, 320×180 [PAR 1:1 DAR 16:9], 206 kb/s, 58.82 fps, 29.92 tbr, 1k tbn, 59.93 tbc
    Stream #0.1: Audio: aac, 22050 Hz, stereo, s16
    [NULL @ 0x980c020]Unable to parse option value “trell”: undefined constant or missing (
    Invalid value ‘+4mv+trell’ for option ‘flags’

    What am I doing wrong?

  59. Jaime Gomez
    Posted February 13, 2010 at 11:02 am | Permalink

    If you’re working with more recent builds, and have errors with some flags, you may want to try this:

    -flags +4mv+aic -trellis 1

45 Trackbacks

  1. [...] Read the rest of this great post here [...]

  2. By Web 2.0 Announcer on September 22, 2008 at 5:14 pm

    19 ffmpeg commands for all needs…

    [...]ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more.[...]…

  3. By Web 2.0 Announcer on September 23, 2008 at 11:17 am

    19 ffmpeg commands for all needs…

    [...][...]…

  4. [...] If you prefer sticking to the speed of the command line whenever possible, weblog CatsWhoCode details how to use Ffmpeg—the cross-platform command-line tool that runs in the background of most popular media conversion tools—to convert video, audio, and images to just about any format. [...]

  5. [...] I­f­ y­o­u pr­ef­er­ st­i­c­ki­n­g t­o­ t­he speed o­f­ t­he c­o­mman­d l­i­n­e when­ever­ po­ssi­bl­e, webl­o­g C­at­sWho­C­o­de det­ai­l­s ho­w t­o­ use Ffmpe­g&mdash­;t­h­e­ c­r­o­ss-plat­fo­r­m c­o­mman­d-lin­e­ t­o­o­l t­h­at­ r­un­s in­ t­h­e­ bac­k­gr­o­un­d o­f mo­st­ po­pular­ me­dia c­o­n­ve­r­sio­n­ t­o­o­ls&mdash­;t­o­ c­o­n­v­er­t­ v­i­deo­, audi­o­, an­d i&…. [...]

  6. By links for 2008-09-23 « B-link List on September 24, 2008 at 4:05 am

    [...] 19 ffmpeg commands for all needs ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more. (tags: linux video ffmpeg encoding command txt) [...]

  7. By Web Sites of Interest » links for 2008-09-23 on September 24, 2008 at 6:01 am

    [...] 19 ffmpeg commands for all needs (tags: video utilities tutorial tools tips reference opensource music programming) steve on September 23rd, 2008 | Filed under 15 | [...]

  8. By links for 2008-09-24 « Donghai Ma on September 24, 2008 at 10:05 am

    [...] 19 ffmpeg commands for all needs (tags: reference tips linux utilities tools encoding multimedia video ffmpeg) [...]

  9. [...] 19 ffmpeg commands for all needs (tags: Multimedia converter) About this entry [...]

  10. [...] 19 ffmpeg commands for all needs (qui est en anglais) [...]

  11. By Mac Fan Boy » Command line iPhone video on September 24, 2008 at 4:48 pm

    [...] Discover more quick ffmpeg commands [...]

  12. [...] 19 ffmpeg commands for all needs [...]

  13. [...] If you prefer sticking to the speed of the command line whenever possible, weblog CatsWhoCode details how to use Ffmpeg—the cross-platform command-line tool that runs in the background of most popular media conversion tools—to convert video, audio, and images to just about any format. [...]

  14. [...] If you prefer sticking to the speed of the command line whenever possible, weblog CatsWhoCode details how to use Ffmpeg—the cross-platform command-line tool that runs in the background of most popular media conversion tools—to convert video, audio, and images to just about any format. [...]

  15. By blreber.net › Daily Blog Post 09/24/2008 (p.m.) on September 24, 2008 at 9:56 pm

    [...] 19 ffmpeg commands for all needs [...]

  16. [...] If you prefer sticking to the speed of the command line whenever possible, weblog CatsWhoCode details how to use Ffmpeg—the cross-platform command-line tool that runs in the background of most popular media conversion tools—to convert video, audio, and images to just about any format. [...]

  17. By links for 2008-09-25 « copula’s weblog on September 25, 2008 at 11:05 pm

    [...] 19 ffmpeg commands for all needs catswhocode.com — ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more. (tags: 09 2008 media convert tips) [...]

  18. By How a blog post becomes popular on September 26, 2008 at 6:45 am

    [...] post was “19 ffmpeg commands for all needs“. It is a “list” kind of post, which features 19 recipes for the popular media [...]

  19. [...] command-line tool that runs in the background of most popular media conversion tools—to convert video, audio, and images to just about any format.no comments yet.#64- Gadget Station (Pt. 7) »« ClickGone Turns Your Mouse into an App [...]

  20. [...] generate thumbnails from Video files? Then you need FFMPEG library. I found a very nice post titled 19 ffmpeg commands for all needs. Enjoy! This entry was written by Asim Zeeshan and posted on September 29, 2008 at 1:16 pm and [...]

  21. By xnxlinks #20081002 « xnx labs on October 3, 2008 at 2:50 am

    [...] 19 ffmpeg commands for all needs [...]

  22. By links for 2008-10-06 - Craig's Blog on October 6, 2008 at 8:01 pm

    [...] Final Vote Results for Roll Call 681 Vote the porkers out (tags: vote politics house bailout) 19 ffmpeg commands for all needs (tags: video utilities tutorial) | [...]

  23. By 19 cosas útiles que puedes hacer con ffmpeg on October 10, 2008 at 10:45 am

    [...] de 19 comandos ffmpeg para todas las necesidades, adaptado a su vez de ffmpeg mediante ejemplos Relacionadas Convertir vídeos FLV a [...]

  24. [...] de 19 comandos ffmpeg para todas las necesidades, adaptado a su vez de ffmpeg mediante [...]

  25. [...] de 19 comandos ffmpeg para todas las necesidades, adaptado a su vez de ffmpeg mediante [...]

  26. [...] If you prefer sticking to the speed of the command line whenever possible, weblog CatsWhoCode details how to use Ffmpeg—the cross-platform command-line tool that runs in the background of most popular media conversion tools—to convert video, audio, and images to just about any format. [...]

  27. [...] mit ffmpeg (auch Videos für iPhone etc.) Posted on 10:20, October 20th, 2008 by Stefan Diese Seite finde ich sicher nicht, wenn ich sie dann brauche. Hier im Blog ist sie aber gut [...]

  28. By links for 2008-10-26 | New Trommetter Times on October 26, 2008 at 1:02 pm

    [...] 19 ffmpeg commands for all needs ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more. (tags: video utilities tutorial tips software reference) Be Sociable [...]

  29. [...] CatsWhoCode | traducción por Zootropo Etiquetas: convertir, ffmpeg, tips, [...]

  30. [...] If yo­u pre­fe­r st­ic­k­in­g t­o­ t­h­e­ spe­e­d o­f t­h­e­ c­o­mman­d lin­e­ wh­e­n­e­v­e­r po­ssible­, we­blo­g C­at­sWh­o­C­o­de­ de­t­ails h­o­w t­o­ use­ Ffmpe­g—the­ cross-p­latform comman­­d-li­n­­e­ tool that ru­n­­s i­n­­ the­ b­ack­grou­n­­d of most p­op­u­lar me­di­a con­­ve­rsi­on­­ tools—to c­o­n­ver­t­ video­, audio­, an­d imag­es t­o&#173…. [...]

  31. [...] As for videos, you can convert your videos and add them to the phone through iTunes. There’s plenty of weird video convertors and spammers advertising them allover but all you need is ffmpeg.exe and a bit of video code knowledge. See http://www.catswhocode.com/blog/os/19-ff…; [...]

  32. [...] sites. They address issues that are not usually talked about in the web designer world, such as a list of ffmpeg commands (video-to-.flv converter that is fairly hard to use). Their top posts include top 10 CSS buttons [...]

  33. By ffmpeg-Beginner | psycho-city.de on January 28, 2009 at 10:25 pm

    [...] http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs von admin am 28. Januar 2009 | abgelegt in Open Source getaggt mit ffmpeg, Video   [...]

  34. By Korisni linkovi « SvaÅ¡tarija on February 4, 2009 at 7:17 pm

    [...] 19 ffmpeg komande za sve potrebe [...]

  35. [...] 19 ffmpeg commands for all needs [...]

  36. [...] 19 ffmpeg commands for all needs [...]

  37. [...] rest is here: 19 ffmpeg commands for all needs Share and [...]

  38. [...] Some 19 ffmpeg commands you can not miss from here – http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs [...]

  39. By 7 Tasks You Shouldn’t Use a GUI For on July 29, 2009 at 1:02 pm

    [...] There are all sorts of things you can do with ffmpeg. [...]

  40. [...] 查看这个链接,你可以看看ffmpeg可以干得更多。 [...]

  41. By 7 wonderful LINUX command line tools | IT OPERATIONZ on September 4, 2009 at 10:03 am

    [...] There are all sorts of things you can do with ffmpeg. [...]

  42. [...] 19 comandos útiles para trabajar con videos mediante ffmpeg [...]

  43. By links for 2009-11-07 « lugar do conhecimento on November 7, 2009 at 11:03 am

    [...] 19 ffmpeg commands for all needs (tags: ubuntu work ffmpeg)   Deixe um comentário [...]

  44. [...] Found this nice summary of ffmpeg commands on catswhocode.com: http://www.catswhocode.com/blog/19-ffmpeg-commands-for-all-needs [...]

  45. [...] encontrei um ótimo artigo nesta linha, chamado 19 Ffmpeg Commands For All Needs, que oferece algumas receitas fantásticas, que apresento a seguir, em uma tradução mais ou menos [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Subscribe without commenting

  • Smashing Network
WordPress Appliance - Powered by TurnKey Linux