溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python如何爬取視頻網(wǎng)站彈幕并做成詞云圖

發(fā)布時(shí)間:2021-10-26 10:10:12 來源:億速云 閱讀:155 作者:柒染 欄目:大數(shù)據(jù)

這篇文章將為大家詳細(xì)講解有關(guān)Python如何爬取視頻網(wǎng)站彈幕并做成詞云圖,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

大家好,最近的“瓜”,多到我們措手不及,可謂是“熱點(diǎn)不斷”。作為程序員,我們還可能隨時(shí)為此而加班。

各種評論視頻“爆炸”網(wǎng)絡(luò),打開首頁全是熱點(diǎn)話題的內(nèi)容,某知名UP主發(fā)布視頻都要錯下峰。

我就在思考:這么火爆的話題和內(nèi)容,有沒有一種通用的分析方法?答案是:抓取彈幕或者評論。

下面就讓我們以冰冰vlog的視頻彈幕為例,來進(jìn)行分析。

一、獲取方法

1.網(wǎng)頁解析:網(wǎng)頁結(jié)構(gòu)可能隨時(shí)會發(fā)生變化。

2.python第三方api:可能會有維護(hù)跟不上的問題。

經(jīng)過簡單對比,我選擇第一種方法。

二、網(wǎng)頁分析

爬取彈幕的關(guān)鍵是獲取視頻的cid,有些地方也叫oid。通過瀏覽器的開發(fā)者模式我們不難找到該視頻的cid。我們通過https://comment.bilibili.com/+視頻的cid+.xml就可以爬取該視頻所有彈幕了。

Python如何爬取視頻網(wǎng)站彈幕并做成詞云圖

三、彈幕文件下載和解析

由于彈幕內(nèi)容集中在xml文件里,我們需要對文件進(jìn)行下載,使用xpath解析文件。

from lxml import etree
import  requests
import time
import jieba
import numpy as np
from PIL import Image
from wordcloud import WordCloud as wc
class Bilibili():
    """docstring for Bilibili"""
    def __init__(self,oid):
        self.headers={
        'Host': 'api.bilibili.com',
        'Connection': 'keep-alive',
        'Cache-Control': 'max-age=0',
        'Upgrade-Insecure-Requests': '1',
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36',
        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
        'Accept-Encoding': 'gzip, deflate, br',
        'Accept-Language': 'zh-CN,zh;q=0.9',
        'Cookie': 'finger=edc6ecda; LIVE_BUVID=AUTO1415378023816310; stardustvideo=1; CURRENT_FNVAL=8; buvid3=0D8F3D74-987D-442D-99CF-42BC9A967709149017infoc; rpdid=olwimklsiidoskmqwipww; fts=1537803390'

        }
        self.url='https://api.bilibili.com/x/v1/dm/list.so?oid='+str(oid)
        self.barrage_reault=self.get_page()

    # 獲取信息
    def get_page(self):
        try:
            # 延時(shí)操作,防止太快爬取
            time.sleep(0.5)
            response=requests.get(self.url,headers=self.headers)
        except Exception as e:
            print('獲取xml內(nèi)容失敗,%s' % e)
            return False
        else:
            if response.status_code == 200:
                # 下載xml文件
                with open('bilibili.xml','wb') as f:
                    f.write(response.content)
                return True
            else:
                return False

    # 解析網(wǎng)頁
    def param_page(self):
        time.sleep(1)
        if  self.barrage_reault:
            # 文件路徑,html解析器
            html=etree.parse('bilibili.xml',etree.HTMLParser())
            # xpath解析,獲取當(dāng)前所有的d標(biāo)簽下的所有文本內(nèi)容
            results=html.xpath('//d//text()')
            return results

四、彈幕去重

重復(fù)的彈幕進(jìn)行歸類,未出現(xiàn)過的彈幕創(chuàng)建新的分類。為詞頻統(tǒng)計(jì)和詞云做好準(zhǔn)備。

# 彈幕去重
def remove_double_barrage(self):
    '''
    double_arrage:所有重復(fù)彈幕的集合
    results:去重后的彈幕
    barrage:每種彈幕內(nèi)容都存儲一遍
    '''
    double_barrage=[]
    results=[]
    barrage=set()
    for result in self.param_page():
        if result not in results:
            results.append(result)
        else:
            double_barrage.append(result)
            barrage.add(result)
    return double_barrage,results,barrage

五、彈幕重復(fù)次數(shù)統(tǒng)計(jì)和制作詞云

我們在網(wǎng)上照一張“王冰冰”的照片,進(jìn)行簡單的處理,作為詞云的輪廓圖。

Python如何爬取視頻網(wǎng)站彈幕并做成詞云圖

# 彈幕重復(fù)次數(shù)和詞云制作
def make_wordCould(self):
    double_barrages,results,barrages=self.remove_double_barrage()
    # 重詞計(jì)數(shù)
    with open('barrages.txt','w') as f:
        for barrage in barrages:
            amount=double_barrages.count(barrage)
            f.write(barrage+':'+str(amount+1)+'\n')
            
    # 設(shè)置停用詞
    stop_words=['【','】',',','.','?','!','。']
    words=[]
    if results:
        for result in results:
            for stop in stop_words:
                result=''.join(result.split(stop))
            words.append(result)
        # 列表拼接成字符串
        words=''.join(words)
        words=jieba.cut(words)
        words=''.join(words)
        bingbing=np.array(Image.open('冰冰.jpg'))
        w=wc(font_path='?C:/Windows/Fonts/SIMYOU.TTF',
             background_color='white',
             width=900,
             height=600,
             max_font_size=15,
             min_font_size =1,
             max_words=3000,
             mask=bingbing)
        w.generate(words)
        w.to_file('bingbing.jpg')
    
b=Bilibili(283851334)#視頻的cid
b.make_wordCould()#繪制詞云

統(tǒng)計(jì)結(jié)果:

Python如何爬取視頻網(wǎng)站彈幕并做成詞云圖

關(guān)于Python如何爬取視頻網(wǎng)站彈幕并做成詞云圖就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI