Documentation ¶
Overview ¶
Package vorbis provides Ogg/Vorbis decoder.
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 audio stream.
func Decode
deprecated
Decode decodes Ogg/Vorbis data to playable stream.
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 DecodeWithSampleRate ¶ added in v2.1.0
DecodeWithSampleRate decodes Ogg/Vorbis data to playable stream.
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.
func DecodeWithoutResampling ¶ added in v2.4.0
DecodeWithoutResampling decodes Ogg/Vorbis data to playable stream.
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) Length ¶
Length returns the size of decoded stream in bytes.
If the source is not io.Seeker, Length returns 0.