OGV File Format: Difference between revisions
Category: BIS File Formats
| Lou Montana (talk | contribs)  (Page creation - thanks prababicka (Discord)) | Lou Montana (talk | contribs)  m (Fix formatting) | ||
| Line 4: | Line 4: | ||
| <div style="display: flex; flex-wrap: wrap; gap: 1em"> | |||
| <div> | |||
| == How To == | == How To == | ||
| {{Youtube|MPV7JXTWPWI|||800}} | {{Youtube|MPV7JXTWPWI|||800}} | ||
| </div> | |||
| <div> | |||
| == Download == | == Download == | ||
| See https://ffmpeg.org/ to [https://ffmpeg.org/download.html download] ffmpeg;<br> | See https://ffmpeg.org/ to [https://ffmpeg.org/download.html download] ffmpeg;<br> | ||
| See https://ffmpeg.org/releases/ to obtain older ffmpeg release sources. | See https://ffmpeg.org/releases/ to obtain older ffmpeg release sources. | ||
| Line 25: | Line 27: | ||
| * {{Link|https://ffmpeg.org/releases/ffmpeg-4.0.1.tar.xz |ffmpeg-4.0.1.tar.xz (8.3 MB)}} | * {{Link|https://ffmpeg.org/releases/ffmpeg-4.0.1.tar.xz |ffmpeg-4.0.1.tar.xz (8.3 MB)}} | ||
| --> | --> | ||
| == Example == | == Example == | ||
|   ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 intro.ogv |   ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 intro.ogv | ||
| </div> | |||
| </div> | |||
| [[Category:BIS File Formats]] | [[Category:BIS File Formats]] | ||
Revision as of 14:44, 25 June 2022
The OGV format is a video format that is playable in Arma 2: Operation Arrowhead and Arma 3 (through e.g BIS_fnc_playVideo).
The ffmpeg tool provides a conversion output that works in Arma 3 up until ffmpeg's 4.0.2 version (4.1 and above versions have a documented bug regarding this feature: bug report).
How To
Download
See https://ffmpeg.org/ to download ffmpeg;
See https://ffmpeg.org/releases/ to obtain older ffmpeg release sources.
binaries downloads (from https://www.videohelp.com/software/ffmpeg/old-versions):
- ffmpeg-4.0.2-win64-static.zip (62.7 MB)
- ffmpeg-4.0.2-win32-static.zip (52.4 MB)
- ffmpeg-4.0.1-win64-static.zip (60.4 MB)
- ffmpeg-4.0.1-win32-static.zip (52.3 MB)
Example
ffmpeg -i input.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 intro.ogv
