You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
2
+
### November 2, 2022 version 1.5.8
2
3
* Override `FFmpegFrameGrabber.getVideoCodecName()/getAudioCodecName()` to return names of opened codecs ([pull #1901](https://github.com/bytedeco/javacv/pull/1901))
3
4
* Add `FrameGrabber.videoDisposition/audioDisposition` properties to select streams by disposition ([pull #1879](https://github.com/bytedeco/javacv/pull/1879))
4
5
* Work around `OpenKinect2FrameGrabber` failing when provided with a pipeline on some system ([pull #1886](https://github.com/bytedeco/javacv/pull/1886))
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:
@@ -278,21 +278,21 @@ Furthermore, after creating a `pom.xml` file with the following content:
278
278
<dependency>
279
279
<groupId>org.bytedeco</groupId>
280
280
<artifactId>javacv-platform</artifactId>
281
-
<version>1.5.7</version>
281
+
<version>1.5.8</version>
282
282
</dependency>
283
283
284
284
<!-- Additional dependencies required to use CUDA and cuDNN -->
285
285
<dependency>
286
286
<groupId>org.bytedeco</groupId>
287
287
<artifactId>opencv-platform-gpu</artifactId>
288
-
<version>4.5.5-1.5.7</version>
288
+
<version>4.6.0-1.5.8</version>
289
289
</dependency>
290
290
291
291
<!-- Optional GPL builds with (almost) everything enabled -->
292
292
<dependency>
293
293
<groupId>org.bytedeco</groupId>
294
294
<artifactId>ffmpeg-platform-gpl</artifactId>
295
-
<version>5.0-1.5.7</version>
295
+
<version>5.1.2-1.5.8</version>
296
296
</dependency>
297
297
</dependencies>
298
298
<build>
@@ -314,8 +314,8 @@ Build Instructions
314
314
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:
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.
0 commit comments