Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.