Playlist
Source
let player = OvenPlayer.create("player", {
type : "mp4",
file : "https://path.to/your_video",
framerate : 30,
label : "360P"
});Sources
let player = OvenPlayer.create("player", {sources : [
{
type : "mp4",
file : "https://path.to/your_video",
framerate : 30,
label : "360P"
},
{
type : "mpd",
file : "https://path.to/your_video.mpd",
framerate : 30,
label: "360P DASH"
},
{
type : "hls",
file : "https://path.to/your_video.m3u8",
framerate : 30,
label: "360P HLS"
},
{
type : "rtmp",
file : "rtmp://path.to/your_video",
framerate : 30,
label: "360P RTMP"
}
] });Playlist
Last updated
Was this helpful?