Hi,
I have resolved the issue so please check. I have inserted given below code at functions.php.
function sf_get_embed_src($url) {
if (strpos($url,'youtube')){
preg_match('/[\\?\\&]v=([^\\?\\&]+)/', $url, $video_id);
if (isset($video_id[1])) {
return 'http://www.youtube.com/embed/'. $video_id[1] .'?autoplay=1&wmode=transparent&rel=0';
}
} else {
preg_match('/http:\/\/vimeo.com\/(\d+)$/', $url, $video_id);
if (isset($video_id[1])) {
return 'http://player.vimeo.com/video/'. $video_id[1] .'?title=0&byline=0&portrait=0&autoplay=1&wmode=transparent';
}
}
}
Thanks ๐
With Best Regards
Mohammad