Home
last modified time | relevance | path

Searched refs:id3v1 (Results 1 – 4 of 4) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/
H A Ddependencies.txt15 id3v2 depends on id3v1
16 apetag depends on id3v1 (optional, writing only)
25 asf depends on riff, id3v1 (optional)
H A Dstructure.txt45 ['tags_html']['id3v1']['artist'][0] or ['comments_html']['artist'][0]
85 … // array of all metainformation tags present in file ('id3v1', 'id3v2', 'ape', …
530 ['id3v1']=>array() { // ID3v1
H A Dchangelog.txt1005 /getid3/write.id3v1.php
1363 getid3.id3v1.php or getid3.id3v2.php or getid3.functions.php as
1375 key ['id3v1']['padding_valid'] indicates padding validity.
1391 ['ape'], ['lyrics3'], ['id3v1'] and ['id3v2']
1482 ¤ Contents of getid3.id3.php moved to getid3.id3v1.php
1815 * Appended data tags: 'ape', 'lyrics3', 'id3v2', 'id3v1'
1826 ¤ ['id3']['id3v1'] has moved to ['id3v1']
2527 ¤ split parsing functions out into seperate files: lyrics3, id3v1,
2958 * Bugfix: Added missing ['id3']['id3v1']['genreid'] and
2959 ['id3']['id3v1']['genre']
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.mp3header.php758 function ID3v1matchesID3v2($id3v1, $id3v2) { argument
762 if (!isset($id3v1["$requiredindex"])) {
763 $id3v1["$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'])) {
785 if (isset($id3v1['track_number'])) {
786 …if (!isset($id3v1['track_number']) || (trim($id3v1['track_number']) != trim($id3v2['track_number']…
[all …]