Rendering videos
You can use Forma Render to create videos of your product. Different operating systems have different requirements to encode videos:
- On Windows, Forma Render's reference MP4 encoder (
MFYUVToH264.exe
) is included and used by default. - On Ubuntu and MacOS, you must manually install the royalty-free VP8 and VP9 reference encoder
vpxenc
.
Installing the default video encoder on Ubuntu
To install the default video encoder on Ubuntu:
- In your terminal, enter
sudo apt update
. - Enter
sudo apt install vpx-tools
.
You can test that the encoder is installed by entering vpxenc
into your terminal.
Installing the default video encoder on MacOS
To install the default video encoder on MacOS:
- If you don't have Homebrew installed, install it by following the directions on the Homebrew page.
- In your terminal, enter
brew install libvpx
. - Enter
brew edit libvpx
. This command opens the libvpx.rb brew script file in your default text editor. - Reopen the brew script file in another text editor of your choice for easier editing.
- Erase the line
--disable-examples
. - Back in your terminal, enter
brew reinstall --build-from-source libvpx
.
You can test that the encoder is installed by entering vpxenc
into your terminal.