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
+
### August 2, 2021 version 1.5.6
2
3
* Enhance audio and video synchronization of `JavaFxPlayVideoAndAudio` sample ([pull #1662](https://github.com/bytedeco/javacv/pull/1662))
3
4
* Add `FrameGrabber.grabAtFrameRate()` to simulate a device or stream when reading from files ([pull #1659](https://github.com/bytedeco/javacv/pull/1659))
4
5
* Update `FFmpegFrameGrabber` and `FFmpegFrameRecorder` with new `avcodec` API ([issue #1498](https://github.com/bytedeco/javacv/issues/1498))
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).
@@ -264,7 +264,7 @@ Furthermore, after creating a `pom.xml` file with the following content:
@@ -273,21 +273,21 @@ Furthermore, after creating a `pom.xml` file with the following content:
273
273
<dependency>
274
274
<groupId>org.bytedeco</groupId>
275
275
<artifactId>javacv-platform</artifactId>
276
-
<version>1.5.5</version>
276
+
<version>1.5.6</version>
277
277
</dependency>
278
278
279
279
<!-- Additional dependencies required to use CUDA and cuDNN -->
280
280
<dependency>
281
281
<groupId>org.bytedeco</groupId>
282
282
<artifactId>opencv-platform-gpu</artifactId>
283
-
<version>4.5.1-1.5.5</version>
283
+
<version>4.5.3-1.5.6</version>
284
284
</dependency>
285
285
286
286
<!-- Optional GPL builds with (almost) everything enabled -->
287
287
<dependency>
288
288
<groupId>org.bytedeco</groupId>
289
289
<artifactId>ffmpeg-platform-gpl</artifactId>
290
-
<version>4.3.2-1.5.5</version>
290
+
<version>4.4-1.5.6</version>
291
291
</dependency>
292
292
</dependencies>
293
293
<build>
@@ -309,8 +309,8 @@ Build Instructions
309
309
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