savonet / ocaml-ffmpeg

OCaml bindings to the FFmpeg library.
http://www.liquidsoap.info/ocaml-ffmpeg/
GNU Lesser General Public License v2.1
48 stars 12 forks source link

Missing modules after installation? #22

Closed pvdhove closed 6 years ago

pvdhove commented 6 years ago

I have installed FFmpeg 0.2.0 via opam (after running opam depext ffmpeg) but when I try to use it, I only have access to the following submodules of FFmpeg: Avutil, Channel_layout, Pixel_format, Sample_format, Swscale. However, I would like to use the Av module. I guess there must be a missing dependency that prevents it from installing the other modules? I use Ubuntu 16.04 in case it matters. Thanks!

gndl commented 6 years ago

The Av module uses the new API which is only available from ffmpeg 3.0. Ubuntu 16.4 contains version 2.8.15. You should be able to install a recent version of ffmpeg from an alternate repository. Sincerely.

pvdhove commented 6 years ago

Thank you very much, this worked!