Home
last modified time | relevance | path

Searched refs:id3v1tag (Results 1 – 25 of 29) sorted by relevance

12

/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/id3/
H A DID3v1Iterator.java21 private ID3v1 id3v1tag; field in ID3v1Iterator
28 this.id3v1tag = id3v1tag; in ID3v1Iterator()
42 this.id3v1tag.title = ""; in remove()
50 this.id3v1tag.year = ""; in remove()
86 return (this.id3v1tag.title.length() > 0) ? this.id3v1tag.title : next(index + 1); in next()
88 return (this.id3v1tag.artist.length() > 0) ? this.id3v1tag.artist : next(index + 1); in next()
90 return (this.id3v1tag.album.length() > 0) ? this.id3v1tag.album : next(index + 1); in next()
92 … return (this.id3v1tag.comment.length() > 0) ? this.id3v1tag.comment : next(index + 1); in next()
94 return (this.id3v1tag.year.length() > 0) ? this.id3v1tag.year : next(index + 1); in next()
96 return (this.id3v1tag.genre >= 0) ? new Byte(this.id3v1tag.genre) : next(index + 1); in next()
[all …]
H A DID3v1.java135 ID3v1 id3v1tag = new ID3v1_1(); in getID3tag() local
140 id3v1tag.read(file); in getID3tag()
141 id3v1tag.delete(file); in getID3tag()
143 id3v1tag = null; in getID3tag()
146 id3v1tag = null; in getID3tag()
148 if (id3v1tag == null) { in getID3tag()
150 id3v1tag = new ID3v1(); in getID3tag()
153 id3v1tag.read(file); in getID3tag()
156 id3v1tag = null; in getID3tag()
159 id3v1tag = null; in getID3tag()
[all …]
/dports/audio/mous/mous-2.0.1/misc/mp3file/
H A Dmp3file.cc146 ID3v1Head_t id3v1tag; in main() local
147 memset(&id3v1tag, 0, sizeof(ID3v1Head_t)); in main()
149 file.read(id3v1tag.header, sizeof(id3v1tag.header)); in main()
150 hasID3v1 = (string(id3v1tag.header, sizeof(id3v1tag.header)) == "TAG"); in main()
154 file.read(id3v1tag.title, sizeof(id3v1tag.title)); in main()
155 cout << "title:" << id3v1tag.title << endl; in main()
157 file.read(id3v1tag.artist, sizeof(id3v1tag.artist)); in main()
162 tmpfile << id3v1tag.artist; in main()
165 file.read(id3v1tag.album, sizeof(id3v1tag.album)); in main()
168 file.read(id3v1tag.year, sizeof(id3v1tag.year)); in main()
[all …]
/dports/audio/taglib/taglib-1.12/examples/
H A Dframelist.cpp84 ID3v1::Tag *id3v1tag = f.ID3v1Tag(); in main() local
86 if(id3v1tag) { in main()
87 cout << "title - \"" << id3v1tag->title() << "\"" << endl; in main()
88 cout << "artist - \"" << id3v1tag->artist() << "\"" << endl; in main()
89 cout << "album - \"" << id3v1tag->album() << "\"" << endl; in main()
90 cout << "year - \"" << id3v1tag->year() << "\"" << endl; in main()
91 cout << "comment - \"" << id3v1tag->comment() << "\"" << endl; in main()
92 cout << "track - \"" << id3v1tag->track() << "\"" << endl; in main()
93 cout << "genre - \"" << id3v1tag->genre() << "\"" << endl; in main()
/dports/multimedia/musikcube/musikcube-0.96.7/src/plugins/taglib_plugin/taglib-1.11/examples/
H A Dframelist.cpp84 ID3v1::Tag *id3v1tag = f.ID3v1Tag(); in main() local
86 if(id3v1tag) { in main()
87 cout << "title - \"" << id3v1tag->title() << "\"" << endl; in main()
88 cout << "artist - \"" << id3v1tag->artist() << "\"" << endl; in main()
89 cout << "album - \"" << id3v1tag->album() << "\"" << endl; in main()
90 cout << "year - \"" << id3v1tag->year() << "\"" << endl; in main()
91 cout << "comment - \"" << id3v1tag->comment() << "\"" << endl; in main()
92 cout << "track - \"" << id3v1tag->track() << "\"" << endl; in main()
93 cout << "genre - \"" << id3v1tag->genre() << "\"" << endl; in main()
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.tag.id3v1.php31 $id3v1tag = $this->fread(128);
33 if (substr($id3v1tag, 0, 3) == 'TAG') {
37 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
38 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
39 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
40 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
41 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
42 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
46 if (($id3v1tag{125} === "\x00") && ($id3v1tag{126} !== "\x00")) {
94 if ($id3v1tag !== $GoodFormatID3v1tag) {
H A Dmodule.tag.lyrics3.php35 $id3v1tag = substr($lyrics3_id3v1, 15, 128); // ID3v1
/dports/www/owncloud/owncloud/lib/composer/christophwurst/id3parser/src/getID3/Tags/
H A Dgetid3_id3v1.php27 $id3v1tag = $this->fread(128);
29 if (substr($id3v1tag, 0, 3) == 'TAG') {
33 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
34 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
35 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
36 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
37 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
38 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
42 if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) {
70 if ($id3v1tag !== $GoodFormatID3v1tag) {
/dports/www/nextcloud/nextcloud/3rdparty/christophwurst/id3parser/src/getID3/Tags/
H A Dgetid3_id3v1.php27 $id3v1tag = $this->fread(128);
29 if (substr($id3v1tag, 0, 3) == 'TAG') {
33 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
34 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
35 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
36 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
37 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
38 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
42 if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) {
70 if ($id3v1tag !== $GoodFormatID3v1tag) {
/dports/audio/ampache/ampache-php74-5.0.0/vendor/james-heinrich/getid3/getid3/
H A Dmodule.tag.id3v1.php37 $id3v1tag = $this->fread(128);
41 $id3v1tag = $this->fread(128);
45 if (substr($id3v1tag, 0, 3) == 'TAG') {
50 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
51 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
52 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
53 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
54 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
55 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
59 if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) {
[all …]
/dports/chinese/wordpress-zh_CN/wordpress/wp-includes/ID3/
H A Dmodule.tag.id3v1.php36 $id3v1tag = $this->fread(128);
38 if (substr($id3v1tag, 0, 3) == 'TAG') {
42 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
43 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
44 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
45 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
46 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
47 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
51 if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) {
103 if ($id3v1tag !== $GoodFormatID3v1tag) {
H A Dmodule.tag.lyrics3.php39 $id3v1tag = substr($lyrics3_id3v1, 15, 128); // ID3v1
/dports/chinese/wordpress-zh_TW/wordpress/wp-includes/ID3/
H A Dmodule.tag.id3v1.php36 $id3v1tag = $this->fread(128);
38 if (substr($id3v1tag, 0, 3) == 'TAG') {
42 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
43 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
44 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
45 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
46 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
47 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
51 if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) {
103 if ($id3v1tag !== $GoodFormatID3v1tag) {
H A Dmodule.tag.lyrics3.php39 $id3v1tag = substr($lyrics3_id3v1, 15, 128); // ID3v1
/dports/www/zenphoto/zenphoto-1.5.9/zp-core/zp-extensions/class-video/getid3/
H A Dmodule.tag.id3v1.php36 $id3v1tag = $this->fread(128);
38 if (substr($id3v1tag, 0, 3) == 'TAG') {
42 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
43 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
44 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
45 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
46 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
47 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
51 if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) {
103 if ($id3v1tag !== $GoodFormatID3v1tag) {
H A Dmodule.tag.lyrics3.php39 $id3v1tag = substr($lyrics3_id3v1, 15, 128); // ID3v1
/dports/audio/id3v2/id3v2-0.1.12/
H A Dlist.cpp328 } id3v1tag; in PrintID3v1Tag() local
341 if (fread(&id3v1tag, 128, 1, fp) != 1) { in PrintID3v1Tag()
357 if (!strncmp(id3v1tag.tag, "TAG", 3)) in PrintID3v1Tag()
361 id3v1tag.title, id3v1tag.artist); in PrintID3v1Tag()
363 id3v1tag.album, id3v1tag.year, in PrintID3v1Tag()
364 (id3v1tag.genre < GetGenreCount()) in PrintID3v1Tag()
365 ? GetGenreFromNum(id3v1tag.genre) : in PrintID3v1Tag()
366 "Unknown", id3v1tag.genre); in PrintID3v1Tag()
367 if (!id3v1tag.comment[28]) in PrintID3v1Tag()
369 id3v1tag.comment, id3v1tag.comment[29]); in PrintID3v1Tag()
[all …]
/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/
H A DMP3File.java127 private ID3v1 id3v1tag; field in MP3File
210 id3v1tag = (ID3v1) TagUtility.copyObject(copyObject.id3v1tag); in MP3File()
256 if (id3v1tag == null) { in MP3File()
343 if (id3v1tag != null) { in setFrameAcrossTags()
346 id3v1tag.overwrite(id3v1); in setFrameAcrossTags()
376 if (id3v1tag != null) { in getFrameAcrossTags()
430 id3v1tag = new ID3v1_1(mp3tag); in setID3v1Tag()
434 this.id3v1tag = id3v1tag; in setID3v1Tag()
443 return id3v1tag; in getID3v1Tag()
590 total.append(id3v1tag); in getUnsynchronizedFragments()
[all …]
/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/lyrics3/
H A DAbstractLyrics3.java52 ID3v1 id3v1tag = new ID3v1(); in delete() local
54 id3v1tag = id3v1tag.getID3tag(file); in delete()
62 if (id3v1tag != null) { in delete()
63 id3v1tag.write(file); in delete()
H A DLyrics3v1.java219 final ID3v1 id3v1tag; in write() local
220 id3v1tag = (new ID3v1()).getID3tag(file); in write()
240 if (id3v1tag != null) { in write()
241 id3v1tag.write(file); in write()
H A DLyrics3v2.java385 ID3v1 id3v1tag = new ID3v1(); in write() local
386 id3v1tag = id3v1tag.getID3tag(file); in write()
426 if (id3v1tag != null) { in write()
427 id3v1tag.write(file); in write()
/dports/www/gallery2/gallery2/modules/getid3/lib/getid3/
H A Dmodule.tag.id3v1.inc24 $id3v1tag = fread($fd, 128);
26 if (substr($id3v1tag, 0, 3) == 'TAG') {
30 $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30));
31 $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30));
32 $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30));
33 $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4));
34 …$ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, …
35 $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1));
39 if (($id3v1tag{125} === "\x00") && ($id3v1tag{126} !== "\x00")) {
72 if ($id3v1tag !== $GoodFormatID3v1tag) {
/dports/audio/mp3plot/mp3plot-0.6.0/src/mp3/
H A Dtags.h64 struct id3v1tag : public mp3::element { struct
H A Dtags.cc91 void id3v1tag::read(ifstream & in) throw (e_read_failure) { in read()
/dports/audio/cutmp3/cutmp3-3.0.1/
H A Dexitcodes9 8 failed writing /tmp/id3v1tag

12