File: webcam.ml

package info (click to toggle)
ocaml-ffmpeg 1.2.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 924 kB
  • sloc: ansic: 6,448; ml: 6,294; makefile: 3
file content (36 lines) | stat: -rw-r--r-- 1,130 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
let () =
  Avutil.Log.set_level `Debug;
  Avutil.Log.set_callback print_string;

  let format = Option.get (Av.Format.find_input_format "v4l2") in
  let src = Av.open_input ~format "/dev/video0" in

  let () =
    print_endline "Available outputs:";
    List.iter
      (fun f -> print_endline ("- " ^ Av.Format.get_output_name f))
      (Avdevice.get_video_output_formats ())
  in

  let video, video_frame =
    try
      let video_idx, video_src, _ = Av.find_best_video_stream src in
      let video_dst = Avdevice.open_video_output "sdl2" in
      let _, video_stream, _ = List.hd (Av.get_video_streams video_dst) in
      (Some (video_idx, video_dst, video_stream), [video_src])
    with Avutil.Error _ -> (None, [])
  in

  let rec f () =
    match (Av.read_input ~video_frame src, video) with
      | `Video_frame (i, frame), Some (idx, _, stream) when i = idx ->
          Av.write_frame stream frame;
          f ()
      | exception Avutil.Error `Eof -> ()
      | _ -> f ()
  in
  f ();
  Av.close src;
  let () = match video with Some (_, dst, _) -> Av.close dst | None -> () in
  Gc.full_major ();
  Gc.full_major ()