diff --git a/Changelog.md b/Changelog.md
index 4d5720b..3328a47 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,6 +1,8 @@
# JAVE2
## Changelog
+- **3.1.1**
+ - Modified quoting for command line arguments
- **3.1.0**
- Added support for arm32 bit (Thanks to jmformenti)
- Added option to use a specific quote character for command line
diff --git a/jave-all-deps/pom.xml b/jave-all-deps/pom.xml
index 9246ec8..0a97fde 100644
--- a/jave-all-deps/pom.xml
+++ b/jave-all-deps/pom.xml
@@ -5,7 +5,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-all-deps
Jave all native dependencies package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
@@ -154,42 +154,42 @@
ws.schild
jave-core
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-win32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-win64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-osx64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux-arm32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux-arm64
- 3.1.1-SNAPSHOT
+ 3.1.1
diff --git a/jave-core-test-java11/pom.xml b/jave-core-test-java11/pom.xml
index 615a9f2..2aca558 100644
--- a/jave-core-test-java11/pom.xml
+++ b/jave-core-test-java11/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-core-test-java11
11
@@ -38,32 +38,32 @@
ws.schild
jave-core
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-win32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-win64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-osx64
- 3.1.1-SNAPSHOT
+ 3.1.1
diff --git a/jave-core-test/pom.xml b/jave-core-test/pom.xml
index 0dd9fe0..c631a69 100644
--- a/jave-core-test/pom.xml
+++ b/jave-core-test/pom.xml
@@ -5,7 +5,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-core-test
1.8
@@ -40,32 +40,32 @@
ws.schild
jave-core
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-win32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-win64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux32
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux64
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-osx64
- 3.1.1-SNAPSHOT
+ 3.1.1
diff --git a/jave-core-test/src/test/java/ws/schild/jave/filters/VideoFilterTest.java b/jave-core-test/src/test/java/ws/schild/jave/filters/VideoFilterTest.java
index d6b4560..e386df6 100644
--- a/jave-core-test/src/test/java/ws/schild/jave/filters/VideoFilterTest.java
+++ b/jave-core-test/src/test/java/ws/schild/jave/filters/VideoFilterTest.java
@@ -154,19 +154,19 @@ public void testOverlayWatermarkExpression() {
}
OverlayWatermark checkMe = new OverlayWatermark(fooPng, OverlayLocation.BOTTOM_RIGHT, -10, -10);
assertEquals(
- "movie=\""
+ "movie=\'"
+ fooPath
- + "\"[watermark];[0:v][watermark]overlay=\"main_w-overlay_w-10:main_h-overlay_h-10\"",
+ + "\'[watermark];[0:v][watermark]overlay=\'main_w-overlay_w-10:main_h-overlay_h-10\'",
checkMe.getExpression());
checkMe = new OverlayWatermark(fooPng, OverlayLocation.TOP_LEFT, null, null);
assertEquals(
- "movie=\"" + fooPath + "\"[watermark];[0:v][watermark]overlay=\"0:0\"",
+ "movie=\'" + fooPath + "\'[watermark];[0:v][watermark]overlay=\'0:0\'",
checkMe.getExpression());
checkMe = new OverlayWatermark(fooPng, OverlayLocation.TOP_RIGHT, null, 10);
assertEquals(
- "movie=\"" + fooPath + "\"[watermark];[0:v][watermark]overlay=\"main_w-overlay_w:10\"",
+ "movie=\'" + fooPath + "\'[watermark];[0:v][watermark]overlay=\'main_w-overlay_w:10\'",
checkMe.getExpression());
}
diff --git a/jave-core/pom.xml b/jave-core/pom.xml
index c00b462..268beaf 100644
--- a/jave-core/pom.xml
+++ b/jave-core/pom.xml
@@ -6,7 +6,7 @@
ws.schild
jave-core
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
Jave core package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
ffmpeg project. Developers can take take advantage of JAVE2 to transcode
diff --git a/jave-example/pom.xml b/jave-example/pom.xml
index 5b99f6c..4e8df45 100644
--- a/jave-example/pom.xml
+++ b/jave-example/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-example
12
@@ -66,12 +66,12 @@
ws.schild
jave-core
- 3.1.1-SNAPSHOT
+ 3.1.1
ws.schild
jave-nativebin-linux32
- 3.1.1-SNAPSHOT
+ 3.1.1
diff --git a/jave-nativebin-arm32/pom.xml b/jave-nativebin-arm32/pom.xml
index 017d2a1..99ce83f 100644
--- a/jave-nativebin-arm32/pom.xml
+++ b/jave-nativebin-arm32/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-linux-arm32
Jave linux arm 32 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/jave-nativebin-arm64/pom.xml b/jave-nativebin-arm64/pom.xml
index b2ddae8..4e93572 100644
--- a/jave-nativebin-arm64/pom.xml
+++ b/jave-nativebin-arm64/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-linux-arm64
Jave linux arm 64 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/jave-nativebin-linux32/pom.xml b/jave-nativebin-linux32/pom.xml
index f0f3ac0..8c2c9cf 100644
--- a/jave-nativebin-linux32/pom.xml
+++ b/jave-nativebin-linux32/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-linux32
Jave linux 32 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/jave-nativebin-linux64/pom.xml b/jave-nativebin-linux64/pom.xml
index a2830b3..c60e0e1 100644
--- a/jave-nativebin-linux64/pom.xml
+++ b/jave-nativebin-linux64/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-linux64
Jave linux 64 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/jave-nativebin-osx64/pom.xml b/jave-nativebin-osx64/pom.xml
index 1565f1b..0725620 100644
--- a/jave-nativebin-osx64/pom.xml
+++ b/jave-nativebin-osx64/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-osx64
Jave OSX 64 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/jave-nativebin-win32/pom.xml b/jave-nativebin-win32/pom.xml
index c82e171..0e176bc 100644
--- a/jave-nativebin-win32/pom.xml
+++ b/jave-nativebin-win32/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-win32
Jave windows 32 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/jave-nativebin-win64/pom.xml b/jave-nativebin-win64/pom.xml
index af65889..ef13a04 100644
--- a/jave-nativebin-win64/pom.xml
+++ b/jave-nativebin-win64/pom.xml
@@ -3,7 +3,7 @@
4.0.0
ws.schild
jar
- 3.1.1-SNAPSHOT
+ 3.1.1
jave-nativebin-win64
Jave windows 64 bit native package
The JAVE (Java Audio Video Encoder) library is Java wrapper on the
diff --git a/pom.xml b/pom.xml
index 6eae497..f9e1ac8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,14 +4,14 @@
jave-modules
pom
- 3.1.1-SNAPSHOT
+ 3.1.1
1.8
1.8
UTF-8
- 3.1.1-SNAPSHOT
+ 3.1.1
Jave master project
Jave master project
https://github.com/a-schild/jave2