I have example which is cached fine on chrome and displays video while offline.
When i try this example with android 3.2 and 4.x tablet, video will play only online, but not offline - although other elements like HTML file and background are present offline.
<!DOCTYPE html>
<html manifest="example.appcache">
<head>
<title>Hello Video!</title>
<style>
body{ background: url('background.jpg');}
</style>
</head>
<body>
<video width="855" height="480" controls="">
<source src="railer.mp4"/>
</video>
</body>
</html>
And cache manifest example.appcache looks like:
CACHE MANIFEST
index.html
railer.mp4
background.jpg
NETWORK:
*
Has anybody managed to get offline video caching working for android browsers via cache-manifest?