[android-developers] Re: MPEG-TS, Android and (probably?)FFMPEG

2012-02-15 Thread Akos Cz
Take a look at the Stagefright multimedia framework which was introduced in Android 2.2. It has MPEG-TS support with some limitations. The Android MediaPlayer API sits on top of stagefright. What you gain is hardware accelerated video playback. What you loose is flexibility. Ffmpeg has been

[android-developers] Re: Recommendation for Android Training

2011-08-25 Thread Akos Cz
Take a look at Marakana. http://marakana.com/training/android/ They also have a some free educational videos on the TechTV section of their site. http://marakana.com/techtv/index.html On Aug 25, 9:09 am, Bsweet tony.sa...@gmail.com wrote: Has anyone attended any in person Android development

[android-developers] ActivityInstrumentationTestCase2 issues - test hangs because of invalidate() call in the code I'm writing a test for

2011-08-24 Thread Akos Cz
I'm implementing a test for some code I've written which I have distilled down into a sample project pasted below. The problem I am having is that the test hangs the test runner and none of the test in my test case run. I have tracked the problem down to a call to invalidate() in

[android-developers] Re: ActivityInstrumentationTestCase2 issues - test hangs because of invalidate() call in the code I'm writing a test for

2011-08-24 Thread Akos Cz
Bump. I realize I pasted the HelloGalleryActivityTest source in place of the HelloGalleryActivity source. Question posted to StackOverflow with the correct (more readable) source files.