package xmlplaylist

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type error =
  1. | XmlError of string
  2. | Empty
  3. | UnknownType
  4. | Internal
exception Error of error
type format =
  1. | Podcast
  2. | Xspf
  3. | Smil
  4. | Asx
val string_of_error : error -> string
val tracks : ?format:format -> string -> ((string * string) list * string) list
val detect_format : string -> format