Home
last modified time | relevance | path

Searched refs:id3v2 (Results 1 – 6 of 6) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/
H A Ddependencies.txt15 id3v2 depends on id3v1
17 bonk depends on id3v2 (optional)
H A Dchangelog.txt79 * bugfix: write.id3v2 year field
556 * Bugfix: [id3v2] UFID was not returning data
672 * Bugfix: id3v2 genre broken since 1.7.7.
910 module.tag.id3v2.php
1006 /getid3/write.id3v2.php
1316 module with iconv(). id3v2 module also reads
1391 ['ape'], ['lyrics3'], ['id3v1'] and ['id3v2']
1827 ¤ ['id3']['id3v2'] has moved to ['id3v2']
2528 id3v2, mp3, ogg, riff, mpeg, midi, zip
2873 ['id3']['id3v2']['genrelist'] where appropriate
[all …]
H A DREADME.md517 * http://www.id3.org/id3v2.4.0-structure.txt
518 * http://www.id3.org/id3v2.4.0-frames.txt
519 * http://www.id3.org/id3v2.4.0-changes.txt
520 * http://www.id3.org/id3v2.3.0.txt
521 * http://www.id3.org/id3v2-00.txt
H A Dreadme.txt535 * http://www.id3.org/id3v2.4.0-structure.txt
536 * http://www.id3.org/id3v2.4.0-frames.txt
537 * http://www.id3.org/id3v2.4.0-changes.txt
538 * http://www.id3.org/id3v2.3.0.txt
539 * http://www.id3.org/id3v2-00.txt
H A Dstructure.txt85 … // array of all metainformation tags present in file ('id3v1', 'id3v2', 'ape', 'riff', '…
546 ['id3v2']=>array() { // ID3v2 - www.id3.org
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php758 function ID3v1matchesID3v2($id3v1, $id3v2) { argument
765 if (!isset($id3v2["$requiredindex"])) {
766 $id3v2["$requiredindex"] = '';
770 if (trim($id3v1['title']) != trim(substr($id3v2['title'], 0, 30))) {
773 if (trim($id3v1['artist']) != trim(substr($id3v2['artist'], 0, 30))) {
776 if (trim($id3v1['album']) != trim(substr($id3v2['album'], 0, 30))) {
779 if (trim($id3v1['year']) != trim(substr($id3v2['year'], 0, 4))) {
782 if (trim($id3v1['genre']) != trim($id3v2['genre'])) {
786 …if (!isset($id3v1['track_number']) || (trim($id3v1['track_number']) != trim($id3v2['track_number']…
789 if (trim($id3v1['comment']) != trim(substr($id3v2['comment'], 0, 28))) {
[all …]