speeding up audio
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
speeding up audio
Does anyone know if it's possible to put effects into an audio file using Rev? Like adjusting the speed or pitch?
Thanks
Bidge
Thanks
Bidge
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
sounds funny, is fun.
regards
Bernd
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
regards
Bernd
WOW Bernd!!
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

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
Bidge,
in a button will start the player at the playrate you set on the scrollbar/slider.
regards
Bernd
Code: Select all
on mouseUp
start player 1
set the playrate of player 1 to the thumbposition of scrollbar 1
end mouseUp
regards
Bernd