// 启动时指定视频属性await trtc.startLocalVideo({option: { profile: '480p' }});// 通话过程中动态调整视频属性await trtc.updateLocalVideo({option: { profile: '360p' }});
// 启动时指定视频属性await trtc.startLocalVideo({option: { profile: { width: 640, height: 480, frameRate: 15, bitrate: 900 /* kpbs */} }});// 通话过程中动态调整视频属性await trtc.updateLocalVideo({option: { profile: { width: 640, height: 360, frameRate: 15, bitrate: 800 /* kpbs */} }});
视频 Profile | 分辨率(宽 x 高) | 帧率(fps) | 码率(kbps) |
120p | 160 x 120 | 15 | 200 |
180p | 320 x 180 | 15 | 350 |
240p | 320 x 240 | 15 | 400 |
360p | 640 x 360 | 15 | 800 |
480p | 640 x 480 | 15 | 900 |
720p | 1280 x 720 | 15 | 1500 |
1080p | 1920 x 1080 | 15 | 2000 |
1440p | 2560 x 1440 | 30 | 4860 |
4K | 3840 x 2160 | 30 | 9000 |
本页内容是否解决了您的问题?