Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
ai.natml.natcorder
Advanced tools
High performance, cross-platform video recording for Unity Engine.
NatCorder is a high performance, cross-platform video recording API for Unity Engine. First, create a recorder:
// Create a recorder
var recorder = new GIFRecorder(
640, // image width
480, // image height
0.1 // frame duration
);
Next, commit a bunch of video and/or audio frames to the recorder:
// Commit video frames
Texture2D[] frames = ...;
foreach (var frame in frames)
recorder.CommitFrame(frame.GetPixels32());
And when you're all done, finish writing and use the video as you desire:
// Finish recording
string videoPath = await recorder.FinishWriting();
NatCorder comes with a rich featureset including:
See the online docs to learn more about NatCorder.
First, add the following items to your Unity project's Packages/manifest.json
:
{
"scopedRegistries": [
{
"name": "NatML",
"url": "https://registry.npmjs.com",
"scopes": ["ai.natml"]
}
],
"dependencies": {
"ai.natml.natcorder": "1.9.4"
}
}
Then retrieve your access key from NatML Hub and add it to your Project Settings:
Using NatCorder requires an active NatML VideoKit subscription. You can try it out for free, but functionality is limited. See the docs for more info.
FAQs
High performance, cross-platform video recording for Unity Engine.
The npm package ai.natml.natcorder receives a total of 78 weekly downloads. As such, ai.natml.natcorder popularity was classified as not popular.
We found that ai.natml.natcorder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.