vault backup: 2025-03-04 11:17:00
This commit is contained in:
8
20.01. Programming/FFMPEG/av_opt_set.md
Normal file
8
20.01. Programming/FFMPEG/av_opt_set.md
Normal file
@@ -0,0 +1,8 @@
|
||||
`av_opt_set()` 可以設定很多東西,例如:
|
||||
```cpp
|
||||
av_opt_set(codecContext, "preset", "ultrafaset", 0); // 速度慢,高品質
|
||||
av_opt_set(codecContext, "tune", "fastdecode", 0);
|
||||
av_opt_set(avStream->codecContext->priv_data, "profile", "baseline", 0);
|
||||
```
|
||||
|
||||
詳細請看[Encode/H.264 – FFmpeg](https://trac.ffmpeg.org/wiki/Encode/H.264)。
|
||||
Reference in New Issue
Block a user