鱼C论坛

 找回密码
 立即注册
查看: 1064|回复: 6

Python 爬取喜马拉雅免费相声音频

[复制链接]
发表于 2020-5-1 16:45:23 | 显示全部楼层 |阅读模式

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

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

x
from requests import get
from lxml import etree
import os
try:
    os.mkdir("Video")
    os.chdir("Video")
except:
    os.chdir("Video")

def open_url(url):
    headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36'}
    res = get(url, headers=headers)
    return res

def get_xs(res):
    temp = 'https://www.ximalaya.com/xiangsheng'
    html = etree.HTML(res.text)
    name = html.xpath("//*[@class='general-album-list']/div[@class='content']/ul/li/div/a/span/text()")
    href = [temp + each for each in html.xpath("//*[@class='general-album-list']/div[@class='content']/ul/li/div/a[1]/@href")]
    i = 1
    result = {}
    for k in zip(name, href):
        result[i] = k
        i += 1
    return result

def get_Videourl(nm, hf):
    res = open_url(hf)
    vdurl = []
    temp = 'https://www.ximalaya.com/xiangsheng'
    html = etree.HTML(res.text)
    href = html.xpath('//*[@class="sound-list _Qp"]/ul/li/div[2]/a/@href')
    name = html.xpath('//*[@class="sound-list _Qp"]/ul/li/div[2]/a/span/text()')
    ids = [each[-9:] for each in html.xpath('//*[@class="sound-list _Qp"]/ul/li/div[2]/a/@href')]
    # for nm, hf in zip(name, href):
    #     print(nm, ':', temp + hf)
    for id in ids:
        vdurl.append('https://www.ximalaya.com/revision/play/v1/audio?id=%s&ptype=1' % id)
    return vdurl, name

def get_Video(vdurl, nm):
    i = 0
    for url in vdurl:
        res = open_url(url).json()
        for each in res:
            if type(res[each]) != int:
                tempurl = res[each]['src']
                video = open_url(tempurl)
                filename = f"{nm[i]}.m4a"
                print("正在下载:",filename)
                print(i)
                with open(filename, 'wb') as f:
                    f.write(video.content)
        i += 1

def main():
    url = 'https://www.ximalaya.com/xiangsheng/xiangsheng/mr132t2722/'
    res = open_url(url)
    result = get_xs(res)
    for i in result:
        for nm in result[i]:
            print(i, end = ' ')
            print(nm)
            break

    choice = int(input("请选择您要听的专辑序号:"))
    nm, hf = result[choice]
    vdurl, nm = get_Videourl(nm, hf)
    get_Video(vdurl, nm)


if __name__ == "__main__":
    main()

我待会把思路发出来,顺便说几个缺陷:

1,翻页没有写

2,爬取相声数量太少

这些我都会一一改进,如果有好的建议,请回复我,谢谢

评分

参与人数 1荣誉 +2 鱼币 +2 收起 理由
liuzhengyuan + 2 + 2 无条件支持楼主!

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-5-1 16:45:52 From FishC Mobile | 显示全部楼层
沙发!
支持楼主!

评分

参与人数 1鱼币 +5 收起 理由
qiuyouzhi + 5 回复可够快的...

查看全部评分

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

使用道具 举报

发表于 2020-5-1 16:48:08 | 显示全部楼层
付费音频的能爬吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-1 16:50:09 | 显示全部楼层
liuzhengyuan 发表于 2020-5-1 16:48
付费音频的能爬吗

前提我得有个VIP的账号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-1 16:51:53 | 显示全部楼层
支持一波
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-4 17:38:41 | 显示全部楼层
应该是免费的都能爬吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-4 17:39:45 | 显示全部楼层
wuqramy 发表于 2020-5-4 17:38
应该是免费的都能爬吧

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-22 12:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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