Skip to content

Commit

Permalink
Update yt-dlp.js
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxingran authored Aug 13, 2024
1 parent dcdc650 commit 81e79e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/yt-dlp.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const YtDlpNotInstalled = require('../exceptions/YtDlpNotInstalled');
* @param {string} query
*/
const SearchDlArguments = (query) => ['-f', '140', '--dump-json', query];
const PlayDlArguments = (query) => ['-f', '\'bestaudio/best\'','--dump-json', query];
const PlayDlArguments = (query) => ['-f', '140','--dump-json', query];
/** @param {string} id */
const byId = (id) => `https://www.youtube.com/watch?v=${id}`;
/** @param {string} keyword */
Expand Down

0 comments on commit 81e79e9

Please sign in to comment.