youtube-likes-downloader
Version:
Download all liked videos from youtube
16 lines • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatJSON = formatJSON;
function formatJSON({ id, title, channel, ext, resolution, duration }) {
return {
id,
title,
channel,
ext,
width: resolution[0],
height: resolution[1],
resolution: resolution.join('x'),
duration_string: duration,
};
}
//# sourceMappingURL=formatJSON.js.map