Avfi is a Unity plugin allowing an application to record video clips with a simple operation.
Avfi uses AVFoundation as a video encoding backend, so it only runs on the Apple platforms (macOS/iOS).
This package uses the scoped registry feature to resolve package
dependencies. Add the following lines to the manifest file
(Packages/manifest.json
).
To the scopedRegistries
section:
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
To the dependencies
section:
"jp.keijiro.avfi": "1.0.3"
After the changes, the manifest file should look like:
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.avfi": "1.0.3",
...