Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keijiro/ffmpegrecorder
FFmpeg extension for Unity Recorder
https://github.com/keijiro/ffmpegrecorder
unity unity3d video
Last synced: 3 days ago
JSON representation
FFmpeg extension for Unity Recorder
- Host: GitHub
- URL: https://github.com/keijiro/ffmpegrecorder
- Owner: keijiro
- Created: 2019-09-04T07:32:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-21T13:48:11.000Z (over 4 years ago)
- Last Synced: 2024-12-20T12:15:17.288Z (6 days ago)
- Topics: unity, unity3d, video
- Language: C#
- Homepage:
- Size: 97.7 KB
- Stars: 203
- Watchers: 15
- Forks: 25
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FFmpegRecorder
==============**FFmpegRecorder** is an extension for [Unity Recorder] that allows recording
videos in Unity Editor via [FFmpeg].[Unity Recorder]: https://docs.unity3d.com/Packages/com.unity.recorder@latest
[FFmpeg]: https://ffmpeg.org/System Requirements
-------------------- Unity 2019.3 or later
How To Install
--------------The FFmpegRecorder package uses the [scoped registry] feature to import
dependent packages. Please add the following sections to the package 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.recorder.ffmpeg": "1.0.2"
```After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.recorder.ffmpeg": "1.0.2",
...
```[scoped registry]: https://docs.unity3d.com/Manual/upm-scoped.html
Frequently Asked Questions
--------------------------#### Output video is vertically flipped
This issue will be fixed in a future version. At the moment, please manually
turn on the "Flip Vertical" option in the recorder settings when you find the
output is flipped.