Hi everyone,
Having a bit of bother with my Sencha app when compiled as a native android app. The video plays but there is no picture - only audio. I've loaded this into the android browser as a standard non packaged app and the video plays perfectly. I am testing this on a Samsung Galaxy S2. Here is the code:
Code:
Ext.define('Application.view.AndroidVideoPlayer', {
extend: 'Ext.Container',
xtype: 'androidvideoplayerpanel',
requires: [
'Ext.Video'
],
config: {
layout: 'fit',
items: [
{
xtype: 'video',
url: [
'http://www.mattfinucane.com/videos/test.mp4',
'http://www.mattfinucane.com/videos/test.webm',
'http://www.mattfinucane.com/videos/test.ogv'
],
posterUrl: 'http://dev.sencha.com/deploy/touch/examples/production/video/resources/images/cover.jpg'
}
]
}
});
Any ideas to help me out?
Thanks,
MAtt