Home
last modified time | relevance | path

Searched refs:getID3 (Results 26 – 50 of 56) sorted by last modified time

123

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.la.php182 $getid3_temp = new getID3();
H A Dmodule.audio.wavpack.php226 $getid3_temp = new getID3();
248 $getid3_temp = new getID3();
H A Dwrite.apetag.php64 $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 Dwrite.id3v2.php108 …if (!empty($this->filename) && (getID3::is_writable($this->filename) || (!file_exists($this->filen…
110 $getID3 = new getID3;
111 $OldThisFileInfo = $getID3->analyze($this->filename);
141 …if (getID3::is_writable($this->filename) && is_file($this->filename) && ($fp = fopen($this->filena…
155 …if (getID3::is_writable($tempfilename) && is_file($tempfilename) && ($fp_temp = fopen($tempfilenam…
209 if (getID3::is_writable(dirname($this->filename))) {
216 $getID3 = new getID3;
217 $OldThisFileInfo = $getID3->analyze($this->filename);
244 } elseif (getID3::is_writable($this->filename)) {
251 $getID3 = new getID3;
[all …]
H A Dwrite.real.php65 …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 Dmodule.audio-video.asf.php24 * @param getID3 $getid3
26 public function __construct(getID3 $getid3) {
H A Dmodule.audio-video.quicktime.php1483 $getid3_temp = new getID3();
H A Dmodule.audio.lpac.php85 $getid3_temp = new getID3();
H A Dextension.cache.dbm.php73 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 Dextension.cache.mysql.php74 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 Dextension.cache.mysqli.php73 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
H A Dmodule.archive.gzip.php219 $getid3_temp = new getID3();
237 $getid3_temp = new getID3();
H A Dmodule.audio-video.mpeg.php396 $getid3_temp = new getID3();
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dstructure.txt2 /// getID3() by James Heinrich <info@getid3.org> //
5 // also https://github.com/JamesHeinrich/getID3 //
8 // changelog.txt - part of getID3() //
21 is actually returned by getID3(), since the actual data returned
65 ['getID3version']=>string() // version of getID3() that scanned this file (ex: '1.6.2')
H A Dreadme.txt28 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 DREADME.md1 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 Ddependencies.txt2 /// 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/demos/
H A Ddemo.audioinfo.class.php60 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 Ddemo.basic.php21 $getID3 = new getID3; variable
24 $ThisFileInfo = $getID3->analyze($filename);
31 $getID3->CopyTagsToComments($ThisFileInfo);
H A Ddemo.mysqli.php54 $getID3 = new getID3; variable
55 $getID3->setOption(array(
293 global $getID3;
297 $ThisFileInfo = $getID3->analyze($filename);
298 $getID3->CopyTagsToComments($ThisFileInfo);
332 $tagwriter->tag_encoding = $getID3->encoding;
465 $ThisFileInfo = $getID3->analyze($filename);
466 $getID3->CopyTagsToComments($ThisFileInfo);
619 $ThisFileInfo = $getID3->analyze($row['filename']);
1781 $ThisFileInfo = $getID3->analyze($filename);
[all …]
H A Ddemo.browse.php43 $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);
H A Ddemo.simple.php27 $getID3 = new getID3; variable
38 $ThisFileInfo = $getID3->analyze($FullFileName);
40 $getID3->CopyTagsToComments($ThisFileInfo);
H A Ddemo.simple.write.php21 $getID3 = new getID3; variable
22 $getID3->setOption(array('encoding'=>$TextEncoding));
/plugin/jplayer/
H A Dcomposer.lock73 "url": "https://github.com/JamesHeinrich/getID3.git",
78 …"url": "https://api.github.com/repos/JamesHeinrich/getID3/zipball/3c15e353b9bb1252201c73394bb8390b…
H A Dsyntax.php15 private $getID3; variable in syntax_plugin_jplayer
18 $this->getID3 = new getID3;
55 $analyze = $this->getID3->analyze($full_path);

123