VideoFormat
视频帧格式。
Dart
class VideoFormat {
const VideoFormat({this.width, this.height, this.fps});
(name: 'width')
final int? width;
(name: 'height')
final int? height;
(name: 'fps')
final int? fps;
factory VideoFormat.fromJson(Map<String, dynamic> json) =>
_$VideoFormatFromJson(json);
Map<String, dynamic> toJson() => _$VideoFormatToJson(this);
}
width
视频帧的宽度(px)。默认值为 960。
height
视频帧的高度(px)。默认值为 540.
fps
视频帧的帧率。默认值为 15。