爬取音悦台任意艺人的mv(最高画质)+批量下载

使用工具

爬虫:
 Python 3.6
 urllib
 requests

爬取目标

音悦台任意艺人的mv(最清晰)

步骤

MV-搜索你喜欢的艺人.png

搜索结果.png

点击第一个视频,F12


image.png

在浏览器中输入这个链接看一下:
image.png

这就是mv真实地址了,但是...
image.png
image.png
瑟瑟发抖.jpg

我不知道怎么搞这个啊!如果有大佬会的,请一定告诉我,谢谢!

怂了,面向搜索引擎一下,结果找到

image.png

转自:https://www.toubiec.cn/81.html

好吧,这就是我需要的了,将videoId换成我们需要的Id看看


image.png

到此,已经拿到了真实视频地址,再看看mv列表页的总页数,id,mv标题


image.png

周董的mv有1000+,但是只有42页,大胆预测一下,42页应该是封顶了,再看看杨宗纬的


image.png

寻找一下怎么获取总页数


image.png

可以看到pageCount就是总页数了

image.png

删去不必要的参数,访问看一下(懒得装jsonview,看着有点累):


image.png

这里包含了总页数,id,mv标题

mv真实地址和需要的参数都到手了,整一下代码

1.获取mv总页数:

    def get_page_count(self):
        # 获取mv总页数
        get_page_url = 'http://soapi.yinyuetai.com/search/video-search?keyword={0}&pageIndex=1&pageSize=24'\
            .format(keyword)  # keyword是艺人名
        try:
            response = requests.get(get_page_url)
            if response.status_code == 200:
                json = response.json()
                page_count = json.get('pageInfo')['pageCount']  # 获取总页数
                return page_count
            return None
        except ConnectionError:
            return None

2.访问包含mv列表页信息的api接口(返回json)

    def get_index(self, url):
        try:
            response = requests.get(url)
            if response.status_code == 200:
                json = response.json()
                return json
            return None
        except ConnectionError:
            return None

3.获取mv的id、title

   def get_mv_info(self, json):
        # 获取mv的id、标题
        if json.get('videos'):
            items = json.get('videos')['data']
            for item in items:
                video_id = item.get('id')
                title = item.get('title')
                yield {
                    'video_id': video_id,
                    'title': title,
                }

4.通过上文面向搜索引擎找到的包含mv真实地址的api接口,获取mv真实地址

    def get_mv_source_url(self, video_id):
        # 构造mv真实地址
        mv_source_url = 'http://www.yinyuetai.com/api/info/get-video-urls?flex=true&videoId={}'.format(video_id)
        json_dict = requests.get(mv_source_url).json()
        mv_source_dict = {
            'SD_MV': json_dict["hdVideoUrl"] if "hdVideoUrl" in json_dict else None,
            'HD_MV': json_dict["hcVideoUrl"] if "hcVideoUrl" in json_dict else None,
            'FHD_MV': json_dict["heVideoUrl"] if "heVideoUrl" in json_dict else None,
        }

        mv_source_list = []

        for key, value in mv_source_dict.items():
            if value is not None:
                mv_source_list.append(value)
        return mv_source_list

因为很多mv不会有各种画质,所以需要进行一下判断,这里可以保证mv_source_list里的最后一个元素是mv最高画质的真实地址

5.下载最高画质的mv,并根据keyword创建文件夹,下载后的mv文件以mv的title命名

    def download_mv(self, mv_source_list, title, video_id):  # 下载最高品质的视频
        # 创建存放视频的文件夹
        file = 'C:/Users/Administrator/Desktop/{}/'.format(keyword)
        if not os.path.exists(file):
            os.mkdir(file)
            print('创建文件夹:', file)

        # 处理下载过程中的异常
        try:
            # 判断视频文件是否存在,并且给视频文件名做处理,将不合法的字符用'-'替代
            if not os.path.exists(file + clean_title(title) + '-' + str(video_id) + '.mp4'):
                print('Start Download MV:' + title + '...:', mv_source_list[-1])
                urllib.request.urlretrieve(url=mv_source_list[-1], filename=file + clean_title(title) + '-' + str(video_id) + '.mp4')
                print('MV Download Success:', title)
            else:
                print('MV:{}-已存在'.format(clean_title(title)))
        except socket.timeout:
            # 解决下载时间过长甚至出现死循环的情况
            count = 1
            while count <= 5:
                try:
                    urllib.request.urlretrieve(url=mv_source_list[-1], filename=file + clean_title(title) + '-' + str(video_id) + '.mp4')
                    print('MV Download Success:', title)
                    break
                except socket.timeout:
                    err_info = 'Reloading for %d time' % count if count == 1 else 'Reloading for %d times' % count
                    print(err_info)
                    count += 1
                if count > 5:
                    print("Downloading MV Failed!")

需要解释一下的是,文件命名是有规范的:


image.png

如果mv的标题包含这些字符,那就会保存失败,因此我写了一个函数来替换这些非法字符:

def clean_title(filename):
    # 将非法字符替换成'-'
    title = re.sub('[\/:*?"<>|]', '-', filename)
    return title

还有一点是,在我实际运行程序进行下载的时候,会有个别时候,某个mv的下载速度出奇的慢,甚至有僵住的可能,但是如果暂停重新下载,下载速度又很大概率恢复正常,具体原因我不清楚,但是针对这个现象,我设置了一个sockettimeout,表示若下载阻塞超过3秒,就算超时

timeout = 3.0
socket.setdefaulttimeout(timeout)
        except socket.timeout:
            # 解决下载时间过长甚至出现死循环的情况
            count = 1
            while count <= 5:
                try:
                    urllib.request.urlretrieve(url=mv_source_list[-1], filename=file + clean_title(title) + '-' + str(video_id) + '.mp4')
                    print('MV Download Success:', title)
                    break
                except socket.timeout:
                    err_info = 'Reloading for %d time' % count if count == 1 else 'Reloading for %d times' % count
                    print(err_info)
                    count += 1
                if count > 5:
                    print("Downloading MV Failed!")

超时后重新进行下载,我给了它5次机会,如果实在太倔强,只能放弃

6.main函数

    def main(self):
        page_count = self.get_page_count()
        mv_count = 0
        for page in range(1, page_count):
            print('Crawl Page:', page)
            url = 'http://soapi.yinyuetai.com/search/video-search?keyword={0}&pageIndex={1}&pageSize=24'.format(keyword,
                                                                                                                page)
            json = self.get_index(url)
            for item in self.get_mv_info(json):
                mv_count += 1
                video_id = item['video_id']
                title = item['title']
                mv_source_list = self.get_mv_source_url(video_id)
                self.download_mv(mv_source_list, title, video_id)
                print('已下载MV数量:', mv_count)

程序完整代码:

spider.py

import requests
import urllib.request
import os
import urllib.error
import socket

from common import clean_title

keyword = '周杰伦'
timeout = 3.0
socket.setdefaulttimeout(timeout)


class YinYueTaiSpider(object):
    def get_index(self, url):
        try:
            response = requests.get(url)
            if response.status_code == 200:
                json = response.json()
                return json
            return None
        except ConnectionError:
            return None

    def get_page_count(self):
        # 获取mv总页数
        get_page_url = 'http://soapi.yinyuetai.com/search/video-search?keyword={0}&pageIndex=1&pageSize=24'\
            .format(keyword)  # keyword是艺人名
        try:
            response = requests.get(get_page_url)
            if response.status_code == 200:
                json = response.json()
                page_count = json.get('pageInfo')['pageCount']  # 获取总页数
                return page_count
            return None
        except ConnectionError:
            return None

    def get_mv_info(self, json):
        # 获取mv的id、标题
        if json.get('videos'):
            items = json.get('videos')['data']
            for item in items:
                video_id = item.get('id')
                title = item.get('title')
                yield {
                    'video_id': video_id,
                    'title': title,
                }

    def get_mv_source_url(self, video_id):
        # 构造mv真实地址
        mv_source_url = 'http://www.yinyuetai.com/api/info/get-video-urls?flex=true&videoId={}'.format(video_id)
        json_dict = requests.get(mv_source_url).json()
        mv_source_dict = {
            'SD_MV': json_dict["hdVideoUrl"] if "hdVideoUrl" in json_dict else None,
            'HD_MV': json_dict["hcVideoUrl"] if "hcVideoUrl" in json_dict else None,
            'FHD_MV': json_dict["heVideoUrl"] if "heVideoUrl" in json_dict else None,
        }

        mv_source_list = []

        for key, value in mv_source_dict.items():
            if value is not None:
                mv_source_list.append(value)
        return mv_source_list

    def download_mv(self, mv_source_list, title, video_id):  # 下载最高品质的视频
        # 创建存放视频的文件夹
        file = 'C:/Users/Administrator/Desktop/{}/'.format(keyword)
        if not os.path.exists(file):
            os.mkdir(file)
            print('创建文件夹:', file)

        # 处理下载过程中的异常
        try:
            # 判断视频文件是否存在,并且给视频文件名做处理,将不合法的字符用'-'替代
            if not os.path.exists(file + clean_title(title) + '-' + str(video_id) + '.mp4'):
                print('Start Download MV:' + title + '...:', mv_source_list[-1])
                urllib.request.urlretrieve(url=mv_source_list[-1], filename=file + clean_title(title) + '-' + str(video_id) + '.mp4')
                print('MV Download Success:', title)
            else:
                print('MV:{}-已存在'.format(clean_title(title)))
        except socket.timeout:
            # 解决下载时间过长甚至出现死循环的情况
            count = 1
            while count <= 5:
                try:
                    urllib.request.urlretrieve(url=mv_source_list[-1], filename=file + clean_title(title) + '-' + str(video_id) + '.mp4')
                    print('MV Download Success:', title)
                    break
                except socket.timeout:
                    err_info = 'Reloading for %d time' % count if count == 1 else 'Reloading for %d times' % count
                    print(err_info)
                    count += 1
                if count > 5:
                    print("Downloading MV Failed!")

    def main(self):
        page_count = self.get_page_count()
        mv_count = 0
        for page in range(1, page_count):
            print('Crawl Page:', page)
            url = 'http://soapi.yinyuetai.com/search/video-search?keyword={0}&pageIndex={1}&pageSize=24'.format(keyword,
                                                                                                                page)
            json = self.get_index(url)
            for item in self.get_mv_info(json):
                mv_count += 1
                video_id = item['video_id']
                title = item['title']
                mv_source_list = self.get_mv_source_url(video_id)
                self.download_mv(mv_source_list, title, video_id)
                print('已下载MV数量:', mv_count)


if __name__ == '__main__':
    mv = YinYueTaiSpider()
    mv.main()

common.py(写过滤非法字符的函数)

import re


def clean_title(filename):
    # 将非法字符替换成'-'
    title = re.sub('[\/:*?"<>|]', '-', filename)
    return title

运行程序

image.png

可以看到桌面上已经有了相应文件夹


image.png

image.png

下载速度还不错

暂停,重新运行看看:


image.png

image.png

由于硬盘空间不够,就不继续运行了

使用

只需修改spider.py里的keyword参数,换成你需要的艺人名即可

keyword = '周杰伦'

最后发现

后来写完了程序...发现了一个音悦台mv1080p的接口,我是懒得重新整了
详情请见:https://www.lylares.com/yinyuetai-videourl-online-analysis-api.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342