We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
The video is in a Sharepoint folder I want to add it inside a dashboard. I saw that we can use Power App, Is there any alternate soultion?. Other wise can anybody please help me with the steps to do video embedding in Power BI using Power App.
Solved! Go to Solution.
Hello @sariga,
Embedding a Power App that plays the video is a more reliable method. Can you please try this approach:
1. Create a Power App:
2. In Power BI Desktop:
Hope this helps.
Hi Sahir_Maharaj ,thanks for the quick reply, I'll add more.
Hi @sariga ,
Please follow these steps:
1.Copy the url of the video in sharepoint
2.Modify the following html code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>video</title>
</head>
<body>
<video width="640" height="330" controls>
<source src="Your_URL" type="video/mp4">
</video>
</body>
</html>
3.Add a “Web content” tile and paste the modified html code.
4.Final output
Best Regards,
Wenbin Zhou
Thanks to both of you for the help.
Hi Sahir_Maharaj ,thanks for the quick reply, I'll add more.
Hi @sariga ,
Please follow these steps:
1.Copy the url of the video in sharepoint
2.Modify the following html code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>video</title>
</head>
<body>
<video width="640" height="330" controls>
<source src="Your_URL" type="video/mp4">
</video>
</body>
</html>
3.Add a “Web content” tile and paste the modified html code.
4.Final output
Best Regards,
Wenbin Zhou
Hello @sariga,
Embedding a Power App that plays the video is a more reliable method. Can you please try this approach:
1. Create a Power App:
2. In Power BI Desktop:
Hope this helps.