Documentation ¶
Overview ¶
Package mp3 provides MP3 decoder.
On desktops and mobiles, a pure Go decoder is used. On browsers, a native decoder on the browser is used.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Stream ¶
type Stream struct {
// contains filtered or unexported fields
}
Stream is a decoded stream.
func Decode
deprecated
Decode decodes MP3 source and returns a decoded stream in signed 16bit integer, little endian, 2 channels (stereo) format.
Decode returns error when decoding fails or IO error happens.
Decode automatically resamples the stream to fit with the audio context if necessary.
The returned Stream's Seek is available only when src is an io.Seeker.
A Stream doesn't close src even if src implements io.Closer. Closing the source is src owner's responsibility.
Deprecated: as of v2.1. Use DecodeWithSampleRate instead.
func DecodeF32 ¶ added in v2.8.0
DecodeF32 decodes an MP3 source and returns a decoded stream in 32bit float, little endian, 2 channels (stereo) format.
DecodeF32 returns error when decoding fails or IO error happens.
The returned Stream's Seek is available only when src is an io.Seeker.
A Stream doesn't close src even if src implements io.Closer. Closing the source is src owner's responsibility.
func DecodeWithSampleRate ¶ added in v2.1.0
DecodeWithSampleRate decodes an MP3 source and returns a decoded stream in signed 16bit integer, little endian, 2 channels (stereo) format.
DecodeWithSampleRate returns error when decoding fails or IO error happens.
DecodeWithSampleRate automatically resamples the stream to fit with sampleRate if necessary.
The returned Stream's Seek is available only when src is an io.Seeker.
A Stream doesn't close src even if src implements io.Closer. Closing the source is src owner's responsibility.
Resampling can be a very heavy task. Stream has a cache for resampling, but the size is limited. Do not expect that Stream has a resampling cache even after whole data is played.
func DecodeWithoutResampling ¶ added in v2.4.0
DecodeWithoutResampling decodes an MP3 source and returns a decoded stream in signed 16bit integer, little endian, 2 channels (stereo) format.
DecodeWithoutResampling returns error when decoding fails or IO error happens.
The returned Stream's Seek is available only when src is an io.Seeker.
A Stream doesn't close src even if src implements io.Closer. Closing the source is src owner's responsibility.
func (*Stream) SampleRate ¶ added in v2.8.0
SampleRate returns the sample rate of the decoded stream.