add support for more services

This commit is contained in:
Jill 2021-10-26 14:07:06 +03:00
parent ba5aaf12e5
commit 2172572489
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ async function play(song, id, connection, channel) {
let err, out
try {
err, out = await promisify(exec)('youtube-dl -f bestaudio --youtube-skip-dash-manifest --force-ipv4 -g "' + song.originalUrl + '"');
err, out = await promisify(exec)('youtube-dl -f bestaudio,best --youtube-skip-dash-manifest --force-ipv4 -g "' + song.originalUrl + '"');
} catch(err_) {
err = err_;
}