• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2How to test the zoran driver:
3- RAW capture
4	mplayer tv:///dev/video0 -tv driver=v4l2
5
6- MJPEG capture (compression)
7	mplayer tv:///dev/video0 -tv driver=v4l2:outfmt=mjpeg
8	TODO: need two test for both Dcim path
9
10- MJPEG play (decompression)
11	ffmpeg -i test.avi -vcodec mjpeg -an -f v4l2 /dev/video0
12	Note: only recent ffmpeg has the ability of sending non-raw video via v4l2
13
14	The original way of sending video was via mplayer vo_zr/vo_zr2, but it does not compile
15	anymore and is a dead end (usage of some old private ffmpeg structures).
16
17TODO
18- fix the v4l compliance "TRY_FMT cannot handle an invalid pixelformat"
19- Filter JPEG data to made output work
20