All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ws.schild.jave.Version Maven / Gradle / Ivy

Go to download

The JAVE (Java Audio Video Encoder) library is Java wrapper on the ffmpeg project. Developers can take take advantage of JAVE2 to transcode audio and video files from a format to another. In example you can transcode an AVI file to a MPEG one, you can change a DivX video stream into a (youtube like) Flash FLV one, you can convert a WAV audio file to a MP3 or a Ogg Vorbis one, you can separate and transcode audio and video tracks, you can resize videos, changing their sizes and proportions and so on. Many other formats, containers and operations are supported by JAVE2.

There is a newer version: 3.5.0
Show newest version
/*
 * Copyright (C) 2020 a.schild
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package ws.schild.jave;

/**
 *
 * @author a.schild
 */
public final class Version {

    private static final String VERSION = "3.0.1";
    private static final String GROUPID = "ws.schild";
    private static final String ARTIFACTID = "jave-core";
    private static final String REVISION = "511f7022b6b0c050106a96580ae97ff9c7430cdd";

    public static String getVersion() {
        return getVERSION();
    }

    /**
     * @return the VERSION
     */
    public static String getVERSION() {
        return VERSION;
    }

    /**
     * @return the GROUPID
     */
    public static String getGROUPID() {
        return GROUPID;
    }

    /**
     * @return the ARTIFACTID
     */
    public static String getARTIFACTID() {
        return ARTIFACTID;
    }

    /**
     * @return the REVISION
     */
    public static String getREVISION() {
        return REVISION;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy