
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
LIVE4 Public API
With Maven:
<dependency>
<groupId>io.live4</groupId>
<artifactId>live4api3</artifactId>
<version>3.1.26</version>
</dependency>
With Gradle:
repositories {
maven {
url "http://kote.videogorillas.com/m2repo/"
}
}
dependencies {
compile 'io.live4:live4api3:3.1.26'
}
Print stream updates
java -cp live4api3-3.1.26-uberjar.jar io.live4.apiclient.StreamUpdatesMain http://$USER:$PASSWORD@beta.missionkeeper.com/
NOTE: Live4 public API is based on ReactiveX library. You can find ReactiveX docs here.
Create RxApiClient instance:
String url = "http://1.1.1.1:8042";
RxApiClient rxApiClient = new RxApiClient(url);
Log in:
String email = "your@email.com";
String password = "123";
Observable<User> userRx = rxApiClient.login(email, password);
userRx.subscribe(user -> {
// Do something with your user here
});
Select organisation:
// This will list all user profiles:
Map<String, UserProfile> profiles = user.profiles;
for (String orgId : profiles) {
// Chose the organisation here
}
// Alternatively, you can just select the first organization available for streaming:
String orgId = user.getFirstOrgId();
Select mission or create a new one:
// This will list all available missions in this organization:
Observable<Mission> missionsRx = rxApiClient.listMissions(orgId);
missionsRx.subscribe(mission -> {
// select mission here
});
// Alternatively, you can create a new mission:
Mission mission = new Mission();
mission.createdByUserId = user.id;
mission.startTime = new org.stjs.javascript.Date();
long oneDay = 24 * 60 * 60 * 1000;
mission.endTime = new org.stjs.javascript.Date(mission.startTime.getTime() + oneDay);
mission.hardware = $array();
mission.joined = $map();
mission.name = missionName;
mission.orgId = orgId;
mission.state = Mission.State.PENDING;
mission.streamIds = $array();
mission.addUser(user, MissionRole.OWNER);
Observable<Mission> missionRx = rxApiClient.createMission(mission);
missionRx.subscribe(newMission -> {
// newMission object contains newly created mission
});
Create a hardware instance:
Hardware hw = Hardware.drone("MyDrone");
Create a stream:
StreamResponse sr = new StreamResponse();
sr.title = "Stream from " + user.getName();
sr.hardwareId = hw.getId();
Observable<StreamResponse> newStreamRx = rxApiClient.createStream(sr).replay().autoConnect();
Add stream to mission:
mission.addStream(stream.streamId);
mission.addHardware(hw);
rxApiClient.updateMission(m).subscribe(m -> {
// mission updated
}, e -> {
e.printStackTrace();
});
Get mission share token:
Observable<Mission.ShareToken> shareTokenRx = rxApiClient.getShareToken(mission.getId());
Stream uploads:
Stream uploads include uploading initial json metadata, video data, metadata (stream locations), and "end of stream" data.
Json metadata:
StreamId sid = stream.sid();
DebugJs noStripAacDebugJs = new DebugJs();
noStripAacDebugJs.stripaac = false;
Observable<Request> debugjs = Observable.just(rxApiClient.uploadJsonRequest(sid, DebugJs.DEBUG_JS, noStripAacDebugJs));
Video data:
// You should actually set up your video stream here:
Observable<Request> videoUploadsRx = ...
Stream locations metadata:
// The next code fakes stream locations for demo purposes. In the real life, you would take these locations from drone data, mobile data, etc.:
StreamLocation loc = StreamLocation.latLng(sdf.format(new Date()), 42, 42);
loc.altitude = new Double(42);
loc.course = new Double(42);
loc.horizontalAccuracy = new Double(42);
loc.verticalAccuracy = new Double(42);
loc.speed = new Double(42);
Observable<StreamLocation> locationsRx = Observable.just(loc).repeat();
Observable<List<StreamLocation>> chunks = locationsRx.buffer(2, SECONDS).filter(list -> !list.isEmpty());
Observable<Pair<Integer, List<StreamLocation>>> numberedChunks = chunks.zipWith(
Observable.range(0, MAX_VALUE), (locations, mseq) -> new Pair(mseq, locations));
numberedChunks = numberedChunks.onBackpressureBuffer();
Observable<Request> locationUploads = numberedChunks.map(p -> {
int mseq = p.left;
List<StreamLocation> locations = p.right;
String filename = locationsFilename(mseq);
return rxApiClient.uploadJsonRequest(sid, filename, Collections.singletonMap("locations", locations));
});
Video data and stream locations metadata is then merged (we don't care about the order here):
Observable<Request> uploadRequests = Observable.merge(videoUploadsRx, locationsRx);
End of stream data:
// End of stream data holds information about all uploaded chunks:
Observable<Request> eosUploadsRx = ...
Json metadata, video data, locations metadata, and eos streams are concatenated then:
Observable<Response> uploads = Observable.concat(debugjs, uploadRequests, eosUploadsRx)
.onBackpressureBuffer()
.concatMap(request -> {
return uploadWithRetry(client, request);
});
npm installIMPORTANT
# package.json
"version": "3.5.0-betaX",
# pom.xml
<version>3.5.0-betaX-SNAPSHOT</version>
mvn clean packagegruntgit commitmvn release:prepare
5.1. Agree with questionsgit pushnpm loginnpm publishFAQs
LIVE4 API
We found that live4api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.