Examples of GetFieldString()


Examples of davaguine.jmac.info.APETag.GetFieldString()

        formatProperties.put("ape.peaklevel", new Integer(decoder.getApeInfoPeakLevel()));

        fileProperties.put("duration", new Long(decoder.getApeInfoLengthMs()));
        if (decoder.getApeInfoIoSource().isLocal()) {
            APETag tag = decoder.getApeInfoTag();
            fileProperties.put("author", tag.GetFieldString(APETag.APE_TAG_FIELD_ARTIST));
            fileProperties.put("title", tag.GetFieldString(APETag.APE_TAG_FIELD_TITLE));
            fileProperties.put("copyright", tag.GetFieldString(APETag.APE_TAG_FIELD_COPYRIGHT));
            String year = tag.GetFieldString(APETag.APE_TAG_FIELD_YEAR);
            Date date = null;
            try {
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

        fileProperties.put("duration", new Long(decoder.getApeInfoLengthMs()));
        if (decoder.getApeInfoIoSource().isLocal()) {
            APETag tag = decoder.getApeInfoTag();
            fileProperties.put("author", tag.GetFieldString(APETag.APE_TAG_FIELD_ARTIST));
            fileProperties.put("title", tag.GetFieldString(APETag.APE_TAG_FIELD_TITLE));
            fileProperties.put("copyright", tag.GetFieldString(APETag.APE_TAG_FIELD_COPYRIGHT));
            String year = tag.GetFieldString(APETag.APE_TAG_FIELD_YEAR);
            Date date = null;
            try {
                Calendar c = Calendar.getInstance();
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

        fileProperties.put("duration", new Long(decoder.getApeInfoLengthMs()));
        if (decoder.getApeInfoIoSource().isLocal()) {
            APETag tag = decoder.getApeInfoTag();
            fileProperties.put("author", tag.GetFieldString(APETag.APE_TAG_FIELD_ARTIST));
            fileProperties.put("title", tag.GetFieldString(APETag.APE_TAG_FIELD_TITLE));
            fileProperties.put("copyright", tag.GetFieldString(APETag.APE_TAG_FIELD_COPYRIGHT));
            String year = tag.GetFieldString(APETag.APE_TAG_FIELD_YEAR);
            Date date = null;
            try {
                Calendar c = Calendar.getInstance();
                c.clear();
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

        if (decoder.getApeInfoIoSource().isLocal()) {
            APETag tag = decoder.getApeInfoTag();
            fileProperties.put("author", tag.GetFieldString(APETag.APE_TAG_FIELD_ARTIST));
            fileProperties.put("title", tag.GetFieldString(APETag.APE_TAG_FIELD_TITLE));
            fileProperties.put("copyright", tag.GetFieldString(APETag.APE_TAG_FIELD_COPYRIGHT));
            String year = tag.GetFieldString(APETag.APE_TAG_FIELD_YEAR);
            Date date = null;
            try {
                Calendar c = Calendar.getInstance();
                c.clear();
                c.set(Calendar.YEAR, Integer.parseInt(year));
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

                c.set(Calendar.YEAR, Integer.parseInt(year));
                date = c.getTime();
            } catch (Exception e) {
            }
            fileProperties.put("date", date);
            fileProperties.put("comment", tag.GetFieldString(APETag.APE_TAG_FIELD_COMMENT));

            fileProperties.put("album", tag.GetFieldString(APETag.APE_TAG_FIELD_ALBUM));
            fileProperties.put("track", tag.GetFieldString(APETag.APE_TAG_FIELD_TRACK));
            fileProperties.put("genre", tag.GetFieldString(APETag.APE_TAG_FIELD_GENRE));
        }
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

            } catch (Exception e) {
            }
            fileProperties.put("date", date);
            fileProperties.put("comment", tag.GetFieldString(APETag.APE_TAG_FIELD_COMMENT));

            fileProperties.put("album", tag.GetFieldString(APETag.APE_TAG_FIELD_ALBUM));
            fileProperties.put("track", tag.GetFieldString(APETag.APE_TAG_FIELD_TRACK));
            fileProperties.put("genre", tag.GetFieldString(APETag.APE_TAG_FIELD_GENRE));
        }
        if (Globals.DEBUG) {
            System.out.println("File Properties");
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

            }
            fileProperties.put("date", date);
            fileProperties.put("comment", tag.GetFieldString(APETag.APE_TAG_FIELD_COMMENT));

            fileProperties.put("album", tag.GetFieldString(APETag.APE_TAG_FIELD_ALBUM));
            fileProperties.put("track", tag.GetFieldString(APETag.APE_TAG_FIELD_TRACK));
            fileProperties.put("genre", tag.GetFieldString(APETag.APE_TAG_FIELD_GENRE));
        }
        if (Globals.DEBUG) {
            System.out.println("File Properties");
            System.out.println("duration: " + fileProperties.get("duration"));
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

            fileProperties.put("date", date);
            fileProperties.put("comment", tag.GetFieldString(APETag.APE_TAG_FIELD_COMMENT));

            fileProperties.put("album", tag.GetFieldString(APETag.APE_TAG_FIELD_ALBUM));
            fileProperties.put("track", tag.GetFieldString(APETag.APE_TAG_FIELD_TRACK));
            fileProperties.put("genre", tag.GetFieldString(APETag.APE_TAG_FIELD_GENRE));
        }
        if (Globals.DEBUG) {
            System.out.println("File Properties");
            System.out.println("duration: " + fileProperties.get("duration"));
            System.out.println("author: " + fileProperties.get("author"));
View Full Code Here

Examples of davaguine.jmac.info.APETag.GetFieldString()

              setCustomMusiqueTagFieldValue(tag, trackData, FieldKey.RECORD_LABEL);
              setCustomMusiqueTagFieldValue(tag, trackData, FieldKey.CATALOG_NO);
              setCustomMusiqueTagFieldValue(tag, trackData, FieldKey.RATING);

              trackData.setCueSheet(tag.GetFieldString("CUESHEET"));
                if (tag.GetHasAPETag())
                    return tag.GetHasAPETag();
            }
        } catch (IOException 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.