Re: [android-developers] Re: Slow motion video

2011-06-30 Thread New Developer
To Daniel Makes much sense so it is the length of the pause timer = new Timer(); timer.schedule( cycle1 , 0 , 200); timer.schedule( cycle2 ,100 , 200); 100 / 200 = 1/2 thus 2x slower timer = new Timer(); timer.schedule( cycle1 , 0 , 200); timer.schedule( cycle2 , 50 , 200); 50 / 200

Re: [android-developers] Re: Slow motion video

2011-06-30 Thread Daniel Drozdzewski
On Thu, Jun 30, 2011 at 4:44 PM, New Developer wrote: > To Daniel > > Okay you obviously have a much better grasp than I do > > let me ask if we use your initial two cycle method > what about upping to 3 or 4 cycles ? > > then looking at your > >> 1 is play time,    0 is pause time. > >> <--1st cy

Re: [android-developers] Re: Slow motion video

2011-06-30 Thread New Developer
To Daniel Okay you obviously have a much better grasp than I do let me ask if we use your initial two cycle method what about upping to 3 or 4 cycles ? then looking at your > 1 is play time,0 is pause time. > <--1st cycle -><- 2nd cycle->duration of thee cycle remains constant > >

Re: [android-developers] Re: Slow motion video

2011-06-30 Thread Daniel Drozdzewski
On Thu, Jun 30, 2011 at 1:05 PM, New Developer wrote: > I have tried to simplify the process  Based  on the cycle of > 100 ms play 100ms pause , etc... > handle = new Handler(); > play   = new Runnable() { >    @Override >    public void run() { > if (mMediaPlayer != null) { >     mMediaPlayer.set

Re: [android-developers] Re: Slow motion video

2011-06-30 Thread New Developer
I'm seeing in LogCat 06-30 10:16:56.130: WARN/TimedEventQueue(29231): Event 695 was not found in the queue, already cancelled? 06-30 10:16:56.130: WARN/TimedEventQueue(29231): Event 697 was not found in the queue, already cancelled? 06-30 10:16:56.130: WARN/TimedEventQueue(29231): Event 699 was

Re: [android-developers] Re: Slow motion video

2011-06-30 Thread New Developer
I have tried to simplify the process Based on the cycle of 100 ms play 100ms pause , etc... handle = new Handler(); play = new Runnable() { @Override public void run() { if (mMediaPlayer != null) { mMediaPlayer.setLooping(false); if (mMediaPlayer.isPla

Re: [android-developers] Re: Slow motion video

2011-06-30 Thread Daniel Drozdzewski
On Thu, Jun 30, 2011 at 12:35 AM, Indicator Veritatis wrote: > I don't use TimerTask in Java. For reasons that were never 100% clear > to me, the online docs for the JDK and other sources recommend using a > Handler instead. There is even an example in code in the docs for > Handler somewhere, but

[android-developers] Re: Slow motion video

2011-06-29 Thread Indicator Veritatis
I don't use TimerTask in Java. For reasons that were never 100% clear to me, the online docs for the JDK and other sources recommend using a Handler instead. There is even an example in code in the docs for Handler somewhere, but as I write this, I can only find a similar one at http://www.muktosof

[android-developers] Re: Slow motion video

2011-05-29 Thread Doug
On May 27, 11:20 am, New Developer wrote: > Anyone got an idea how to implement slow motion ?  or at least slow down the > playback of a video ? Android media components won't do this for you, sorry. Doug -- You received this message because you are subscribed to the Google Groups "Android De