惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
How Does The YouTube Content ID System Work?
2021-08-02 · via jdhao's digital space

Google introduced the content ID system in 2007 to cope with the unauthorized use of copyrighted music and video content. The content ID system has successfully helped the copyright owners to find the pirated content and paid billions of dollars to the copyright owners1.

How content ID works#

The copyright owners can submit the audio and video content they want to protect to YouTube. When a user uploads new content to YouTube, the new content will be compared to the files in the database to check their similarity.

How do we compare the similarity between audio or video files? We need audio and video fingerprinting technology. Generally speaking, we can extract fingerprints (i.e., features or vectors) from the audio and video files and store them in the database. When a new content arrives, we extract its fingerprints and compare it with the fingerprints in the database. Then we can calculate the similarity between the new content and the content in the database. If the similarity is above a threshold, we can assume that the uploaded content is a pirated content.

There is little resource online talking about which methods Google use for fingerprinting audio and videos.

Audio fingerprinting#

The YouTube audio fingerprinting technology is quite advanced. As pointed out by videos here and here, it can spots audio piracy even if you distort the music significantly (by adding noise or change speed etc.).

This paper from Google research shows a method for audio fingerprinting. It may be used by content ID. However, this paper is quite old. YouTube may have improved its algorithms over the years.

Video fingerprinting#

For video fingerprinting, we would guess that YouTube extract frames from videos and use deep-neural nets to extract features from video frames. Those features are the so-called fingerprints for the video. The similarity between videos can be compared frame by frame and aggregated in some way, for example, by calculating how many similar frames two videos share in common.

This above guess is partially verified by post here. Apart from that, I can not seem to find resource on what methods YouTube actually use for video fingerprinting.

Counter-attack techs#

Since fingerprinting uses machine learning methods for finding pirated content, we can forge adversarial content to fool the content ID system: the pirated content can be altered in a subtle way so that the system can not detect it is a pirated content.

There are some research papers on this, for example, see here and here.

References#