Hi,
For a while i'm looking after a YouTube integrated player for my wordpress, that can show next to my video the number of times my video was played, straight from YouTube database. I present each of my video in a seperate post.
I tried many types of plugins, but non work.
Anyone have advice to solve my crutial problem?
please! any idea? i'm on the verge of killing myself with frusration ...
donnymack
Member
Posted 5 years ago #
I don't know if there is a plugin for this, but you can do it yourself by signing up for YouTube developer program and implement this by using their youtube.get_details api. ie
http://www.youtube.com/api2_rest?dev_id={0}&method=youtube.videos.get_details&video_id={1}
which among other things returns this about the video P9XYOUgYRKw
<author>carolynlum</author>
<title>Ice Storm</title>
<rating_avg>3.80</rating_avg>
<rating_count>1193</rating_count>
<tags>Ice</tags>
<description>The trees in the backyard. Frozen!</description>
<update_time>1168996962</update_time>
<view_count>89618</view_count>
<upload_time>1168808356</upload_time>
<length_seconds>84</length_seconds>
<recording_date/>
<recording_location/>
<recording_country/>
donnymack
Member
Posted 5 years ago #
Q: If this is a plugin people would want. Please give specifics of features and I'll make one that can either wrap into my devId or your own.