Examples of MyID3v2


Examples of org.cmc.music.myid3.id3v2.MyID3v2

    byte id3v1Tag[] = null;
    ID3Tag tag = new MyID3v1().readID3v1(src, strict);
    if (null != tag)
      id3v1Tag = tag.bytes;

    byte id3v2HeadTag[] = new MyID3v2().readID3v2Head(src, strict);

    boolean hasId3v1 = id3v1Tag != null;
    byte id3v2TailTag[] = new MyID3v2()
        .readID3v2Tail(src, hasId3v1, strict);

    write(src, dst, id3v1Tag, id3v2HeadTag, id3v2TailTag);
  }
View Full Code Here

Examples of org.cmc.music.myid3.id3v2.MyID3v2

    }

    boolean hasId3v1 = new MyID3v1().hasID3v1(src);

    long id3v1Length = hasId3v1 ? ID3_V1_TAG_LENGTH : 0;
    long id3v2HeadLength = new MyID3v2().findID3v2HeadLength(src);
    long id3v2TailLength = new MyID3v2().findID3v2TailLength(src, hasId3v1);

    OutputStream os = null;
    InputStream is = null;
    try
    {
View Full Code Here

Examples of org.cmc.music.myid3.id3v2.MyID3v2

      if (!file.getName().toLowerCase().endsWith(".mp3"))
        return null;

      ID3Tag.V1 id3v1 = new MyID3v1().readID3v1(listener, file, strict);
      ID3Tag.V2 id3v2 = new MyID3v2().readID3v2(listener, file,
          id3v1 != null, strict);

      MusicMetadataSet result = MusicMetadataSet.factoryMethod(id3v1,
          id3v2, file.getName(), file.getParentFile().getName());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.