'+pages+'');
$('.stream > div:odd').addClass('bgr_color');
updateHeight('#history');
});
window.activateTabArea = ensure(function(tab, areas){
var parsed = false;
var parts = (areas || '').split('/');
window.fsonload = $.inArray('fs', parts) >= 0;
if(fsonload){
parts.splice(parts.indexOf('fs'), 1);
}
var replayMode = false;
if($.inArray('replay', parts)>=0){
replayMode = 'replay';
}
var noSoundMode = false;
if($.inArray('nosound', parts)>=0){
noSoundMode = 'nosound';
}
if($.inArray('ns', parts)>=0){
noSoundMode = 'ns';
}
var previewMode = null;
if($.inArray('p', parts)>=0){
previewMode = 'p';
}
if($.inArray('preview', parts)>=0){
previewMode = 'preview';
}
if($.inArray('repeat', parts)>=0){
replayMode = 'repeat';
}
if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){
replayMode = 'r';
}
if(replayMode){
parts.splice(parts.indexOf(replayMode), 1);
}
if(noSoundMode){
parts.splice(parts.indexOf(noSoundMode), 1);
}
if(previewMode){
parts.splice(parts.indexOf(previewMode), 1);
}
if(previewMode){
if(!parts.length){
parts = ['1-14', '999:59'];
}
}
var area = parts[0];
if(tab == 'history' && false){
var page = parseInt(area || '1') || 1;
$.ajax({
url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1),
dataType: 'jsonp',
success: function(response){
$ensure(function(){
renderHistory(response, page);
});
}
});
return true;
}
if(tab == 'global_history' && false){
var page = parseInt(area || '1') || 1;
globalHistory.fetchStream(page, '', function(){
updateHeight('#global_history');
});
return true;
}
if(tab == 'my_playlists' && false){
var page = parseInt(area || '1') || 1;
myPlaylists.fetchStream(page, '', function(){
updateHeight('#my_playlists');
});
return true;
}
if(tab == 'my_videos' && false){
var page = parseInt(area || '1') || 1;
myVideos.fetchStream(page, '', function(){
updateHeight('#my_videos');
});
return true;
}
if(tab == 'related_sites' && areas && matchPosition(areas)){
var seconds = parsePosition(areas);
scrollRelated(seconds);
return false;
}
if(matchPosition(area) || matchAction(area)){
parts.unshift('1');
area = parts[0];
}
if(tab == 'expand' && area && area.match(/\d+/)) {
var num = parseInt(area);
if(num < 100){
//FIX ME. Load news page with ajax here
}
else if(num > 1900){
//FIX ME. Load timeline page with ajax here
}
}
else if(tab.match(/^playlist\d+$/)){
var playerId = parseInt(tab.substring(8));
var vp = videoplayers[playerId];
window.descriptionsholder = $('.descriptionsplace');
if(!vp) return; // why? no player?
if(replayMode){
$('.replaycurrent'+playerId).attr('checked', true);
vp.setReplayCurrent(true);
}
var playQueue = [];
window.playQueue = playQueue;
var playQueuePosition = 0;
var playShouldStart = null;
var playShouldStop = null;
var parseList = function(x){
var items = x.split(/;|,/g);
var results = [];
for (i in items){
try{
var action = parseAction(vp, items[i]);
if(!action.video){
if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]);
}else{
results.push(action);
}
}catch(e){
if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]);
}
}
return results;
};
var scrollToPlaylistPosition = function(vp){
var ppos = vp.getPlaylistPosition();
var el = vp.playlistContainer.find('>li').eq(ppos);
var par = el.closest('.playlist_scrollarea');
par.scrollTop(el.offset().top-par.height()/2);
}
var updateVolumeState = function(){
if(noSoundMode){
if(noSoundMode == 'turn-on'){
clog("Sound is on, vsid="+vp.vsid);
vp.setVolumeUnMute();
noSoundMode = false;
}else{
clog("Sound is off, vsid="+vp.vsid);
vp.setVolumeMute();
noSoundMode = 'turn-on';
}
}
}
var playQueueUpdate = function(){
var playPosition = playQueue[playQueuePosition];
vp.playFromPlaylist(playPosition.video);
scrollToPlaylistPosition(vp);
playShouldStart = playPosition.start;
playShouldStop = playPosition.stop;
};
var playQueueAdvancePosition = function(){
clog("Advancing play position...");
playQueuePosition ++;
while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){
playQueuePosition ++;
}
if(playQueuePosition < playQueue.length){
playQueueUpdate();
}else if(vp.getReplayCurrent()){
playQueuePosition = 0;
playQueueUpdate();
vp.seekTo(playShouldStart);
vp.playVideo();
}else{
vp.pauseVideo();
playShouldStop = null;
playShouldStart = null;
}
};
function loadMoreVideos(playerId, vp, start, finish, callback){
var playlistInfo = playlists[playerId-1];
if(playlistInfo.loading >= finish) return;
playlistInfo.loading = finish;
$.ajax({
url: '/api/upge/cheetah-photo-search/query_videos2',
dataType: 'json',
data: {
query: playlistInfo.query,
orderby: playlistInfo.orderby,
start: start,
count: finish-start
},
success: function(response){
var pl = vp.getPlaylist().slice(0);
pl.push.apply(pl, response);
vp.setPlaylist(pl);
callback();
}
});
}
if(parts.length == 1 && matchDash(parts[0])){
var pl = vp.getActualPlaylist();
var vids = parseDash(parts[0]);
parts = [];
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': null
})
}
if(vids.length){
if(vids[vids.length-1]-1>=pl.length){
loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){
if(fsonload){
activateTabArea(tab, parts[0]+'/fs');
}else{
activateTabArea(tab, parts[0]);
}
var pls = vp.getPlaylist();
vp.playFromPlaylist(pls[pls.length-1]);
vp.playVideo();
scrollToPlaylistPosition(vp);
});
return true;
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
playShouldStart = 0;
}
}
if(previewMode){
var vids = [];
var dur = 0;
var pl = vp.getActualPlaylist();
area = parts[0];
if(parts.length == 1 && matchPosition(parts[0])){
vids = parseDash('1-'+pl.length);
dur = parsePosition(parts[0]);
parts = [];
}else
if(parts.length == 1 && matchDash(parts[0])){
vids = parseDash(parts[0]);
dur = parsePosition("999:59");
parts = [];
}
if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){
vids = parseDash(parts[0]);
dur = parsePosition(parts[1]);
parts = [];
}
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': dur
})
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}
if(parts.length>1){
for(var i = 0; i < parts.length; i++){
var sel = findMatchingVideo(vp, parts[i]);
if(sel){
playQueue.push({
'video': sel,
'start': 0,
'stop': null
})
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}else if(area){
var sel = findMatchingVideo(vp, area);
if(sel){
vp.playFromPlaylist(sel);
playShouldStart = 0;
parsed = true;
}
}
if(fsonload || replayMode){
playShouldStart = 0;
}
if(document.location.search.match('at=|queue=')){
var opts = document.location.search.replace(/^\?/,'').split(/&/g);
for(var o in opts){
if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){
playShouldStart = parsePosition(opts[o].substr(3))
}
if(opts[o].match(/^queue=/)){
playQueue = parseList(opts[o].substr(6));
if(playQueue){
playQueuePosition = 0;
playQueueUpdate();
}
}
}
}
if(matchPosition(parts[1])){
playShouldStart = parsePosition(parts[1]);
parsed = true;
}
if(matchAction(parts[1])){
var action = parseAction(vp, area+'/'+parts[1]);
playShouldStart = action.start;
playShouldStop = action.stop;
parsed = true;
}
if(playShouldStart !== null && !playQueue.length){
playQueue.push({
video: vp.getCurrentVideo(),
start: playShouldStart,
stop: playShouldStop
});
}
if(playShouldStart != null){
setInterval(function(){
if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){
playShouldStop = null;
if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){
playQueueAdvancePosition();
}else{
playShouldStart = null;
}
}
}, 500);
vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){
if(state == 'ended'){ // advance to the next video
playQueueAdvancePosition();
}
});
vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){
if(state){
updateVolumeState();
if(playShouldStart !== null){
vp.seekTo(playShouldStart);
playShouldStart = null;
}else{
playShouldStop = null; // someone started other video, stop playing from playQueue
}
}
if(fsonload) {
triggerFullscreen(playerId); fsonload = false;
}
});
}
}
else if(tab.match(/^wiki\d+$/)){
if(firstTimeActivate){
load_wiki($('#'+tab), function(){
if(area){
var areaNode = $('#'+area);
if(areaNode.length>0){
$('html, body').scrollTop(areaNode.offset().top + 10);
return true;
}
}
});
}
}
return parsed;
})
window.activateTab = ensure(function(tab, area){
window.activeArea = null;
if(tab == 'import_videos'){
if(area){
import_videos(area);
}else{
start_import();
}
return true;
}
if(tab == 'chat'){
update_chat_position($('.chat').eq(0));
window.activeArea = 'chat';
jQuery('.tabtrigger').offscreentabs('activateTab', 'chat');
return true;
}
if(tab in rev_names){
tab = rev_names[tab];
}
if(tab.match(':')){ return false; }
var sup = $('ul li a[id=#'+tab+']');
if(sup && sup.length>0){
window.activeArea = area;
sup.first().click();
if(!window.activateTabArea(tab, area)){
window.activeArea = null;
}
window.activeArea = null;
return true;
}else{
var have_tabs = $('#playlist_menu li').length;
if(tab.match(/^playlists?\d+$/)){
var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs;
if(to_add>0 && have_tabs){
add_more_videos(to_add);
return true;
}
}
}
return false;
});
window.currentPath = ensure(function(){
return window.lastHistory.replace(basepath, '').split('?')[0];
});
window.main_tab = window.main_tab || 'videos';
window.addHistory = ensure(function(path){
if(window.console && console.log) console.log("Adding to history: "+path);
if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = basepath;
} else if( path.match('^'+main_tab+'/') ){
path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/');
} else {
path = basepath + '/' + path.replace('--','/');
}
if(document.location.search){
path += document.location.search;
}
if(window.lastHistory) {
history.pushState(null, null, path);
}
else if(window.lastHistory != path){
history.replaceState(null, null, path);
window.lastHistory = path;
}
}
else{
path = path.replace('--','/');
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = '';
}
if(window.lastHistory != '/'+path){
window.location.hash = path? '/'+path : '';
window.lastHistory = '/'+path;
}
}
});
$('.tabtrigger li a').live('click', ensure(function() {
var tab = $(this).attr('id');
if(tab.substring(0,1) == '#'){
var name = tab.substring(1);
if(name in menu_names){
name = menu_names[name][0];
}
realTab = rev_names[name];
$('#'+realTab).show();
if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:''));
var path = name;
if(window.activeArea){
path = path + '/' + window.activeArea;
}
if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){
$('.multiple-playlists').show();
$('.related_playlist').show();
$('.longest_videos_playlist').show();
}else {
$('.multiple-playlists').hide();
$('.related_playlist').hide();
$('.longest_videos_playlist').hide();
}
// start the related script only when the tab is on screen showing
if (tab.match(/related_sites/)) {
if (mc) {
mc.startCredits();
}
}
window.activeTab = realTab;
addHistory(path);
setTimeout(ensure(function(){
if(tab.match(/language--/)){
$('.tabtrigger').offscreentabs('activateTab', 'language');
}
if(tab.match(/weather/)) {
$('.tabtrigger').offscreentabs('activateTab', 'weather');
loadContinent();
}
updateMenus(tab);
updateHeight();
}), 10);
}
return false;
}));
});
-->
YouTube's NEW Channel About Section!
YouTube has rolled out a new update to the channel page: the new Channel About Section! YouTube has removed the old channel about tab, and replaced the channel bio directly under the username on the main channel page. Now all you need to do is click it to see the full channel about description, channel links to other platforms, join date, and channel view count. Explore this new YouTube feature here, and my thoughts on how it organizes and simplified the channel page for the better. This is the new YouTube about section!
LINKS
Timeworks News: https://www.youtube.com/playlist?list=PLTTASUq6isfty27ChjyZeA9zVTNsCfOiE
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord....
published: 29 Mar 2024
The Countdown Mystery Has Been REVEALED!
The mystery of the Countdown YouTube channel has been solved! This channel is Counting down to something, as they post a video every day with a new number, decreasing to 0. The mystery is deeper this time around, as each new video has random characters in the description that, once translated, lead to hidden unlisted videos. This Countdown mystery is a whole lot deeper, but in this video at day 69, we've cracked the code. In this video, I reveal the secrets of the Countdown channel, and tell you what the random characters mean, and what it is leading to. Will this result in another Countdown Rick Roll? Why is it that this channel is counting down to something? What is the YouTube Countdown channel? Explore this mystery with me, as I answer all these questions...
LINKS
Timeworks Detective ...
published: 10 Jun 2024
MrBeast Now Has Videos on Chinese YouTube!?
MrBeast has expanded his channel's reach to Chinese audiences by joining Bilibili, which is the equivalent of YouTube in China. Since YouTube is banned in the country, this new MrBeast channel allows him to tap into a new audience. The MrBeast channel on Chinese YouTube has his videos with Chinese subtitles, making this MrBeast Chinese dub available to a lot more people! In this video we look at this Mrbeast Chinese channel and go over some of his videos on this platform, because Mrbeast on Chinese YouTube was something nobody expected. So explore these MrBeast Chinese videos with me here!
LINKS
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Stu...
published: 26 May 2024
The Downfall of Timeworks: Falling off
The Downfall of Timeworks: Falling off
What happened to Timeworks? His channel was doing well way back in 2020 when he was averaging 1,000,000 views only starting to realize that his channel started to meet its decline in 2021. Not to mention that he was also late to every news he would discuss a topic on his channel in recent months. What happened?
Today, we'll be explaining not only why people started to become disinterested in his content but we're also going to be talking about the problem with his content
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Let's get to 1,000 subscribers: https://youtube.com/channel/UCl_Hw08x...
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Music:
Heaven an...
published: 31 Dec 2022
Watch This Video In 2x Speed ONLY!
Only watch this video in 2x speed! This video has been edited so you can only watch this video in 2x speed and in 0.5x speed. Watch the video and follow my instructions!
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
Watch this video in 2x speed only! You can only watch this video in 2x speed, but why? This video uses the YouTube speed feature, so follow my instructions in the video! Why can you only watch in 2x speed? What is the YouTube speed control feature? What is the 2x speed video on YouTube? Find out in this video and see...
LINKS
Instagram:...
published: 20 Sep 2021
What Is The OLDEST Video With 0 Views?
Have you ever wondered what is the oldest video on YouTube with 0 views? Today we explore YouTube videos with no views that are really old, going back to early days on YouTube. We take a look at the least viewed YouTube videos and uncover the history behind them. From the oldest video with 0 views to the least viewed video on YouTube, we look at some hidden gems. I find the oldest video with no views and shed light on the least viewed videos in all of YouTube history! So if you're curious about 0 views on YouTube and want to see the oldest video ever on YouTube, watch as I show you videos with 0 views!
LINKS
The Timeworks Chronicles: https://www.youtube.com/playlist?list=PLTTASUq6isfsklvRoeT7ILFxM96N6LvJt
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/...
published: 27 Mar 2024
The Countdown Channel FINALLY Hit 0! (what happened...)
The mystery YouTube countdown channel finally hit 0 days after counting down for 100 days... except it ended up being on April Fools' day. So, what was day 0? What has this countdown channel on YouTube been leading to? Check out my reaction to it, where I show exactly what happened and answer: who is countdown? Who is this YouTube channel counting down? Why is this channel counting down on YouTube? Check it out here...
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Studios: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter....
published: 03 Apr 2022
Here Is The First Channel That Will Reach 1 BILLION Subscribers... (EXPLAINED!)
What will be the first channel to reach 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers very soon, but how?
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
What will be the first channel to hit 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers, and in this video we will answer: when will this channel reach 1 billion subscribers? Will there be a 1 billion subscribers YouTube play button? What is the 1 billion subscribers play button?
LINKS
Instagr...
published: 18 Jul 2021
GOD WORKS WITH TIME
GOD WORKS WITH TIME
published: 24 Jun 2024
Why My Channel Is A Complete SECRET To My Family... (Explained!)
My YouTube channel is a secret to my entire family, and I often get asked why. In this video, I explain why my channel is a secret and how I have been able to keep this going for years.
Vlogs: https://www.youtube.com/playlist?list=PLTTASUq6isfuFSlMR6HJZd1fXKwcp-sAh
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
My YouTube channel is a complete secret to my entire family, which is crazy because I have over 500K subscribers and have still managed to keep it a secret. In this video I explain why I have a secret YouTube channel and all the precautions I have to take to make sure my channel remains a secret! Why am I a secret YouTuber? Find out i...
published: 10 Oct 2021
4:14
YouTube's NEW Channel About Section!
YouTube has rolled out a new update to the channel page: the new Channel About Section! YouTube has removed the old channel about tab, and replaced the channel ...
YouTube has rolled out a new update to the channel page: the new Channel About Section! YouTube has removed the old channel about tab, and replaced the channel bio directly under the username on the main channel page. Now all you need to do is click it to see the full channel about description, channel links to other platforms, join date, and channel view count. Explore this new YouTube feature here, and my thoughts on how it organizes and simplified the channel page for the better. This is the new YouTube about section!
LINKS
Timeworks News: https://www.youtube.com/playlist?list=PLTTASUq6isfty27ChjyZeA9zVTNsCfOiE
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
X: https://www.x.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@PewDiePie @MrBeast
MrBeast: https://www.youtube.com/@MrBeast
PewDiePie: https://www.youtube.com/@PewDiePie
MrBeast Wayback Machine: https://web.archive.org/web/20230000000000*/https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA/about
#YouTube #YouTubeNews #Feature #MrBeast #Timeworks #TimeworksStudios
© 2023 - 2024 Timeworks Studios
TW-3190 // Fly On
https://wn.com/Youtube's_New_Channel_About_Section
YouTube has rolled out a new update to the channel page: the new Channel About Section! YouTube has removed the old channel about tab, and replaced the channel bio directly under the username on the main channel page. Now all you need to do is click it to see the full channel about description, channel links to other platforms, join date, and channel view count. Explore this new YouTube feature here, and my thoughts on how it organizes and simplified the channel page for the better. This is the new YouTube about section!
LINKS
Timeworks News: https://www.youtube.com/playlist?list=PLTTASUq6isfty27ChjyZeA9zVTNsCfOiE
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
X: https://www.x.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@PewDiePie @MrBeast
MrBeast: https://www.youtube.com/@MrBeast
PewDiePie: https://www.youtube.com/@PewDiePie
MrBeast Wayback Machine: https://web.archive.org/web/20230000000000*/https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA/about
#YouTube #YouTubeNews #Feature #MrBeast #Timeworks #TimeworksStudios
© 2023 - 2024 Timeworks Studios
TW-3190 // Fly On
published: 29 Mar 2024
views: 12852
7:52
The Countdown Mystery Has Been REVEALED!
The mystery of the Countdown YouTube channel has been solved! This channel is Counting down to something, as they post a video every day with a new number, decr...
The mystery of the Countdown YouTube channel has been solved! This channel is Counting down to something, as they post a video every day with a new number, decreasing to 0. The mystery is deeper this time around, as each new video has random characters in the description that, once translated, lead to hidden unlisted videos. This Countdown mystery is a whole lot deeper, but in this video at day 69, we've cracked the code. In this video, I reveal the secrets of the Countdown channel, and tell you what the random characters mean, and what it is leading to. Will this result in another Countdown Rick Roll? Why is it that this channel is counting down to something? What is the YouTube Countdown channel? Explore this mystery with me, as I answer all these questions...
LINKS
Timeworks Detective Agency: https://www.youtube.com/playlist?list=PLTTASUq6isft8l4LGAfKXAw9M-s-AJri0
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
Twitter: https://www.twitter.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@count_down
Countdown 69: https://www.youtube.com/watch?v=laiqhZxd0XU
Countdown .-: https://www.youtube.com/watch?v=613jb8t8Ybg
Text to
ASCII : https://www.duplichecker.com/text-to-ascii.php
Countdown ARG Unlisted Videos: https://www.youtube.com/playlist?list=PL5Y8yo2AZE3E-I5dKD8djw4v46wKOoWgG
Countdown ARG Tool: https://sqdldev.github.io/countdown-arg-tool/
Line Break Removal Tool: https://www.textfixer.com/tools/remove-line-breaks.php
#Countdown #Mystery #YouTube #Timeworks #TimeworksStudios
© 2024 Timeworks Studios
TW-3308 // Fly On
https://wn.com/The_Countdown_Mystery_Has_Been_Revealed
The mystery of the Countdown YouTube channel has been solved! This channel is Counting down to something, as they post a video every day with a new number, decreasing to 0. The mystery is deeper this time around, as each new video has random characters in the description that, once translated, lead to hidden unlisted videos. This Countdown mystery is a whole lot deeper, but in this video at day 69, we've cracked the code. In this video, I reveal the secrets of the Countdown channel, and tell you what the random characters mean, and what it is leading to. Will this result in another Countdown Rick Roll? Why is it that this channel is counting down to something? What is the YouTube Countdown channel? Explore this mystery with me, as I answer all these questions...
LINKS
Timeworks Detective Agency: https://www.youtube.com/playlist?list=PLTTASUq6isft8l4LGAfKXAw9M-s-AJri0
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
Twitter: https://www.twitter.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@count_down
Countdown 69: https://www.youtube.com/watch?v=laiqhZxd0XU
Countdown .-: https://www.youtube.com/watch?v=613jb8t8Ybg
Text to
ASCII : https://www.duplichecker.com/text-to-ascii.php
Countdown ARG Unlisted Videos: https://www.youtube.com/playlist?list=PL5Y8yo2AZE3E-I5dKD8djw4v46wKOoWgG
Countdown ARG Tool: https://sqdldev.github.io/countdown-arg-tool/
Line Break Removal Tool: https://www.textfixer.com/tools/remove-line-breaks.php
#Countdown #Mystery #YouTube #Timeworks #TimeworksStudios
© 2024 Timeworks Studios
TW-3308 // Fly On
published: 10 Jun 2024
views: 233420
6:37
MrBeast Now Has Videos on Chinese YouTube!?
MrBeast has expanded his channel's reach to Chinese audiences by joining Bilibili, which is the equivalent of YouTube in China. Since YouTube is banned in the c...
MrBeast has expanded his channel's reach to Chinese audiences by joining Bilibili, which is the equivalent of YouTube in China. Since YouTube is banned in the country, this new MrBeast channel allows him to tap into a new audience. The MrBeast channel on Chinese YouTube has his videos with Chinese subtitles, making this MrBeast Chinese dub available to a lot more people! In this video we look at this Mrbeast Chinese channel and go over some of his videos on this platform, because Mrbeast on Chinese YouTube was something nobody expected. So explore these MrBeast Chinese videos with me here!
LINKS
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
Twitter: https://www.twitter.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@MrBeast & shown by @MrShark15000
MrBeast Bilibili in China: https://www.bnnbloomberg.ca/youtube-star-mrbeast-debuts-on-china-s-internet-with-bilibili-1.2025562
MrBeast bilibili page (MrBeast Chinese YouTube channel): https://space.bilibili.com/1027737427
#MrBeast #MrBeastChina #MrBeastNews #Timeworks #TimeworksStudios
© 2024 Timeworks Studios
TW-3296 // Fly On
https://wn.com/Mrbeast_Now_Has_Videos_On_Chinese_Youtube
MrBeast has expanded his channel's reach to Chinese audiences by joining Bilibili, which is the equivalent of YouTube in China. Since YouTube is banned in the country, this new MrBeast channel allows him to tap into a new audience. The MrBeast channel on Chinese YouTube has his videos with Chinese subtitles, making this MrBeast Chinese dub available to a lot more people! In this video we look at this Mrbeast Chinese channel and go over some of his videos on this platform, because Mrbeast on Chinese YouTube was something nobody expected. So explore these MrBeast Chinese videos with me here!
LINKS
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
Twitter: https://www.twitter.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@MrBeast & shown by @MrShark15000
MrBeast Bilibili in China: https://www.bnnbloomberg.ca/youtube-star-mrbeast-debuts-on-china-s-internet-with-bilibili-1.2025562
MrBeast bilibili page (MrBeast Chinese YouTube channel): https://space.bilibili.com/1027737427
#MrBeast #MrBeastChina #MrBeastNews #Timeworks #TimeworksStudios
© 2024 Timeworks Studios
TW-3296 // Fly On
published: 26 May 2024
views: 40389
5:16
The Downfall of Timeworks: Falling off
The Downfall of Timeworks: Falling off
What happened to Timeworks? His channel was doing well way back in 2020 when he was averaging 1,000,000 views only start...
The Downfall of Timeworks: Falling off
What happened to Timeworks? His channel was doing well way back in 2020 when he was averaging 1,000,000 views only starting to realize that his channel started to meet its decline in 2021. Not to mention that he was also late to every news he would discuss a topic on his channel in recent months. What happened?
Today, we'll be explaining not only why people started to become disinterested in his content but we're also going to be talking about the problem with his content
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Let's get to 1,000 subscribers: https://youtube.com/channel/UCl_Hw08x...
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Music:
Heaven and Hell: https://www.youtube.com/watch?v=IL5Ah...
Roland jones - she want a birkin w/ soudiere
Watch: https://www.youtube.com/watch?v=ssWOV...
LEMMiNO - Siberian (BGM)
https://www.youtube.com/watch?v=5py6E...
CC BY-SA 4.0
LEMMiNO - Melancholy (BGM)
https://www.youtube.com/watch?v=B_DvUY9DeEo
CC BY-SA 4.0
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
https://wn.com/The_Downfall_Of_Timeworks_Falling_Off
The Downfall of Timeworks: Falling off
What happened to Timeworks? His channel was doing well way back in 2020 when he was averaging 1,000,000 views only starting to realize that his channel started to meet its decline in 2021. Not to mention that he was also late to every news he would discuss a topic on his channel in recent months. What happened?
Today, we'll be explaining not only why people started to become disinterested in his content but we're also going to be talking about the problem with his content
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Let's get to 1,000 subscribers: https://youtube.com/channel/UCl_Hw08x...
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Music:
Heaven and Hell: https://www.youtube.com/watch?v=IL5Ah...
Roland jones - she want a birkin w/ soudiere
Watch: https://www.youtube.com/watch?v=ssWOV...
LEMMiNO - Siberian (BGM)
https://www.youtube.com/watch?v=5py6E...
CC BY-SA 4.0
LEMMiNO - Melancholy (BGM)
https://www.youtube.com/watch?v=B_DvUY9DeEo
CC BY-SA 4.0
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
published: 31 Dec 2022
views: 6120
1:14
Watch This Video In 2x Speed ONLY!
Only watch this video in 2x speed! This video has been edited so you can only watch this video in 2x speed and in 0.5x speed. Watch the video and follow my inst...
Only watch this video in 2x speed! This video has been edited so you can only watch this video in 2x speed and in 0.5x speed. Watch the video and follow my instructions!
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
Watch this video in 2x speed only! You can only watch this video in 2x speed, but why? This video uses the YouTube speed feature, so follow my instructions in the video! Why can you only watch in 2x speed? What is the YouTube speed control feature? What is the 2x speed video on YouTube? Find out in this video and see...
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Full explanation: https://www.youtube.com/watch?v=chmT6e-WgyM
#2xSpeed #YouTubeSpeed #YouTubeEasterEgg #Timeworks
© 2021 Timeworks Studios
TW-1946 ~ Fly On ~ 444
https://wn.com/Watch_This_Video_In_2X_Speed_Only
Only watch this video in 2x speed! This video has been edited so you can only watch this video in 2x speed and in 0.5x speed. Watch the video and follow my instructions!
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
Watch this video in 2x speed only! You can only watch this video in 2x speed, but why? This video uses the YouTube speed feature, so follow my instructions in the video! Why can you only watch in 2x speed? What is the YouTube speed control feature? What is the 2x speed video on YouTube? Find out in this video and see...
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Full explanation: https://www.youtube.com/watch?v=chmT6e-WgyM
#2xSpeed #YouTubeSpeed #YouTubeEasterEgg #Timeworks
© 2021 Timeworks Studios
TW-1946 ~ Fly On ~ 444
published: 20 Sep 2021
views: 1937658
6:51
What Is The OLDEST Video With 0 Views?
Have you ever wondered what is the oldest video on YouTube with 0 views? Today we explore YouTube videos with no views that are really old, going back to early ...
Have you ever wondered what is the oldest video on YouTube with 0 views? Today we explore YouTube videos with no views that are really old, going back to early days on YouTube. We take a look at the least viewed YouTube videos and uncover the history behind them. From the oldest video with 0 views to the least viewed video on YouTube, we look at some hidden gems. I find the oldest video with no views and shed light on the least viewed videos in all of YouTube history! So if you're curious about 0 views on YouTube and want to see the oldest video ever on YouTube, watch as I show you videos with 0 views!
LINKS
The Timeworks Chronicles: https://www.youtube.com/playlist?list=PLTTASUq6isfsklvRoeT7ILFxM96N6LvJt
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
X: https://www.x.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Chomping down (Shown by Arnold Franklin): https://www.youtube.com/watch?v=lDIp6bsITZc
Helicopter Flight - (WilliamCrowther via Instagram): https://www.youtube.com/watch?v=TmKqwB7GgAM
Jarocho musicians: https://www.youtube.com/watch?v=89Chk8cTbv4
Jethro Tull en Granada: https://www.youtube.com/watch?v=rQpNsTzbgqM
Me: https://www.youtube.com/watch?v=JIQGX0KvD0k
my first digital video: https://www.youtube.com/watch?v=sZMmWL4ACQA
Pudding: https://www.youtube.com/watch?v=TodKnhak1ek
starbreakdance_amyspear.com.mov: https://www.youtube.com/watch?v=RbuzK1x66DM
The Great Ebert Shake: https://www.youtube.com/watch?v=xuOPa89Kaq8
TTC: https://www.youtube.com/watch?v=w4F9qeRldSM
高速公路沿路: https://www.youtube.com/watch?v=JDffvXR3ECY
#OldestLeastViewed #OldestVideo #NoViews #0Views #Timeworks #TimeworksStudios
© 2023 - 2024 Timeworks Studios
TW-3195 // Fly On
https://wn.com/What_Is_The_Oldest_Video_With_0_Views
Have you ever wondered what is the oldest video on YouTube with 0 views? Today we explore YouTube videos with no views that are really old, going back to early days on YouTube. We take a look at the least viewed YouTube videos and uncover the history behind them. From the oldest video with 0 views to the least viewed video on YouTube, we look at some hidden gems. I find the oldest video with no views and shed light on the least viewed videos in all of YouTube history! So if you're curious about 0 views on YouTube and want to see the oldest video ever on YouTube, watch as I show you videos with 0 views!
LINKS
The Timeworks Chronicles: https://www.youtube.com/playlist?list=PLTTASUq6isfsklvRoeT7ILFxM96N6LvJt
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
X: https://www.x.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Chomping down (Shown by Arnold Franklin): https://www.youtube.com/watch?v=lDIp6bsITZc
Helicopter Flight - (WilliamCrowther via Instagram): https://www.youtube.com/watch?v=TmKqwB7GgAM
Jarocho musicians: https://www.youtube.com/watch?v=89Chk8cTbv4
Jethro Tull en Granada: https://www.youtube.com/watch?v=rQpNsTzbgqM
Me: https://www.youtube.com/watch?v=JIQGX0KvD0k
my first digital video: https://www.youtube.com/watch?v=sZMmWL4ACQA
Pudding: https://www.youtube.com/watch?v=TodKnhak1ek
starbreakdance_amyspear.com.mov: https://www.youtube.com/watch?v=RbuzK1x66DM
The Great Ebert Shake: https://www.youtube.com/watch?v=xuOPa89Kaq8
TTC: https://www.youtube.com/watch?v=w4F9qeRldSM
高速公路沿路: https://www.youtube.com/watch?v=JDffvXR3ECY
#OldestLeastViewed #OldestVideo #NoViews #0Views #Timeworks #TimeworksStudios
© 2023 - 2024 Timeworks Studios
TW-3195 // Fly On
published: 27 Mar 2024
views: 24124
2:39
The Countdown Channel FINALLY Hit 0! (what happened...)
The mystery YouTube countdown channel finally hit 0 days after counting down for 100 days... except it ended up being on April Fools' day. So, what was day 0? W...
The mystery YouTube countdown channel finally hit 0 days after counting down for 100 days... except it ended up being on April Fools' day. So, what was day 0? What has this countdown channel on YouTube been leading to? Check out my reaction to it, where I show exactly what happened and answer: who is countdown? Who is this YouTube channel counting down? Why is this channel counting down on YouTube? Check it out here...
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Studios: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
countdown 0 last video April Fools: https://www.youtube.com/watch?v=0NLnGJnGBcc
countdown YouTube channel: https://www.youtube.com/channel/UC7nm9Nzo12SDQzrxJS8xdVg
#countdown #AprilFools #YouTubeMystery #Timeworks #FlyOn
© 2022 Timeworks Studios
TW-2312 ~ Fly On ~ 222
https://wn.com/The_Countdown_Channel_Finally_Hit_0_(What_Happened...)
The mystery YouTube countdown channel finally hit 0 days after counting down for 100 days... except it ended up being on April Fools' day. So, what was day 0? What has this countdown channel on YouTube been leading to? Check out my reaction to it, where I show exactly what happened and answer: who is countdown? Who is this YouTube channel counting down? Why is this channel counting down on YouTube? Check it out here...
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Studios: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
countdown 0 last video April Fools: https://www.youtube.com/watch?v=0NLnGJnGBcc
countdown YouTube channel: https://www.youtube.com/channel/UC7nm9Nzo12SDQzrxJS8xdVg
#countdown #AprilFools #YouTubeMystery #Timeworks #FlyOn
© 2022 Timeworks Studios
TW-2312 ~ Fly On ~ 222
published: 03 Apr 2022
views: 352558
4:45
Here Is The First Channel That Will Reach 1 BILLION Subscribers... (EXPLAINED!)
What will be the first channel to reach 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers very soon, but how...
What will be the first channel to reach 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers very soon, but how?
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
What will be the first channel to hit 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers, and in this video we will answer: when will this channel reach 1 billion subscribers? Will there be a 1 billion subscribers YouTube play button? What is the 1 billion subscribers play button?
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Shown by: https://www.youtube.com/channel/UCXQfHz2YIZTB-mBTb_iNt0w
Tsuriki Show (one of the first projected 1 billion subscribers channels): https://www.youtube.com/c/TsurikiShow
Tsuriki Show Social Blade: https://socialblade.com/youtube/c/tsurikishow/futureprojections/subscribers
MEMBERS
brenbuster2k's Minecraft: https://www.youtube.com/channel/UCFdjJDddUWdz-jwHbBGcZcA
Extgo: https://www.youtube.com/channel/UCAikvo2MNZpCO5k3vEx1fHA
joshuaninja 20: https://www.youtube.com/channel/UCETfkYSH3yt7qwOQBga0NrA
NaseerSucksAtLife: https://www.youtube.com/channel/UCA5GZhc3b9oAHN5Y_6D1zyQ
PINEAPPLE LORD: https://www.youtube.com/channel/UCKkb84hTsj5SXDg0WZiWBCw
#1BillionSubscribers #Billion #YouTubeSubscribers #Timeworks
© 2021 Timeworks Studios
TW-972 ~ Fly On ~ 222
https://wn.com/Here_Is_The_First_Channel_That_Will_Reach_1_Billion_Subscribers..._(Explained_)
What will be the first channel to reach 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers very soon, but how?
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
What will be the first channel to hit 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers, and in this video we will answer: when will this channel reach 1 billion subscribers? Will there be a 1 billion subscribers YouTube play button? What is the 1 billion subscribers play button?
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Shown by: https://www.youtube.com/channel/UCXQfHz2YIZTB-mBTb_iNt0w
Tsuriki Show (one of the first projected 1 billion subscribers channels): https://www.youtube.com/c/TsurikiShow
Tsuriki Show Social Blade: https://socialblade.com/youtube/c/tsurikishow/futureprojections/subscribers
MEMBERS
brenbuster2k's Minecraft: https://www.youtube.com/channel/UCFdjJDddUWdz-jwHbBGcZcA
Extgo: https://www.youtube.com/channel/UCAikvo2MNZpCO5k3vEx1fHA
joshuaninja 20: https://www.youtube.com/channel/UCETfkYSH3yt7qwOQBga0NrA
NaseerSucksAtLife: https://www.youtube.com/channel/UCA5GZhc3b9oAHN5Y_6D1zyQ
PINEAPPLE LORD: https://www.youtube.com/channel/UCKkb84hTsj5SXDg0WZiWBCw
#1BillionSubscribers #Billion #YouTubeSubscribers #Timeworks
© 2021 Timeworks Studios
TW-972 ~ Fly On ~ 222
published: 18 Jul 2021
views: 641710
10:40
Why My Channel Is A Complete SECRET To My Family... (Explained!)
My YouTube channel is a secret to my entire family, and I often get asked why. In this video, I explain why my channel is a secret and how I have been able to k...
My YouTube channel is a secret to my entire family, and I often get asked why. In this video, I explain why my channel is a secret and how I have been able to keep this going for years.
Vlogs: https://www.youtube.com/playlist?list=PLTTASUq6isfuFSlMR6HJZd1fXKwcp-sAh
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
My YouTube channel is a complete secret to my entire family, which is crazy because I have over 500K subscribers and have still managed to keep it a secret. In this video I explain why I have a secret YouTube channel and all the precautions I have to take to make sure my channel remains a secret! Why am I a secret YouTuber? Find out in this video...
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
#SecretYouTubeChannel #SecretChannel #SecretChannels #Timeworks
© 2021 Timeworks Studios
TW-1987 ~ Fly On ~ 444
https://wn.com/Why_My_Channel_Is_A_Complete_Secret_To_My_Family..._(Explained_)
My YouTube channel is a secret to my entire family, and I often get asked why. In this video, I explain why my channel is a secret and how I have been able to keep this going for years.
Vlogs: https://www.youtube.com/playlist?list=PLTTASUq6isfuFSlMR6HJZd1fXKwcp-sAh
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
My YouTube channel is a complete secret to my entire family, which is crazy because I have over 500K subscribers and have still managed to keep it a secret. In this video I explain why I have a secret YouTube channel and all the precautions I have to take to make sure my channel remains a secret! Why am I a secret YouTuber? Find out in this video...
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
#SecretYouTubeChannel #SecretChannel #SecretChannels #Timeworks
© 2021 Timeworks Studios
TW-1987 ~ Fly On ~ 444
published: 10 Oct 2021
views: 161964
4:14
YouTube's NEW Channel About Section!
YouTube has rolled out a new update to the channel page: the new Channel About Section! Yo...
Play in Full Screen
YouTube's NEW Channel About Section!
YouTube's NEW Channel About Section!
YouTube has rolled out a new update to the channel page: the new Channel About Section! YouTube has removed the old channel about tab, and replaced the channel bio directly under the username on the main channel page. Now all you need to do is click it to see the full channel about description, channel links to other platforms, join date, and channel view count. Explore this new YouTube feature here, and my thoughts on how it organizes and simplified the channel page for the better. This is the new YouTube about section!
LINKS
Timeworks News: https://www.youtube.com/playlist?list=PLTTASUq6isfty27ChjyZeA9zVTNsCfOiE
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
X: https://www.x.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@PewDiePie @MrBeast
MrBeast: https://www.youtube.com/@MrBeast
PewDiePie: https://www.youtube.com/@PewDiePie
MrBeast Wayback Machine: https://web.archive.org/web/20230000000000*/https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA/about
#YouTube #YouTubeNews #Feature #MrBeast #Timeworks #TimeworksStudios
© 2023 - 2024 Timeworks Studios
TW-3190 // Fly On
7:52
The Countdown Mystery Has Been REVEALED!
The mystery of the Countdown YouTube channel has been solved! This channel is Counting dow...
Play in Full Screen
The Countdown Mystery Has Been REVEALED!
The Countdown Mystery Has Been REVEALED!
The mystery of the Countdown YouTube channel has been solved! This channel is Counting down to something, as they post a video every day with a new number, decreasing to 0. The mystery is deeper this time around, as each new video has random characters in the description that, once translated, lead to hidden unlisted videos. This Countdown mystery is a whole lot deeper, but in this video at day 69, we've cracked the code. In this video, I reveal the secrets of the Countdown channel, and tell you what the random characters mean, and what it is leading to. Will this result in another Countdown Rick Roll? Why is it that this channel is counting down to something? What is the YouTube Countdown channel? Explore this mystery with me, as I answer all these questions...
LINKS
Timeworks Detective Agency: https://www.youtube.com/playlist?list=PLTTASUq6isft8l4LGAfKXAw9M-s-AJri0
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
Twitter: https://www.twitter.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@count_down
Countdown 69: https://www.youtube.com/watch?v=laiqhZxd0XU
Countdown .-: https://www.youtube.com/watch?v=613jb8t8Ybg
Text to
ASCII : https://www.duplichecker.com/text-to-ascii.php
Countdown ARG Unlisted Videos: https://www.youtube.com/playlist?list=PL5Y8yo2AZE3E-I5dKD8djw4v46wKOoWgG
Countdown ARG Tool: https://sqdldev.github.io/countdown-arg-tool/
Line Break Removal Tool: https://www.textfixer.com/tools/remove-line-breaks.php
#Countdown #Mystery #YouTube #Timeworks #TimeworksStudios
© 2024 Timeworks Studios
TW-3308 // Fly On
6:37
MrBeast Now Has Videos on Chinese YouTube!?
MrBeast has expanded his channel's reach to Chinese audiences by joining Bilibili, which i...
Play in Full Screen
MrBeast Now Has Videos on Chinese YouTube!?
MrBeast Now Has Videos on Chinese YouTube!?
MrBeast has expanded his channel's reach to Chinese audiences by joining Bilibili, which is the equivalent of YouTube in China. Since YouTube is banned in the country, this new MrBeast channel allows him to tap into a new audience. The MrBeast channel on Chinese YouTube has his videos with Chinese subtitles, making this MrBeast Chinese dub available to a lot more people! In this video we look at this Mrbeast Chinese channel and go over some of his videos on this platform, because Mrbeast on Chinese YouTube was something nobody expected. So explore these MrBeast Chinese videos with me here!
LINKS
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
Twitter: https://www.twitter.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
@MrBeast & shown by @MrShark15000
MrBeast Bilibili in China: https://www.bnnbloomberg.ca/youtube-star-mrbeast-debuts-on-china-s-internet-with-bilibili-1.2025562
MrBeast bilibili page (MrBeast Chinese YouTube channel): https://space.bilibili.com/1027737427
#MrBeast #MrBeastChina #MrBeastNews #Timeworks #TimeworksStudios
© 2024 Timeworks Studios
TW-3296 // Fly On
5:16
The Downfall of Timeworks: Falling off
The Downfall of Timeworks: Falling off
What happened to Timeworks? His channel was doing ...
Play in Full Screen
The Downfall of Timeworks: Falling off
The Downfall of Timeworks: Falling off
The Downfall of Timeworks: Falling off
What happened to Timeworks? His channel was doing well way back in 2020 when he was averaging 1,000,000 views only starting to realize that his channel started to meet its decline in 2021. Not to mention that he was also late to every news he would discuss a topic on his channel in recent months. What happened?
Today, we'll be explaining not only why people started to become disinterested in his content but we're also going to be talking about the problem with his content
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Let's get to 1,000 subscribers: https://youtube.com/channel/UCl_Hw08x...
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Music:
Heaven and Hell: https://www.youtube.com/watch?v=IL5Ah...
Roland jones - she want a birkin w/ soudiere
Watch: https://www.youtube.com/watch?v=ssWOV...
LEMMiNO - Siberian (BGM)
https://www.youtube.com/watch?v=5py6E...
CC BY-SA 4.0
LEMMiNO - Melancholy (BGM)
https://www.youtube.com/watch?v=B_DvUY9DeEo
CC BY-SA 4.0
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
1:14
Watch This Video In 2x Speed ONLY!
Only watch this video in 2x speed! This video has been edited so you can only watch this v...
Play in Full Screen
Watch This Video In 2x Speed ONLY!
Watch This Video In 2x Speed ONLY!
Only watch this video in 2x speed! This video has been edited so you can only watch this video in 2x speed and in 0.5x speed. Watch the video and follow my instructions!
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
Watch this video in 2x speed only! You can only watch this video in 2x speed, but why? This video uses the YouTube speed feature, so follow my instructions in the video! Why can you only watch in 2x speed? What is the YouTube speed control feature? What is the 2x speed video on YouTube? Find out in this video and see...
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Full explanation: https://www.youtube.com/watch?v=chmT6e-WgyM
#2xSpeed #YouTubeSpeed #YouTubeEasterEgg #Timeworks
© 2021 Timeworks Studios
TW-1946 ~ Fly On ~ 444
6:51
What Is The OLDEST Video With 0 Views?
Have you ever wondered what is the oldest video on YouTube with 0 views? Today we explore ...
Play in Full Screen
What Is The OLDEST Video With 0 Views?
What Is The OLDEST Video With 0 Views?
Have you ever wondered what is the oldest video on YouTube with 0 views? Today we explore YouTube videos with no views that are really old, going back to early days on YouTube. We take a look at the least viewed YouTube videos and uncover the history behind them. From the oldest video with 0 views to the least viewed video on YouTube, we look at some hidden gems. I find the oldest video with no views and shed light on the least viewed videos in all of YouTube history! So if you're curious about 0 views on YouTube and want to see the oldest video ever on YouTube, watch as I show you videos with 0 views!
LINKS
The Timeworks Chronicles: https://www.youtube.com/playlist?list=PLTTASUq6isfsklvRoeT7ILFxM96N6LvJt
Merch: https://www.timeworks.shop
Membership: https://www.youtube.com/@Timeworks/join
Timeworks Studios: https://www.timeworksstudios.com
SOCIALS
Discord: https://discord.gg/Timeworks
Instagram: https://www.instagram.com/timeworksstudios
TikTok: https://www.tiktok.com/@timeworksstudios
X: https://www.x.com/TimeworksYT
Snapchat: https://www.snapchat.com/add/timeworksyt
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Chomping down (Shown by Arnold Franklin): https://www.youtube.com/watch?v=lDIp6bsITZc
Helicopter Flight - (WilliamCrowther via Instagram): https://www.youtube.com/watch?v=TmKqwB7GgAM
Jarocho musicians: https://www.youtube.com/watch?v=89Chk8cTbv4
Jethro Tull en Granada: https://www.youtube.com/watch?v=rQpNsTzbgqM
Me: https://www.youtube.com/watch?v=JIQGX0KvD0k
my first digital video: https://www.youtube.com/watch?v=sZMmWL4ACQA
Pudding: https://www.youtube.com/watch?v=TodKnhak1ek
starbreakdance_amyspear.com.mov: https://www.youtube.com/watch?v=RbuzK1x66DM
The Great Ebert Shake: https://www.youtube.com/watch?v=xuOPa89Kaq8
TTC: https://www.youtube.com/watch?v=w4F9qeRldSM
高速公路沿路: https://www.youtube.com/watch?v=JDffvXR3ECY
#OldestLeastViewed #OldestVideo #NoViews #0Views #Timeworks #TimeworksStudios
© 2023 - 2024 Timeworks Studios
TW-3195 // Fly On
2:39
The Countdown Channel FINALLY Hit 0! (what happened...)
The mystery YouTube countdown channel finally hit 0 days after counting down for 100 days....
Play in Full Screen
The Countdown Channel FINALLY Hit 0! (what happened...)
The Countdown Channel FINALLY Hit 0! (what happened...)
The mystery YouTube countdown channel finally hit 0 days after counting down for 100 days... except it ended up being on April Fools' day. So, what was day 0? What has this countdown channel on YouTube been leading to? Check out my reaction to it, where I show exactly what happened and answer: who is countdown? Who is this YouTube channel counting down? Why is this channel counting down on YouTube? Check it out here...
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Studios: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
countdown 0 last video April Fools: https://www.youtube.com/watch?v=0NLnGJnGBcc
countdown YouTube channel: https://www.youtube.com/channel/UC7nm9Nzo12SDQzrxJS8xdVg
#countdown #AprilFools #YouTubeMystery #Timeworks #FlyOn
© 2022 Timeworks Studios
TW-2312 ~ Fly On ~ 222
4:45
Here Is The First Channel That Will Reach 1 BILLION Subscribers... (EXPLAINED!)
What will be the first channel to reach 1 billion subscribers on YouTube? There is a chann...
Play in Full Screen
Here Is The First Channel That Will Reach 1 BILLION Subscribers... (EXPLAINED!)
Here Is The First Channel That Will Reach 1 BILLION Subscribers... (EXPLAINED!)
What will be the first channel to reach 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers very soon, but how?
The Timeworks Show: https://www.youtube.com/playlist?list=PLTTASUq6isfvsGmjQnm8ByMZ07KM2-XaW
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
What will be the first channel to hit 1 billion subscribers on YouTube? There is a channel that is projected to reach 1 billion subscribers, and in this video we will answer: when will this channel reach 1 billion subscribers? Will there be a 1 billion subscribers YouTube play button? What is the 1 billion subscribers play button?
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
CREDITS
Shown by: https://www.youtube.com/channel/UCXQfHz2YIZTB-mBTb_iNt0w
Tsuriki Show (one of the first projected 1 billion subscribers channels): https://www.youtube.com/c/TsurikiShow
Tsuriki Show Social Blade: https://socialblade.com/youtube/c/tsurikishow/futureprojections/subscribers
MEMBERS
brenbuster2k's Minecraft: https://www.youtube.com/channel/UCFdjJDddUWdz-jwHbBGcZcA
Extgo: https://www.youtube.com/channel/UCAikvo2MNZpCO5k3vEx1fHA
joshuaninja 20: https://www.youtube.com/channel/UCETfkYSH3yt7qwOQBga0NrA
NaseerSucksAtLife: https://www.youtube.com/channel/UCA5GZhc3b9oAHN5Y_6D1zyQ
PINEAPPLE LORD: https://www.youtube.com/channel/UCKkb84hTsj5SXDg0WZiWBCw
#1BillionSubscribers #Billion #YouTubeSubscribers #Timeworks
© 2021 Timeworks Studios
TW-972 ~ Fly On ~ 222
0:42
GOD WORKS WITH TIME
GOD WORKS WITH TIME
Play in Full Screen
GOD WORKS WITH TIME
GOD WORKS WITH TIME
GOD WORKS WITH TIME
10:40
Why My Channel Is A Complete SECRET To My Family... (Explained!)
My YouTube channel is a secret to my entire family, and I often get asked why. In this vid...
Play in Full Screen
Why My Channel Is A Complete SECRET To My Family... (Explained!)
Why My Channel Is A Complete SECRET To My Family... (Explained!)
My YouTube channel is a secret to my entire family, and I often get asked why. In this video, I explain why my channel is a secret and how I have been able to keep this going for years.
Vlogs: https://www.youtube.com/playlist?list=PLTTASUq6isfuFSlMR6HJZd1fXKwcp-sAh
Timeworks Website: https://www.timeworksstudios.com/
Timeworks Merchandise: https://www.timeworks.shop
Become a Timeworks Member: https://www.youtube.com/channel/UCv5mo0iXze8aKFjvdp51Fjg/join
My YouTube channel is a complete secret to my entire family, which is crazy because I have over 500K subscribers and have still managed to keep it a secret. In this video I explain why I have a secret YouTube channel and all the precautions I have to take to make sure my channel remains a secret! Why am I a secret YouTuber? Find out in this video...
LINKS
Instagram: https://www.instagram.com/timeworksstudios
Twitter: https://twitter.com/TimeworksYT
Discord: https://discord.gg/Timeworks
Snapchat: https://www.snapchat.com/add/timeworksyt
TikTok: https://www.tiktok.com/@timeworksstudios
Subreddit: https://www.reddit.com/r/TimeworksSubmissions/
Facebook: https://www.facebook.com/TimeworksStudios
#SecretYouTubeChannel #SecretChannel #SecretChannels #Timeworks
© 2021 Timeworks Studios
TW-1987 ~ Fly On ~ 444
');
} else {
var query = elem.find('.keywords').html();
$.ajax({
context: elem,
url: 'https://wn.com/api/upge/cheetah-search-adv/video',
cache: true,
data: {
'query': query
},
dataType: 'jsonp',
success: function(text) {
if (text.length > 0) {
video_id = text[0].id;
elem.find('.player').html('
VIDEO
');
}
}
});
}
}
var stopAllYouTubeVideos = function() {
var iframes = document.querySelectorAll('iframe');
Array.prototype.forEach.call(iframes, function(iframe) {
iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*');
});
}
jQuery(function() {
jQuery(".playVideo").live("click", function() {
if(!$(this).hasClass("played")){
stopAllYouTubeVideos();
var elem = $(this);
setTimeout(function(){
mouseOverMe(elem);
}, 1000);
}
});
jQuery(".description_box .expandContent").live("click", function() {
elem = $(this).parent().parent().parent().find('.descContent');
if(elem.height() > 51) {
elem.css('height', '44px');
$(this).html('Show More
');
}else{
elem.css('height', 'auto');
$(this).html('Hide
');
}
});
jQuery('.interview-play-off').click(function() {
$(".interview-play-off").hide();
$(".interview-play").show();
$(".videoplayer-control-pause").click();
});
jQuery(".video-desc .show_author_videos").live("click", function() {
query = $(this).attr('title');
container = $(this).parent().parent().parent().find('.video-author-thumbs');
$(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px');
jQuery.ajax({
url: '/api/upge/cheetah-photo-search/videoresults',
data: {'query': query},
success: function(text) {
if(!text) { text = i18n("No results"); }
container.html(jQuery(text));
}
});
});
});
// -->
Time Works On All The Wild Young Men
by:
Carly Simon
(Carly Simon/Ben Taylor) Time works on all the wild young men The ones who went for soldiers The ones who reached for fame The ones who swore they’d die for love No matter what the shame Time circles ‘round them snuffs their spark And there they are