FFV1 version 1:
The following list contains encoding parameters for FFV1 (version 1):
Name | FFmpeg argument | Valid values | Comments |
---|---|---|---|
Coder: | -coder | 0, 1 | 0=Golomb Rice, 1=Range Coder |
Context: | -context | 0, 1 | 0=small, 1=large |
GOP size: | -g | integer ≥ 1 | For archival use, GOP-size should be "1". |
Examples:
-
Copy audio "as-is" and use FFV1.1 as video codec.
Parameters are GOP-size=1, coder=1, context=1:
ffmpeg -i <input_video> -acodec copy -vcodec ffv1 -level 1 -coder 1 -context 1 -g 1 <output_video>