I'm livestreaming an event and I use some songs from other author. The live video now show the Youtube logo because youtube detect the copyright. The question is can I get the copyright status of video through Youtube API ? So I can stop the song before youtube stop my stream ?
Asked
Active
Viewed 341 times
0
-
why do you assume that there's a grace period between reporting any copyright issues via the API and embedding the youtube logo when youtube detects a (purported) copyright infringement? even if you could get the detected copyright status via the API, youtube will also have noticed and publicly flagged the video; so whatever you can do *then* will be too late. – umläute Apr 11 '19 at 14:29
-
I understand that, but the purpose is keep the livestream alive. Youtube don't stop the livestream immediately when it detected the copyright music, it leave us sometime to fix it ( I see it in the livestream control room ). Then I think, is there anyway to get the notice by API ? – boygiandi Apr 13 '19 at 01:35
1 Answers
0
You may want to check the docs regarding the contentDetails
, as stated you can use contentDetails.licensedContent
to check if the video is copyrighted:
Indicates whether the video represents licensed content, which means that the content was uploaded to a channel linked to a YouTube content partner and then claimed by that partner.
Hope this helps.

Mr.Rebot
- 6,703
- 2
- 16
- 91
-
thank Mr.Rebot . I just checked and `contentDetails.licensedContent ` always return false. Please note that I'm asking about livestreaming, not a VOD video – boygiandi Jun 08 '17 at 07:44