📅  最后修改于: 2023-12-03 14:48:41.808000             🧑  作者: Mango
Ytmp4下载是一款简单易用的视频下载工具,可以帮助程序员无需任何付费就能下载优酷、腾讯、爱奇艺、YouTube等视频。
打开Ytmp4网站(https://ytmp4.com)。
复制要下载的视频链接并粘贴到搜索框。
点击“Convert”按钮进行转换。
import requests
from bs4 import BeautifulSoup
url = 'https://ytmp4.com/'
search = input('Please input the video URL: ')
try:
res = requests.get(url + 'convert?url=' + search)
soup = BeautifulSoup(res.text, 'html.parser')
download_url = url + soup.find('a', {'id': 'download'}).get('href')
res = requests.get(download_url)
open('video.mp4', 'wb').write(res.content)
print('Download succeeded!')
except:
print('Download failed!')
以上是一个简单的Python代码片段,通过输入视频链接并获取下载链接来实现下载视频的功能。
ytmp4下载是一款非常实用的视频下载工具,帮助程序员们快速下载各种在线视频,同时无需花费一分钱。使用起来也非常简单,推荐大家试试。