鱼C论坛

 找回密码
 立即注册
查看: 1521|回复: 8

[已解决]python批量下载音频

[复制链接]
发表于 2021-7-17 13:19:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
请问这个之后要怎么做呀,已经找好下载链接了
最佳答案
2021-7-17 17:19:22
算了,直接替换 url
import requests
import re

url = 'http://shantianfang.zgpingshu.com/575/'
response = requests.get(url)
url = re.findall('class="player"><a href="//(.*?)"', str(response.content))
count = 1
for i in url:
    i = 'http://' + i
    i = i.replace('play', 'down')
    response = requests.get(i)
    url = re.findall('http:.*?mp3', response.content.decode('gbk'))[0]
    response = requests.get(i)
    with open(str(count) + '.mp3', 'wb') as f:
        f.write(response.content)
    count += 1
    print(url)
    input()
1.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-7-17 13:19:36 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 13:42:40 | 显示全部楼层
这个是下载页面的链接,你需要进入这个页面,爬取音频的链接
爬取到下面这样的链接
http://doshantianfang1.zgpingshu.com/%E5%8D%95%E7%94%B0%E8%8A%B3%E8%AF%84%E4%B9%A6_%E7%99%BD%E7%9C%89%E5%A4%A7%E4%BE%A0%28320%E5%9B%9E%292.04GB_32k/7004820087.mp3

1.png
2.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-17 14:44:35 | 显示全部楼层
人造人 发表于 2021-7-17 13:42
这个是下载页面的链接,你需要进入这个页面,爬取音频的链接
爬取到下面这样的链接

对的,但是怎么批量下呀,300多集的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 15:19:24 | 显示全部楼层
阿狼啊 发表于 2021-7-17 14:44
对的,但是怎么批量下呀,300多集的

循环,一个一个下载
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 15:42:26 | 显示全部楼层
你怎么进入这个页面的?我找了半天,找不到进入这个页面的方法,你点了哪个按钮?
如何从这里
http://www.zgpingshu.com/play/575/
进入这里
http://www.zgpingshu.com/down/575/
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 17:19:22 | 显示全部楼层    本楼为最佳答案   
算了,直接替换 url
import requests
import re

url = 'http://shantianfang.zgpingshu.com/575/'
response = requests.get(url)
url = re.findall('class="player"><a href="//(.*?)"', str(response.content))
count = 1
for i in url:
    i = 'http://' + i
    i = i.replace('play', 'down')
    response = requests.get(i)
    url = re.findall('http:.*?mp3', response.content.decode('gbk'))[0]
    response = requests.get(i)
    with open(str(count) + '.mp3', 'wb') as f:
        f.write(response.content)
    count += 1
    print(url)
    input()

评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +3 收起 理由
阿狼啊 + 5 + 5 + 3 谢谢你

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2021-7-17 17:26:24 | 显示全部楼层
13 行改一下
import requests
import re

url = 'http://shantianfang.zgpingshu.com/575/'
response = requests.get(url)
url = re.findall('class="player"><a href="//(.*?)"', str(response.content))
count = 1
for i in url:
    i = 'http://' + i
    i = i.replace('play', 'down')
    response = requests.get(i)
    url = re.findall('http:.*?mp3', response.content.decode('gbk'))[0]
    response = requests.get(url)
    with open(str(count) + '.mp3', 'wb') as f:
        f.write(response.content)
    count += 1
    print(url)
    input()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-17 19:28:49 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 01:03

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表