Page 1 of 1

speeding up audio

Posted: Tue Oct 27, 2009 10:44 pm
by bidgeeman
Does anyone know if it's possible to put effects into an audio file using Rev? Like adjusting the speed or pitch?

Thanks
Bidge

Posted: Tue Oct 27, 2009 11:14 pm
by bn
Hi Bidge,

look at the playrate. Normal is 1, below 1 slower above faster, negative numbers backwards.

I just made a slider with the values betweeen -2 and 2 the numberformat set to 0.00 and the script of the slider

Code: Select all

on scrollbardrag tValue
   set the playrate of player 1 to tValue
end scrollbardrag
sounds funny, is fun.

regards
Bernd

Posted: Tue Oct 27, 2009 11:47 pm
by bidgeeman
WOW Bernd!! :D

The only problem I had was the slider is controlling the players reverse and forwards playback. Sliding to the negative value makes the player play backwards chipmonk and sliding to the positive value makes the player play forwards chipmonk.

Is there any way of making it so that you can adjust the slider first without the player playing, then press a button to hear the adjusted audio?

Cheers
Bidge

Posted: Tue Oct 27, 2009 11:57 pm
by bn
Bidge,

Code: Select all

on mouseUp
   start player 1
   set the playrate of player 1 to the thumbposition of scrollbar 1
end mouseUp
in a button will start the player at the playrate you set on the scrollbar/slider.
regards
Bernd

Posted: Wed Oct 28, 2009 12:30 am
by bidgeeman
Bernd. Thanks. That is so cool :)
I can't seem to get the slider to read a value of .05. I set the start value at -2 and end value at 2 but it won't increment in .01,.02 etc

Anyone?
Many thanks again.
Cheers
Bidge

Posted: Wed Oct 28, 2009 12:34 am
by bn
Bidge,
in the property inspector for the slider there is number format. set it to 0.00 and make the slider wide enough, that should do it.
regards and good night.
Bernd

Posted: Wed Oct 28, 2009 12:37 am
by bidgeeman
Thanks again bernd. Youre a great help mate.

Cheers
Bidge