Files
seasonedShows/seasoned_api/src/media_classes/mediaInfo.js
2018-02-07 13:49:37 +01:00

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;