我想访问以下 shell 命令的结果,
youtube-dl -g "www.youtube.com/..."
direct url
从 python 程序中将其输出打印到文件中。这是我尝试过的:
import youtube-dl
fromurl="www.youtube.com/..."
geturl=youtube-dl.magiclyextracturlfromurl(fromurl)
那可能吗?我试图理解源代码中的机制但迷失了:youtube_dl/__init__.py
, youtube_dl/youtube_DL.py
, info_extractors
...