You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a VP8, VP9 or AV1 file in a different container you can use `ffmpeg` to mux it into IVF:
34
+
```
35
+
ffmpeg -i $INPUT_FILE -c:v copy -an output.ivf
20
36
```
21
37
22
38
**Note**: In the `ffmpeg` command, the argument `-b:v 2M` specifies the video bitrate to be 2 megabits per second. We provide this default value to produce decent video quality, but if you experience problems with this configuration (such as dropped frames etc.), you can decrease this. See the [ffmpeg documentation](https://ffmpeg.org/ffmpeg.html#Options) for more information on the format of the value.
0 commit comments