Files
YouTube.js/lib/parser/contents/classes/Format.js
LuanRT 359020193b dev: start parser refactor on the main codebase, see #65 and #44
Things were getting a bit complicated and slow with the old parser so I decided to continue #44's work on the main codebase.
2022-06-06 04:19:14 -03:00

58 lines
1.9 KiB
JavaScript

'use strict';
const NToken = require('../../../deciphers/NToken');
const Signature = require('../../../deciphers/Signature');
const QueryString = require('querystring');
class Format {
constructor(data) {
this.itag = data.itag;
this.mime_type = data.mimeType;
this.bitrate = data.bitrate;
this.average_bitrate = data.averageBitrate;
this.width = data.width || null;
this.height = data.height || null;
this.init_range = data.initRange;
this.index_range = data.indexRange;
this.last_modified = data.lastModified;
this.content_length = data.contentLength;
this.quality = data.quality;
this.quality_label = data.qualityLabel || null;
this.fps = data.fps || null;
this.url = data.url || null;
this.cipher = data.cipher || null;
this.signature_cipher = data.signatureCipher || null;
this.audio_quality = data.audioQuality;
this.approx_duration_ms = data.approxDurationMs;
this.audio_channels = data.audioChannels;
this.loudness_db = data.loudnessDb;
this.has_audio = !!data.audioBitrate || !!data.audioQuality;
this.has_video = !!data.qualityLabel;
}
decipher(player) {
this.url = this.url || this.signature_cipher || this.cipher;
const args = QueryString.parse(this.url);
const url_components = new URL(args.url);
url_components.searchParams.set('ratebypass', 'yes');
if (this.signature_cipher || this.cipher) {
const signature = new Signature(this.url, player.signature_decipher).decipherBeta();
args.sp ?
url_components.searchParams.set(args.sp, signature) :
url_components.searchParams.set('signature', signature);
}
if (url_components.searchParams.get('n')) {
const ntoken = new NToken(player.ntoken_decipher, url_components.searchParams.get('n')).transform();
url_components.searchParams.set('n', ntoken);
}
return url_components.toString();
}
}
module.exports = Format;