readMP3: Read an MPEG-2 layer 3 file into a Wave object

View source: R/readMP3.R

readMP3R Documentation

Read an MPEG-2 layer 3 file into a Wave object

Description

A bare bones MPEG-2 layer 3 (MP3) file reader that returns the results as 16bit PCM data stored in a Wave object.

Usage

readMP3(filename)

Arguments

filename

Filename of MP3 file.

Value

A Wave object.

Note

The decoder can currently only handle files which are either mono or stereo. This is a limitation of the Wave object and the underlying MAD decoder.

Author(s)

Olaf Mersmann olafm@statistik.tu-dortmund.de

References

The decoder source code is taken from the MAD library, see http://www.underbit.com/products/mad/.

See Also

Wave

Examples

## Not run: 
## Requires an mp3 file named sample.mp3 in the current directory.
mpt <- readMP3("sample.mp3")
summary(mpt)

## End(Not run)

tuneR documentation built on Nov. 27, 2023, 5:11 p.m.

Related to readMP3 in tuneR...