How to know the network that a video belongs to? [closed]

0

Can you tell which network a video belongs to through youtube's api?

    
asked by anonymous 18.05.2016 / 19:58

1 answer

4

I can not tell you if the API has this information but one way to get this is through the meta tag attribution which has the information of which network the channel is part of.

To retrieve this information using PHP:

$tags = get_meta_tags("http://www.youtube.com/watch?v=_8AZT40gH5E");
echo $network = $tags['attribution']; // Endemol_beyond_Brasil

Source: link

    
18.05.2016 / 21:21