Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why HTML5 video doesn't play in IOS 8 WebApp(webview)?

Simple HTML5 video plays on safari browser. but after adding it to home screen(Standalone WebApp), it doesn't work. It is working on iOS7 but stopped working on iOS8.

<!DOCTYPE html> <head>     <meta charset="utf-8">     <meta name="apple-mobile-web-app-capable" content="yes" />     <title>HTML5 Video Standalone Test</title>     <style>     body{         margin:0;         }     </style> </head> <body>     <video src="http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer_480x270_h264aac.m4v" autoplay="autoplay" controls="true" webkit-playsinline /> </body> </html> 

Please help. Is there any solution for this?

like image 716
inaam husain Avatar asked Sep 22 '14 10:09

inaam husain


People also ask

Does Safari support HTML5 Iphone?

Safari supports HTML5. If YouTube video doesn't play, try either disabling or uninstalling extensions like ClickToFlash.


1 Answers

Video playback is broken on standalone applications in IOS 8.0.2

like image 178
Julio Garcia Avatar answered Sep 18 '22 17:09

Julio Garcia