VideoDimensions
The video dimension.
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;
  }
}
            
            
            
         
            
                
            
                        
            Attributes
- width
 - 
                    
The width (pixels) of the video.
 - height
 - The height (pixels) of the video.