Play YouTube video in modal pop up | angular play video inside lightbox

preview_player
Показать описание
In this video you will learn, how to play video in modal pop up in angular by using lightbox

If you have any query or need the code then write in the comment section.
Рекомендации по теме
Комментарии
Автор

Thank you the video. Would you please so kind to provide the source code? That would be great, thanks 👍🏼

HrFessor
Автор

angular pipe to get YouTube video thumbnail


transform(value: any, ...args: unknown[]): unknown {

let video_id;
let result;
let thumbnail;


if (result = {
video_id = result.pop();
}
else if (result = {
video_id = result.pop();
}
if (video_id) {
var quality_key = 'maxresdefault';

return thumbnail;

}
return thumbnail;
}

JustSoondar