
How To Automatically Show Subscribers, Videos & Channel Views In Video Title (65600, 1412, 19730409)
In this video I will show you how to automatically update your youtube video title to display the amount of subscribers your channel has, the number of videos you've uploaded and the total amount of views your channel has gotten!
If you liked this video, please be sure to hit the like button and let me know in the comments why you liked it! If you really love my content, please consider subscribing!
**********************************
Inspired by Tom Scott: https://www.youtube.com/watch?v=BxV14h0kFs0
Go to script.google.com and use the following code and all the steps shown in the video!
function updateTitle() {
var videoID = 'DR05ciUrFC0'; //https://youtu.be/DR05ciUrFC0
var part = 'snippet,statistics';
var params = {'id': videoID};
var response = YouTube.Videos.list(part, params);
var video = response.items[0];
var channelID = 'UCzkqOdzxj4wY7BmWdXWueoA' ; //https://www.youtube.com/channel/UCzkqOdzxj4wY7BmWdXWueoA
var part2 = 'snippet,contentDetails,statistics';
var params2 = {'id': channelID};
var response2 = YouTube.Channels.list(part2, params2);
var channel = response2.items[0];
var subscribers = channel.statistics.subscriberCount;
var videos = channel.statistics.videoCount;
var views = channel.statistics.viewCount;
var videoTitle = 'This Channel Has ' + subscribers + ' Subscribers, ' + videos + ' Videos and ' + views + ' Views!';
video.snippet.title = videoTitle;
try{
YouTube.Videos.update(video, part);
}catch(e){
}
}
Thank you to my tier 2 and tier 3 members!
Xobot - https://www.youtube.com/channel/UCFshYLIZjee0LDUmq-nFXGA
DeSmikkelaar - https://youtu.be/o-pWI4T_6Lc
Calvin Evers - https://www.twitch.tv/kwaadmc
Guszeira - https://www.youtube.com/channel/UCujGvisNW6Mxrd0GkjnHqTA
march3258 - https://www.youtube.com/channel/UCkYQ4j_1SQYPWd_B520syBA
THE TURTLE KING - https://www.youtube.com/channel/UC_UvzNudGdCfEw3gcFAWOqg
👕Buy My Mug or Merch 🡆 https://teespring.com/stores/maxstuff
🧡Become a member 🡆 https://www.youtube.com/channel/UCzkqOdzxj4wY7BmWdXWueoA/join
👍Subscribe to my channel 🡆 http://www.youtube.com/channel/UCzkqOdzxj4wY7BmWdXWueoA?sub_confirmation=1
***********************************
💻Youtube 🡆 https://www.youtube.com/c/maxstuff
🎮Discord 🡆 https://discord.gg/SWUu3dr
🔷Twitter 🡆 https://twitter.com/Mario_Hierio
🧡Reddit 🡆 https://www.reddit.com/r/MaxStuffSubmissions/
***********************************
#googlescript #updatingtitle #subscribers