wp-includes/ID3/module.audio.ogg.php
Lines:
1 to 33 of 33
<?php ///////////////////////////////////////////////////////////////// /// getID3() by James Heinrich <info@getid3.org> // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio.ogg.php // // module for analyzing Ogg Vorbis, OggFLAC and Speex files // // dependencies: module.audio.flac.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.flac.php', __FILE__, true); /* class getid3_ogg */ /* function getid3_ogg::Analyze() – */ /* function getid3_ogg::ParseVorbisPageHeader() – */ /* function getid3_ogg::ParseOpusPageHeader() – */ /* function getid3_ogg::ParseOggPageHeader() – */ /* function getid3_ogg::ParseVorbisComments() – */ /* function getid3_ogg::SpeexBandModeLookup() – */ /* function getid3_ogg::OggPageSegmentLength() – */ /* function getid3_ogg::get_quality_from_nominal_bitrate() – */ /* function getid3_ogg::TheoraColorSpace() – */ /* function getid3_ogg::TheoraPixelFormat() – */