savewav(seewave)
savewav()所属R语言包:seewave
Save a .wav file
保存。wav文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Save sound data as .wav file
保存声音的数据。wav文件
用法----------Usage----------
savewav(wave, f = NULL, filename = NULL, rescale = NULL)
参数----------Arguments----------
参数:wave
an R object.
R对象。
参数:f
sampling frequency of wave (in Hz). Does not need to be specified if embedded in wave.
wave(赫兹)的采样频率。不需要以指定如果嵌入在wave,。
参数:filename
name of the new file. (by default the name of wave).
新文件的名称。 (默认情况下wave)的名称。
参数:rescale
a numeric vector of length 2 giving the lower (negative value) and upper (positive value) amplitude limits of the .wav file to be exported.
一个数值向量长度为2给予低(负值)和上限(正值)。wav文件的幅度限制出口。
Details
详细信息----------Details----------
This function uses three functions from the package tuneR: Wave, normalize and writeWave.
此功能使用功能的包tuneR:Wave,normalize和writeWave。
注意----------Note----------
The file automatically owerwrites an existing file with the same name.<br> The amplitude (volume) of the .wav file is normalized by defaults but can be changed with the argument
文件将自动owerwrites现有的文件具有相同的名称。<BR>的。wav文件在默认情况下是归一化的振幅(音量),但可以改变的参数
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>, Ethan C. Brown for the
argument 'rescale'
参见----------See Also----------
export.
export。
实例----------Examples----------
require(tuneR)
a<-synth(f=8000,d=2,cf=2000,plot=FALSE)
# the name of the file is automatically the name of the object[的文件名是自动的对象的名称]
# here: "a.wav"[在这里:“a.wav”]
savewav(a,f=22050)
unlink("a.wav")
# if you wish to change the name, use the 'file' argument[如果你想更改名称,使用“文件”的说法]
savewav(a,f=22050,file="b.wav")
unlink("b.wav")
# if you wish to change the amplitude of the file, use the argument 'rescale'[如果你想改变振幅的文件,使用的参数“重新调整”]
# this will turn down the volume of a 16 bit sound[一个16位的声音,这将调低音量]
# which amplitude was originally ranging between -2^15 and +2^15[幅度介于-2 ^ 15 +2 ^ 15]
savewav(a, f=22050, file="c.wav", rescale=c(-1500,1500))
unlink("c.wav")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|