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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
(lang dune 3.8)
(name ffmpeg)
(version 1.2.8)
(source (github savonet/ocaml-ffmpeg))
(license LGPL-2.1-only)
(authors "The Savonet Team <savonet-users@lists.sourceforge.net>")
(maintainers "Romain Beauxis <toots@rastageeks.org>")
(generate_opam_files true)
(opam_file_location inside_opam_directory)
(use_standard_c_and_cxx_flags false)
(package
(name ffmpeg-avutil)
(synopsis "Bindings for the ffmpeg avutil libraries")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
base-threads)
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg-avcodec)
(synopsis "Bindings for the ffmpeg avcodec library")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
(ffmpeg-avutil (= :version)))
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg-avfilter)
(synopsis "Bindings for the ffmpeg avfilter library")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
(ffmpeg-avutil (= :version)))
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg-swscale)
(synopsis "Bindings for the ffmpeg swscale library")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
(ffmpeg-avutil (= :version)))
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg-swresample)
(synopsis "Bindings for the ffmpeg swresample library")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
(ffmpeg-avutil (= :version))
(ffmpeg-avcodec (= :version)))
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg-av)
(synopsis "Bindings for the ffmpeg libraries -- top-level helpers")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
(ffmpeg-avutil (= :version))
(ffmpeg-avcodec (= :version)))
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg-avdevice)
(synopsis "Bindings for the ffmpeg avdevice library")
(depends
(conf-pkg-config :build)
(conf-ffmpeg :build)
(ocaml (>= 4.08.0))
dune
(dune-configurator :build)
(ffmpeg-av (= :version)))
(conflicts
(ffmpeg (< 0.5.0)))
)
(package
(name ffmpeg)
(synopsis "Bindings for the ffmpeg libraries")
(depends
(ocaml (>= 4.08.0))
dune
(ffmpeg-av (= :version))
(ffmpeg-avutil (= :version))
(ffmpeg-avcodec (= :version))
(ffmpeg-avfilter (= :version))
(ffmpeg-avdevice (= :version))
(ffmpeg-swscale (= :version))
(ffmpeg-swresample (= :version)))
)
|