wp-includes/ID3/module.audio.flac.php
Lines:
1 to 36 of 36
<?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.flac.php // // module for analyzing FLAC and OggFLAC audio files // // dependencies: module.audio.ogg.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.ogg.php', __FILE__, true); /* class getid3_flac */ /* function getid3_flac::Analyze() – */ /* function getid3_flac::parseMETAdata() – */ /* function getid3_flac::parseSTREAMINFOdata() – */ /* function getid3_flac::parseSTREAMINFO() – */ /* function getid3_flac::parseAPPLICATION() – */ /* function getid3_flac::parseSEEKTABLE() – */ /* function getid3_flac::parseVORBIS_COMMENT() – */ /* function getid3_flac::parseCUESHEET() – */ /* function getid3_flac::parsePICTURE() – Parse METADATA_BLOCK_PICTURE flac structure and extract attachment External usage: audio.ogg */ /* function getid3_flac::metaBlockTypeLookup() – */ /* function getid3_flac::applicationIDLookup() – */ /* function getid3_flac::pictureTypeLookup() – */