Description Usage Arguments Value Examples
function that do equalization for audio
1 | singlePanEQ(sound, from, to, rate = 44100)
|
sound |
single channel sound |
from |
frequency that you want to start |
to |
frequency that you want to end |
rate |
sampling rate of audio |
single chanel sound file with frequency you want to change
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
song <- sound::loadSample("inst/extdata/ifonly.wav")
left_song <- sound::left(song)
test <- singlePanEQ(
left_song,
from = 250,
to = 8000,
rate = 44100
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.