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

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

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#