'+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; })); }); -->

Drive (TV series)

Drive is an American action drama television series created by Tim Minear and Ben Queen, produced by Minear, Queen, and Greg Yaitanes, and starring Nathan Fillion. Four episodes aired on the Fox Network in April 2007. Two unaired episodes were later released directly to digital distribution.

The series is set against the backdrop of an illegal cross-country automobile road race, focusing on the willing and unwilling competitors and, as the plot develops, the unseen puppet masters who sponsor the race. Minear has described the show's thematic tone by saying "a secret, illegal, underground road race can be anything from Cannonball Run to The Game to North by Northwest to Magnolia-on-wheels. Ours is all those things."

Firefly and Serenity star Nathan Fillion, a longtime friend of series creator Tim Minear, plays the lead role of Alex Tully. Ivan Sergei played Tully in the unaired pilot.

Drive was the first TV show in history which had a live Twitter session during an episode. The account @foxdrive still exists.

Podcasts:

Drive

ALBUMS

Drive

ALBUMS

Drive

ALBUMS

Drive

ALBUMS

The Drive

Drive

ALBUMS

Drive

ALBUMS

Drive

ALBUMS

D.r.i.v.E.

ALBUMS

D-Rive

ALBUMS

  • Drive -- opening titles for TV series

    The opening titles of Drive, season one

    published: 14 Apr 2007
  • HD Drive Trailer

    http://www.riley-smith.net HD Trailer that aired during Prison Break

    published: 06 Apr 2007
  • Drive (2007) - Leave You Far Behind

    Some of my favourite scenes from a TV show that filmed 7 episodes before getting cancelled. Drive was a short lived TV show about a secret, underground, illegal, cross-country road race across America. Starring: Nathan Fillion as Alex Tully Kristin Lehman as Corinna Wiles Cars featured: 1972 Dodge Challenger 1962 Chevrolet Impala lowrider 1979 Pontiac Trans Am Music: Lunatic Calm - Leave You Far Behind Scenes from S01E03 Copyright Twentieth Century Fox Film Corporation

    published: 28 Feb 2013
  • Drive 2007 TV series CAST ★ THEN AND NOW 2021 !

    Drive 2007 TV series CAST ★ THEN AND NOW 2021 !

    published: 31 May 2021
  • Drive tv series music video

    drive

    published: 06 May 2007
  • Drive (TV Series) Review by JWU

    My Review of the short lived FOX TV Series Drive Enjoy!!! Score: A+ Creator/Producer: Tim Minear, Ben Queen Starring: Nathan Fillion, Kristin Lehman, Mircea Monroe, Riley Smith, Kevin Alejandro, J.D. Pardo, Dylan Baker, Emma Stone, Rochelle Aytes, Taryn Manning, Melanie Lynskey Genre: Action Drama Number of Seasons: 1 Number of Episodes: 6 4 Aired 2 Unaired Channel: FOX Running Time: 42 Mins. Original Run: April 13,2007 - April 23,2007

    published: 22 Feb 2012
  • Formula 1: Drive to Survive | Official Trailer [HD] | Netflix

    From the producer of Amy and Senna this series goes one step further into the world of Formula 1 as we meet the families, the teams and the drivers behind the visors in this exclusive, all access documentary Formula 1: Drive to Survive. Unparalleled Speed, Unprecedented Access. SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading internet entertainment service with 130 million memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. Connect with Netflix Online: Visit Netflix WEBSITE: http://nflx.it/29BcWb5 Li...

    published: 20 Feb 2019
  • How To Channel Your Road Rage Into Cold, Calculating Road Revenge

    Subscribe to The Onion on YouTube: http://bit.ly/xzrBUA Defensive driving instructor Danny Preston says the best way to avoid conflict on the road is to execute long-term psychological torment on aggressive drivers. Like The Onion on Facebook: http://www.fb.com/theonion Follow The Onion on Twitter: http://www.twitter.com/theonion More Breaking News: http://www.theonion.com/video/

    published: 04 Feb 2015
  • Advocate with Mothers Against Drunk Driving talks teaming up with Uber

    April is Alcohol Awareness Month. DUI-related crashes are one of the state’s deadliest issues in the Garden State. MADD is teaming up with Uber — launching a first-of-its-kind partnership in NJ. Bob Nulman’s 22-year-old-son, was killed by a 20-year-old drunk and drugged driver. Dan, a senior at Trenton State College, was a passenger in a car with four friends when an impaired driver, traveling the wrong way on the interstate, collided with them head-on, killing all five boys and the impaired driver. According to the National Transportation Safety Administration, 26% of all traffic fatalities in New Jersey were caused by impaired driving. If you need support, call the Victim Help Line 1-877-MADD-HELP (1-877-623-3435).

    published: 10 Apr 2025
  • DRIVE - Episode 1 | Action | Russian TV Series | english subtitles

    Russian TV Series watch online full episode FREE ➤ SUBSCRIBE ➫ https://www.youtube.com/channel/UCiiqJoTFFKF9_tDVRDzQy5Q?sub_confirmation=1 ➤ WATCH ALL EPISODES ➫ https://epicplus.online/catalog/drive The main character, the stuntman Anton, finds out that he’s seriously ill and decides to hide it from his family. In order to make some money while he still can Anton becomes a criminal. Anton’s daughter Ksenia starts dating Max – a bad guy from a car wash. Victor, from whom Anton stole his wife Olga, finds out about Anton’s diagnosis. Starring: Vladimir Epifantсev, Nikolay Fomenko, Olga Lomonosova, Vera Panfilova, Ivan Agapov, Aleksandr Klyukvin, Artyom Mikhalkov Directed by: Anario Mamedov Follow us, Find us! Одноклассники: https://ok.ru/epicmediachannel Вконтакте: https://vk.com/epicmed...

    published: 16 May 2020
Drive -- opening titles for TV series
0:36

Drive -- opening titles for TV series

  • Order:
  • Duration: 0:36
  • Uploaded Date: 14 Apr 2007
  • views: 22821
The opening titles of Drive, season one
https://wn.com/Drive_Opening_Titles_For_Tv_Series
HD Drive Trailer
0:31

HD Drive Trailer

  • Order:
  • Duration: 0:31
  • Uploaded Date: 06 Apr 2007
  • views: 30982
http://www.riley-smith.net HD Trailer that aired during Prison Break
https://wn.com/Hd_Drive_Trailer
Drive (2007) - Leave You Far Behind
4:14

Drive (2007) - Leave You Far Behind

  • Order:
  • Duration: 4:14
  • Uploaded Date: 28 Feb 2013
  • views: 13344
Some of my favourite scenes from a TV show that filmed 7 episodes before getting cancelled. Drive was a short lived TV show about a secret, underground, illegal, cross-country road race across America. Starring: Nathan Fillion as Alex Tully Kristin Lehman as Corinna Wiles Cars featured: 1972 Dodge Challenger 1962 Chevrolet Impala lowrider 1979 Pontiac Trans Am Music: Lunatic Calm - Leave You Far Behind Scenes from S01E03 Copyright Twentieth Century Fox Film Corporation
https://wn.com/Drive_(2007)_Leave_You_Far_Behind
Drive 2007 TV series  CAST  ★ THEN AND NOW 2021 !
1:42

Drive 2007 TV series CAST ★ THEN AND NOW 2021 !

  • Order:
  • Duration: 1:42
  • Uploaded Date: 31 May 2021
  • views: 479
Drive 2007 TV series CAST ★ THEN AND NOW 2021 !
https://wn.com/Drive_2007_Tv_Series_Cast_★_Then_And_Now_2021
Drive tv series music video
3:46

Drive tv series music video

  • Order:
  • Duration: 3:46
  • Uploaded Date: 06 May 2007
  • views: 22547
drive
https://wn.com/Drive_Tv_Series_Music_Video
Drive (TV Series) Review by JWU
5:52

Drive (TV Series) Review by JWU

  • Order:
  • Duration: 5:52
  • Uploaded Date: 22 Feb 2012
  • views: 8909
My Review of the short lived FOX TV Series Drive Enjoy!!! Score: A+ Creator/Producer: Tim Minear, Ben Queen Starring: Nathan Fillion, Kristin Lehman, Mircea Monroe, Riley Smith, Kevin Alejandro, J.D. Pardo, Dylan Baker, Emma Stone, Rochelle Aytes, Taryn Manning, Melanie Lynskey Genre: Action Drama Number of Seasons: 1 Number of Episodes: 6 4 Aired 2 Unaired Channel: FOX Running Time: 42 Mins. Original Run: April 13,2007 - April 23,2007
https://wn.com/Drive_(Tv_Series)_Review_By_Jwu
Formula 1: Drive to Survive | Official Trailer [HD] | Netflix
1:48

Formula 1: Drive to Survive | Official Trailer [HD] | Netflix

  • Order:
  • Duration: 1:48
  • Uploaded Date: 20 Feb 2019
  • views: 3026014
From the producer of Amy and Senna this series goes one step further into the world of Formula 1 as we meet the families, the teams and the drivers behind the visors in this exclusive, all access documentary Formula 1: Drive to Survive. Unparalleled Speed, Unprecedented Access. SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading internet entertainment service with 130 million memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. Connect with Netflix Online: Visit Netflix WEBSITE: http://nflx.it/29BcWb5 Like Netflix Kids on FACEBOOK: http://bit.ly/NetflixFamily Like Netflix on FACEBOOK: http://bit.ly/29kkAtN Follow Netflix on TWITTER: http://bit.ly/29gswqd Follow Netflix on INSTAGRAM: http://bit.ly/29oO4UP Follow Netflix on TUMBLR: http://bit.ly/29kkemT Formula 1: Drive to Survive | Official Trailer [HD] | Netflix http://youtube.com/netflix
https://wn.com/Formula_1_Drive_To_Survive_|_Official_Trailer_Hd_|_Netflix
How To Channel Your Road Rage Into Cold, Calculating Road Revenge
2:54

How To Channel Your Road Rage Into Cold, Calculating Road Revenge

  • Order:
  • Duration: 2:54
  • Uploaded Date: 04 Feb 2015
  • views: 4979252
Subscribe to The Onion on YouTube: http://bit.ly/xzrBUA Defensive driving instructor Danny Preston says the best way to avoid conflict on the road is to execute long-term psychological torment on aggressive drivers. Like The Onion on Facebook: http://www.fb.com/theonion Follow The Onion on Twitter: http://www.twitter.com/theonion More Breaking News: http://www.theonion.com/video/
https://wn.com/How_To_Channel_Your_Road_Rage_Into_Cold,_Calculating_Road_Revenge
Advocate with Mothers Against Drunk Driving talks teaming up with Uber
7:01

Advocate with Mothers Against Drunk Driving talks teaming up with Uber

  • Order:
  • Duration: 7:01
  • Uploaded Date: 10 Apr 2025
  • views: 198
April is Alcohol Awareness Month. DUI-related crashes are one of the state’s deadliest issues in the Garden State. MADD is teaming up with Uber — launching a first-of-its-kind partnership in NJ. Bob Nulman’s 22-year-old-son, was killed by a 20-year-old drunk and drugged driver. Dan, a senior at Trenton State College, was a passenger in a car with four friends when an impaired driver, traveling the wrong way on the interstate, collided with them head-on, killing all five boys and the impaired driver. According to the National Transportation Safety Administration, 26% of all traffic fatalities in New Jersey were caused by impaired driving. If you need support, call the Victim Help Line 1-877-MADD-HELP (1-877-623-3435).
https://wn.com/Advocate_With_Mothers_Against_Drunk_Driving_Talks_Teaming_Up_With_Uber
DRIVE - Episode 1 | Action | Russian TV Series | english subtitles
48:12

DRIVE - Episode 1 | Action | Russian TV Series | english subtitles

  • Order:
  • Duration: 48:12
  • Uploaded Date: 16 May 2020
  • views: 487119
Russian TV Series watch online full episode FREE ➤ SUBSCRIBE ➫ https://www.youtube.com/channel/UCiiqJoTFFKF9_tDVRDzQy5Q?sub_confirmation=1 ➤ WATCH ALL EPISODES ➫ https://epicplus.online/catalog/drive The main character, the stuntman Anton, finds out that he’s seriously ill and decides to hide it from his family. In order to make some money while he still can Anton becomes a criminal. Anton’s daughter Ksenia starts dating Max – a bad guy from a car wash. Victor, from whom Anton stole his wife Olga, finds out about Anton’s diagnosis. Starring: Vladimir Epifantсev, Nikolay Fomenko, Olga Lomonosova, Vera Panfilova, Ivan Agapov, Aleksandr Klyukvin, Artyom Mikhalkov Directed by: Anario Mamedov Follow us, Find us! Одноклассники: https://ok.ru/epicmediachannel Вконтакте: https://vk.com/epicmediachannel Телеграм: https://t.me/EpicMediaOfficial TikTok: https://www.tiktok.com/@epicmediachannel Дзен: https://dzen.ru/epicmediachannel #EpicMediaEnglish
https://wn.com/Drive_Episode_1_|_Action_|_Russian_Tv_Series_|_English_Subtitles
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

Drive -- opening titles for TV series

The opening titles of Drive, season one
0:36
Drive -- opening titles for TV series
The opening titles of Drive, season one
published: 14 Apr 2007
Play in Full Screen
0:31
HD Drive Trailer
http://www.riley-smith.net HD Trailer that aired during Prison Break
published: 06 Apr 2007
Play in Full Screen
4:14
Drive (2007) - Leave You Far Behind
Some of my favourite scenes from a TV show that filmed 7 episodes before getting cancelled...
published: 28 Feb 2013
Play in Full Screen
1:42
Drive 2007 TV series CAST ★ THEN AND NOW 2021 !
Drive 2007 TV series CAST ★ THEN AND NOW 2021 !
published: 31 May 2021
Play in Full Screen
3:46
Drive tv series music video
drive
published: 06 May 2007
Play in Full Screen
5:52
Drive (TV Series) Review by JWU
My Review of the short lived FOX TV Series Drive Enjoy!!! Score: A+ Creator/Producer: Tim...
published: 22 Feb 2012
Play in Full Screen
1:48
Formula 1: Drive to Survive | Official Trailer [HD] | Netflix
From the producer of Amy and Senna this series goes one step further into the world of For...
published: 20 Feb 2019
Play in Full Screen
2:54
How To Channel Your Road Rage Into Cold, Calculating Road Revenge
Subscribe to The Onion on YouTube: http://bit.ly/xzrBUA Defensive driving instructor Dann...
published: 04 Feb 2015
Play in Full Screen
7:01
Advocate with Mothers Against Drunk Driving talks teaming up with Uber
April is Alcohol Awareness Month. DUI-related crashes are one of the state’s deadliest iss...
published: 10 Apr 2025
Play in Full Screen
48:12
DRIVE - Episode 1 | Action | Russian TV Series | english subtitles
Russian TV Series watch online full episode FREE ➤ SUBSCRIBE ➫ https://www.youtube.com/cha...
published: 16 May 2020
Play in Full Screen

Drive (TV series)

Drive is an American action drama television series created by Tim Minear and Ben Queen, produced by Minear, Queen, and Greg Yaitanes, and starring Nathan Fillion. Four episodes aired on the Fox Network in April 2007. Two unaired episodes were later released directly to digital distribution.

The series is set against the backdrop of an illegal cross-country automobile road race, focusing on the willing and unwilling competitors and, as the plot develops, the unseen puppet masters who sponsor the race. Minear has described the show's thematic tone by saying "a secret, illegal, underground road race can be anything from Cannonball Run to The Game to North by Northwest to Magnolia-on-wheels. Ours is all those things."

Firefly and Serenity star Nathan Fillion, a longtime friend of series creator Tim Minear, plays the lead role of Alex Tully. Ivan Sergei played Tully in the unaired pilot.

Drive was the first TV show in history which had a live Twitter session during an episode. The account @foxdrive still exists.

'); } 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(''); } } }); } } 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)); } }); }); }); // -->

Latest News for: drive

Edit

Flexible policies bode well for driverless vehicles

China Daily 21 Apr 2025
A few minutes later, a self-driving taxi approached, with no driver or safety operator sitting in ... This was not the first time that I had experienced self-driving vehicles ... driving technology.
Edit

Kuwait's new traffic law explained: Tougher penalties, expats limited to one car and jail for red-light violations

Gulf News 21 Apr 2025
Using a mobile phone while driving ... Driving without a valid license&nbsp;or using a suspended or incorrect license ... Reckless driving is penalized by a fine of KD150 instead of 30 ... Some 90% of accidents are caused by inattention while driving.
Edit

Clarity urged over 'smart driving'

China Daily 21 Apr 2025
Smart driving, which has been a buzzword in China for quite some time, is gaining further attention, as the government and some automotive executives have called for cautious use of the ambiguous term.
Edit

China Tightens Grip on Smart Driving Tech Amid Safety Concerns

The Arabian Post 21 Apr 2025
Automakers are now prohibited from using terms like “smart driving” and “autonomous driving” in advertisements for vehicles equipped with ADAS features ... via China Tightens Grip on Smart Driving Tech Amid Safety Concerns ....
Edit

Crazed motorist allegedly tried to run Tesla off the road while speeding over 100 mph

New York Post 21 Apr 2025
The driver was booked into jail for aggravated assault, reckless driving and driving on a suspended license ... Fayani was booked into the Tooele County Jail for investigation of aggravated assault, reckless driving, and driving on a suspended license.
Edit

Local Woman Facing DUI, Other Charges Following Car Crashes–Police

Journal Online Chicago 21 Apr 2025
A 39-year-old woman from Des Plaines is facing several driving-related charges including Driving While Under the Influence, in relation to a car allegedly crashing into multiple parked vehicles on Friday, April 18 at 1.22 a.m.
Edit

CDOT takes opportunity to spread safe driving tips at 420 Festival

Fox31 Denver 21 Apr 2025
Everybody’s been hearing the drunk driving message for decades, but they haven’t heard about the impaired driving message with cannabis for very long, so we’ve got our work cut out for us," said Sam Cole, CDOT's traffic safety manager.
Edit

Plans to relocate ARTO office to Jewar spark public outcry

Hindustan Times 21 Apr 2025
Like residents, transport department officials are also not in favour to shift the temporary office from Sector 33, Noida, to Jewar, fearing inconvenience to hundreds of people visiting this office for vehicle related or driving license work.
Edit

Over 2.6m to be administered polio drops in Balochistan

Dawn 21 Apr 2025
Over 2.6 million children under the age of five will be administered polio drops under the week-long polio drive beginning in Balochistan from April 21 ... Under the drive, he said, over 11,000 teams will ...
Edit

DOH records 288 road accidents on Holy Week

Sun Star 21 Apr 2025
These include wearing helmets for motorcycle riders and back riders, seatbelt for those driving four-wheeled vehicles; the don't drink and drive rule; following the prescribed speed limit on highways ...
Edit

$985K for Manlius home: Plus 80 more Onondaga County home sales

The Post-Standard 21 Apr 2025
7870 Marina Drive - $345,000 - Shannon Lee Einbeck to Sara Kathryn Marcoccia. 6138 Palisades Drive - $240,000 - Alicia and David Peryea to Miguel Luis Gonzales ... 8106 Sloop Drive - $293,000 - LeeAnn Phelps to Ryan Mayer Irrevocable Trust.
Edit

Dune bashing to pristine in just 15 years at Dubai reserve

The National 21 Apr 2025
DUBAI // With its rolling dunes, abundant wildlife and thriving vegetation, the Dubai Desert Conservation Reserve is an oasis of nature a short drive from the city ... “Tour operators were driving ...
Edit

stc Drives Digital Innovation at Saudi F1 Grand Prix

The Arabian Post 21 Apr 2025
He highlighted the company’s role in driving digital transformation across various sectors and emphasized the importance of providing seamless connectivity at major events ... via stc Drives Digital Innovation at Saudi F1 Grand Prix ....
Edit

Shirtless Rob Lowe, 61, looks youthful on a run after Hollywood tour embarrassingly mistook him ...

The Daily Mail 21 Apr 2025
Lowe revealed last week on Instagram that a tour guide driving through Hollywood had hilariously mistaken him for Full House star John Stamos ... Last week, Rob shared a video of an embarrassing run in with a drive-by Hollywood tour.Read More.
Edit

AI to lift industrial upgrade, growth

China Daily 21 Apr 2025
Global market research company International Data Corp said in a report that AI is forecast to contribute $19.9 trillion to the global economy through 2030, and drive 3.5 percent of global GDP in 2030.
×