1

I have a problem reading video in a StageWebView for Android device.

I use the html5 video tag and I would like to read this video in a StageWebView for an Android application.

For iOS I had no problem but on Android device the player is black and I hear only sounds.

I tried a lot of JS players but all have the same issue.

Has anyone had this kind of issue?

Jason Sturges
  • 15,855
  • 14
  • 59
  • 80
  • Are you sure you are using a supported video format for android? See http://developer.android.com/guide/appendix/media-formats.html for list of supported media formats. – Andreas Louv Aug 31 '12 at 09:04
  • Yes i'm sure i use MPEG-4 (.mp4). When i put the video in fullscreen i have images and sounds but not in normal size... – legarsjules Aug 31 '12 at 09:08
  • I have the same issue and have tried heaps of different formats, straight – devdave Oct 29 '12 at 15:03

1 Answers1

5

In App.xml Android manifest, try enable hardware acceleration. Maybe it's that..

<android>
        <manifestAdditions><![CDATA[
...
            <manifest android:installLocation="auto">
...
                <application android:enabled="true" android:hardwareAccelerated="true">
VC.One
  • 14,790
  • 4
  • 25
  • 57
VerDave
  • 51
  • 1
  • 2