There's no wizard to add quality switching, you have to do this manually.
The Quality Switching is disabled by default, you can enable it in the admin panel
.
qualities='<name>;<url>;<type:optional>'
name
: The name that will be displayed on the player.url
: The URL of the video.type
: The video type. (optional)
auto
hls
flv
dash
webtorrent
normal
# type not specified, default to `auto`
[embed-video id='12345' url='https://example.com/video.mp4' type='normal' live='false' qualities='sd;https://example.com/video.m3u8']
# type specified, `hls`
[embed-video id='12345' url='https://example.com/video.mp4' type='normal' live='false' qualities='sd;https://example.com/video.m3u8;hls']
# we can also do this, better formatting
[embed-video id='12345' url='https://example.com/video.mp4' type='normal' live='false' qualities='
sd;https://example.com/video_sd.m3u8,
hd;https://example.com/video_hd.m3u8;hls
']
# does not show the `default` quality
[embed-video id='12345' url='' type='normal' live='false' qualities='
sd;https://example.com/video_sd.m3u8,
hd;https://example.com/video_hd.m3u8;hls
']
The dash
video type is not supported. (partially confirmed, only me)