singlePanEQ: function that do equalization for audio

Description Usage Arguments Value Examples

Description

function that do equalization for audio

Usage

1
singlePanEQ(sound, from, to, rate = 44100)

Arguments

sound

single channel sound

from

frequency that you want to start

to

frequency that you want to end

rate

sampling rate of audio

Value

single chanel sound file with frequency you want to change

Examples

 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)

lizhongliu1996/melodyExtracter documentation built on May 16, 2019, 4:09 a.m.