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

BMW 7 Series

The BMW 7 Series a full-size luxury sedan produced by the German automaker BMW since 1977. It is the successor to the BMW E3 "New Six" sedan and is currently in its sixth generation.

The 7 Series is BMW's flagship car and is only available as a sedan or extended-length limousine. It traditionally introduces technologies and exterior design themes before they trickle down to smaller sedans in BMW's lineup.

The first generation 7 Series was powered by straight-6 petrol engines, and following generations have been powered by straight-6, v8 and v12 engines with both natural aspiration and turbocharging. Since 1995, diesel engines have been included in the 7 Series range.

E23 (1977–1986)

The BMW E23 is the first BMW 7 Series luxury car, produced by the German automaker BMW. Replacing the BMW E3 large sedan, the E23 was produced for ten years from 1977 to 1987 and was replaced by the BMW E32 7 Series in 1986.

E32 (1986–1994)

In July 1986, BMW introduced the second-generation 7-series, the E32. Some luxury options included integrated telephone and fax machines, a wine cooler, double glazing, traction control system, and a system that automatically increased spring pressure on the windscreen wipers, to keep them firmly pressed on the glass at Motorway speeds. The top-line E32 750iL was the first car in the world to offer High-Intensity Discharge headlamps.

Podcasts:

  • New BMW 7 Series M70 review!

    This is the BMW i7 M70! The M70 is the performance version of the premium all-electric i7 released in 2022, and its design is a bit more aggressive with extensive black trim, sportier bumpers and 21-inch alloy wheels as standard with aerodynamic trim. But if you thought the sporty upgrades would translate to the cabin, not so much - it’s just as plush as the standard i7, although there are some M tricolour flashes and other M upgrades in there to keep it interesting. However, with the M70’s impressive power upgrade comes an eye-watering price hike! So is it worth the extra expense? Mat has all the answers for you to see if it stacks up against the Mercedes-AMG EQS 53+! Sell your car with carwow: https://bit.ly/Buy-Sell-WOW

    published: 29 Sep 2023
  • The new i7 and the new 7.

    An invitation to meet the new i7. Engineering and art united to form an icon. A new, clean, monolithic design language defines the new i7 and 7 as a future statement of luxury design.  Passengers comfort is at the heart of the new model, feel extraordinary with optional automatic opening doors and Sky Lounge panoramic glass roof, filling the modern interior space with light.  A new worldwide premiere of the BMW Theatre Screen, the most immersive cinematic experience on four wheels. A 31“ ultra-HD display, 5G connectivity and innovative sound from the Bowers & Wilkins Diamond Surround Sound System, the ultimate entertainment experience.  Interior details designed to be sensed, the new BMW Interaction Bar combines interior and control functions in a single strip across the entire width fo...

    published: 20 Apr 2022
  • 7 Series v S-Class v A8: Which is best?

    These are three of the most luxurious cars you can buy in 2023 - the Mercedes S-Class, BMW 7 Series and Audi A8! The question is, if you’re in the market for a luxury limousine, which should you choose? Well worry no more! Mat’s here to get hands on with all three cars to find out which should be crowned the must-have luxury limo! One area where these three cars are pretty evenly matched is the quality of their interiors. All three come packed with high-quality, soft touch materials throughout, and they all come with super comfortable seats whether you’re sat in the front or back. However, there are a couple of notable differences… For example, sit in the back of the 7 Series, and you’re treated to an absolutely HUGE infotainment screen for rear seat passengers - it’s like you’re sat...

    published: 13 Oct 2023
  • The all-new BMW 7 Series. Official launch film.

    The all-new BMW 7 Series. Driving Luxury. This is the official launch film of the all-new BMW 7 Series including driving scenes. Master every performance, enjoy every moment. Our supreme aspiration: to surpass our own benchmarks. ► For more information, click here: http://www.bmw.com/7series ► If you'd like more information about the car, please have a look at the "all you need to know" film: http://youtu.be/6Viyt2aIOG8 ► For more upcoming videos subscribe to the BMW YouTube Channel: http://b.mw/youtube-subscribe ► Explore More Videos: The M8 Gran Coupé Concept. BMW 2018. https://www.youtube.com/watch?v=RzChHvJ7GEM&t=2s The Epic Driftmob feat. BMW M235i: https://www.youtube.com/watch?v=vz2rAgXjkCA ► Follow BMW on Social Media: Instagram: http://b.mw/instagram Facebook: http://b.m...

    published: 10 Jun 2015
  • The 2023 BMW i7 Is an Amazing Ultra-Luxury $130,000 Electric Sedan

    CHECK OUT CARS & BIDS! https://carsandbids.com 2023 BMW i7 review! The 2023 BMW i7 is an amazing ultra-luxury sedan -- and today I'm reviewing it. I'll show you all the quirks and features of the i7, and I'll show you all the cool tech in this amazing luxury sedan. I'm also going to drive the 2023 BMW i7 and review the driving experience. WEBSITE & MERCH! http://www.dougdemuro.com FOLLOW ME! Twitter - http://www.twitter.com/dougdemuro Instagram - http://www.instagram.com/dougdemuro Facebook - http://www.facebook.com/ddemuro DOUGSCORE CHART: https://www.dougdemuro.com/dougscore

    published: 08 Nov 2022
  • 2023 BMW 7 Series M750e - Sound, Interior and Exterior in detail

    BMW M750e xDrive PHEV: Engine: I-6, 3.0 L, 490 Hp, 700 Nm 0-100 (km/h): 4.9 s Top Speed: 250 km/h Special thanks to BMW Bawaria Motors Gdańsk. Test drive: https://gdansk.bmw-bawariamotors.pl/nowe-bmw-serii-7 #bmw #bmw7

    published: 10 Jun 2022
  • Did BMW just beat Mercedes?! 🤯🤯🤯

    published: 05 Feb 2023
  • 2023 BMW 7 Series Review // Taking The S-Class To School

    The 2023 BMW i7 xDrive60 ($194,200 as specced in Canada, $151,600 in the US) is the fully electric variant of the brand new 7 series lineup. Aiming to be a supremely luxurious and tech’d out experience, the new 7 series is available with a massive 31 inch entertainment screen for the rear passengers. Coupled with the optional Bowers & Wilkins surround sound system, the i7 could be mistaken for a portable movie theater. It also boasts a commendable 536 horsepower and 549 lb ft of torque from a dual motor setup, and has rear-wheel steering to boot. But does the level of luxury and tech match the hefty price tag? And how does it compare to its competition? Thomas and James share their thoughts! We hope you enjoy the episode! Thanks for watching. SUBSCRIBE! EXTRA THROTTLE HOUSE! https://www...

    published: 30 Nov 2022
  • BMW 7 Series 2020 in-depth review | carwow Reviews

    This is the new BMW 7 Series! When it comes to luxury limousines, it’s hard to look past the 7 Series, Mercedes S-Class and Audi A8. But given it’s been a few years since a new A8 hit our streets, and even longer since a new S-Class was released, is it time for the 7 Series to take the crown of best luxury limousine out there? Join Mat for his latest in-depth review to find out! Subscribe to Mat’s Channel – https://www.youtube.com/user/MatWatsonCars Instagram – http://www.instagram.com/carwowcars Facebook – http://www.facebook.com/carwowuk/ Twitter – http://www.twitter.com/carwowuk Check out the competitors: Mercedes S-Class - http://bit.ly/Mercedes-S-Class-Review Audi A8 - http://bit.ly/Audi-A8-Review Awkward haggling is a thing of the past with carwow. Choose your perfect car w...

    published: 14 Jun 2019
  • New BMW 7 Series ULTIMATE gadget!

    The new BMW 7 Series and i7 have some amazing tech on-board such as a 31-inch 8K cinema screen for the back seats.

    published: 21 Oct 2022
developed with YouTube
New BMW 7 Series M70 review!
17:41

New BMW 7 Series M70 review!

  • Order:
  • Duration: 17:41
  • Uploaded Date: 29 Sep 2023
  • views: 833918
This is the BMW i7 M70! The M70 is the performance version of the premium all-electric i7 released in 2022, and its design is a bit more aggressive with extensive black trim, sportier bumpers and 21-inch alloy wheels as standard with aerodynamic trim. But if you thought the sporty upgrades would translate to the cabin, not so much - it’s just as plush as the standard i7, although there are some M tricolour flashes and other M upgrades in there to keep it interesting. However, with the M70’s impressive power upgrade comes an eye-watering price hike! So is it worth the extra expense? Mat has all the answers for you to see if it stacks up against the Mercedes-AMG EQS 53+! Sell your car with carwow: https://bit.ly/Buy-Sell-WOW
https://wn.com/New_Bmw_7_Series_M70_Review
The new i7 and the new 7.
2:51

The new i7 and the new 7.

  • Order:
  • Duration: 2:51
  • Uploaded Date: 20 Apr 2022
  • views: 573623
An invitation to meet the new i7. Engineering and art united to form an icon. A new, clean, monolithic design language defines the new i7 and 7 as a future statement of luxury design.  Passengers comfort is at the heart of the new model, feel extraordinary with optional automatic opening doors and Sky Lounge panoramic glass roof, filling the modern interior space with light.  A new worldwide premiere of the BMW Theatre Screen, the most immersive cinematic experience on four wheels. A 31“ ultra-HD display, 5G connectivity and innovative sound from the Bowers & Wilkins Diamond Surround Sound System, the ultimate entertainment experience.  Interior details designed to be sensed, the new BMW Interaction Bar combines interior and control functions in a single strip across the entire width for unique textured controls.  Enjoyment comes naturally to an icon, recline in new BMW Individual Merino leather/cashmere wool combined with Executive Lounge seats for an effortless relaxing journey.  Discover the presence of the new i7 & the new 7. BMW i7 xDrive60*: Power consumption: 19.6 - 18.4* kWh/100 km. Electric range: 590 – 625* in km. BMW 740i*: Fuel consumption: 8.0 - 7.0* in l/100km. CO2 emissions: 183 - 159* in g/km. All data according to WLTP (* preliminary data). Further info: www.bmw.com/disclaimer Official data on fuel consumption, CO2 emissions power consumption and electric range were determined inaccordance with the mandatory measurement procedure and comply with Regulation (EU) 715/2007 valid at the time of type approval. In case of a range, figures in the NEDC take into account differences in the selected wheel and tire size; figures in the WLTP take into account any optional equipment. WLTP values are used for assessing taxes and other vehicle-related charges that are (also) based on CO2 emissions, as well as for the purposes of vehicle-specific subsidies, if applicable. Where applicable, the NEDC values listed were calculated based on the new WLTP measurement procedure and then converted back to the NEDC measurement procedure for comparability reasons. For more information on the WLTP and NEDC measurement procedures, see www.bmw.de/wltp. For further information about the official fuel consumption and the specific CO2 emission of new passenger cars can be taken out of the „handbook of fuel consumption, the CO2 emission and power consumption of new passenger cars“, which is available at all selling points and at https://www.dat.de/co2/.
https://wn.com/The_New_I7_And_The_New_7.
7 Series v S-Class v A8: Which is best?
27:28

7 Series v S-Class v A8: Which is best?

  • Order:
  • Duration: 27:28
  • Uploaded Date: 13 Oct 2023
  • views: 2358382
These are three of the most luxurious cars you can buy in 2023 - the Mercedes S-Class, BMW 7 Series and Audi A8! The question is, if you’re in the market for a luxury limousine, which should you choose? Well worry no more! Mat’s here to get hands on with all three cars to find out which should be crowned the must-have luxury limo! One area where these three cars are pretty evenly matched is the quality of their interiors. All three come packed with high-quality, soft touch materials throughout, and they all come with super comfortable seats whether you’re sat in the front or back. However, there are a couple of notable differences… For example, sit in the back of the 7 Series, and you’re treated to an absolutely HUGE infotainment screen for rear seat passengers - it’s like you’re sat in your own cinema! You’ll find screens in the back seats of the A8, too, but they are a whole lot smaller than the BMW’s. And when it comes to the S-Class, you don’t even get a screen! Thankfully though the massive infotainment screen at the front kind of makes up for this. When it comes to performance, the most powerful car here is the BMW. We’ve got our hands on the M760e edition, which means it comes with a 3-litre turbo petrol engine coupled with an electric motor, which combine to produce 571hp and 800Nm of torque. The second most powerful car is the S-Class, which s the S580e edition. It comes with a 3-litre straight-six turbo engine and an electric motor, and they combine to put down 510hp and 750Nm. Then finally we have the A8, which in this instance is the 60 TFSI e. Under the bonnet you’ll find a 3-litre V6 coupled with an electric motor, which can produce 462hp and 700Nm. So they’re all luxurious, and they’re all packed with tech. The question is, which is best?! Well there’s only one way to find out for sure - stick with Mat for this all-new group test! Chapters 00:00 Intro 00:28 Engines 01:27 0-60mph 03:18 Price 03:41 Design 04:34 Interior 07:27 Back Seats 11:00 Boot 11:52 Driving: S-Class 15:33 Back-seat Driving: S-Class 16:54 Driving: Audi A8 20:06 Back-seat Driving: A8 21:19 Driving: 7 Series 24:26 Back-seat Driving: 7 Series 26:26 Verdict Sell your car with carwow: https://bit.ly/Buy-Sell-WOW
https://wn.com/7_Series_V_S_Class_V_A8_Which_Is_Best
The all-new BMW 7 Series. Official launch film.
5:39

The all-new BMW 7 Series. Official launch film.

  • Order:
  • Duration: 5:39
  • Uploaded Date: 10 Jun 2015
  • views: 4867489
The all-new BMW 7 Series. Driving Luxury. This is the official launch film of the all-new BMW 7 Series including driving scenes. Master every performance, enjoy every moment. Our supreme aspiration: to surpass our own benchmarks. ► For more information, click here: http://www.bmw.com/7series ► If you'd like more information about the car, please have a look at the "all you need to know" film: http://youtu.be/6Viyt2aIOG8 ► For more upcoming videos subscribe to the BMW YouTube Channel: http://b.mw/youtube-subscribe ► Explore More Videos: The M8 Gran Coupé Concept. BMW 2018. https://www.youtube.com/watch?v=RzChHvJ7GEM&t=2s The Epic Driftmob feat. BMW M235i: https://www.youtube.com/watch?v=vz2rAgXjkCA ► Follow BMW on Social Media: Instagram: http://b.mw/instagram Facebook: http://b.mw/facebook Twitter: http://b.mw/twitter BMW Sheer Driving Pleasure
https://wn.com/The_All_New_Bmw_7_Series._Official_Launch_Film.
The 2023 BMW i7 Is an Amazing Ultra-Luxury $130,000 Electric Sedan
27:17

The 2023 BMW i7 Is an Amazing Ultra-Luxury $130,000 Electric Sedan

  • Order:
  • Duration: 27:17
  • Uploaded Date: 08 Nov 2022
  • views: 1760759
CHECK OUT CARS & BIDS! https://carsandbids.com 2023 BMW i7 review! The 2023 BMW i7 is an amazing ultra-luxury sedan -- and today I'm reviewing it. I'll show you all the quirks and features of the i7, and I'll show you all the cool tech in this amazing luxury sedan. I'm also going to drive the 2023 BMW i7 and review the driving experience. WEBSITE & MERCH! http://www.dougdemuro.com FOLLOW ME! Twitter - http://www.twitter.com/dougdemuro Instagram - http://www.instagram.com/dougdemuro Facebook - http://www.facebook.com/ddemuro DOUGSCORE CHART: https://www.dougdemuro.com/dougscore
https://wn.com/The_2023_Bmw_I7_Is_An_Amazing_Ultra_Luxury_130,000_Electric_Sedan
2023 BMW 7 Series M750e - Sound, Interior and Exterior in detail
8:52

2023 BMW 7 Series M750e - Sound, Interior and Exterior in detail

  • Order:
  • Duration: 8:52
  • Uploaded Date: 10 Jun 2022
  • views: 7483456
BMW M750e xDrive PHEV: Engine: I-6, 3.0 L, 490 Hp, 700 Nm 0-100 (km/h): 4.9 s Top Speed: 250 km/h Special thanks to BMW Bawaria Motors Gdańsk. Test drive: https://gdansk.bmw-bawariamotors.pl/nowe-bmw-serii-7 #bmw #bmw7
https://wn.com/2023_Bmw_7_Series_M750E_Sound,_Interior_And_Exterior_In_Detail
Did BMW just beat Mercedes?! 🤯🤯🤯
1:00

Did BMW just beat Mercedes?! 🤯🤯🤯

  • Order:
  • Duration: 1:00
  • Uploaded Date: 05 Feb 2023
  • views: 10680288
https://wn.com/Did_Bmw_Just_Beat_Mercedes_🤯🤯🤯
2023 BMW 7 Series Review // Taking The S-Class To School
23:23

2023 BMW 7 Series Review // Taking The S-Class To School

  • Order:
  • Duration: 23:23
  • Uploaded Date: 30 Nov 2022
  • views: 1705283
The 2023 BMW i7 xDrive60 ($194,200 as specced in Canada, $151,600 in the US) is the fully electric variant of the brand new 7 series lineup. Aiming to be a supremely luxurious and tech’d out experience, the new 7 series is available with a massive 31 inch entertainment screen for the rear passengers. Coupled with the optional Bowers & Wilkins surround sound system, the i7 could be mistaken for a portable movie theater. It also boasts a commendable 536 horsepower and 549 lb ft of torque from a dual motor setup, and has rear-wheel steering to boot. But does the level of luxury and tech match the hefty price tag? And how does it compare to its competition? Thomas and James share their thoughts! We hope you enjoy the episode! Thanks for watching. SUBSCRIBE! EXTRA THROTTLE HOUSE! https://www.youtube.com/c/ExtraThrottleHouse Throttle House Merch! https://www.thethrottlehouse.com/merchandise/ Instagram! https://www.instagram.com/thethrottlehouse/ Facebook! https://www.facebook.com/ThomasHollandProductions/ Post-production by Karston Chong and Thomas Holland Sound by Harrison Dickson and Karston Chong Magical genius logistics and planning by James Engelsman and Gregory DeCaire Music from Epidemicsound.com and Artlist.io #BMW #7Series #Sedan
https://wn.com/2023_Bmw_7_Series_Review_Taking_The_S_Class_To_School
BMW 7 Series 2020 in-depth review | carwow Reviews
19:51

BMW 7 Series 2020 in-depth review | carwow Reviews

  • Order:
  • Duration: 19:51
  • Uploaded Date: 14 Jun 2019
  • views: 3562003
This is the new BMW 7 Series! When it comes to luxury limousines, it’s hard to look past the 7 Series, Mercedes S-Class and Audi A8. But given it’s been a few years since a new A8 hit our streets, and even longer since a new S-Class was released, is it time for the 7 Series to take the crown of best luxury limousine out there? Join Mat for his latest in-depth review to find out! Subscribe to Mat’s Channel – https://www.youtube.com/user/MatWatsonCars Instagram – http://www.instagram.com/carwowcars Facebook – http://www.facebook.com/carwowuk/ Twitter – http://www.twitter.com/carwowuk Check out the competitors: Mercedes S-Class - http://bit.ly/Mercedes-S-Class-Review Audi A8 - http://bit.ly/Audi-A8-Review Awkward haggling is a thing of the past with carwow. Choose your perfect car with our configurator tool and let the country’s best dealers compete over you. Compare the five best offers by price, location and dealer ratings and choose the one that’s right for you – no hassle, no haggling, just a great deal. Visit our site to save money on your new car – http://bit.ly/carwow-UK Oder auch in Deutschland Geld beim Autokauf sparen – http://bit.ly/carwow-DE
https://wn.com/Bmw_7_Series_2020_In_Depth_Review_|_Carwow_Reviews
New BMW 7 Series ULTIMATE gadget!
1:00

New BMW 7 Series ULTIMATE gadget!

  • Order:
  • Duration: 1:00
  • Uploaded Date: 21 Oct 2022
  • views: 2684729
The new BMW 7 Series and i7 have some amazing tech on-board such as a 31-inch 8K cinema screen for the back seats.
https://wn.com/New_Bmw_7_Series_Ultimate_Gadget
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • New BMW 7 Series M70 review!
    17:41
    New BMW 7 Series M70 review!remove from playlist
  • The new i7 and the new 7.
    2:51
    The new i7 and the new 7.remove from playlist
  • 7 Series v S-Class v A8: Which is best?
    27:28
    7 Series v S-Class v A8: Which is best?remove from playlist
  • The all-new BMW 7 Series. Official launch film.
    5:39
    The all-new BMW 7 Series. Official launch film.remove from playlist
  • The 2023 BMW i7 Is an Amazing Ultra-Luxury $130,000 Electric Sedan
    27:17
    The 2023 BMW i7 Is an Amazing Ultra-Luxury $130,000 Electric Sedanremove from playlist
  • 2023 BMW 7 Series M750e - Sound, Interior and Exterior in detail
    8:52
    2023 BMW 7 Series M750e - Sound, Interior and Exterior in detailremove from playlist
  • 2023 BMW 7 Series Review // Taking The S-Class To School
    23:23
    2023 BMW 7 Series Review // Taking The S-Class To Schoolremove from playlist
  • BMW 7 Series 2020 in-depth review | carwow Reviews
    19:51
    BMW 7 Series 2020 in-depth review | carwow Reviewsremove from playlist
  • New BMW 7 Series ULTIMATE gadget!
    1:00
    New BMW 7 Series ULTIMATE gadget!remove from playlist
developed with YouTube
PLAYLIST TIME:

New BMW 7 Series M70 review!

This is the BMW i7 M70! The M70 is the performance version of the premium all-electric i7 released in 2022, and its design is a bit more aggressive with extensive black trim, sportier bumpers and 21-inch alloy wheels as standard with aerodynamic trim. But if you thought the sporty upgrades would translate to the cabin, not so much - it’s just as plush as the standard i7, although there are some M tricolour flashes and other M upgrades in there to keep it interesting. However, with the M70’s impressive power upgrade comes an eye-watering price hike! So is it worth the extra expense? Mat has all the answers for you to see if it stacks up against the Mercedes-AMG EQS 53+! Sell your car with carwow: https://bit.ly/Buy-Sell-WOW
17:41
New BMW 7 Series M70 review!
This is the BMW i7 M70! The M70 is the performance version of the premium all-electric i7...
published: 29 Sep 2023
Play in Full Screen
2:51
The new i7 and the new 7.
An invitation to meet the new i7. Engineering and art united to form an icon. A new, clean...
published: 20 Apr 2022
Play in Full Screen
27:28
7 Series v S-Class v A8: Which is best?
These are three of the most luxurious cars you can buy in 2023 - the Mercedes S-Class, BMW...
published: 13 Oct 2023
Play in Full Screen
5:39
The all-new BMW 7 Series. Official launch film.
The all-new BMW 7 Series. Driving Luxury. This is the official launch film of the all-new ...
published: 10 Jun 2015
Play in Full Screen
27:17
The 2023 BMW i7 Is an Amazing Ultra-Luxury $130,000 Electric Sedan
CHECK OUT CARS & BIDS! https://carsandbids.com 2023 BMW i7 review! The 2023 BMW i7 is an ...
published: 08 Nov 2022
Play in Full Screen
8:52
2023 BMW 7 Series M750e - Sound, Interior and Exterior in detail
BMW M750e xDrive PHEV: Engine: I-6, 3.0 L, 490 Hp, 700 Nm 0-100 (km/h): 4.9 s Top Speed: ...
published: 10 Jun 2022
Play in Full Screen
1:00
Did BMW just beat Mercedes?! 🤯🤯🤯
published: 05 Feb 2023
Play in Full Screen
23:23
2023 BMW 7 Series Review // Taking The S-Class To School
The 2023 BMW i7 xDrive60 ($194,200 as specced in Canada, $151,600 in the US) is the fully ...
published: 30 Nov 2022
Play in Full Screen
19:51
BMW 7 Series 2020 in-depth review | carwow Reviews
This is the new BMW 7 Series! When it comes to luxury limousines, it’s hard to look past t...
published: 14 Jun 2019
Play in Full Screen
1:00
New BMW 7 Series ULTIMATE gadget!
The new BMW 7 Series and i7 have some amazing tech on-board such as a 31-inch 8K cinema sc...
published: 21 Oct 2022
Play in Full Screen

BMW 7 Series

The BMW 7 Series a full-size luxury sedan produced by the German automaker BMW since 1977. It is the successor to the BMW E3 "New Six" sedan and is currently in its sixth generation.

The 7 Series is BMW's flagship car and is only available as a sedan or extended-length limousine. It traditionally introduces technologies and exterior design themes before they trickle down to smaller sedans in BMW's lineup.

The first generation 7 Series was powered by straight-6 petrol engines, and following generations have been powered by straight-6, v8 and v12 engines with both natural aspiration and turbocharging. Since 1995, diesel engines have been included in the 7 Series range.

E23 (1977–1986)

The BMW E23 is the first BMW 7 Series luxury car, produced by the German automaker BMW. Replacing the BMW E3 large sedan, the E23 was produced for ten years from 1977 to 1987 and was replaced by the BMW E32 7 Series in 1986.

E32 (1986–1994)

In July 1986, BMW introduced the second-generation 7-series, the E32. Some luxury options included integrated telephone and fax machines, a wine cooler, double glazing, traction control system, and a system that automatically increased spring pressure on the windscreen wipers, to keep them firmly pressed on the glass at Motorway speeds. The top-line E32 750iL was the first car in the world to offer High-Intensity Discharge headlamps.

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

Edit

Road test: BMW M5, controversial high-tech hybrid still a true M5?

Stuff 16 Jan 2025
The latest chapter in BMW’s M5 lineage has divided enthusiasts. How does it stack up in the metal? ....
Edit

BMW discontinues beloved high-performance model and halts ALL orders after just five years

The Sun 16 Jan 2025
BMW are set to discontinue the incredibly cool M8 Coupe, according to reports ... BMWThe very impressive BMW M8 Coupe is being discontinued in the US – but will it be pulled from UK showrooms, too?[/caption].
Edit

From Porsche to BMW, here is what interning at top automotive brands can offer you, ...

Hindustan Times 16 Jan 2025
Young engineers who are truly passionate about the automobile industry may have often wondered if they could ever work for top brands - be it a Porsche, Mercedes-Benz, or BMW ... Internship at BMW.
Edit

Payne: Hyundai Santa Fe sneaks up on BMW X5 luxury

Detroit news 16 Jan 2025
Badges still matter and BMW’s X-ceptional midsize model will continue to justify its rich sticker price with smooth power and that signature twin-kidney grille ... My BMW xDrive50e (alphabet soup translation ... 2025 Volkswagen Taos2024 BMW X5 xDrive 50e.
Edit

Lamborghini appoints BMW LMDh manager Leschiutta as new motorsport boss

Autosport 15 Jan 2025
Lamborghini has recruited Maurizio Leschiutta from BMW where he headed up the M ...
Edit

Moment stubborn BMW driver refuses to let car into lane in bizarre road rage row

The Mirror 15 Jan 2025
Two cars were spotted fighting for the same piece of tarmac in Ealing, west London, as they nearly drove into one another and the vehicle in front, before one made a rude gesture ... .
Edit

BMW axes M8 Coupe, while convertible remains (for now)

Driving 15 Jan 2025
BMW has officially ended sales of the M8 Coupe in the United States ... from BMW's U.S.
Edit

SelfDrive Mobility unveils BMW and Mini Cooper models

GCC Business News 15 Jan 2025
Featured options include the elegant BMW 520i, the stylish BMW 420i Grand Coupe, the sporty X Series M Sport Version, and the iconic Mini Cooper.
Edit

Selfdrive unveils 2025 BMW and Mini Cooper for rent

Khaleejtimes 15 Jan 2025
Featured options include the elegant BMW 520i, the stylish BMW 420i Grand Coupe, the sporty X Series M Sport Version, and the iconic Mini Cooper.
Edit

Pictured: British schoolboy, 12, killed when he was 'thrown from BMW' while travelling with his ...

The Daily Mail 15 Jan 2025
Pictured for the first time, Daniel Rubin suffered fatal injuries when he was thrown from a BMW car he was travelling in with his family on the E40 highway near Veurne, close to the border with France, in the early hours of Wednesday morning.
Edit

Season Launch with the BMW World Championship factory teams in Berlin. (BMW - Bayerische Motoren Werke AG)

Public Technologies 15 Jan 2025
) Season Launch with the BMW World Championship factory teams in Berlin ... "I am very excited about the new season, and today's event showed that the entire BMW Motorrad Motorsport and BMW Group are fully behind this.
Edit

BMW India to launch new X3, S 1000 RR and more at Bharat Mobility Expo: Check full list

The Times of India 15 Jan 2025
... Motorrad display will also include the BMW M 1000 XR, BMW R 1300 GS, BMW F 900 GS, BMW F 900 GSA, BMW R 12 nine T, BMW G 310 GS, G 310 R, G 310 RR and the all-electric BMW CE 02 and BMW CE 04.

Most Viewed

×