1# OH_VideoEncInfo 2 3 4## Overview 5 6The **OH_VideoEncInfo** struct describes the video encoding information. 7 8**System capability**: SystemCapability.Multimedia.Media.AVScreenCapture 9 10**Since**: 10 11 12**Related module**: [AVScreenCapture](_a_v_screen_capture.md) 13 14 15## Summary 16 17 18### Member Variables 19 20| Name| Description| 21| -------- | -------- | 22| [OH_VideoCodecFormat](_a_v_screen_capture.md#oh_videocodecformat) [videoCodec](#videocodec) | Video encoding format.| 23| int32_t [videoBitrate](#videobitrate) | Video bit rate.| 24| int32_t [videoFrameRate](#videoframerate) | Video frame rate.| 25 26 27## Member Variable Description 28 29 30### videoBitrate 31 32``` 33int32_t OH_VideoEncInfo::videoBitrate 34``` 35 36**Description** 37 38Video bit rate. 39 40 41### videoCodec 42 43``` 44OH_VideoCodecFormat OH_VideoEncInfo::videoCodec 45``` 46 47**Description** 48 49Video encoding format. 50 51 52### videoFrameRate 53 54``` 55int32_t OH_VideoEncInfo::videoFrameRate 56``` 57 58**Description** 59 60Video frame rate. 61