Allow user to upload, select and save video.
More info from WordPress Embeds.
array(
'id' => 'video_1',
'type' => 'video',
'title' => 'Video',
'attributes' => array(
'placeholder' => 'Video url',
),
// self hosted
'default' => '/wp-content/uploads/2019/11/it-was-all-yellow.mp4',
'options' => array(
'input' => true, // optional
'oembed' => true, // optional
// only for self hosted videos
'loop' => false, // optional, loop video
'autoplay' => false, // optional, autoplay video
'muted' => false, // optional, mute video
'controls' => false, // optional, add controls to video
),
// - OR for oEmbed: -
// 'default' => 'https://www.youtube.com/watch?v=KujZ__rrs0k',
// 'info' => 'self hosted video',
),