16 lines
370 B
JavaScript
16 lines
370 B
JavaScript
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;
|