Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用twitch-dlPyPi 的包。安装后,基本思路是在终端上运行,如下:
twitch-dl
twitch-dl download <twitch-vod-url>
它在终端上运行时效果很好,但我的目标是在我的 Python 脚本中运行这个命令:
os.system('twitch-dl download <twitch-vod-url>`')
256当我运行这段代码时,我得到的只是我的输出。它不下载任何东西。
256