I've compiled ffmpeg with libx264 using configure options given at 1.

This results in the following codecs being available in ffmpeg:

$ ffmpeg -codecs | grep "264\|flv"
ffmpeg version 0.10 Copyright (c) 2000-2012 the FFmpeg developers
built on Feb 10 2012 13:54:15 with gcc 4.6.1
configuration: --enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-nonfree --enable-postproc --enable-version3 --enable-x11grab
libavutil      51. 34.101 / 51. 34.101
libavcodec     53. 60.100 / 53. 60.100
libavformat    53. 31.100 / 53. 31.100
libavdevice    53.  4.100 / 53.  4.100
libavfilter     2. 60.100 /  2. 60.100
libswscale      2.  1.100 /  2.  1.100
libswresample   0.  6.100 /  0.  6.100
libpostproc    52.  0.100 / 52.  0.100
DEVSD  flv             Flash Video (FLV) / Sorenson Spark / Sorenson H.263
D V D  h264            H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
D V D  h264_vdpau      H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)
EV    libx264         libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
EV    libx264rgb      libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB

After this, I compiled opencv. Here is partial cmake result:

--   Video I/O:
--     DC1394 1.x:                 NO
--     DC1394 2.x:                 NO
--     FFMPEG:                     YES
--       codec:                    YES
--       format:                   YES
--       util:                     YES
--       swscale:                  YES
--       gentoo-style:             YES
--     GStreamer:                  YES
--     UniCap:                     NO
--     PvAPI:                      NO
--     V4L/V4L2:                   /1
--     Xine:                       NO

Now, using opencv's VideoWriter, I tried to encode into flv with the following FOURCC codes:
FLV1, X264

While the FLV1 results in a video file not playable by flash player, but playabe by vlc; X264 produces no results at all.
Here is the console output for X264, resulting in a 0 byte file.

Output #0, flv, to 'd.flv': Stream #0.0: Video: [0][0][0][0] / 0x0000, yuv420p, 320x240, q=2-31, 4915 kb/s, 90k tbn, 24 tbc

Do you see anything amiss or incorrect?
thanks,

link|improve this question
Can you encode a video into FLV or H.264 format successfully from the command-line with ffmpeg? – mevatron Feb 14 at 14:41
@mevatron yes. Eg: ffmpeg -i input.avi -vcodec libx264 output.flv, works and the file is playable in the flash player. – Hemang Shah Feb 15 at 4:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.