Home
last modified time | relevance | path

Searched refs:getID3 (Results 1 – 25 of 56) sorted by last modified time

123

/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.changelog.txt1196 from getID3() [http://getid3.sourceforge.net] as
/plugin/photogallery/phpThumb/
H A Dlicense.txt11 from the following licenses, and use getID3 according to the
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dwrite.id3v1.php105 $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 Dwrite.php177 $getID3 = new getID3;
178 $getID3->encoding = $this->tag_encoding;
179 $this->ThisFileInfo = $getID3->analyze($this->filename);
H A Dextension.cache.sqlite3.php98 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 Dgetid3.lib.php775 $buffer = fread($fp, min($size, getID3::FREAD_BUFFER_SIZE));
777 $size -= getID3::FREAD_BUFFER_SIZE;
804 …while (($byteslefttowrite > 0) && ($buffer = fread($fp_src, min($byteslefttowrite, getID3::FREAD_B…
1496 $getid3_temp = new getID3();
H A Dgetid3.php82 class getID3 class
1925 * @var getID3
1965 * @param getID3 $getid3
1968 public function __construct(getID3 $getid3, $call_module=null) {
2225 if ($this->getid3->option_save_attachments === getID3::ATTACHMENTS_NONE) {
2230 } elseif ($this->getid3->option_save_attachments === getID3::ATTACHMENTS_INLINE) {
2243 if (!is_dir($dir) || !getID3::is_writable($dir)) { // check supplied directory
H A Dmodule.audio-video.riff.php1174 $getid3_temp = new getID3();
1260 $getid3_temp = new getID3();
1559 $getid3_temp = new getID3();
1581 $getid3_temp = new getID3();
1642 $getid3_temp = new getID3();
1658 $getid3_temp = new getID3();
1693 $getid3_temp = new getID3();
1885 $getid3_temp = new getID3();
H A Dmodule.audio.flac.php148 …if (isset($info['flac']['PICTURE']) && ($this->getid3->option_save_attachments !== getID3::ATTACHM…
H A Dmodule.audio-video.matroska.php366 $getid3_temp = new getID3();
434 $getid3_temp = new getID3();
498 …if (isset($info['matroska']['attachments']) && $this->getid3->option_save_attachments !== getID3::…
H A Dmodule.audio.bonk.php206 $getid3_temp = new getID3();
H A Dwrite.lyrics3.php61 $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 Dwrite.metaflac.php66 …if (getID3::is_writable($temppicturefilename) && is_file($temppicturefilename) && ($fpcomments = f…
87 …if (getID3::is_writable($tempcommentsfilename) && is_file($tempcommentsfilename) && ($fpcomments =…
H A Dwrite.vorbiscomment.php60 …if (getID3::is_writable($tempcommentsfilename) && is_file($tempcommentsfilename) && ($fpcomments =…
H A Dmodule.audio.dsdiff.php211 $getid3_temp = new getID3();
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dlicense.txt2 /// 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 Dchangelog.txt2 /// getID3() by James Heinrich <info@getid3.org> //
5 // also https://github.com/JamesHeinrich/getID3 //
8 // changelog.txt - part of getID3() //
855 for most users of getID3()
1073 "getID3()-WindowsSupport" to work under Windows.
1271 Moved all getID3() files to getid3/
1641 versions of getID3()
1780 in this or future versions of getID3().
1808 and placed in the getID3() directory.
1944 string with the current getID3() version.
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/licenses/
H A Dlicense.commercial.txt1 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 Ddemo.cache.dbm.php21 $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 Ddemo.cache.mysql.php22 $getID3 = new getID3_cached_mysql('localhost', 'database', 'username', 'password'); variable
24 $r = $getID3->analyze('/path/to/files/filename.mp3');
H A Ddemo.joinmp3.php57 $getID3 = new getID3;
64 $CurrentFileInfo = $getID3->analyze($nextinputfilename);
H A Ddemo.write.php26 $getID3 = new getID3; variable
27 $getID3->setOption(array('encoding'=>$TaggingFormat));
124 $getID3 = new getID3; variable
125 $OldThisFileInfo = $getID3->analyze($Filename);
H A Ddemo.zip.php21 $getid3 = new getID3();
H A Ddemo.mimeonly.php45 $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);
/plugin/jplayer/vendor/james-heinrich/getid3/helperapps/
H A Dreadme.helperapps.txt2 /// 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

123