Skip to content

Commit 0229924

Browse files
committed
Release version 1.5.8
1 parent cf81d3c commit 0229924

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
### November 2, 2022 version 1.5.8
23
* Override `FFmpegFrameGrabber.getVideoCodecName()/getAudioCodecName()` to return names of opened codecs ([pull #1901](https://github.com/bytedeco/javacv/pull/1901))
34
* Add `FrameGrabber.videoDisposition/audioDisposition` properties to select streams by disposition ([pull #1879](https://github.com/bytedeco/javacv/pull/1879))
45
* Work around `OpenKinect2FrameGrabber` failing when provided with a pipeline on some system ([pull #1886](https://github.com/bytedeco/javacv/pull/1886))

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ We can also have everything downloaded and installed automatically with:
2828
<dependency>
2929
<groupId>org.bytedeco</groupId>
3030
<artifactId>javacv-platform</artifactId>
31-
<version>1.5.7</version>
31+
<version>1.5.8</version>
3232
</dependency>
3333
```
3434

3535
* Gradle (inside the `build.gradle` file)
3636
```groovy
3737
dependencies {
38-
implementation group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.7'
38+
implementation group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.8'
3939
}
4040
```
4141

4242
* Leiningen (inside the `project.clj` file)
4343
```clojure
4444
:dependencies [
45-
[org.bytedeco/javacv-platform "1.5.7"]
45+
[org.bytedeco/javacv-platform "1.5.8"]
4646
]
4747
```
4848

4949
* sbt (inside the `build.sbt` file)
5050
```scala
51-
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.7"
51+
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.8"
5252
```
5353

5454
This downloads binaries for all platforms, but to get binaries for only one platform we can set the `javacpp.platform` system property (via the `-D` command line option) to something like `android-arm`, `linux-x86_64`, `macosx-x86_64`, `windows-x86_64`, etc. Please refer to the [README.md file of the JavaCPP Presets](https://github.com/bytedeco/javacpp-presets#downloads) for details. Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCV](https://github.com/bytedeco/sbt-javacv).
@@ -269,7 +269,7 @@ Furthermore, after creating a `pom.xml` file with the following content:
269269
<modelVersion>4.0.0</modelVersion>
270270
<groupId>org.bytedeco.javacv</groupId>
271271
<artifactId>demo</artifactId>
272-
<version>1.5.7</version>
272+
<version>1.5.8</version>
273273
<properties>
274274
<maven.compiler.source>1.7</maven.compiler.source>
275275
<maven.compiler.target>1.7</maven.compiler.target>
@@ -278,21 +278,21 @@ Furthermore, after creating a `pom.xml` file with the following content:
278278
<dependency>
279279
<groupId>org.bytedeco</groupId>
280280
<artifactId>javacv-platform</artifactId>
281-
<version>1.5.7</version>
281+
<version>1.5.8</version>
282282
</dependency>
283283

284284
<!-- Additional dependencies required to use CUDA and cuDNN -->
285285
<dependency>
286286
<groupId>org.bytedeco</groupId>
287287
<artifactId>opencv-platform-gpu</artifactId>
288-
<version>4.5.5-1.5.7</version>
288+
<version>4.6.0-1.5.8</version>
289289
</dependency>
290290

291291
<!-- Optional GPL builds with (almost) everything enabled -->
292292
<dependency>
293293
<groupId>org.bytedeco</groupId>
294294
<artifactId>ffmpeg-platform-gpl</artifactId>
295-
<version>5.0-1.5.7</version>
295+
<version>5.1.2-1.5.8</version>
296296
</dependency>
297297
</dependencies>
298298
<build>
@@ -314,8 +314,8 @@ Build Instructions
314314
If the binary files available above are not enough for your needs, you might need to rebuild them from the source code. To this end, the project files were created for:
315315

316316
* Maven 3.x http://maven.apache.org/download.html
317-
* JavaCPP 1.5.7 https://github.com/bytedeco/javacpp
318-
* JavaCPP Presets 1.5.7 https://github.com/bytedeco/javacpp-presets
317+
* JavaCPP 1.5.8 https://github.com/bytedeco/javacpp
318+
* JavaCPP Presets 1.5.8 https://github.com/bytedeco/javacpp-presets
319319

320320
Once installed, simply call the usual `mvn install` command for JavaCPP, its Presets, and JavaCV. By default, no other dependencies than a C++ compiler for JavaCPP are required. Please refer to the comments inside the `pom.xml` files for further details.
321321

platform/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.8-SNAPSHOT</version>
9+
<version>1.5.8</version>
1010
<relativePath></relativePath>
1111
</parent>
1212

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.bytedeco</groupId>
66
<artifactId>javacv</artifactId>
7-
<version>1.5.8-SNAPSHOT</version>
7+
<version>1.5.8</version>
88

99
<name>JavaCV</name>
1010
<description>Java interface to OpenCV, FFmpeg, and more</description>

samples/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.bytedeco.javacv</groupId>
44
<artifactId>demo</artifactId>
5-
<version>1.5.7</version>
5+
<version>1.5.8</version>
66
<properties>
77
<maven.compiler.source>1.7</maven.compiler.source>
88
<maven.compiler.target>1.7</maven.compiler.target>
@@ -11,21 +11,21 @@
1111
<dependency>
1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>javacv-platform</artifactId>
14-
<version>1.5.7</version>
14+
<version>1.5.8</version>
1515
</dependency>
1616

1717
<!-- Additional dependencies required to use CUDA and cuDNN -->
1818
<dependency>
1919
<groupId>org.bytedeco</groupId>
2020
<artifactId>opencv-platform-gpu</artifactId>
21-
<version>4.5.5-1.5.7</version>
21+
<version>4.6.0-1.5.8</version>
2222
</dependency>
2323

2424
<!-- Optional GPL builds with (almost) everything enabled -->
2525
<dependency>
2626
<groupId>org.bytedeco</groupId>
2727
<artifactId>ffmpeg-platform-gpl</artifactId>
28-
<version>5.0-1.5.7</version>
28+
<version>5.1.2-1.5.8</version>
2929
</dependency>
3030
</dependencies>
3131
<build>

0 commit comments

Comments
 (0)