Files
youtube-downloader/src/youtubehelper.js
2020-06-17 23:27:23 +00:00

31 lines
343 B
JavaScript

const YTDL = require('ytdl-core');
// TODO: does the video resolver need a queue?
// cache
function CheckCache()
{
}
function CleanCache()
{
}
module.exports.InitResolverCache = async () =>
{
}
module.exports.GetVideoInfoArr = async (arr) =>
{
}
module.exports.GetVideoInfo = async (video) =>
{
}