3

I need to create an app which gets raw video (RGB 32bits) data and store this data in an AVI file. Is a "simple" library is available out there ? I'm mean low footprint as it's for an embedded project.

Emeric L
  • 55
  • 7

2 Answers2

3

Not that small, but FFmpeg should do the job. You don't need all of it.

Torp
  • 7,924
  • 1
  • 20
  • 18
2

This should help you: http://linuxtv.org/downloads/v4l-dvb-apis/common.html

Vikram.exe
  • 4,565
  • 3
  • 29
  • 40
  • I'm a little confused about how I can generate AVI stream with V4L. I already have a device driver to acquire video data from the board, and the device give me the address of the buffer containing video frame. All I need is a lib that take my video frames and put them in an AVI container. – Emeric L Sep 19 '11 at 14:51
  • 1
    your link is dead – BЈовић Jul 16 '18 at 16:59