Hello there
I have ofAndroid-Eclipse running and am able to transfer androidVideoExample to my tablet.
Now, instead of fingers.mp4 I wish to play a much longer movie (1GB). I’ve added my “long.mp4” to bin/data and canged the code accordingly. But the transfer of the .apk aborts either because of a timeout or because there is not enough memory. Even though there is plenty of memory available…
So I thought, why not upload the “long.mp4” to the external sd card and load it in my androidVideoExample.apk ?
To read/write from the sd card, I changed the AndroidManifest.xml with the following line:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
in testApp.cpp i am loading the movie like this:
player.loadMovie("long.mp4");
Though it doesn’t work…
What am I missing?
Thanks for your help