VideoDimensions
视频尺寸。
Java
static public class VideoDimensions {
public int width;
public int height;
public VideoDimensions(int width, int height) {
this.width = width;
this.height = height;
}
public VideoDimensions() {
this.width = 0;
this.height = 0;
}
}
width
视频宽度,单位为像素。
height
视频高度,单位为像素。