wp-includes/ID3/module.audio-video.asf.php
Lines:
1 to 37 of 37
<?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-video.asf.php // // module for analyzing ASF, WMA and WMV files // // dependencies: module.audio-video.riff.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true); /* class getid3_asf */ /* function getid3_asf::__construct() – */ /* function getid3_asf::Analyze() – */ /* function getid3_asf::codecListObjectTypeLookup() – */ /* function getid3_asf::KnownGUIDs() – */ /* function getid3_asf::GUIDname() – */ /* function getid3_asf::ASFIndexObjectIndexTypeLookup() – */ /* function getid3_asf::GUIDtoBytestring() – */ /* function getid3_asf::BytestringToGUID() – */ /* function getid3_asf::FILETIMEtoUNIXtime() – */ /* function getid3_asf::WMpictureTypeLookup() – */ /* function getid3_asf::HeaderExtensionObjectDataParse() – */ /* function getid3_asf::metadataLibraryObjectDataTypeLookup() – */ /* function getid3_asf::ASF_WMpicture() – */ /* function getid3_asf::TrimConvert() – Remove terminator 00 00 and convert UTF-16LE to Latin-1. */ /* function getid3_asf::TrimTerm() – Remove terminator 00 00. */