我制作了一个包含以下内容的批处理文件:-
set /p ytlink="Enter the link of Youtube Video:- "
youtube-dl -f "bestvideo[height<=1080]+bestaudio/best[height<=1080]" ytlink
pause
但是我得到的输出是:-
ERROR: 'ytlink' is not a valid URL. Set --default-search "ytsearch" (or run youtube-dl "ytsearch:ytlink" ) to search YouTube
我的目标是制作一个批处理文件,我可以在其中输入要下载的youtube链接。
您目前仅将ytlink
文本传递给youtube-dl。要传递ytlink
变量的content,请使用%ytlink%
。
set /p ytlink="Enter the link of Youtube Video:- "
youtube-dl -f "bestvideo[height<=1080]+bestaudio/best[height<=1080]" %ytlink%
pause