theora

Open video compression format library for encoding and decoding

brewmacoslinux
Try with needOr install directly
Source

About

Open video compression format

Examples

encode video to theora format$ ffmpeg -i input.mp4 -c:v libtheora -q:v 7 output.ogv
decode theora video to raw format$ ffmpeg -i input.ogv output.mp4
check if video file is theora encoded$ ffprobe -v error -select_streams v:0 -show_entries stream=codec_name input.ogv
convert video with theora compression for web$ ffmpeg -i input.mp4 -c:v libtheora -c:a libvorbis output.ogv
use theora in development build or application$ pkg-config --cflags --libs theora