Create videos with the Peachy engine
Note: The content on this page has been heavily altered to redact confidential work information. 🍑
—
You can use the Peachy engine to create videos of your product. Note that different operating systems have different requirements to encode videos.
On Windows, Peachy'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
.
Install the default video encoder on Ubuntu
To install the default video encoder on Ubuntu, follow these steps:
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.
Install the default video encoder on MacOS
To install the default video encoder on MacOS, follow these steps:
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
and save the file.Back in your terminal, enter
brew reinstall --build-from-source libvpx
.