mirror of
https://github.com/wukko/cobalt.git
synced 2025-06-12 13:17:45 +02:00
useless comments
This commit is contained in:
@ -8,14 +8,14 @@ export default async function(obj) {
|
||||
}).catch(() => { return false });
|
||||
|
||||
if (video === undefined) return { error: 'ErrorEmptyDownload' } ;
|
||||
else if (!video) return { error: 'ErrorCouldntFetch' }; // not sure if this is the correct error here, should it be this or ErrorCantConnectToServiceAPI
|
||||
else if (!video) return { error: 'ErrorCouldntFetch' };
|
||||
|
||||
let best;
|
||||
if (obj.isAudioOnly || obj.quality === "max" || obj.quality >= "720") // audio seems to be compressed on the mp4-mobile version so isAudiOnly only usese the higest quality
|
||||
if (obj.isAudioOnly || obj.quality === "max" || obj.quality >= "720") // audio seems to be compressed on the mp4-mobile version so isAudioOnly only uses the higest quality
|
||||
best = video.files.mp4 ?? video.files['mp4-mobile'];
|
||||
else
|
||||
best = video.files['mp4-mobile'] ?? video.files.mp4;
|
||||
|
||||
if (best) return { urls: best.url, filename: `streamable_${obj.id}_${best.width}x${best.height}.mp4`, audioFilename: `streamable_${obj.id}_audio` }; // video filename isnt actually used since its redirected but who cares
|
||||
if (best) return { urls: best.url, filename: `streamable_${obj.id}_${best.width}x${best.height}.mp4`, audioFilename: `streamable_${obj.id}_audio` };
|
||||
else return { error: 'ErrorEmptyDownload' }
|
||||
}
|
||||
|
Reference in New Issue
Block a user