class MediaInfo { constructor() { this.duration = undefined; this.height = undefined; this.width = undefined; this.bitrate = undefined; this.resolution = undefined; this.framerate = undefined; this.protocol = undefined; this.container = undefined; this.audioCodec = undefined; } } module.exports = MediaInfo;