Skip to content

Commit

Permalink
Change version to 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Nov 26, 2024
1 parent 269c8b0 commit 8bcd611
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apply from: 'build.common.gradle'

allprojects {
group = 'org.deltacv.visionloop'
version = '1.2.2'
version = '1.2.3'
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,7 @@
import java.util.Map;

/**
* Implementation of a connection to motion jpeg (multipart/x-mixed-replace) stream, and using it as an Itarable like this:
* <pre>
* public static void main(String... strings) {
* VideoSource src = new VideoSource("http://91.85.203.9/axis-cgi/mjpg/video.cgi");
* try {
* src.connect();
* for (byte[] img : src) {
* Files.write(Paths.get("c:/tmp/mjpeg/" + UUID.randomUUID().toString() + ".jpg"), img);
* }
* } catch (IOException e) {
* e.printStackTrace();
* }
* }
* </pre>
* Implementation of a connection to motion jpeg (multipart/x-mixed-replace) stream.
*
* @author Arseny Kovalchuk<br/><a href="http://www.linkedin.com/in/arsenykovalchuk/">LinkedIn&reg; Profile</a><br>
*
Expand Down

0 comments on commit 8bcd611

Please sign in to comment.