package ffmpeg-avutil

  1. Overview
  2. Docs

Source file media_types.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
type t = [
  | `Unknown
  | `Video
  | `Audio
  | `Data
  | `Subtitle
  | `Attachment
]

let t: t list  = [
`Attachment;
`Subtitle;
`Data;
`Audio;
`Video;
`Unknown;
]

OCaml

Innovation. Community. Security.