Examples of APEInfo


Examples of davaguine.jmac.info.APEInfo

            if (!in.isLocal()) {
                System.out.print("~~~Improper Usage~~~\nThe input ape file should be local file.\n");
                return;
            }

            APEInfo apeInfo = IAPEDecompress.CreateAPEInfo(in);
            APETag tag = apeInfo.getApeInfoTag();
            tag.Remove(false);
            tag.SetFieldString(args[1], args[2]);
            ID3Tag id3 = new ID3Tag();
            tag.CreateID3Tag(id3);
            tag.Save();

            apeInfo.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
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.