youtube-dl 在 12.10 上的表现未达到预期

youtube-dl 在 12.10 上的表现未达到预期

当我输入视频网址时,它会显示此消息而不是下载。

请问我该怎么办,因为我真的需要开始下载视频。

joshua@joshua-HP-625:~$ youtube-dl http://www.youtube.com/watch?v=h3gPo7qFOFw&

feature=player_detailpage
[1] 6720
joshua@joshua-HP-625:~$ Hi! We changed distribution method and now youtube-dl needs to update itself one more time.
This will only happen once. Simply press enter to go on. Sorry for the trouble!
The new location of the binaries is https://github.com/rg3/youtube-dl/downloads, not the git repository.

答案1

你有两个问题。

  1. 您需要将链接括起来"以避开最后一个“&”符号&

    youtube-dl "http://www.youtube.com/watch?v=h3gPo7qFOFw&"
    
  2. 您需要更新youtube-dl再一次,运行如下sudo

    sudo youtube-dl --update
    

    并在出现提示时按 Enter。

答案2

首先,&链接末尾的符号强制 youtube-dl 在后台运行。

其次,说明会为您提供新下载的位置:https://github.com/downloads/rg3/youtube-dl/youtube-dl

最后,考虑一下这样的网站http://www.keepvid.net同时。

相关内容