Skip to content

Commit

Permalink
Final 2.4.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
a-schild committed Dec 13, 2018
1 parent eb51ba8 commit 9fbcb29
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 35 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ It includes all binaries for the supported platforms
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-all-deps</artifactId>
<version>2.4.4</version>
<version>2.4.5</version>
</dependency>
```

Expand All @@ -57,7 +57,7 @@ Include the following in your pom files.
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-all-deps</artifactId>
<version>2.4.4</version>
<version>2.4.5</version>
</dependency>
```

Expand All @@ -66,13 +66,13 @@ Include the following in your pom files.
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<version>2.4.4</version>
<version>2.4.5</version>
</dependency>

<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-linux64</artifactId>
<version>2.4.4</version>
<version>2.4.5</version>
</dependency>
```

Expand All @@ -81,13 +81,13 @@ Include the following in your pom files.
It includes all binaries for the supported platforms

``` XML
compile group: 'ws.schild', name: 'jave-all-deps', version: '2.4.4'
compile group: 'ws.schild', name: 'jave-all-deps', version: '2.4.5'
```

### For one platform only (Linux 64Bit in this case)
``` XML
compile group: 'ws.schild', name: 'jave-core', version: '2.4.4'
compile group: 'ws.schild', name: 'jave-native-linux64', version: '2.4.4'
compile group: 'ws.schild', name: 'jave-core', version: '2.4.5'
compile group: 'ws.schild', name: 'jave-native-linux64', version: '2.4.5'
```

### Main Components of Jave2
Expand Down Expand Up @@ -220,8 +220,7 @@ You can send comments to [email protected]
For bug reports use the github site https://github.com/a-schild/jave2/issues

## Changelog
- **2.4.5-SNAPSHOT**
- Prepared for next development steps
- **2.4.5**
- Added video and audio quality flags for conversion (see VideoAttributes.quality and AudioAttributes.quality)
- Changed aac de/encoder from libvo_aacenc to default aac settings from ffmpeg
- Upgraded windows and osx binaries to 4.1 from https://ffmpeg.zeranoe.com/builds/
Expand Down
14 changes: 7 additions & 7 deletions jave-all-deps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-all-deps</artifactId>
<name>Jave all native dependencies package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
Expand Down Expand Up @@ -135,32 +135,32 @@
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-win32</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-win64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-linux32</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-linux64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-osx64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
<dependency>
Expand Down
14 changes: 7 additions & 7 deletions jave-core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-core-test</artifactId>
<build>
<plugins>
Expand All @@ -29,32 +29,32 @@
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-win32</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-win64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-linux32</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-linux64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-osx64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jave-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<name>Jave core package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
ffmpeg project. Developers can take take advantage of JAVE2 to transcode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class DefaultFFMPEGLocator extends FFMPEGLocator {
* Trace the version of the bundled ffmpeg executable. It's a counter: every
* time the bundled ffmpeg change it is incremented by 1.
*/
private static final String MY_EXE_VERSION = "2.4.5-SNAPSHOT";
private static final String MY_EXE_VERSION = "2.4.5";

/**
* The ffmpeg executable file path.
Expand Down
6 changes: 3 additions & 3 deletions jave-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-example</artifactId>
<build>
<plugins>
Expand Down Expand Up @@ -53,12 +53,12 @@
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-native-win64</artifactId>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
</dependency>

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jave-native-linux32/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-native-linux32</artifactId>
<name>Jave linux 32 bit native package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
Expand Down
2 changes: 1 addition & 1 deletion jave-native-linux64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-native-linux64</artifactId>
<name>Jave linux 64 bit native package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
Expand Down
2 changes: 1 addition & 1 deletion jave-native-osx64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-native-osx64</artifactId>
<name>Jave OSX 64 bit native package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
Expand Down
2 changes: 1 addition & 1 deletion jave-native-win32/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-native-win32</artifactId>
<name>Jave windows 32 bit native package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
Expand Down
2 changes: 1 addition & 1 deletion jave-native-win64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ws.schild</groupId>
<packaging>jar</packaging>
<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<artifactId>jave-native-win64</artifactId>
<name>Jave windows 64 bit native package</name>
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<artifactId>jave-modules</artifactId>
<packaging>pom</packaging>
<properties>
<revision>2.4.5-SNAPSHOT</revision>
<revision>2.4.5</revision>
<!-- Don't forget to change it also in DefaultFFMPEGLocator.java -->
</properties>

<version>2.4.5-SNAPSHOT</version>
<version>2.4.5</version>
<name>Jave master project</name>
<description>Jave master project</description>
<url>https://github.com/a-schild/jave2</url>
Expand Down

0 comments on commit 9fbcb29

Please sign in to comment.