JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::OggVorbisAudioFormat Class Reference

Reads and writes the Ogg-Vorbis audio format. More...

#include <juce_OggVorbisAudioFormat.h>

Inheritance diagram for juce::OggVorbisAudioFormat:
Collaboration diagram for juce::OggVorbisAudioFormat:

Public Member Functions

 OggVorbisAudioFormat ()
 
 ~OggVorbisAudioFormat () override
 
bool canDoMono () override
 Returns true if the format can do 1-channel audio. More...
 
bool canDoStereo () override
 Returns true if the format can do 2-channel audio. More...
 
virtual bool canHandleFile (const File &fileToTest)
 Returns true if this the given file can be read by this format. More...
 
virtual MemoryMappedAudioFormatReadercreateMemoryMappedReader (const File &file)
 Attempts to create a MemoryMappedAudioFormatReader, if possible for this format. More...
 
virtual MemoryMappedAudioFormatReadercreateMemoryMappedReader (FileInputStream *fin)
 
AudioFormatReadercreateReaderFor (InputStream *sourceStream, bool deleteStreamIfOpeningFails) override
 Tries to create an object that can read from a stream containing audio data in this format. More...
 
virtual AudioFormatWritercreateWriterFor (OutputStream *streamToWriteTo, double sampleRateToUse, const AudioChannelSet &channelLayout, int bitsPerSample, const StringPairArray &metadataValues, int qualityOptionIndex)
 Tries to create an object that can write to a stream with this audio format. More...
 
virtual AudioFormatWritercreateWriterFor (OutputStream *streamToWriteTo, double sampleRateToUse, const AudioChannelSet &channelLayout, int bitsPerSample, const StringPairArray &metadataValues, int qualityOptionIndex)
 Tries to create an object that can write to a stream with this audio format. More...
 
AudioFormatWritercreateWriterFor (OutputStream *streamToWriteTo, double sampleRateToUse, unsigned int numberOfChannels, int bitsPerSample, const StringPairArray &metadataValues, int qualityOptionIndex) override
 Tries to create an object that can write to a stream with this audio format. More...
 
virtual AudioFormatWritercreateWriterFor (OutputStream *streamToWriteTo, double sampleRateToUse, unsigned int numberOfChannels, int bitsPerSample, const StringPairArray &metadataValues, int qualityOptionIndex)=0
 Tries to create an object that can write to a stream with this audio format. More...
 
int estimateOggFileQuality (const File &source)
 Tries to estimate the quality level of an ogg file based on its size. More...
 
virtual StringArray getFileExtensions () const
 Returns all the file extensions that might apply to a file of this format. More...
 
const StringgetFormatName () const
 Returns the name of this format. More...
 
Array< intgetPossibleBitDepths () override
 Returns a set of bit depths that the format can read and write. More...
 
Array< intgetPossibleSampleRates () override
 Returns a set of sample rates that the format can read and write. More...
 
StringArray getQualityOptions () override
 Returns a list of different qualities that can be used when writing. More...
 
virtual bool isChannelLayoutSupported (const AudioChannelSet &channelSet)
 Returns true if the channel layout is supported by this format. More...
 
bool isCompressed () override
 Returns true if the format uses compressed data. More...
 

Static Public Attributes

static const char *const encoderName
 Metadata property name used by the Ogg writer - if you set a string for this value, it will be written into the ogg file as the name of the encoder app. More...
 
static const char *const id3album
 Metadata key for setting an ID3 album. More...
 
static const char *const id3artist
 Metadata key for setting an ID3 artist name. More...
 
static const char *const id3comment
 Metadata key for setting an ID3 comment. More...
 
static const char *const id3date
 Metadata key for setting an ID3 date. More...
 
static const char *const id3genre
 Metadata key for setting an ID3 genre. More...
 
static const char *const id3title
 Metadata key for setting an ID3 title. More...
 
static const char *const id3trackNumber
 Metadata key for setting an ID3 track number. More...
 

Private Attributes

StringArray fileExtensions
 
String formatName
 

Detailed Description

Reads and writes the Ogg-Vorbis audio format.

To compile this, you'll need to set the JUCE_USE_OGGVORBIS flag.

See also
AudioFormat,

@tags{Audio}

Constructor & Destructor Documentation

◆ OggVorbisAudioFormat()

juce::OggVorbisAudioFormat::OggVorbisAudioFormat ( )

◆ ~OggVorbisAudioFormat()

juce::OggVorbisAudioFormat::~OggVorbisAudioFormat ( )
override

Member Function Documentation

◆ canDoMono()

bool juce::OggVorbisAudioFormat::canDoMono ( )
overridevirtual

Returns true if the format can do 1-channel audio.

Implements juce::AudioFormat.

◆ canDoStereo()

bool juce::OggVorbisAudioFormat::canDoStereo ( )
overridevirtual

Returns true if the format can do 2-channel audio.

Implements juce::AudioFormat.

◆ canHandleFile()

virtual bool juce::AudioFormat::canHandleFile ( const File fileToTest)
virtualinherited

Returns true if this the given file can be read by this format.

Subclasses shouldn't do too much work here, just check the extension or file type. The base class implementation just checks the file's extension against one of the ones that was registered in the constructor.

Reimplemented in juce::AiffAudioFormat, and juce::LAMEEncoderAudioFormat.

◆ createMemoryMappedReader() [1/2]

virtual MemoryMappedAudioFormatReader* juce::AudioFormat::createMemoryMappedReader ( const File file)
virtualinherited

Attempts to create a MemoryMappedAudioFormatReader, if possible for this format.

If the format does not support this, the method will return nullptr;

Reimplemented in juce::WavAudioFormat, and juce::AiffAudioFormat.

◆ createMemoryMappedReader() [2/2]

virtual MemoryMappedAudioFormatReader* juce::AudioFormat::createMemoryMappedReader ( FileInputStream fin)
virtualinherited

◆ createReaderFor()

AudioFormatReader* juce::OggVorbisAudioFormat::createReaderFor ( InputStream sourceStream,
bool  deleteStreamIfOpeningFails 
)
overridevirtual

Tries to create an object that can read from a stream containing audio data in this format.

The reader object that is returned can be used to read from the stream, and should then be deleted by the caller.

Parameters
sourceStreamthe stream to read from - the AudioFormatReader object that is returned will delete this stream when it no longer needs it.
deleteStreamIfOpeningFailsif no reader can be created, this determines whether this method should delete the stream object that was passed-in. (If a valid reader is returned, it will always be in charge of deleting the stream, so this parameter is ignored)
See also
AudioFormatReader

Implements juce::AudioFormat.

◆ createWriterFor() [1/4]

virtual AudioFormatWriter* juce::AudioFormat::createWriterFor

Tries to create an object that can write to a stream with this audio format.

The writer object that is returned can be used to write to the stream, and should then be deleted by the caller.

If the stream can't be created for some reason (e.g. the parameters passed in here aren't suitable), this will return nullptr.

Parameters
streamToWriteTothe stream that the data will go to - this will be deleted by the AudioFormatWriter object when it's no longer needed. If no AudioFormatWriter can be created by this method, the stream will NOT be deleted, so that the caller can re-use it to try to open a different format, etc
sampleRateToUsethe sample rate for the file, which must be one of the ones returned by getPossibleSampleRates()
channelLayoutthe channel layout for the file. Use isChannelLayoutSupported to check if the writer supports this layout.
bitsPerSamplethe bits per sample to use - this must be one of the values returned by getPossibleBitDepths()
metadataValuesa set of metadata values that the writer should try to write to the stream. Exactly what these are depends on the format, and the subclass doesn't actually have to do anything with them if it doesn't want to. Have a look at the specific format implementation classes to see possible values that can be used
qualityOptionIndexthe index of one of compression qualities returned by the getQualityOptions() method. If there aren't any quality options for this format, just pass 0 in this parameter, as it'll be ignored
See also
AudioFormatWriter

◆ createWriterFor() [2/4]

virtual AudioFormatWriter* juce::AudioFormat::createWriterFor ( OutputStream streamToWriteTo,
double  sampleRateToUse,
const AudioChannelSet channelLayout,
int  bitsPerSample,
const StringPairArray metadataValues,
int  qualityOptionIndex 
)
virtualinherited

Tries to create an object that can write to a stream with this audio format.

The writer object that is returned can be used to write to the stream, and should then be deleted by the caller.

If the stream can't be created for some reason (e.g. the parameters passed in here aren't suitable), this will return nullptr.

Parameters
streamToWriteTothe stream that the data will go to - this will be deleted by the AudioFormatWriter object when it's no longer needed. If no AudioFormatWriter can be created by this method, the stream will NOT be deleted, so that the caller can re-use it to try to open a different format, etc
sampleRateToUsethe sample rate for the file, which must be one of the ones returned by getPossibleSampleRates()
channelLayoutthe channel layout for the file. Use isChannelLayoutSupported to check if the writer supports this layout.
bitsPerSamplethe bits per sample to use - this must be one of the values returned by getPossibleBitDepths()
metadataValuesa set of metadata values that the writer should try to write to the stream. Exactly what these are depends on the format, and the subclass doesn't actually have to do anything with them if it doesn't want to. Have a look at the specific format implementation classes to see possible values that can be used
qualityOptionIndexthe index of one of compression qualities returned by the getQualityOptions() method. If there aren't any quality options for this format, just pass 0 in this parameter, as it'll be ignored
See also
AudioFormatWriter

Reimplemented in juce::WavAudioFormat.

◆ createWriterFor() [3/4]

AudioFormatWriter* juce::OggVorbisAudioFormat::createWriterFor ( OutputStream streamToWriteTo,
double  sampleRateToUse,
unsigned int  numberOfChannels,
int  bitsPerSample,
const StringPairArray metadataValues,
int  qualityOptionIndex 
)
overridevirtual

Tries to create an object that can write to a stream with this audio format.

The writer object that is returned can be used to write to the stream, and should then be deleted by the caller.

If the stream can't be created for some reason (e.g. the parameters passed in here aren't suitable), this will return nullptr.

Parameters
streamToWriteTothe stream that the data will go to - this will be deleted by the AudioFormatWriter object when it's no longer needed. If no AudioFormatWriter can be created by this method, the stream will NOT be deleted, so that the caller can re-use it to try to open a different format, etc
sampleRateToUsethe sample rate for the file, which must be one of the ones returned by getPossibleSampleRates()
numberOfChannelsthe number of channels
bitsPerSamplethe bits per sample to use - this must be one of the values returned by getPossibleBitDepths()
metadataValuesa set of metadata values that the writer should try to write to the stream. Exactly what these are depends on the format, and the subclass doesn't actually have to do anything with them if it doesn't want to. Have a look at the specific format implementation classes to see possible values that can be used
qualityOptionIndexthe index of one of compression qualities returned by the getQualityOptions() method. If there aren't any quality options for this format, just pass 0 in this parameter, as it'll be ignored
See also
AudioFormatWriter

Implements juce::AudioFormat.

◆ createWriterFor() [4/4]

virtual AudioFormatWriter* juce::AudioFormat::createWriterFor

Tries to create an object that can write to a stream with this audio format.

The writer object that is returned can be used to write to the stream, and should then be deleted by the caller.

If the stream can't be created for some reason (e.g. the parameters passed in here aren't suitable), this will return nullptr.

Parameters
streamToWriteTothe stream that the data will go to - this will be deleted by the AudioFormatWriter object when it's no longer needed. If no AudioFormatWriter can be created by this method, the stream will NOT be deleted, so that the caller can re-use it to try to open a different format, etc
sampleRateToUsethe sample rate for the file, which must be one of the ones returned by getPossibleSampleRates()
numberOfChannelsthe number of channels
bitsPerSamplethe bits per sample to use - this must be one of the values returned by getPossibleBitDepths()
metadataValuesa set of metadata values that the writer should try to write to the stream. Exactly what these are depends on the format, and the subclass doesn't actually have to do anything with them if it doesn't want to. Have a look at the specific format implementation classes to see possible values that can be used
qualityOptionIndexthe index of one of compression qualities returned by the getQualityOptions() method. If there aren't any quality options for this format, just pass 0 in this parameter, as it'll be ignored
See also
AudioFormatWriter

◆ estimateOggFileQuality()

int juce::OggVorbisAudioFormat::estimateOggFileQuality ( const File source)

Tries to estimate the quality level of an ogg file based on its size.

If it can't read the file for some reason, this will just return 1 (medium quality), otherwise it will return the approximate quality setting that would have been used to create the file.

See also
getQualityOptions

◆ getFileExtensions()

virtual StringArray juce::AudioFormat::getFileExtensions ( ) const
virtualinherited

Returns all the file extensions that might apply to a file of this format.

The first item will be the one that's preferred when creating a new file. So for a wav file this might just return ".wav"; for an AIFF file it might return two items, ".aif" and ".aiff"

◆ getFormatName()

const String& juce::AudioFormat::getFormatName ( ) const
inherited

Returns the name of this format.

e.g. "WAV file" or "AIFF file"

◆ getPossibleBitDepths()

Array<int> juce::OggVorbisAudioFormat::getPossibleBitDepths ( )
overridevirtual

Returns a set of bit depths that the format can read and write.

Implements juce::AudioFormat.

◆ getPossibleSampleRates()

Array<int> juce::OggVorbisAudioFormat::getPossibleSampleRates ( )
overridevirtual

Returns a set of sample rates that the format can read and write.

Implements juce::AudioFormat.

◆ getQualityOptions()

StringArray juce::OggVorbisAudioFormat::getQualityOptions ( )
overridevirtual

Returns a list of different qualities that can be used when writing.

Non-compressed formats will just return an empty array, but for something like Ogg-Vorbis or MP3, it might return a list of bit-rates, etc.

When calling createWriterFor(), an index from this array is passed in to tell the format which option is required.

Reimplemented from juce::AudioFormat.

◆ isChannelLayoutSupported()

virtual bool juce::AudioFormat::isChannelLayoutSupported ( const AudioChannelSet channelSet)
virtualinherited

Returns true if the channel layout is supported by this format.

Reimplemented in juce::WavAudioFormat.

◆ isCompressed()

bool juce::OggVorbisAudioFormat::isCompressed ( )
overridevirtual

Returns true if the format uses compressed data.

Reimplemented from juce::AudioFormat.

Member Data Documentation

◆ encoderName

const char* const juce::OggVorbisAudioFormat::encoderName
static

Metadata property name used by the Ogg writer - if you set a string for this value, it will be written into the ogg file as the name of the encoder app.

See also
createWriterFor

◆ fileExtensions

StringArray juce::AudioFormat::fileExtensions
privateinherited

◆ formatName

String juce::AudioFormat::formatName
privateinherited

◆ id3album

const char* const juce::OggVorbisAudioFormat::id3album
static

Metadata key for setting an ID3 album.

◆ id3artist

const char* const juce::OggVorbisAudioFormat::id3artist
static

Metadata key for setting an ID3 artist name.

◆ id3comment

const char* const juce::OggVorbisAudioFormat::id3comment
static

Metadata key for setting an ID3 comment.

◆ id3date

const char* const juce::OggVorbisAudioFormat::id3date
static

Metadata key for setting an ID3 date.

◆ id3genre

const char* const juce::OggVorbisAudioFormat::id3genre
static

Metadata key for setting an ID3 genre.

◆ id3title

const char* const juce::OggVorbisAudioFormat::id3title
static

Metadata key for setting an ID3 title.

◆ id3trackNumber

const char* const juce::OggVorbisAudioFormat::id3trackNumber
static

Metadata key for setting an ID3 track number.


The documentation for this class was generated from the following file: