Learn R Programming

phonTools (version 0.2-2.2)

makesound: Make a 'sound' object

Description

Create a 'sound' object from a numeric vector.

Usage

makesound (sound, filename, fs = 22050)

Arguments

sound

A numeric vector representing a sound wave.

filename

A string indicating the desired file name associated with this object.

fs

The desired sampling frequency of the sound object.

Author

Santiago Barreda <sbarreda@ucdavis.edu>

Details

This function can make a vector into a 'sound' object. If a filename is not set, the filename defaults to 'sound.wav' where 'sound' indicates the name of the sound variable that was passed to the function. The benefit of working with 'sound' objects is that they carry their sampling frequency and filename (as well as some other information) with them.

References

https://ccrma.stanford.edu/courses/422/projects/WaveFormat/

Examples

Run this code

data (sound)
## take only the first 10000 samples from a 'sound' object
tmp = sound$sound[1:10000]
## and make a new 'sound' object
tmp = makesound (tmp, fs = 22050)
tmp

## get ready to make two plots with thin margins
#multiplot (2); par (mar = c(4,4,1,1));
## and show a spectrogram of the original
#spectrogram (sound)       

## and the new, truncated version
#spectrogram (tmp)         

Run the code above in your browser using DataLab