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

F1 (disambiguation)

F1 or Formula One is the highest class of auto racing sanctioned by the FIA.

F1, F01, F.I, F.1 or F-1 may refer to:

Computing

  • F1, a computer Function key
  • F1, an Office Assistant in Microsoft Office
  • F1 Magazine, a Syrian monthly computer magazine published in Arabic
  • Google F1, Google's SQL database management system (DBMS)
  • Military craft and weapons

  • F1 grenade (disambiguation), several types of hand grenade
  • F 1 Hässlö, a former Swedish Air Force wing
  • F1 SMG, an Australian submachine gun
  • Dassault Mirage F1, a French combat aircraft
  • FCM F1, a 1940 French super-heavy tank
  • Fokker F.I (1917), a German fighter triplane
  • HMS F1, an F-class submarine of the Royal Navy, launched in 1915
  • HMS Kelly (F01), a 1938 British Royal Navy K-class destroyer
  • Kampfgeschwader 76, from its historic Geschwaderkennung code with the Luftwaffe in World War II
  • Mitsubishi F-1, a fighter/attack aircraft of the Japan Air Self-Defense Force
  • Sopwith Camel F.1, a 1916 British World War I single-seat fighter biplane
  • Rocketdyne F-1

    The F-1 is a gas-generator cycle rocket engine developed in the United States by Rocketdyne in the late 1950s and used in the Saturn V rocket in the 1960s and early 1970s. Five F-1 engines were used in the S-IC first stage of each Saturn V, which served as the main launch vehicle of the Apollo program. The F-1 remains the most powerful single-combustion chamber liquid-propellant rocket engine ever developed.

    History

    The F-1 was originally developed by Rocketdyne to meet a 1955 U.S. Air Force requirement for a very large rocket engine. The eventual result of that requirement was two engines, the E-1 and the much larger F-1. The E-1, although successfully tested in static firing, was quickly seen as a technological dead-end, and was abandoned for the larger, more powerful F-1. The Air Force eventually halted development of the F-1 because of a lack of requirement for such a large engine. However, the recently created National Aeronautics and Space Administration (NASA) appreciated the usefulness of an engine with so much power, and contracted Rocketdyne to complete its development. Test firings of F-1 components had been performed as early as 1957. The first static firing of a full-stage developmental F-1 was performed in March 1959. The first F-1 was delivered to NASA MSFC in October 1963. In December 1964, the F-1 completed flight-rating tests. Testing continued at least through 1965.

    F-1 (satellite)

    F-1 is a 1U CubeSat built by FSpace laboratory at FPT University in Vietnam, in partnership with Angstrom Space Technology Center (ASTC), Uppsala University and NanoRacks LLC. Its mission is to train young engineers and students about aerospace engineering and evaluate an advanced 3-axis magnetometer (SDTM) designed in Sweden by ASTC.

    F-1 was launched on 21 July 2012 and delivered to International Space Station (ISS) aboard Kounotori 3 along with the Raiko, We Wish, Niwaka and TechEdSat cubesats. Then, on October 4, 2012, it was deployed into orbit from ISS using JEM Small Satellite Orbital Deployer (J-SSOD) which was attached to the Kibo module's robotic arm. As of November 2, 2012, F-1 failed to confirm communication after the orbital deployment.

    Hardware

  • Structure: aluminum alloy T-6061
  • Power supply: body-mounted solar cells, rechargeable Li-Polymer battery
  • PIC16 and PIC18 micro-controllers
  • Yaesu VX-3R handheld transceivers
  • C328 low-resolution camera
  • Temperature sensors
  • Podcasts:

    • Why You Should Be Excited For The 2025 F1 Season!

      Will Lewis Hamilton claim his eighth championship in his first season with Ferrari? How will this new-look grid shape up as the season goes on? Here are all the reasons why you should be excited for the 2025 season! For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1

      published: 27 Jan 2025
    • F1 Car vs Jet 👀

      Red Bull Formula 1 Car drag races a jet, who will win?

      published: 23 Jun 2024
    • Race Highlights | 2024 Abu Dhabi Grand Prix

      Catch up on the emotional finale of the 2024 season. Lewis Hamilton, Carlos Sainz and others look to end stints with their respective teams on a high, while the constructors' battle between McLaren and Ferrari comes to a thrilling conclusion. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1

      published: 08 Dec 2024
    • Lewis Hamilton's First Days At Ferrari

      The journey begins for Lewis Hamilton as he arrives at Maranello for his first days at Ferrari. Enjoy a behind the scenes look as the seven-time world champion meets the team and takes to the track for the first time as a Scuderia driver. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1

      published: 22 Jan 2025
    • Race Highlights | 2024 Sao Paulo Grand Prix

      Catch up on a Sao Paulo Grand Prix that had absolutely everything! For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1 #BrazilGP

      published: 03 Nov 2024
    • Pure Pit Stop Perfection 👌

      Watch back this trackside moment as Red Bull combine 2.1 and 2.0 second stops on this incredible double stack. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1

      published: 22 Apr 2024
    • F1 | Official Teaser

      Finally, official. Brad Pitt stars in F1, coming to cinemas Summer 2025. #F1 #F1Movie

      published: 07 Jul 2024
    • What’s going on with Cadillac’s F1 2026 entry

      The Cadillac F1 team should be making its track debut in less than a year but its 2026 Formula 1 entry still hasn’t been confirmed. Given the rocky road travelled by the proposal formerly known as Andretti, the drawn-out process of getting its 2026 entry finalised shouldn’t be a surprise. Nothing has been simple about making this team a reality. There’s been radio silence ever since F1 announced in November 2024 that it had reached an ‘agreement in principle’ with the massive American car manufacturer General Motors to support its bid to enter under the Cadillac brand. 00:00 What still needs to happen 02:35 Unrestricted development over 05:05 A small headstart? 07:59 Works engine latest Patreon: patreon.com/TheRace Website: http://the-race.com/ Twitter: @wearetherace Instagram: @wearet...

      published: 01 Feb 2025
    • Lewis Hamilton's first Ferrari F1 crash and next steps explained

      Lewis Hamilton's new Ferrari F1 era suffered its first setback as the seven times world champion crashed Ferrari's 2023 F1 car at Barcelona. Scott Mitchell-Malm and Edd Straw discuss the fallout from the accident and what it means for Hamilton's ongoing 2025 preparations. 00:00 What we know 02:30 Is it a major setback? 04:25 Hamilton has previous 06:00 Why this Ferrari bites drivers 08:45 Hamilton's next steps Patreon: patreon.com/TheRace Website: http://the-race.com/ Twitter: @wearetherace Instagram: @wearetherace Facebook: http://facebook.com/wearetherace Podcasts: http://the-race.com/podcasts Thanks for watching - please like, share and comment, please also hit subscribe to show your support so we'll keep doing what we're doing. #f1 #formula1 #formulaone #grandprix #f12025 #f1news #...

      published: 30 Jan 2025
    • Race Highlights | 2024 Las Vegas Grand Prix

      Catch all the best bits from an eventful return to The Strip as George Russell led us off the line from pole position, with the championship battle between Verstappen and Norris not far behind. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1 #LasVegasGP

      published: 24 Nov 2024
    Why You Should Be Excited For The 2025 F1 Season!
    8:54

    Why You Should Be Excited For The 2025 F1 Season!

    • Order:
    • Duration: 8:54
    • Uploaded Date: 27 Jan 2025
    • views: 368149
    Will Lewis Hamilton claim his eighth championship in his first season with Ferrari? How will this new-look grid shape up as the season goes on? Here are all the reasons why you should be excited for the 2025 season! For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1
    https://wn.com/Why_You_Should_Be_Excited_For_The_2025_F1_Season
    F1 Car vs Jet 👀
    0:20

    F1 Car vs Jet 👀

    • Order:
    • Duration: 0:20
    • Uploaded Date: 23 Jun 2024
    • views: 7953766
    Red Bull Formula 1 Car drag races a jet, who will win?
    https://wn.com/F1_Car_Vs_Jet_👀
    Race Highlights | 2024 Abu Dhabi Grand Prix
    8:10

    Race Highlights | 2024 Abu Dhabi Grand Prix

    • Order:
    • Duration: 8:10
    • Uploaded Date: 08 Dec 2024
    • views: 6527169
    Catch up on the emotional finale of the 2024 season. Lewis Hamilton, Carlos Sainz and others look to end stints with their respective teams on a high, while the constructors' battle between McLaren and Ferrari comes to a thrilling conclusion. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1
    https://wn.com/Race_Highlights_|_2024_Abu_Dhabi_Grand_Prix
    Lewis Hamilton's First Days At Ferrari
    3:20

    Lewis Hamilton's First Days At Ferrari

    • Order:
    • Duration: 3:20
    • Uploaded Date: 22 Jan 2025
    • views: 1877316
    The journey begins for Lewis Hamilton as he arrives at Maranello for his first days at Ferrari. Enjoy a behind the scenes look as the seven-time world champion meets the team and takes to the track for the first time as a Scuderia driver. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1
    https://wn.com/Lewis_Hamilton's_First_Days_At_Ferrari
    Race Highlights | 2024 Sao Paulo Grand Prix
    8:10

    Race Highlights | 2024 Sao Paulo Grand Prix

    • Order:
    • Duration: 8:10
    • Uploaded Date: 03 Nov 2024
    • views: 8649745
    Catch up on a Sao Paulo Grand Prix that had absolutely everything! For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1 #BrazilGP
    https://wn.com/Race_Highlights_|_2024_Sao_Paulo_Grand_Prix
    Pure Pit Stop Perfection 👌
    0:20

    Pure Pit Stop Perfection 👌

    • Order:
    • Duration: 0:20
    • Uploaded Date: 22 Apr 2024
    • views: 6203050
    Watch back this trackside moment as Red Bull combine 2.1 and 2.0 second stops on this incredible double stack. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1
    https://wn.com/Pure_Pit_Stop_Perfection_👌
    F1 | Official Teaser
    1:38

    F1 | Official Teaser

    • Order:
    • Duration: 1:38
    • Uploaded Date: 07 Jul 2024
    • views: 7754297
    Finally, official. Brad Pitt stars in F1, coming to cinemas Summer 2025. #F1 #F1Movie
    https://wn.com/F1_|_Official_Teaser
    What’s going on with Cadillac’s F1 2026 entry
    10:00

    What’s going on with Cadillac’s F1 2026 entry

    • Order:
    • Duration: 10:00
    • Uploaded Date: 01 Feb 2025
    • views: 154667
    The Cadillac F1 team should be making its track debut in less than a year but its 2026 Formula 1 entry still hasn’t been confirmed. Given the rocky road travelled by the proposal formerly known as Andretti, the drawn-out process of getting its 2026 entry finalised shouldn’t be a surprise. Nothing has been simple about making this team a reality. There’s been radio silence ever since F1 announced in November 2024 that it had reached an ‘agreement in principle’ with the massive American car manufacturer General Motors to support its bid to enter under the Cadillac brand. 00:00 What still needs to happen 02:35 Unrestricted development over 05:05 A small headstart? 07:59 Works engine latest Patreon: patreon.com/TheRace Website: http://the-race.com/ Twitter: @wearetherace Instagram: @wearetherace Facebook: http://facebook.com/wearetherace Podcasts: http://the-race.com/podcasts Thanks for watching - please like, share and comment, please also hit subscribe to show your support so we'll keep doing what we're doing. #f1 #formula1 #formulaone #grandprix #f1news #f12025 #f12024 #cadillac #generalmotors #andretti #ferrari #fia
    https://wn.com/What’S_Going_On_With_Cadillac’S_F1_2026_Entry
    Lewis Hamilton's first Ferrari F1 crash and next steps explained
    10:22

    Lewis Hamilton's first Ferrari F1 crash and next steps explained

    • Order:
    • Duration: 10:22
    • Uploaded Date: 30 Jan 2025
    • views: 278187
    Lewis Hamilton's new Ferrari F1 era suffered its first setback as the seven times world champion crashed Ferrari's 2023 F1 car at Barcelona. Scott Mitchell-Malm and Edd Straw discuss the fallout from the accident and what it means for Hamilton's ongoing 2025 preparations. 00:00 What we know 02:30 Is it a major setback? 04:25 Hamilton has previous 06:00 Why this Ferrari bites drivers 08:45 Hamilton's next steps Patreon: patreon.com/TheRace Website: http://the-race.com/ Twitter: @wearetherace Instagram: @wearetherace Facebook: http://facebook.com/wearetherace Podcasts: http://the-race.com/podcasts Thanks for watching - please like, share and comment, please also hit subscribe to show your support so we'll keep doing what we're doing. #f1 #formula1 #formulaone #grandprix #f12025 #f1news #therace #ferrarif1 #ferrari #lewishamilton #charlesleclerc #barcelona #f1testing
    https://wn.com/Lewis_Hamilton's_First_Ferrari_F1_Crash_And_Next_Steps_Explained
    Race Highlights | 2024 Las Vegas Grand Prix
    8:15

    Race Highlights | 2024 Las Vegas Grand Prix

    • Order:
    • Duration: 8:15
    • Uploaded Date: 24 Nov 2024
    • views: 6893644
    Catch all the best bits from an eventful return to The Strip as George Russell led us off the line from pole position, with the championship battle between Verstappen and Norris not far behind. For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1 #LasVegasGP
    https://wn.com/Race_Highlights_|_2024_Las_Vegas_Grand_Prix
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    Why You Should Be Excited For The 2025 F1 Season!

    Will Lewis Hamilton claim his eighth championship in his first season with Ferrari? How will this new-look grid shape up as the season goes on? Here are all the reasons why you should be excited for the 2025 season! For more F1® videos, visit https://www.Formula1.com Follow F1®: https://www.instagram.com/F1 https://www.facebook.com/Formula1/ https://www.twitter.com/F1 https://www.twitch.tv/formula1 https://www.tiktok.com/@f1 #F1
    8:54
    Why You Should Be Excited For The 2025 F1 Season!
    Will Lewis Hamilton claim his eighth championship in his first season with Ferrari? How wi...
    published: 27 Jan 2025
    Play in Full Screen
    0:20
    F1 Car vs Jet 👀
    Red Bull Formula 1 Car drag races a jet, who will win?
    published: 23 Jun 2024
    Play in Full Screen
    8:10
    Race Highlights | 2024 Abu Dhabi Grand Prix
    Catch up on the emotional finale of the 2024 season. Lewis Hamilton, Carlos Sainz and othe...
    published: 08 Dec 2024
    Play in Full Screen
    3:20
    Lewis Hamilton's First Days At Ferrari
    The journey begins for Lewis Hamilton as he arrives at Maranello for his first days at Fer...
    published: 22 Jan 2025
    Play in Full Screen
    8:10
    Race Highlights | 2024 Sao Paulo Grand Prix
    Catch up on a Sao Paulo Grand Prix that had absolutely everything! For more F1® videos, v...
    published: 03 Nov 2024
    Play in Full Screen
    0:20
    Pure Pit Stop Perfection 👌
    Watch back this trackside moment as Red Bull combine 2.1 and 2.0 second stops on this incr...
    published: 22 Apr 2024
    Play in Full Screen
    1:38
    F1 | Official Teaser
    Finally, official. Brad Pitt stars in F1, coming to cinemas Summer 2025. #F1 #F1Movie
    published: 07 Jul 2024
    Play in Full Screen
    10:00
    What’s going on with Cadillac’s F1 2026 entry
    The Cadillac F1 team should be making its track debut in less than a year but its 2026 For...
    published: 01 Feb 2025
    Play in Full Screen
    10:22
    Lewis Hamilton's first Ferrari F1 crash and next steps explained
    Lewis Hamilton's new Ferrari F1 era suffered its first setback as the seven times world ch...
    published: 30 Jan 2025
    Play in Full Screen
    8:15
    Race Highlights | 2024 Las Vegas Grand Prix
    Catch all the best bits from an eventful return to The Strip as George Russell led us off ...
    published: 24 Nov 2024
    Play in Full Screen

    F1 (disambiguation)

    F1 or Formula One is the highest class of auto racing sanctioned by the FIA.

    F1, F01, F.I, F.1 or F-1 may refer to:

    Computing

  • F1, a computer Function key
  • F1, an Office Assistant in Microsoft Office
  • F1 Magazine, a Syrian monthly computer magazine published in Arabic
  • Google F1, Google's SQL database management system (DBMS)
  • Military craft and weapons

  • F1 grenade (disambiguation), several types of hand grenade
  • F 1 Hässlö, a former Swedish Air Force wing
  • F1 SMG, an Australian submachine gun
  • Dassault Mirage F1, a French combat aircraft
  • FCM F1, a 1940 French super-heavy tank
  • Fokker F.I (1917), a German fighter triplane
  • HMS F1, an F-class submarine of the Royal Navy, launched in 1915
  • HMS Kelly (F01), a 1938 British Royal Navy K-class destroyer
  • Kampfgeschwader 76, from its historic Geschwaderkennung code with the Luftwaffe in World War II
  • Mitsubishi F-1, a fighter/attack aircraft of the Japan Air Self-Defense Force
  • Sopwith Camel F.1, a 1916 British World War I single-seat fighter biplane
  • '); } 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)); } }); }); }); // -->
    ×