Home
last modified time | relevance | path

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

/plugin/jplayer/vendor/james-heinrich/getid3/
Ddependencies.txt15 id3v2 depends on id3v1
17 bonk depends on id3v2 (optional)
Dchangelog.txt79 * bugfix: write.id3v2 year field
165 * bugfix (G:58): inconsistency in relation to module.tag.id3v2.php
323 * Bugfix: (#1265) unescaped # in regex in write.id3v2.php
400 * Bugfix: (#1133) write.id3v2.php IsValidURL() was broken
447 * Bugfix: (#1102) missing parentheses in write[.id3v2].php
448 * Bugfix: (#510) undefined IsValidDottedIP() in write.id3v2.php
556 * Bugfix: [id3v2] UFID was not returning data
632 * Bugfix: 'comments_html' missing last letter in id3v2 tags.
672 * Bugfix: id3v2 genre broken since 1.7.7.
775 * Bugfix: missing ob_end_clean() in write.id3v2.php
[all …]
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
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
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/
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 …]