/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | write.id3v1.php | 105 $getID3 = new getID3; 106 $getID3->option_tag_id3v2 = false; 107 $getID3->option_tag_apetag = false; 108 $getID3->option_tags_html = false; 109 $getID3->option_extra_info = false; 110 $getID3->option_tag_id3v1 = true; 164 $getID3 = new getID3; 165 $getID3->option_tag_id3v1 = false; 166 $getID3->option_tag_id3v2 = false; 167 $getID3->option_tag_apetag = false; [all …]
|
H A D | extension.cache.dbm.php | 73 class getID3_cached_dbm extends getID3 152 dba_insert(getID3::VERSION, getID3::VERSION, $this->dba); 163 if (dba_fetch(getID3::VERSION, $this->dba) != getID3::VERSION) { 207 dba_insert(getID3::VERSION, getID3::VERSION, $this->dba);
|
H A D | write.apetag.php | 64 $getID3 = new getID3; 65 $ThisFileInfo = $getID3->analyze($this->filename); 74 $ThisFileInfo = $getID3->analyze($this->filename); 88 …if (getID3::is_writable($this->filename) && is_file($this->filename) && ($fp = fopen($this->filena… 127 $getID3 = new getID3; 128 $ThisFileInfo = $getID3->analyze($this->filename); 130 …if (getID3::is_writable($this->filename) && is_file($this->filename) && ($fp = fopen($this->filena…
|
H A D | write.lyrics3.php | 61 $getID3 = new getID3; 62 $ThisFileInfo = $getID3->analyze($this->filename); 64 …if (is_readable($this->filename) && getID3::is_writable($this->filename) && is_file($this->filenam…
|
H A D | write.real.php | 65 …if (getID3::is_writable($this->filename) && is_file($this->filename) && ($fp_source = fopen($this-… 68 $getID3 = new getID3; 69 $OldThisFileInfo = $getID3->analyze($this->filename); 131 …if (getID3::is_writable($tempfilename) && is_file($tempfilename) && ($fp_temp = fopen($tempfilenam… 269 …if (getID3::is_writable($this->filename) && is_file($this->filename) && ($fp_source = fopen($this-… 272 $getID3 = new getID3; 273 $OldThisFileInfo = $getID3->analyze($this->filename); 298 …if (getID3::is_writable($tempfilename) && is_file($tempfilename) && ($fp_temp = fopen($tempfilenam…
|
H A D | extension.cache.sqlite3.php | 98 class getID3_cached_sqlite3 extends getID3 138 $stmt->bindValue(':filename', getID3::VERSION, SQLITE3_TEXT); 141 if ($version != getID3::VERSION) { // Check version number and clear cache if changed 166 $stmt->bindValue(':filename', getID3::VERSION, SQLITE3_TEXT); 167 $stmt->bindValue(':dirname', getID3::VERSION, SQLITE3_TEXT); 168 $stmt->bindValue(':val', getID3::VERSION, SQLITE3_TEXT);
|
H A D | extension.cache.mysql.php | 74 class getID3_cached_mysql extends getID3 132 $SQLquery .= ' WHERE (`filename` = \''.mysql_real_escape_string(getID3::VERSION).'\')'; 139 if ($version != getID3::VERSION) { 154 ….mysql_real_escape_string($this->table).'` VALUES (\''.getID3::VERSION.'\', -1, -1, -1, \''.getID3…
|
H A D | extension.cache.mysqli.php | 73 class getID3_cached_mysqli extends getID3 139 $SQLquery .= ' WHERE (`filename` = \''.$this->mysqli->real_escape_string(getID3::VERSION).'\')'; 144 if ($version != getID3::VERSION) { 157 …nalyzetime`, `value`) VALUES (\'getID3::VERSION\', \''.getID3::VERSION.'\', -1, -1, -1, \''.getID3…
|
/plugin/jplayer/vendor/james-heinrich/getid3/licenses/ |
H A D | license.commercial.txt | 1 getID3() Commercial License 4 getID3() is licensed under the "GNU Public License" (GPL) and/or the 5 "getID3() Commercial License" (gCL). This document describes the gCL. 13 The gCL grants the licensee the right to use getID3() in commercial 14 closed-source projects. Modifications may be made to getID3() with no 15 obligation to release the modified source code. getID3() (or pieces 19 The licensee may use any version of getID3(), past, present or future, 22 made publicly available to all getID3() users. 24 The licensee may not sub-license getID3() itself, meaning that any 26 have added functionality beyond what is available in getID3(); [all …]
|
/plugin/jplayer/vendor/james-heinrich/getid3/demos/ |
H A D | demo.mimeonly.php | 45 $getID3 = new getID3; 49 $getID3->openfile($filename); 50 if (empty($getID3->info['error'])) { 54 $getid3_id3v2 = new getid3_id3v2($getID3); 57 fseek($fp, $getID3->info['avdataoffset'], SEEK_SET); 61 $DeterminedFormatInfo = $getID3->GetFileFormat($formattest);
|
H A D | demo.basic.php | 21 $getID3 = new getID3; variable 24 $ThisFileInfo = $getID3->analyze($filename); 31 $getID3->CopyTagsToComments($ThisFileInfo);
|
H A D | demo.audioinfo.class.php | 60 private $getID3; variable in AudioInfo 70 $this->getID3 = new getID3; 71 $this->getID3->option_md5_data = true; 72 $this->getID3->option_md5_data_source = true; 73 $this->getID3->encoding = 'UTF-8'; 90 $this->info = $this->getID3->analyze($file);
|
H A D | demo.simple.php | 27 $getID3 = new getID3; variable 38 $ThisFileInfo = $getID3->analyze($FullFileName); 40 $getID3->CopyTagsToComments($ThisFileInfo);
|
H A D | demo.simple.write.php | 21 $getID3 = new getID3; variable 22 $getID3->setOption(array('encoding'=>$TextEncoding));
|
H A D | demo.write.php | 26 $getID3 = new getID3; variable 27 $getID3->setOption(array('encoding'=>$TaggingFormat)); 124 $getID3 = new getID3; variable 125 $OldThisFileInfo = $getID3->analyze($Filename);
|
H A D | demo.cache.dbm.php | 21 $getID3 = new getID3_cached_dbm('db3', '/zimweb/test/test.dbm', '/zimweb/test/test.lock'); variable 23 $r = $getID3->analyze('/path/to/files/filename.mp3');
|
H A D | demo.cache.mysql.php | 22 $getID3 = new getID3_cached_mysql('localhost', 'database', 'username', 'password'); variable 24 $r = $getID3->analyze('/path/to/files/filename.mp3');
|
H A D | demo.joinmp3.php | 57 $getID3 = new getID3; 64 $CurrentFileInfo = $getID3->analyze($nextinputfilename);
|
H A D | demo.browse.php | 43 $getID3 = new getID3; variable 44 $getID3->setOption(array('encoding' => $PageEncoding)); 95 $ThisFileInfo = $getID3->analyze($_REQUEST['filename']); 104 $getID3->CopyTagsToComments($ThisFileInfo); 181 …$getID3->setOption(array('option_md5_data' => (isset($_REQUEST['ShowMD5']) && GETID3_DEMO_BROWSE_A… 182 $fileinformation = $getID3->analyze($currentfilename); 184 $getID3->CopyTagsToComments($fileinformation); 613 global $getID3; 617 return str_replace('<!--GETID3VER-->', $getID3->version(), $string);
|
/plugin/jplayer/vendor/james-heinrich/getid3/ |
H A D | license.txt | 2 /// getID3() by James Heinrich <info@getid3.org> // 5 // also https://github.com/JamesHeinrich/getID3 // 11 getID3() is released under multiple licenses. You may choose 12 from the following licenses, and use getID3 according to the 23 getID3 Commercial License: https://www.getid3.org/#gCL (payment required) 29 directory of the getID3 distribution.
|
H A D | readme.txt | 28 directory of the getID3 distribution. 67 What does getID3() do? 191 // Initialize getID3 engine 192 $getID3 = new getID3; 229 getID3() 1.x: 243 getID3() 2.x: 460 as ID3v2.4) (detected by getID3()) 464 confirmed. (detected by getID3()) 493 TwinVQF v2.0 (detected by getID3()) 518 (detected by getID3()) [all …]
|
H A D | README.md | 1 getID3() by James Heinrich (<info@getid3.org>) 23 **getID3 Commercial License:** 29 directory of the getID3 distribution. 66 What does getID3() do? 187 // Initialize getID3 engine 188 $getID3 = new getID3; 218 getID3() 1.x: 233 getID3() 2.x: 450 confirmed. (detected by getID3()) 499 (detected by getID3()) [all …]
|
H A D | dependencies.txt | 2 /// getID3() by James Heinrich <info@getid3.org> // 5 // also https://github.com/JamesHeinrich/getID3 // 8 // dependencies.txt - part of getID3() //
|
/plugin/jplayer/vendor/james-heinrich/getid3/helperapps/ |
H A D | readme.helperapps.txt | 2 /// getID3() by James Heinrich <info@getid3.org> // 5 // also https://github.com/JamesHeinrich/getID3 // 8 // /helperapps/readme.txt - part of getID3() // 16 that getID3() depends on to handle some file formats under Windows. 22 download the latest version of the "getID3()-WindowsSupport" package
|
/plugin/jplayer/ |
H A D | syntax.php | 15 private $getID3; variable in syntax_plugin_jplayer 18 $this->getID3 = new getID3; 55 $analyze = $this->getID3->analyze($full_path);
|