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
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
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
>
>
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
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
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
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
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
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
9 matches
Mail list logo