MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_supported_extensions()

std::vector< std::string > MayaFlux::IO::SoundFileReader::get_supported_extensions ( ) const
overridevirtual

Get supported file extensions for this reader.

Returns
Vector of supported extensions (e.g., "wav", "flac").

Implements MayaFlux::IO::FileReader.

Definition at line 899 of file SoundFileReader.cpp.

900{
901 return {
902 "wav", "flac", "mp3", "m4a", "aac", "ogg", "opus", "wma",
903 "aiff", "aif", "ape", "wv", "tta", "mka", "ac3", "dts",
904 "mp2", "mp4", "webm", "caf", "amr", "au", "voc", "w64",
905 "mpc", "mp+", "m4b", "m4r", "3gp", "3g2", "asf", "rm",
906 "ra", "avi", "mov", "mkv", "ogv", "ogx", "oga", "spx",
907 "f4a", "f4b", "f4v", "m4v", "asx", "wvx", "wax"
908 };
909}