Hi @all,
we have a vimeo pro account and would autoplay a video in a section background. To do that we updated the “av-helper-slidershow.php”:
$video_url = esc_url(add_query_arg(
array(
'portrait' => 0,
'byline' => 0,
'title' => 0,
'badge' => 0,
'loop' => $atts['loop'],
'autopause' => $autopause,
'api' => 1,
'rel' => 0,
'player_id' => $uid,
'color' => $color,
'background' => 1, // Added
'muted' => 1, // Added
'autoplay' => 1 // Added
),
All look good on Desktop and iOS but on Android the video will not autoplay. Can anybody help us?