After analyzing 100,000 bullet screens at station B, I found the ultimate meaning of the God of War!

Author | The data is not bragging

Recently, the God of War Bloodbath B station with a "Nike smile" succeeded in getting out of the circle and fascinated all sentient beings.

This time, Xiao Z crawled 100,000 related barrage, from the perspective of data analysis, grabbed the damn mad charm of the god of war.

Where is the sacred war god?

God of War is the protagonist of a series of small video advertisements adapted from cool texts. These videos are simple, short and savvy. The actors are not changed, and the earth is extremely elegant:

In the first 20 seconds, the protagonist's background introduction, hands and eyes open to the sky is the norm, so awesome that the Jade Emperor wants to worship the handle.

In the middle of 30 seconds, the protagonist (being bewildered by the lard) throws himself into the house and has to catch up and become the son-in-law. Because he concealed his identity, he was humiliated at his wife's house. According to my statistics, during these 30 seconds, he would be pushed to the ground at least 1.5 times, taunted by three people three times, and suffered three big mouths by the way.

In the late 10 seconds, the younger brother slid and pierced his identity. In the mid-term, people who didn’t know Taishan smashed their heads like garlic. Finally, the god of war took out the marriage certificate from his pocket and tore it, and then showed the iconic crooked smile, leaving it to The audience's endless reverie.

The god of war is just his identity, he!

Sometimes he is a genius doctor who holds the Taiyi Xuanzhen package to cure all diseases;

At that time, it was King Shura who killed 108 brothers in the northern Xinjiang incognito;

Sometimes it’s the Emperor Dragon King who delivers tens of billions of orders.

Behind the ever-changing identity of Niu X is a constant smile.


Xiao Z's poem cloud: crooked mouth smiles and Bai Meisheng, the ghosts and animals at station b have no color.

How hot is God of War?

I crawled 50 pages of videos under the keyword of "Cooking Mouth God of War" at station b (up to so many). As of August 14, the cumulative number of views has reached 82.07 million.

The playback volume is still flying at a rate of 20 million per day...

Through the number of uploaded videos per day and average playback data, we can find:

On July 22, it was the birthday of the God of War with Wicked Mouth at station b. On this day, the UP main "Bullet Dandan" uploaded a video titled "God of War with Wicked Mouth" to achieve a small detonation.

On the 26th, "Plum alt" presented the masterpiece of "The Strongest Son-in-Law", once again spreading the demeanor.

Subsequently, the creative enthusiasm for the God of War with Wicked Mouth also began to rise. Recently, more than 100 UP masters entered the venue every day to pay tribute to Wicked's Profound meaning with creative ability.

Looking at the comparison of the Baidu index of God of War and Shen Teng, the result is even more clear at a glance. (Click to see larger image)

There is no war god in the world, there are more people searching, and there is a god of war.

On August 5, "God of War" was included as an entry. On the same day, the search index soared from 0 to 2795, followed by a surge in waves.

Six days later, the search index surpassed Uncle Shen Teng, and he continued to excel.

Following this trend and slope:

The flow of fresh meat can be broken with a finger!

Crooked mouth is just around the corner!

The simple plot is a carnival of barrage

A buddy said that he has been 20 brushes and can't stop...

It looks like a plot of sand sculptures, why do so many people indulge in it?

Is the essence of human beings more than repeaters or sand sculptures?

I decided to start with the barrage, and based on the 100,000 barrage crawled, I extracted the key information and made a word cloud image:

The barrage is roughly divided into three layers:

The first layer, haha ​​strange. Use "Hahaha", "Xuanxuanxuan" and "???" Three Excalibur Swords to beat Invincible Hand all over the world.

The second layer is a diehard fan with a crooked mouth. The God of War finally smiled with a crooked mouth and used the sky barrage "√" to simulate the smile of the Dragon King.

The third layer, the story repeater. Following the plot closely, "loser" and "forbearance" were madly ridiculed when the god of war turned over, "the master has orders" and "don't regret" when the god of war turned over, and "there is no bead" and "can be destroyed" after the return of the god of war.

With the blessing of the three types of barrage, the God of War with Crooked Mouth is even more invincible.

Why God of War

Shuangwen and adapted the small advertisements, the routines are very simple, nothing more than suppressing and then raising.

And the god of war is out of the circle!

It relies on the right exaggerated acting skills, based on the sonorous lines of the idiom encyclopedia.

The sand sculptures are full of flaws, but they are funny character settings and magical plots where the same actors do not change.

Of course, the most important thing is that at the end of each episode, God of War finally smiled.

This is an invincible visual hammer , every beat hits the audience's itchy spots, making people want to stop.

This laugh seems simple, but it is not. I have imitated it no less than a hundred times, but I still don’t look like it.

Later, I saw the personal explanation of the deity "Guan Yunpeng" (this deity has entered b station), and then I realized that if you want a body shape, you must strictly observe:

"One is turning heads and decisively, the other is firm eyes, and the third is sighing and smiling."

Have you learned it?

It's too magical, I want to continue to write the God of War series, that's right, even Pleasant's mouth has already turned...

Finally, Xiao Z offered the B station to crawl the core code. The logic is not complicated. There is a chance to come out and talk about it:

import pandas as pdimport osimport requestsfrom lxml import etreeimport randomimport time
#根据搜索关键字按点击量爬取视频数据def get_target(url,num = 10):    result = pd.DataFrame()
    for i in range(1,num + 1):        headers = {'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'}        html = requests.get(url.format(i),headers = headers)        bs = etree.HTML(html.text)
        for sig in bs.xpath('//li[@class = "video-item matrix"]'):            title = sig.xpath('div[@class = "info"]/div/a/@title')[0]            click = sig.xpath('div[@class = "info"]/div[3]/span[1]')[0].xpath('string(.)').strip('\n        ')            danmu = sig.xpath('div[@class = "info"]/div[3]/span[2]')[0].xpath('string(.)').strip('\n        ')            date = sig.xpath('div[@class = "info"]/div[3]/span[3]')[0].xpath('string(.)').strip('\n        ')            up = sig.xpath('div[@class = "info"]/div[3]/span[4]')[0].xpath('string(.)').strip('\n        ')            df = pd.DataFrame({'标题':[title],'播放量':[click],'弹幕':[danmu],'日期':[date],'UP主':[up]})            result = pd.concat([result,df])
        time.sleep(random.random() + 0.5)        print('已经完成b站第 {} 页爬取'.format(i))
    return result
#爬取单集单日弹幕def get_one_day(url,headers,cookies):
    lst = []    html = requests.get(url,headers,cookies = cookies)    bs = etree.HTML(html.text.encode('utf8'))
    for i in bs.xpath('//d'):        dm = i.text.encode('iso-8859-9').decode('utf8')        lst.append(dm)        df = pd.DataFrame({'弹幕':lst})        df['日期'] = url[-10:]        df['oid'] = url[url.find('oid=') + 4:url.find('&date')]
    time.sleep(1 + random.random())
    return df

More exciting recommendations

☞英伟达收购,ARM也要变美国公司,国产芯出路几何?
☞作为一个前端,你需要会什么?| 每日趣闻
☞腾讯申请微信儿童版商标;苹果发布全球首款 5nm仿生芯片;Java 15 发布|极客头条
☞OpenCV 实现视频稳流,附Python与C++代码!| 防抖技术
☞“蚂蚁漫步”背后的定位原理思考
☞200美元变290000美元,这个DeFi用户经历了什么?
点分享点点赞点在看

Guess you like

Origin blog.csdn.net/csdnsevenn/article/details/108633167