📎 AI Summary:
The forum thread discusses issues with playing Flash content in Windows 8 Metro apps, particularly when embedding YouTube videos that rely on Flash by default. The original poster and multiple users highlight that Flash isn't supported in these apps, and attempts to enable HTML5 playback by modifying URLs were unsuccessful. A suggested solution involves extracting the direct video stream URL and using a MediaPlayer control instead of iframe-based embedding, with a helpful link provided for implementation guidance.

compsci

New Member
Member details
Joined
May 19, 2013
Messages
2
Thread Author #1
Hello everyone,


We have tried to create an app for windows 8 platform(tablet/phone). The flash content in the app is not playing. Infact no flash is supported inside the app. We are running a url inside an iframe in the app and the url's flash content is not getting displayed. We came to know that windows 8 apps dont support flash. The format of the flash videos cannot be easily changed as the youtube video urls are put into database and the video url's content is in flash by default.
we tried adding &html5=true at the end of youtube url, but it didnt work. So how do we go about solving the problem.... :)
 

Solution
Hello everyone,


We have tried to create an app for windows 8 platform(tablet/phone). The flash content in the app is not playing. Infact no flash is supported inside the app. We are running a url inside an iframe in the app and the url's flash content is not getting displayed. We came to know that windows 8 apps dont support flash. The format of the flash videos cannot be easily changed as the youtube video urls are put into database and the video url's content is in flash by default.
we tried adding &html5=true at the end of youtube url, but it didnt work. So how do we go about solving the problem.... :)

As you discovered, flash is not supported inside Metro apps.
For youtube videos, you need to extract the video stream's url...

compsci

New Member
Member details
Joined
May 19, 2013
Messages
2
Thread Author #2
Hello everyone,


We have tried to create an app for windows 8 platform(tablet/phone). The flash content in the app is not playing. Infact no flash is supported inside the app. We are running a url inside an iframe in the app and the url's flash content is not getting displayed. We came to know that windows 8 apps dont support flash. The format of the flash videos cannot be easily changed as the youtube video urls are put into database and the video url's content is in flash by default.
we tried adding &html5=true at the end of youtube url, but it didnt work. So how do we go about solving the problem.... :)
 

8redd

New Member
Member details
Joined
May 19, 2013
Messages
2
Hello everyone,


We have tried to create an app for windows 8 platform(tablet/phone). The flash content in the app is not playing. Infact no flash is supported inside the app. We are running a url inside an iframe in the app and the url's flash content is not getting displayed. We came to know that windows 8 apps dont support flash. The format of the flash videos cannot be easily changed as the youtube video urls are put into database and the video url's content is in flash by default.
we tried adding &html5=true at the end of youtube url, but it didnt work. So how do we go about solving the problem.... :)

As you discovered, flash is not supported inside Metro apps.
For youtube videos, you need to extract the video stream's url and pass it to a MediaPlayer control.
you can find sample code here: Link Removed
 

Solution