Wujtah
April 30, 2020, 11:15am
1
Hi all,
Im trying to run a project that has a video screen playing a media file. While it all works great in the ES2 preview, it doesnt start inside the actual html5 app. Any clues on doing this? I cant find anything about it online.
The person in this thread had a similar issue but has no responses so far: HTML5 Load video ,because none of the enabled media player plug-ins support it: - Platform & Builds - Unreal Engine Forums
Any help would be appreciated!
Thanks!
Same problem here, tried local video and streamed url from google drive, both played in editor, both play with window packaged file, neither play in html5 package. Images work fine, very confusing. Not sure how to embed html into a packaged html5 file, could you elaborate please?
Prahlad_Makwana:
Hello, @Wujtah
Please try this code,To HTLM5 Videos
<!DOCTYPE html>
<html>
<body>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>
I hope this information will be usefull for you.
Thank You.
hi, where i can use this code inside unreal ? please you can provide a video showing how to use ? we will be very gratefull