Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does youtube api play function trigger a view count?

I know that embedding a video with autoplay will NOT increment video count.

My question is, playing the video from javascript, with the youtube api, does it trigger incrementing video count?

like image 299
arpad Avatar asked Nov 19 '12 14:11

arpad


People also ask

How does YouTube count views on videos?

YouTube counts a view depending on whether the viewer initiated the watching of a video or not. In the past the view count would increase whenever the video was loaded. Furthermore, it depends on how long the viewer was watching the video and whether the video is real or not (tipping point is 301 views when verifying the video).

Does the YouTube algorithm count looped videos as views?

Use a Yes & no. YouTube’s challenge is to count looped videos from fans, while not counting those from creators trying to game the system. I don’t know any specifics, but they do, indeed, have the algorithm filter out looped plays that are likely the result of the later.

Do private videos count as views in YouTube analytics?

Private videos do not contribute to the public view count. However, the stats are still available on YouTube Analytics. There are also additional unlisted and deleted video dynamics at play, that I explain here: What is the meaning of unique views in YouTube channel analytics?

What does a view mean on YouTube?

When it comes to understanding views on YouTube, it’s important to get what a view really means. YouTube counts a view depending on whether the viewer initiated the watching of a video or not. In the past the view count would increase whenever the video was loaded.


2 Answers

If you autoplay the video it won't count but you can have it count as long as you don't autoplay and let the user interacts with a 'Play' button.


- Playback controls and player settings : player.playVideo():Void plays the currently cued/loaded video. Note: A playback only counts toward a video's official view count if it is initiated via a native play button in the player.
    https://developers.google.com/youtube/js_api_reference
- Playback locations report: Embedded players on other websites: This shows how many people viewed your video when it was embedded on another website, like a blog. Click on the link to drill down to a breakdown of views across the various sites that have embedded your video.
    https://support.google.com/youtube/answer/1714546?hl=en&ref_topic=3029003
like image 119
davidcondrey Avatar answered Oct 15 '22 21:10

davidcondrey


No. Playbacks started with the javascript API do not count, nor do any other views which are initiated by software (auto playing, iframing the page, playlist player, chromeless player api, etc).

YouTube Developer Relations response: https://groups.google.com/d/msg/youtube-api-gdata/7SsbvOJMWL0/rBCBqnFaxRgJ

like image 44
Tim Wintle Avatar answered Oct 15 '22 20:10

Tim Wintle