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

David Bowie

David Robert Jones (8 January 1947 – 10 January 2016), known as David Bowie (/ˈb.i/), was an English singer, songwriter, multi-instrumentalist, record producer, painter, and actor. He was a figure in popular music for over five decades, and was considered by critics and musicians as an innovator, particularly for his work in the 1970s. His career was marked by reinvention and visual presentation, and his music and stagecraft significantly impacted popular music. During his lifetime, he sold an estimated 140 million records worldwide. In the UK, he was awarded nine platinum album certifications, eleven gold and eight silver, and released eleven number-one albums. In the US, he received five platinum and seven gold certifications. He was inducted into the Rock and Roll Hall of Fame in 1996.

David Bowie (box set)

David Bowie (often referred to as David Bowie Box or Bowie Box Set) is a box set released by Sony Music Entertainment and Columbia Records. The box set includes expanded versions of all Sony-owned albums by David Bowie: Outside, Earthling, 'Hours...', Heathen and Reality (The three albums - Outside, Earthling, and "hours..." were originally issued on Virgin Records in America, but released by BMG internationally).

Track listing

Outside

  • "Leon Takes Us Outside"
  • "Outside"
  • "The Hearts Filthy Lesson"
  • "Small Plot of Land"
  • "Segue – Baby Grace (A Horrid Cassette)"
  • "Hallo Spaceboy"
  • "The Motel"
  • "I Have Not Been to Oxford Town"
  • "No Control"
  • "Segue – Algeria Touchshriek"
  • "Voyeur of Utter Destruction (As Beauty)"
  • "Segue – Ramona A. Stone/I Am With Name"
  • "Wishful Beginnings"
  • "We Prick You"
  • "Segue – Nathan Adler"
  • "I'm Deranged"
  • "Thru' These Architects Eyes"
  • "Segue – Nathan Adler [Album Version # 2]"
  • "Strangers When We Meet"
  • "The Hearts Filthy Lesson [Trent Reznor Alternative Mix]"
  • "The Hearts Filthy Lesson [Rubber Mix]"
  • David Bowie (1967 album)

    David Bowie is the debut studio album by English musician David Bowie, released on 1 June 1967, on Deram Records.

    Its content bears little overt resemblance to the type of music that later made him famous, such as the folk rock of "Space Oddity" or the glam rock of The Rise and Fall of Ziggy Stardust and the Spiders from Mars. NME critics Roy Carr and Charles Shaar Murray have said, "a listener strictly accustomed to David Bowie in his assorted '70s guises would probably find this debut album either shocking or else simply quaint", while biographer David Buckley describes its status in the Bowie discography as "the vinyl equivalent of the madwoman in the attic".The Village Voice critic Robert Christgau considered this debut and its followup to be "overwrought excursions".

    Influences

    David Bowie's influences at this stage of his career included the theatrical tunes of Anthony Newley, music hall numbers by acts like Tommy Steele, some of the more whimsical and 'British' material by Ray Davies of the Kinks, Syd Barrett's slightly cracked nursery rhymes for the early Pink Floyd, and the Edwardian flam shared by such contemporary songs as the Beatles' "Being for the Benefit of Mr. Kite!" The desire of Bowie's then-manager, Ken Pitt, for his charge to become an 'all-round entertainer' rather than a 'rock star' has also been cited as impacting the songwriter's style at this time, which virtually eschewed any rock 'n' roll trappings. Bowie himself said that his debut album "seemed to have its roots all over the place, in rock and vaudeville and music hall. I didn't know if I was Max Miller or Elvis Presley".

    Podcasts:

    David Bowie

    ALBUMS

    • David Bowie – Space Oddity (Official Video)

      The official music video for David Bowie - Space Oddity Taken from Bowie's 2nd studio album 'David Bowie' released in 1969 (aka Space Oddity), of which this was the only single. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album 'David Bowie (1969)' here: https://www.youtube.com/playlist?list=OLAK5uy_kYgfG7NdKRrwMqY6v8ma_wfGW2Ai3x2OE Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Produced & directed by Mick Rock – New York, December 1972. Copyright Mick Roc...

      published: 09 Jul 2015
    • David Bowie - Heroes

      David Bowie performing Heroes, live in Berlin. In this iconic live recording, David Bowie delivers a mesmerizing performance of "Heroes" during his 2002 concert tour, aptly named "The David Bowie Heathen Tour." Originally released 25 years prior, in 1977, as the title track of Bowie's 12th studio album, "Heroes" holds a special place in the hearts of fans worldwide. This rendition captures the essence of Bowie's artistry and his ability to captivate audiences with his powerful vocals and magnetic stage presence. The song's anthemic quality and emotive lyrics resonate deeply, reflecting the spirit of resilience and defiance that has made it an enduring classic. This recording stands as a testament to Bowie's remarkable impact on the music industry and his ability to create timeless maste...

      published: 17 Mar 2010
    • David Bowie - Let's Dance (Official Video)

      The official music video for David Bowie - Let's Dance. Taken from Bowie's 'Let's Dance' album released in 1983, which featured the singles 'Let's Dance', 'China Girl', 'Modern Love' and 'Without You'. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the Album Let's Dance here: https://music.youtube.com/playlist?list=OLAK5uy_kI3Tm2L8DXgnJ2qmvEoDOgONoMSlPzYTs Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Lyrics Ah, ah, ah, ah (Let's dance) (Let's dance) (Let's d...

      published: 14 Jun 2018
    • David Bowie - Starman (Official Video)

      The official video for Starman by David Bowie, featuring footage from the Ziggy Stardust tour shot in the UK during 1972 and 1973. Filmed by late Bowie collaborator, photographer Mick Rock, the footage features the album version of Starman as its soundtrack. The Dolby Atmos spatial audio mix of The Rise and Fall of Ziggy Stardust and the Spiders from Mars will be released on Blu-ray audio on 6 September. Pre-order now: https://davidbowie.lnk.to/ZiggyStardustAtmos Rock 'n' Roll Star! is the 5CD/1 Blu-Ray audio set exploring David Bowie's journey from February 1971 through the creation of the Ziggy Stardust character, the recording of the iconic 'The Rise and Fall of Ziggy Stardust and the Spiders From Mars' album, and captures the international mania that surrounded the Ziggy phenomenon...

      published: 27 Aug 2024
    • David Bowie - Starman (Top Of The Pops, 1972)

      Celebrating the 50th anniversary of David Bowie's legendary Starman performance on Top of the Pops. The performance changed the course of music forever. Recorded a day earlier at the BBC Television Centre in White City, the performance is undoubtedly one of the most essential pieces of music television ever broadcast. It has influenced generations of musicians, artists and writers who saw it at the time and countless others who have since seen it over the decades, from bootleg VHS copies to YouTube clips. The performance launched Bowie to stardom. Thursday 6th July, 1972, is said to be 'the day that invented the 80’s’ as so many musicians who went on to be household names saw the performance and it changed their lives. Those watching that night included U2’s Bono, The Cure’s Robert Smit...

      published: 06 Jul 2022
    • David Bowie - Lazarus (Video)

      "Lazarus" by David Bowie Listen to David Bowie: https://DavidBowie.lnk.to/listenYD Watch more David Bowie videos: https://DavidBowie.lnk.to/listenYD/youtube Subscribe to the official David Bowie YouTube channel: https://DavidBowie.lnk.to/subscribeYD Follow David Bowie: Facebook: https://DavidBowie.lnk.to/followFI/facebook Instagram: https://DavidBowie.lnk.to/followII/instagram Twitter: https://DavidBowie.lnk.to/followTI/twitter Website: https://DavidBowie.lnk.to/followWI/websitegeneral Spotify: https://DavidBowie.lnk.to/followSI/spotify YouTube: https://DavidBowie.lnk.to/listenYD Lyrics: By the time I got to New York I was living like a king There I used up all my money I was looking for your ass #DavidBowie #Lazarus #Rock

      published: 07 Jan 2016
    • David Bowie – Life On Mars? (Official Video)

      The official music video for David Bowie - Life On Mars? Taken from Bowie's 4th studio album 'Hunky Dory' released in 1971, which featured the singles 'Changes/Andy Warhol' & 'Life On Mars'. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album 'Hunky Dory' here: https://music.youtube.com/playlist?list=OLAK5uy_nfEz-DQaaOPToux-c7m96jM3pTztb0R-k&feature=share Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Lyrics: It's a God-awful small affair To the girl with th...

      published: 09 Jul 2015
    • David Bowie - Ashes To Ashes

      Music video by David Bowie performing Ashes To Ashes.

      published: 06 Mar 2009
    • Space Oddity - Acoustic Cover (David Bowie)

      I messed up the lyrics.

      published: 23 Sep 2024
    • David Bowie - Heroes (Official Video)

      The official music video for David Bowie - Heroes Taken from Bowie's 'Heroes' album released in 1977, which featured the singles 'Heroes' / 'V-2 Schneider' and 'Beauty and the Beast' / 'Sense of Doubt' Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album Heroes here: https://www.youtube.com/playlist?list=OLAK5uy_mO2pGEUc5-vrZZDGEi9uJI33xEZfYGCh0 Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Lyrics I, I will be king And you, you will be queen Though nothing, ...

      published: 13 Jun 2018
    David Bowie – Space Oddity (Official Video)
    5:05

    David Bowie – Space Oddity (Official Video)

    • Order:
    • Duration: 5:05
    • Uploaded Date: 09 Jul 2015
    • views: 136944881
    The official music video for David Bowie - Space Oddity Taken from Bowie's 2nd studio album 'David Bowie' released in 1969 (aka Space Oddity), of which this was the only single. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album 'David Bowie (1969)' here: https://www.youtube.com/playlist?list=OLAK5uy_kYgfG7NdKRrwMqY6v8ma_wfGW2Ai3x2OE Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Produced & directed by Mick Rock – New York, December 1972. Copyright Mick Rock 2002. Lyrics: Ground Control to Major Tom Ground Control to Major Tom Take your protein pills and put your helmet on Ground Control to Major Tom Commencing countdown, engines on Check ignition and may God's love be with you Ten, Nine, Eight, Seven, Six, Five, Four, Three, Two, One, Liftoff This is Ground Control to Major Tom You've really made the grade And the papers want to know whose shirts you wear Now it's time to leave the capsule if you dare This is Major Tom to Ground Control I'm stepping through the door And I'm floating in a most peculiar way And the stars look very different today For here Am I sitting in a tin can Far above the world Planet Earth is blue And there's nothing I can do Though I'm past one hundred thousand miles I'm feeling very still And I think my spaceship knows which way to go Tell my wife I love her very much she knows Ground Control to Major Tom Your circuit's dead, there's something wrong Can you hear me, Major Tom? Can you hear me, Major Tom? Can you hear me, Major Tom? Can you.... Here am I floating round my tin can Far above the Moon Planet Earth is blue And there's nothing I can do About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #SpaceOddity #MajorTom #Bowie
    https://wn.com/David_Bowie_–_Space_Oddity_(Official_Video)
    David Bowie - Heroes
    7:33

    David Bowie - Heroes

    • Order:
    • Duration: 7:33
    • Uploaded Date: 17 Mar 2010
    • views: 223725614
    David Bowie performing Heroes, live in Berlin. In this iconic live recording, David Bowie delivers a mesmerizing performance of "Heroes" during his 2002 concert tour, aptly named "The David Bowie Heathen Tour." Originally released 25 years prior, in 1977, as the title track of Bowie's 12th studio album, "Heroes" holds a special place in the hearts of fans worldwide. This rendition captures the essence of Bowie's artistry and his ability to captivate audiences with his powerful vocals and magnetic stage presence. The song's anthemic quality and emotive lyrics resonate deeply, reflecting the spirit of resilience and defiance that has made it an enduring classic. This recording stands as a testament to Bowie's remarkable impact on the music industry and his ability to create timeless masterpieces. For more incredible performances and a deeper dive into David Bowie's extensive catalog, fans can explore the playlist provided, immersing themselves in the diverse and groundbreaking music of this iconic artist. More original performances from David Bowie: https://www.youtube.com/playlist?list=PL7124DA5540981476 More from David Bowie: YouTube: https://www.youtube.com/channel/UC8YgWcDKi1rLbQ1OtrOHeDw Spotify: https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy?autoplay=true Apple Music: https://music.apple.com/artist/david-bowie/551695 Subscribe to Broken Ridge Records: http://www.youtube.com/channel/UC8_PcisK6k4lMkNDoSesDaA #DavidBowie #Heroes #BrokenRidgeRecords
    https://wn.com/David_Bowie_Heroes
    David Bowie - Let's Dance (Official Video)
    4:09

    David Bowie - Let's Dance (Official Video)

    • Order:
    • Duration: 4:09
    • Uploaded Date: 14 Jun 2018
    • views: 69577074
    The official music video for David Bowie - Let's Dance. Taken from Bowie's 'Let's Dance' album released in 1983, which featured the singles 'Let's Dance', 'China Girl', 'Modern Love' and 'Without You'. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the Album Let's Dance here: https://music.youtube.com/playlist?list=OLAK5uy_kI3Tm2L8DXgnJ2qmvEoDOgONoMSlPzYTs Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Lyrics Ah, ah, ah, ah (Let's dance) (Let's dance) (Let's dance) Put on your red shoes and dance the blues (Let's dance) To the song they're playing on the radio (Let's sway) While colour lights up your face (Let's sway) Sway through the crowd to an empty space If you say run, I'll run with you And if you say hide, we'll hide Because my love for you Would break my heart in two If you should fall, into my arms And tremble like a flower (Let's dance) (Let's dance) (Let's dance) For fear your grace should fall (Let's dance) For fear tonight is all (Let's sway) You could look into my eyes (Let's sway) Under the moonlight, this serious moonlight And if you say run, I'll run with you And if you say hide, we'll hide Because my love for you Would break my heart in two If you should fall, into my arms And tremble like a flower (Let's dance) (Let's dance) (Let's dance) Put on your red shoes and dance the blues (Let's dance) To the song we're playing (Let's sway) (Let's sway) Under the moonlight, this serious moonlight (Let's dance) (Let's) (Let's) (Let's) (Let's dance) (Let's) Let's dance, dance, dance, dance, dance, dance, dance, dance (Let's dance) (Let's sway) (Let's sway) Let's dance, dance, dance, dance, dance, dance, dance, dance (Let's dance) (Let's dance) (Let's dance) (Let's dance) About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #LetsDance #Bowie
    https://wn.com/David_Bowie_Let's_Dance_(Official_Video)
    David Bowie - Starman (Official Video)
    4:18

    David Bowie - Starman (Official Video)

    • Order:
    • Duration: 4:18
    • Uploaded Date: 27 Aug 2024
    • views: 11030374
    The official video for Starman by David Bowie, featuring footage from the Ziggy Stardust tour shot in the UK during 1972 and 1973. Filmed by late Bowie collaborator, photographer Mick Rock, the footage features the album version of Starman as its soundtrack. The Dolby Atmos spatial audio mix of The Rise and Fall of Ziggy Stardust and the Spiders from Mars will be released on Blu-ray audio on 6 September. Pre-order now: https://davidbowie.lnk.to/ZiggyStardustAtmos Rock 'n' Roll Star! is the 5CD/1 Blu-Ray audio set exploring David Bowie's journey from February 1971 through the creation of the Ziggy Stardust character, the recording of the iconic 'The Rise and Fall of Ziggy Stardust and the Spiders From Mars' album, and captures the international mania that surrounded the Ziggy phenomenon in the form of UK radio sessions and TV performances. Live from Ziggy and the Spiders’ 1st October 1972 show at the Boston Music Hall also feature. Available to buy now: https://davidbowie.lnk.to/RocknRollStar Produced and directed by Mick Rock Copyright: (C) 2024 The copyright in this visual recording is owned by The Estate Of Mick Rock and (P) 1972, 2012 The copyright in this sound recording is owned by Jones Tintoretto Entertainment Company LLC under exclusive license to Parlophone Records Ltd. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here: http://bit.ly/2lO9yQo Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ https://www.tiktok.com/@davidbowie About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. #DavidBowie #MickRock #ZiggyStardust #RocknRollStar! #Bowie
    https://wn.com/David_Bowie_Starman_(Official_Video)
    David Bowie - Starman (Top Of The Pops, 1972)
    3:33

    David Bowie - Starman (Top Of The Pops, 1972)

    • Order:
    • Duration: 3:33
    • Uploaded Date: 06 Jul 2022
    • views: 16288014
    Celebrating the 50th anniversary of David Bowie's legendary Starman performance on Top of the Pops. The performance changed the course of music forever. Recorded a day earlier at the BBC Television Centre in White City, the performance is undoubtedly one of the most essential pieces of music television ever broadcast. It has influenced generations of musicians, artists and writers who saw it at the time and countless others who have since seen it over the decades, from bootleg VHS copies to YouTube clips. The performance launched Bowie to stardom. Thursday 6th July, 1972, is said to be 'the day that invented the 80’s’ as so many musicians who went on to be household names saw the performance and it changed their lives. Those watching that night included U2’s Bono, The Cure’s Robert Smith, Boy George, Adam Ant, Mick Jones of the Clash, Gary Kemp of Spandau Ballet, Morrissey and Johnny Marr of the Smiths, Siouxsie Sioux, Toyah Willcox, John Taylor and Nick Rhodes of Duran Duran, Dave Gahan of Depeche Mode and many more. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - http://bit.ly/2lO9yQo Listen to more from David Bowie here: https://davidbowieplaylist.lnk.to/ziggystardust50 Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #Starman #TOTP #Bowie
    https://wn.com/David_Bowie_Starman_(Top_Of_The_Pops,_1972)
    David Bowie - Lazarus (Video)
    4:09

    David Bowie - Lazarus (Video)

    • Order:
    • Duration: 4:09
    • Uploaded Date: 07 Jan 2016
    • views: 66070603
    "Lazarus" by David Bowie Listen to David Bowie: https://DavidBowie.lnk.to/listenYD Watch more David Bowie videos: https://DavidBowie.lnk.to/listenYD/youtube Subscribe to the official David Bowie YouTube channel: https://DavidBowie.lnk.to/subscribeYD Follow David Bowie: Facebook: https://DavidBowie.lnk.to/followFI/facebook Instagram: https://DavidBowie.lnk.to/followII/instagram Twitter: https://DavidBowie.lnk.to/followTI/twitter Website: https://DavidBowie.lnk.to/followWI/websitegeneral Spotify: https://DavidBowie.lnk.to/followSI/spotify YouTube: https://DavidBowie.lnk.to/listenYD Lyrics: By the time I got to New York I was living like a king There I used up all my money I was looking for your ass #DavidBowie #Lazarus #Rock
    https://wn.com/David_Bowie_Lazarus_(Video)
    David Bowie – Life On Mars? (Official Video)
    4:10

    David Bowie – Life On Mars? (Official Video)

    • Order:
    • Duration: 4:10
    • Uploaded Date: 09 Jul 2015
    • views: 50018647
    The official music video for David Bowie - Life On Mars? Taken from Bowie's 4th studio album 'Hunky Dory' released in 1971, which featured the singles 'Changes/Andy Warhol' & 'Life On Mars'. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album 'Hunky Dory' here: https://music.youtube.com/playlist?list=OLAK5uy_nfEz-DQaaOPToux-c7m96jM3pTztb0R-k&feature=share Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Lyrics: It's a God-awful small affair To the girl with the mousy hair But her mummy is yelling no And her daddy has told her to go But her friend is nowhere to be seen Now she walks through her sunken dream To the seat with the clearest view And she's hooked to the silver screen But the film is a saddening bore For she's lived it ten times or more She could spit in the eyes of fools As they ask her to focus on Sailors fighting in the dance hall Oh man, look at those cavemen go It's the freakiest show Take a look at the lawman Beating up the wrong guy Oh man, wonder if he'll ever know He's in the best selling show Is there life on Mars? It's on America's tortured brow That Mickey Mouse has grown up a cow Now the workers have struck for fame 'Cause Lennon's on sale again See the mice in their million hordes From Ibiza to the Norfolk Broads Rule Britannia is out of bounds To my mother, my dog, and clowns But the film is a saddening bore 'Cause I wrote it ten times or more It's about to be writ again As I ask you to focus on Sailors fighting in the dance hall Oh man, look at those cavemen go It's the freakiest show Take a look at the lawman Beating up the wrong guy Oh man, wonder if he'll ever know He's in the best selling show Is there life on Mars? About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #LifeOnMars #HunkyDory #Bowie
    https://wn.com/David_Bowie_–_Life_On_Mars_(Official_Video)
    David Bowie - Ashes To Ashes
    3:50

    David Bowie - Ashes To Ashes

    • Order:
    • Duration: 3:50
    • Uploaded Date: 06 Mar 2009
    • views: 32014879
    Music video by David Bowie performing Ashes To Ashes.
    https://wn.com/David_Bowie_Ashes_To_Ashes
    Space Oddity - Acoustic Cover (David Bowie)
    5:04

    Space Oddity - Acoustic Cover (David Bowie)

    • Order:
    • Duration: 5:04
    • Uploaded Date: 23 Sep 2024
    • views: 193
    I messed up the lyrics.
    https://wn.com/Space_Oddity_Acoustic_Cover_(David_Bowie)
    David Bowie - Heroes (Official Video)
    3:29

    David Bowie - Heroes (Official Video)

    • Order:
    • Duration: 3:29
    • Uploaded Date: 13 Jun 2018
    • views: 43989428
    The official music video for David Bowie - Heroes Taken from Bowie's 'Heroes' album released in 1977, which featured the singles 'Heroes' / 'V-2 Schneider' and 'Beauty and the Beast' / 'Sense of Doubt' Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album Heroes here: https://www.youtube.com/playlist?list=OLAK5uy_mO2pGEUc5-vrZZDGEi9uJI33xEZfYGCh0 Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Lyrics I, I will be king And you, you will be queen Though nothing, will drive them away We can beat them, just for one day We can be heroes, just for one day And you, you can be mean And I, I'll drink all the time 'Cause we're lovers, and that is a fact Yes we're lovers, and that is that Though nothing, will keep us together We could steal time, just for one day We can be heroes, forever and ever What d'you say? I, I wish you could swim Like the dolphins, like dolphins can swim Though nothing, nothing will keep us together We can beat them, forever and ever Oh we can be heroes, just for one day I, I will be king And you, you will be queen Though nothing, will drive them away We can be heroes, just for one day We can be us, just for one day I, I can remember (I remember) Standing, by the wall (by the wall) And the guns, shot above our heads (over our heads) And we kissed, as though nothing could fall (nothing could fall) And the shame, was on the other side Oh we can beat them, forever and ever Then we could be heroes, just for one day We can be heroes We can be heroes We can be heroes, just for one day We can be heroes We're nothing, and nothing will help us Maybe we're lying, then you better not stay But we could be safer, just for one day Oh-oh-oh-ohh, oh-oh-oh-ohh, just for one day About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #Heroes #Bowie
    https://wn.com/David_Bowie_Heroes_(Official_Video)
    • David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxing

      This is a review and unboxing for the new David Bowie boxset Rock ‘N’ Roll Star. The boxset dives deep into the era and recordings surround the iconic album The Rise And Fall Of Ziggy Stardust & The Spiders From Mars. The classic album from 1972. Related videos: David Bowie - Toy - Album Review https://youtu.be/-g_MDAbqE_Y Please help support my channel by subscribing, leave comment, and hit like.

      published: 16 Jun 2024
    • Unboxing David Bowie - 'Who Can I Be Now? (1974 – 1976)'

      Official unboxing video for the David Bowie 'Who Can I Be Now? (1974 – 1976)' box set. Buy your copy of 'Who Can I Be Now' now: CD: http://smarturl.it/Bowie7476CD LP: http://smarturl.it/Bowie7476LP Download: http://smarturl.it/Bowie7476iT Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a v...

      published: 05 Aug 2016
    • FIRST LOOK: David Bowie - Rock 'n' Roll Star! 5CD/1BR Box Set

      On this video, I will be giving you a first look at the David Bowie - Rock 'n' Roll Star! 5CD/1BR box set. I would personally like to thank Rhino Records for sending me a copy to unbox for the channel. If you're inclined to hear my thoughts on the set, read the review at trackingangle.com. Be sure to subscribe to the channel! Leave comments letting me know what you'd like to see! Follow me on all the social media platforms and you can see what I've been spinning lately! Facebook: https://www.facebook.com/TheRecordSpinner Twitter: https://twitter.com/Record_Spinner Instagram: https://www.instagram.com/the_record_spinner TikTok: https://www.tiktok.com/@therecordspinner Read my articles on VWMusic: https://vwmusicrocks.com/the-record-spinner-archives/ Merchandise is available! T-Shirts: ...

      published: 14 Jun 2024
    • NEW David Bowie Box Offers Ziggy Stardust Origin: Rock 'N Roll Star!

      The David Bowie archives have opened once again, this time to share the origins of Ziggy Stardust. Watch this video for details on the new box set "Rock 'N Roll Star!" #davidbowie #ziggystardust DISCLOSURE: This channel uses affiliate links, meaning if you click the links below and make a purchase, Track X Track may earn a commission from that sale at no additional cost to you. ► CHECK OUT MY MUSIC ROOM: https://youtu.be/2vhyUeyupBo ► HOW I RATE ALBUMS: 10. CLASSIC- Among the best albums ever 9. MASTERPIECE- The pinnacle of the artist’s career 8. EXCELLENT- One of the best albums of the year 7. VERY GOOD- Very enjoyable with few missteps 6. GOOD- Solid album with a few great songs 5. FINE- OK album but not very interesting 4. DISAPPOINTING- A real letdown that should be much b...

      published: 21 Mar 2024
    • Unboxing the David Bowie - Five Years 1969-1973 Box Set (Sunboxing #27) | Vinyl Community

      On this 27th episode of the Sunboxing series, I will be unboxing the David Bowie - Five Years 1969-1973 box set. Be sure to subscribe to the channel! Leave comments letting me know what you'd like to see! Follow me on all the social media platforms and you can see what I've been spinning lately! Facebook: https://www.facebook.com/TheRecordSpinner Twitter: https://twitter.com/Record_Spinner Instagram: https://www.instagram.com/the_record_spinner Support the channel on Patreon: https://www.patreon.com/therecordspinner Merchandise is available! T-Shirts: https://www.amazon.com/s?rh=n%3A7141123011%2Cp_4%3AThe+Record+Spinner&ref=bl_sl_s_ap_web_7141123011 Mugs, Buttons, Tote Bags and (for a limited time) Face Masks: https://www.redbubble.com/people/Record-Spinner/shop Stickers: https://www.e...

      published: 06 Mar 2022
    • Unboxing David Bowie (Five Years 1969 – 1973)

      David Bowie (Five Years 1969 – 1973) available as 2 beautifully packaged Limited Edition box sets; on 180g audiophile vinyl and on CD, complete with companion book featuring memorabilia, rare and previously unseen photos, hand written lyrics, original album press reviews and much more. Order now: CD Boxset: http://smarturl.it/Bowie5YearsCD Vinyl Boxset: http://smarturl.it/Bowie5YearsVinyl iTunes: http://smarturl.it/Bowie5YearsiTunes Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieR...

      published: 23 Jun 2015
    • Unboxing 'David Bowie: Loving the Alien [1983-1988]'

      Unboxing the contents of the newly released 'David Bowie: Loving the Alien (1983-1988)' box set on vinyl. Order now: https://lnk.to/LovingTheAlien Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albu...

      published: 03 Nov 2018
    • UNBOXING DAVID BOWIE ZEIT! 77-79 BOX SET

      BOX SET DE DAVID BOWIE ZEIT! 77-79 SUSCRIBETE Y DALE A LIKE

      published: 23 Jan 2019
    • TUESDAY LIVE VINYL RECORD SHOW - August 27, 2024

      Starting at 8pm ET, 7pm CT, 5pm PT/Arizona we'll be streaming live on Facebook, YouTube, and X. Get ready for an evening of raw, unfiltered rock and roll as we feature some incredible original pressings, including: Def Leppard, Bobby Brown, Poison, The Dream Academy, Jody Watley, The Power Station, Heart, Huey Lewis & the News, and more. Expand your collection with these rare and classic albums. Whether you’re a seasoned collector or just starting, our curated selection has something for every music fan. Engage with us live, experience the thrill of the hunt, and score those coveted records from the comfort of your home. Join Amanda, Jenn, Kaycie, and Malcolm tonight. Watch live, chat with us, and immerse yourself in a night of music history, community, and exclusive vinyl deals. Follo...

      published: 28 Aug 2024
    • UNBOXED: David Bowie NEW & RARE "Brilliant Live Adventures" Complete Set!

      The new David Bowie box set "Brilliant Live Adventures" has been released one disc at a time since October 2020 and has become one of the most frustrating album releases ever! I was lucky enough to get all six volumes and the hard to snag slipcase. In this video, take a look at what all the fuss was about! ► RECOMMENDED VIEWING- Watch my other David Bowie videos: https://youtube.com/playlist?list=PLnbgIQIfJEyZqTrCzqV8WMqD1k3bj7UJ3 #DavidBowie #BrilliantLiveAdventures #Unboxing DISCLOSURE: This channel uses affiliate links, meaning if you click the links below and make a purchase, Track X Track may earn a commission from that sale at no additional cost to you. ► CHECK OUT MY MUSIC ROOM: https://youtu.be/2vhyUeyupBo ► HOW I RATE ALBUMS: 10. CLASSIC- Among the best albums ever...

      published: 04 Apr 2021
    David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxing
    17:15

    David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxing

    • Order:
    • Duration: 17:15
    • Uploaded Date: 16 Jun 2024
    • views: 3538
    This is a review and unboxing for the new David Bowie boxset Rock ‘N’ Roll Star. The boxset dives deep into the era and recordings surround the iconic album The Rise And Fall Of Ziggy Stardust & The Spiders From Mars. The classic album from 1972. Related videos: David Bowie - Toy - Album Review https://youtu.be/-g_MDAbqE_Y Please help support my channel by subscribing, leave comment, and hit like.
    https://wn.com/David_Bowie_Rock_‘N’_Roll_Star_New_Boxset_Review_Unboxing
    Unboxing David Bowie - 'Who Can I Be Now? (1974 – 1976)'
    0:30

    Unboxing David Bowie - 'Who Can I Be Now? (1974 – 1976)'

    • Order:
    • Duration: 0:30
    • Uploaded Date: 05 Aug 2016
    • views: 53775
    Official unboxing video for the David Bowie 'Who Can I Be Now? (1974 – 1976)' box set. Buy your copy of 'Who Can I Be Now' now: CD: http://smarturl.it/Bowie7476CD LP: http://smarturl.it/Bowie7476LP Download: http://smarturl.it/Bowie7476iT Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #WhoCanIBeNow #Unboxing
    https://wn.com/Unboxing_David_Bowie_'Who_Can_I_Be_Now_(1974_–_1976)'
    FIRST LOOK: David Bowie - Rock 'n' Roll Star! 5CD/1BR Box Set
    20:23

    FIRST LOOK: David Bowie - Rock 'n' Roll Star! 5CD/1BR Box Set

    • Order:
    • Duration: 20:23
    • Uploaded Date: 14 Jun 2024
    • views: 3474
    On this video, I will be giving you a first look at the David Bowie - Rock 'n' Roll Star! 5CD/1BR box set. I would personally like to thank Rhino Records for sending me a copy to unbox for the channel. If you're inclined to hear my thoughts on the set, read the review at trackingangle.com. Be sure to subscribe to the channel! Leave comments letting me know what you'd like to see! Follow me on all the social media platforms and you can see what I've been spinning lately! Facebook: https://www.facebook.com/TheRecordSpinner Twitter: https://twitter.com/Record_Spinner Instagram: https://www.instagram.com/the_record_spinner TikTok: https://www.tiktok.com/@therecordspinner Read my articles on VWMusic: https://vwmusicrocks.com/the-record-spinner-archives/ Merchandise is available! T-Shirts: https://www.amazon.com/s?rh=n%3A7141123011%2Cp_4%3AThe+Record+Spinner&ref=bl_sl_s_ap_web_7141123011 Mugs, Buttons, & Tote Bags: https://www.redbubble.com/people/Record-Spinner/shop Stickers: https://www.etsy.com/shop/TheRecordSpinner Check me out on Discogs: https://www.discogs.com/user/TheRecordSpinner For business inquiries, contact me at: recordspinner97@gmail.com Equipment: Audio Technica AT-LP120XUSB: https://www.amazon.com/Audio-Technica-AT-LP120XUSB-Direct-Drive-Hi-Fidelity-Anti-Skate/dp/B07N3S4X3P/ref=sr_1_3?crid=3FY20J989BMK6&keywords=audio+technica+lp120&qid=1673496668&sprefix=audio+technica+lp%2Caps%2C309&sr=8-3&ufe=app_do%3Aamzn1.fos.18630bbb-fcbb-42f8-9767-857e17e03685 https://www.amazon.com/Klipsch-R-41PM-Powered-Bookshelf-Speaker/dp/B07FK48JW8/ref=sr_1_2?crid=R8VDZPRUXEJH&keywords=klipsch+r-41pm&qid=1673496746&sprefix=klipsch+r%2Caps%2C311&sr=8-2&ufe=app_do%3Aamzn1.fos.18630bbb-fcbb-42f8-9767-857e17e03685 Accessories: MoFi Inner Sleeves: https://amzn.to/2ZJTsu0 MoFi Outer Sleeves: https://amzn.to/37hmfIK Vinyl Styl Carbon Fiber Record Brush: https://amzn.to/2Q86bU3 7" Vinyl Adapter: https://amzn.to/2MGAcIw Audio Technica Stylus Cleaner: https://www.amazon.com/Audio-Technica-AT617a-Cartridge-Stylus-Cleaner/dp/B07JJ327T9/ref=sr_1_4?crid=2LE0HK2ET7WPI&keywords=audio+technica+stylus+cleaner&qid=1673496919&sprefix=audio+technica+stylus+cl%2Caps%2C2008&sr=8-4
    https://wn.com/First_Look_David_Bowie_Rock_'n'_Roll_Star_5Cd_1Br_Box_Set
    NEW David Bowie Box Offers Ziggy Stardust Origin: Rock 'N Roll Star!
    1:31

    NEW David Bowie Box Offers Ziggy Stardust Origin: Rock 'N Roll Star!

    • Order:
    • Duration: 1:31
    • Uploaded Date: 21 Mar 2024
    • views: 1250
    The David Bowie archives have opened once again, this time to share the origins of Ziggy Stardust. Watch this video for details on the new box set "Rock 'N Roll Star!" #davidbowie #ziggystardust DISCLOSURE: This channel uses affiliate links, meaning if you click the links below and make a purchase, Track X Track may earn a commission from that sale at no additional cost to you. ► CHECK OUT MY MUSIC ROOM: https://youtu.be/2vhyUeyupBo ► HOW I RATE ALBUMS: 10. CLASSIC- Among the best albums ever 9. MASTERPIECE- The pinnacle of the artist’s career 8. EXCELLENT- One of the best albums of the year 7. VERY GOOD- Very enjoyable with few missteps 6. GOOD- Solid album with a few great songs 5. FINE- OK album but not very interesting 4. DISAPPOINTING- A real letdown that should be much better 3. BAD- Hard to listen to all the way through 2. VERY BAD- Almost no redeeming qualities 1. TERRIBLE- One of the worst albums ever For more details on how I rate albums, watch this video: https://youtu.be/fi85D4R0_Tc ► Check out my novel on AMAZON PRIME: ● “Hawking’s Grove”: http://www.trackxtrack.com/hawkingsgrove WEBSITE: http://www.trackxtrack.com FACEBOOK: http://www.facebook.com/trackxtrackmusic TWITTER: http://www.twitter.com/trackxtrack My Philosophy: I love music. I love all kinds of music. And I go into every album wanting to love it, so that’s my starting point for every review. Keep in mind, though, that music is a very personal thing. An album may hit me personally in a very different way than it hits you. That’s complexly natural and unavoidable, which is why I try to include some personal context in my reviews. It’s so you’ll have a better idea where I’m coming from. In the end, it’s still just my personal opinion, which is inherently biased, and which you may or may not agree with. Hopefully, once in a while, we’ll find common ground. Track X Track is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to amazon.com.
    https://wn.com/New_David_Bowie_Box_Offers_Ziggy_Stardust_Origin_Rock_'N_Roll_Star
    Unboxing the David Bowie - Five Years 1969-1973 Box Set (Sunboxing #27) | Vinyl Community
    16:01

    Unboxing the David Bowie - Five Years 1969-1973 Box Set (Sunboxing #27) | Vinyl Community

    • Order:
    • Duration: 16:01
    • Uploaded Date: 06 Mar 2022
    • views: 4196
    On this 27th episode of the Sunboxing series, I will be unboxing the David Bowie - Five Years 1969-1973 box set. Be sure to subscribe to the channel! Leave comments letting me know what you'd like to see! Follow me on all the social media platforms and you can see what I've been spinning lately! Facebook: https://www.facebook.com/TheRecordSpinner Twitter: https://twitter.com/Record_Spinner Instagram: https://www.instagram.com/the_record_spinner Support the channel on Patreon: https://www.patreon.com/therecordspinner Merchandise is available! T-Shirts: https://www.amazon.com/s?rh=n%3A7141123011%2Cp_4%3AThe+Record+Spinner&ref=bl_sl_s_ap_web_7141123011 Mugs, Buttons, Tote Bags and (for a limited time) Face Masks: https://www.redbubble.com/people/Record-Spinner/shop Stickers: https://www.etsy.com/shop/TheRecordSpinner Check me out on Discogs: https://www.discogs.com/user/TheRecordSpinner For business inquiries, contact me at: recordspinner97@gmail.com I am an Amazon affiliate! For every purchase made of the listed products below, I receive a small commission at no extra cost. Every bit helps to support the channel. Equipment: U-Turn Audio Orbit Plus Turntable (Black with Ortofon OM5E Cartridge): https://amzn.to/2Qxva23 U-Turn Audio Pluto Phono Preamp: https://amzn.to/2SF6mYL Edifier R1280T Powered Bookshelf Speakers: https://amzn.to/2MJIYW5 Accessories: MoFi Inner Sleeves: https://amzn.to/2ZJTsu0 MoFi Outer Sleeves: https://amzn.to/37hmfIK Vinyl Styl Carbon Fiber Record Brush: https://amzn.to/2Q86bU3 7" Vinyl Adapter: https://amzn.to/2MGAcIw Onzow Zerodust Stylus Cleaner: https://amzn.to/2MJgKuu Selection of Recommended Albums: KISS - Alive!: https://amzn.to/35cityQ Pink Floyd - The Piper at the Gates of Dawn: https://amzn.to/37mFTmF King Crimson - In The Court of the Crimson King: https://amzn.to/2sxNnVf The Beatles - Sgt. Pepper [2017 Remix]: https://amzn.to/2ZH6F6D Rush - 2112: https://amzn.to/39q6l0G Check out my original music at: https://dylanpegginmusic.bandcamp.com/
    https://wn.com/Unboxing_The_David_Bowie_Five_Years_1969_1973_Box_Set_(Sunboxing_27)_|_Vinyl_Community
    Unboxing David Bowie (Five Years 1969 – 1973)
    0:36

    Unboxing David Bowie (Five Years 1969 – 1973)

    • Order:
    • Duration: 0:36
    • Uploaded Date: 23 Jun 2015
    • views: 231003
    David Bowie (Five Years 1969 – 1973) available as 2 beautifully packaged Limited Edition box sets; on 180g audiophile vinyl and on CD, complete with companion book featuring memorabilia, rare and previously unseen photos, hand written lyrics, original album press reviews and much more. Order now: CD Boxset: http://smarturl.it/Bowie5YearsCD Vinyl Boxset: http://smarturl.it/Bowie5YearsVinyl iTunes: http://smarturl.it/Bowie5YearsiTunes Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #FiveYears #Bowie
    https://wn.com/Unboxing_David_Bowie_(Five_Years_1969_–_1973)
    Unboxing 'David Bowie: Loving the Alien [1983-1988]'
    0:29

    Unboxing 'David Bowie: Loving the Alien [1983-1988]'

    • Order:
    • Duration: 0:29
    • Uploaded Date: 03 Nov 2018
    • views: 16386
    Unboxing the contents of the newly released 'David Bowie: Loving the Alien (1983-1988)' box set on vinyl. Order now: https://lnk.to/LovingTheAlien Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #LovingTheAlien #Unboxing
    https://wn.com/Unboxing_'David_Bowie_Loving_The_Alien_1983_1988_'
    UNBOXING DAVID BOWIE ZEIT! 77-79 BOX SET
    4:58

    UNBOXING DAVID BOWIE ZEIT! 77-79 BOX SET

    • Order:
    • Duration: 4:58
    • Uploaded Date: 23 Jan 2019
    • views: 1668
    BOX SET DE DAVID BOWIE ZEIT! 77-79 SUSCRIBETE Y DALE A LIKE
    https://wn.com/Unboxing_David_Bowie_Zeit_77_79_Box_Set
    TUESDAY LIVE VINYL RECORD SHOW - August 27, 2024
    1:52:28

    TUESDAY LIVE VINYL RECORD SHOW - August 27, 2024

    • Order:
    • Duration: 1:52:28
    • Uploaded Date: 28 Aug 2024
    • views: 132
    Starting at 8pm ET, 7pm CT, 5pm PT/Arizona we'll be streaming live on Facebook, YouTube, and X. Get ready for an evening of raw, unfiltered rock and roll as we feature some incredible original pressings, including: Def Leppard, Bobby Brown, Poison, The Dream Academy, Jody Watley, The Power Station, Heart, Huey Lewis & the News, and more. Expand your collection with these rare and classic albums. Whether you’re a seasoned collector or just starting, our curated selection has something for every music fan. Engage with us live, experience the thrill of the hunt, and score those coveted records from the comfort of your home. Join Amanda, Jenn, Kaycie, and Malcolm tonight. Watch live, chat with us, and immerse yourself in a night of music history, community, and exclusive vinyl deals. Follow us now and don’t miss out on adding to your vinyl haul! FAQs: Q: How do I make a purchase? A: Comment with the name of the record you want. If multiple people want the same pre-owned vinyl, Malcolm will start a live auction, so everyone has a chance. Q: I'm a first-time buyer. How do I get started? A: Welcome! Create an account here - Rock This Town Records - and provide your details. Your journey in record collecting just got real! Q: How much is shipping? A: We charge a flat rate of $7.00 for record purchases during our live shows. Whether you buy one album or twenty or 100, shipping is just $7.00.
    https://wn.com/Tuesday_Live_Vinyl_Record_Show_August_27,_2024
    UNBOXED: David Bowie NEW & RARE "Brilliant Live Adventures" Complete Set!
    3:12

    UNBOXED: David Bowie NEW & RARE "Brilliant Live Adventures" Complete Set!

    • Order:
    • Duration: 3:12
    • Uploaded Date: 04 Apr 2021
    • views: 3490
    The new David Bowie box set "Brilliant Live Adventures" has been released one disc at a time since October 2020 and has become one of the most frustrating album releases ever! I was lucky enough to get all six volumes and the hard to snag slipcase. In this video, take a look at what all the fuss was about! ► RECOMMENDED VIEWING- Watch my other David Bowie videos: https://youtube.com/playlist?list=PLnbgIQIfJEyZqTrCzqV8WMqD1k3bj7UJ3 #DavidBowie #BrilliantLiveAdventures #Unboxing DISCLOSURE: This channel uses affiliate links, meaning if you click the links below and make a purchase, Track X Track may earn a commission from that sale at no additional cost to you. ► CHECK OUT MY MUSIC ROOM: https://youtu.be/2vhyUeyupBo ► HOW I RATE ALBUMS: 10. CLASSIC- Among the best albums ever 9. MASTERPIECE- The pinnacle of the artist’s career 8. EXCELLENT- One of the best albums of the year 7. VERY GOOD- Very enjoyable with few missteps 6. GOOD- Solid album with a few great songs 5. FINE- OK album but not very interesting 4. DISAPPOINTING- A real letdown that should be much better 3. BAD- Hard to listen to all the way through 2. VERY BAD- Almost no redeeming qualities 1. TERRIBLE- One of the worst albums ever For more details on how I rate albums, watch this video: https://youtu.be/fi85D4R0_Tc ► TRACK X TRACK merch now available! ● T-shirts on AMAZON PRIME: http://www.trackxtrack.com/shirt ● Mugs, notebooks, stickers and more at our TeePublic shop: http://www.trackxtrack.com/swag ► Check out my novel on AMAZON PRIME: ● “Hawking’s Grove”: http://www.trackxtrack.com/hawkingsgrove WEBSITE: http://www.trackxtrack.com FACEBOOK: http://www.facebook.com/trackxtrackmusic TWITTER: http://www.twitter.com/trackxtrack My Philosophy: I love music. I love all kinds of music. And I go into every album wanting to love it, so that’s my starting point for every review. Keep in mind, though, that music is a very personal thing. An album may hit me personally in a very different way than it hits you. That’s complexly natural and unavoidable, which is why I try to include some personal context in my reviews. It’s so you’ll have a better idea where I’m coming from. In the end, it’s still just my personal opinion, which is inherently biased, and which you may or may not agree with. Hopefully, once in a while, we’ll find common ground. Track X Track is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to amazon.com.
    https://wn.com/Unboxed_David_Bowie_New_Rare_Brilliant_Live_Adventures_Complete_Set
    • 데이비드 보위 (1967) David Bowie — David Bowie [Full Album]

      Hi it's KevMusic. Welcome and Enjoy Awesome Music~! This is David Bowie — David Bowie [Full Album]. 안녕하세요 KevMusic입니다 ~ 데이비드 보위 — David Bowie 음반입니다! 즐감요!! #데이비드보위 #DavidBowie

      published: 17 Jul 2022
    • David Bowie - When I Live My Dream

      When I Live My Dream was a song that was very dear to David Bowie’s heart. Recorded after the body of his debut album was made, he and manager Ken Pitt believed that this would be the song that would turn him into a star. Re-recorded with a string arrangement in the summer of 67 for a potential single , When I Live My Dream featured in Bowie’s 1967 Lindsay Kemp-directed mime showcase Pierrot in Turquoise and again, as the closing number in Love You Til Tuesday. Enjoy it here in fully restored HD 1080.

      published: 06 Jun 2019
    • David Bowie - When I'm Five

      Official video for When I'm Five by David Bowie. Subscribe now: http://bit.ly/2lO9yQo Here is David Bowie in early 1969 singing When I'm Five, a song that he'd begun working on the previous year. The version used for Kenneth Pitt’s film, Love You Till Tuesday, had been recorded for a BBC session in May 1968. The song is sung from a child's perspective, with all the requisite desperation to grow up and echoes 'There Is A Happy Land' from his debut album. With references to his parents and 'Grandfather Jones', as well as a dog called 'Bonzo', When I'm Five has all the hallmarks of 60s Bowie, quirky, childlike and never less than interesting and he ensures all of his then-recent training as a mime is to the fore in the film. Digitally restored to 1080p HD. Socials: https://www.davidbowi...

      published: 04 Jul 2019
    • David Bowie - Rubber Band

      Official video for Rubber Band by David Bowie. Subscribe now: http://bit.ly/2lO9yQo A highlight from Kenneth Pitt’s film 'Love You Till Tuesday', here in fully restored HD, we see Bowie singing 'Rubber Band', which had been his debut single on Deram in late 1966. Miming to the album version of the song, Bowie dons moustache and straw boater to become a love-lorn Edwardian sitting at the bandstand. Look at 46 seconds for an early example of a classic Bowie pose, as he places his hands to his head. A fascinating period piece from 1969, singing a track from 1966, set in 1910. Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideosAY Socials: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.ins...

      published: 04 Apr 2019
    • David Bowie - Sell Me A Coat

      To celebrate Decca 90, here is David Bowie in early 1969 singing Sell Me A Coat, one of the standout tracks from his 1967 debut album. A new version was recorded for Kenneth Pitt’s film, Love You Til Tuesday. We are delighted to show this here in fully restored HD.

      published: 02 May 2019
    • David Bowie - Let Me Sleep Beside You

      Official video for Let Me Sleep Beside You by David Bowie. Subscribe now: http://bit.ly/2lO9yQo Here, restored in HD to celebrate Decca 90, is the clip for Let Me Sleep Beside You, arguably one of the most important records in David Bowie’s first decade. It marked the first time that he worked with Tony Visconti, the producer he’d be most closely associated with throughout his career. Recorded for Deram as a single in late 1967, the track was unreleased until Bowie selected it for his World Of David Bowie collection. Captured for Love You Till Tuesday, the film is full of Bowie’s signature moves. In fact, his parody of a rock and roller slinging his guitar around can be seen as a direct forerunner of Ziggy Stardust. Watch David Bowie's official music videos here: https://lnk.to/DavidBo...

      published: 01 Aug 2019
    • 1967 David Bowie Self Titled

      published: 06 Apr 2018
    • When I Live My Dream

      Provided to YouTube by Universal Music Group When I Live My Dream · David Bowie David Bowie ℗ 1967 Decca Music Group Limited Released on: 1967-06-01 Associated Performer, Vocals, Guitar, Recording Arranger: David Bowie Associated Performer, Guitar: James George Tomkins Associated Performer, Bass Guitar: Dek Fearnley Associated Performer, Organ: Derek Boyes Associated Performer, Drums: John Eager Producer: Mike Vernon Studio Personnel, Engineer: Gus Dudgeon Composer Lyricist: David Bowie Auto-generated by YouTube.

      published: 04 Sep 2018
    • DAVID BOWIE ALBUMS RANKED AND REVIEWED - DAVID BOWIE (1967)

      CANADIAN STUDMUFFIN PATREON SONG & ALBUM REACTIONS (FREE TRIAL!): https://www.patreon.com/LarryGraves LARRY GRAVES ASMR CHANNEL: https://www.youtube.com/LarryGravesASMR CANADIAN STUDMUFFIN MEMBERSHIP: https://www.youtube.com/channel/UCug-FoKfBmPBI-N3BD4_8rw/join ALL OF MY PLAYLISTS: https://www.youtube.com/@canadianstudmuffin/playlists LARRY GRAVES SOCIAL MEDIA LINKS (FACEBOOK, INSTAGRAM, TWITTER AND MORE!: https://linktr.ee/larrygraves SUBSCRIBE TO CANADIAN STUDMUFFIN: https://www.youtube.com/canadianstudmuffin?sub_confirmation=1 Please Subscribe, Like, Comment and Share! Hit the bell to receive all notifications! Larry Graves AKA Canadian Studmuffin is from Trenton Ontario Canada and has been creating original videos on YouTube since February 2006. Please check out my front chann...

      published: 27 Apr 2020
    • David Bowie - Space Oddity

      Official video for Space Oddity by David Bowie. Subscribe now: http://bit.ly/2lO9yQo On 2 February 1969, David Bowie went in to Willesden’s Morgan Studios to cut a new song, ‘Space Oddity’, with colleague John ‘Hutch’ Hutchinson (who sings the ‘ground control’ sections) for ‘Love You Till Tuesday’, a film that was being made by Bowie’s then manager, Kenneth Pitt. Bowie subsequently demoed further versions of the song in an attempt to secure a record deal, which led ultimately to a contract with Mercury/Philips and the world-famous hit version recorded on 20 June 1969. The February recording finally became part of Decca when Pitt sold the rights to Love You Till Tuesday to PolyGram in 1984. Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideosAY Socia...

      published: 10 Mar 2019
    데이비드 보위 (1967) David Bowie — David Bowie [Full Album]
    38:50

    데이비드 보위 (1967) David Bowie — David Bowie [Full Album]

    • Order:
    • Duration: 38:50
    • Uploaded Date: 17 Jul 2022
    • views: 8313
    Hi it's KevMusic. Welcome and Enjoy Awesome Music~! This is David Bowie — David Bowie [Full Album]. 안녕하세요 KevMusic입니다 ~ 데이비드 보위 — David Bowie 음반입니다! 즐감요!! #데이비드보위 #DavidBowie
    https://wn.com/데이비드_보위_(1967)_David_Bowie_—_David_Bowie_Full_Album
    David Bowie - When I Live My Dream
    3:32

    David Bowie - When I Live My Dream

    • Order:
    • Duration: 3:32
    • Uploaded Date: 06 Jun 2019
    • views: 252010
    When I Live My Dream was a song that was very dear to David Bowie’s heart. Recorded after the body of his debut album was made, he and manager Ken Pitt believed that this would be the song that would turn him into a star. Re-recorded with a string arrangement in the summer of 67 for a potential single , When I Live My Dream featured in Bowie’s 1967 Lindsay Kemp-directed mime showcase Pierrot in Turquoise and again, as the closing number in Love You Til Tuesday. Enjoy it here in fully restored HD 1080.
    https://wn.com/David_Bowie_When_I_Live_My_Dream
    David Bowie - When I'm Five
    3:11

    David Bowie - When I'm Five

    • Order:
    • Duration: 3:11
    • Uploaded Date: 04 Jul 2019
    • views: 324499
    Official video for When I'm Five by David Bowie. Subscribe now: http://bit.ly/2lO9yQo Here is David Bowie in early 1969 singing When I'm Five, a song that he'd begun working on the previous year. The version used for Kenneth Pitt’s film, Love You Till Tuesday, had been recorded for a BBC session in May 1968. The song is sung from a child's perspective, with all the requisite desperation to grow up and echoes 'There Is A Happy Land' from his debut album. With references to his parents and 'Grandfather Jones', as well as a dog called 'Bonzo', When I'm Five has all the hallmarks of 60s Bowie, quirky, childlike and never less than interesting and he ensures all of his then-recent training as a mime is to the fore in the film. Digitally restored to 1080p HD. Socials: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/
    https://wn.com/David_Bowie_When_I'm_Five
    David Bowie - Rubber Band
    2:19

    David Bowie - Rubber Band

    • Order:
    • Duration: 2:19
    • Uploaded Date: 04 Apr 2019
    • views: 377962
    Official video for Rubber Band by David Bowie. Subscribe now: http://bit.ly/2lO9yQo A highlight from Kenneth Pitt’s film 'Love You Till Tuesday', here in fully restored HD, we see Bowie singing 'Rubber Band', which had been his debut single on Deram in late 1966. Miming to the album version of the song, Bowie dons moustache and straw boater to become a love-lorn Edwardian sitting at the bandstand. Look at 46 seconds for an early example of a classic Bowie pose, as he places his hands to his head. A fascinating period piece from 1969, singing a track from 1966, set in 1910. Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideosAY Socials: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/
    https://wn.com/David_Bowie_Rubber_Band
    David Bowie - Sell Me A Coat
    2:53

    David Bowie - Sell Me A Coat

    • Order:
    • Duration: 2:53
    • Uploaded Date: 02 May 2019
    • views: 169897
    To celebrate Decca 90, here is David Bowie in early 1969 singing Sell Me A Coat, one of the standout tracks from his 1967 debut album. A new version was recorded for Kenneth Pitt’s film, Love You Til Tuesday. We are delighted to show this here in fully restored HD.
    https://wn.com/David_Bowie_Sell_Me_A_Coat
    David Bowie - Let Me Sleep Beside You
    3:27

    David Bowie - Let Me Sleep Beside You

    • Order:
    • Duration: 3:27
    • Uploaded Date: 01 Aug 2019
    • views: 394700
    Official video for Let Me Sleep Beside You by David Bowie. Subscribe now: http://bit.ly/2lO9yQo Here, restored in HD to celebrate Decca 90, is the clip for Let Me Sleep Beside You, arguably one of the most important records in David Bowie’s first decade. It marked the first time that he worked with Tony Visconti, the producer he’d be most closely associated with throughout his career. Recorded for Deram as a single in late 1967, the track was unreleased until Bowie selected it for his World Of David Bowie collection. Captured for Love You Till Tuesday, the film is full of Bowie’s signature moves. In fact, his parody of a rock and roller slinging his guitar around can be seen as a direct forerunner of Ziggy Stardust. Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideosAY Socials: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/
    https://wn.com/David_Bowie_Let_Me_Sleep_Beside_You
    1967 David Bowie Self Titled
    39:20

    1967 David Bowie Self Titled

    • Order:
    • Duration: 39:20
    • Uploaded Date: 06 Apr 2018
    • views: 111
    https://wn.com/1967_David_Bowie_Self_Titled
    When I Live My Dream
    3:25

    When I Live My Dream

    • Order:
    • Duration: 3:25
    • Uploaded Date: 04 Sep 2018
    • views: 89845
    Provided to YouTube by Universal Music Group When I Live My Dream · David Bowie David Bowie ℗ 1967 Decca Music Group Limited Released on: 1967-06-01 Associated Performer, Vocals, Guitar, Recording Arranger: David Bowie Associated Performer, Guitar: James George Tomkins Associated Performer, Bass Guitar: Dek Fearnley Associated Performer, Organ: Derek Boyes Associated Performer, Drums: John Eager Producer: Mike Vernon Studio Personnel, Engineer: Gus Dudgeon Composer Lyricist: David Bowie Auto-generated by YouTube.
    https://wn.com/When_I_Live_My_Dream
    DAVID BOWIE ALBUMS RANKED AND REVIEWED - DAVID BOWIE (1967)
    7:36

    DAVID BOWIE ALBUMS RANKED AND REVIEWED - DAVID BOWIE (1967)

    • Order:
    • Duration: 7:36
    • Uploaded Date: 27 Apr 2020
    • views: 2208
    CANADIAN STUDMUFFIN PATREON SONG & ALBUM REACTIONS (FREE TRIAL!): https://www.patreon.com/LarryGraves LARRY GRAVES ASMR CHANNEL: https://www.youtube.com/LarryGravesASMR CANADIAN STUDMUFFIN MEMBERSHIP: https://www.youtube.com/channel/UCug-FoKfBmPBI-N3BD4_8rw/join ALL OF MY PLAYLISTS: https://www.youtube.com/@canadianstudmuffin/playlists LARRY GRAVES SOCIAL MEDIA LINKS (FACEBOOK, INSTAGRAM, TWITTER AND MORE!: https://linktr.ee/larrygraves SUBSCRIBE TO CANADIAN STUDMUFFIN: https://www.youtube.com/canadianstudmuffin?sub_confirmation=1 Please Subscribe, Like, Comment and Share! Hit the bell to receive all notifications! Larry Graves AKA Canadian Studmuffin is from Trenton Ontario Canada and has been creating original videos on YouTube since February 2006. Please check out my front channel which includes playlists on The Beatles, Sparks, rock music vlogs, Best Of Canadian Studmuffin, food reviews and much more. https://www.youtube.com/@canadianstudmuffin
    https://wn.com/David_Bowie_Albums_Ranked_And_Reviewed_David_Bowie_(1967)
    David Bowie - Space Oddity
    3:47

    David Bowie - Space Oddity

    • Order:
    • Duration: 3:47
    • Uploaded Date: 10 Mar 2019
    • views: 3093423
    Official video for Space Oddity by David Bowie. Subscribe now: http://bit.ly/2lO9yQo On 2 February 1969, David Bowie went in to Willesden’s Morgan Studios to cut a new song, ‘Space Oddity’, with colleague John ‘Hutch’ Hutchinson (who sings the ‘ground control’ sections) for ‘Love You Till Tuesday’, a film that was being made by Bowie’s then manager, Kenneth Pitt. Bowie subsequently demoed further versions of the song in an attempt to secure a record deal, which led ultimately to a contract with Mercury/Philips and the world-famous hit version recorded on 20 June 1969. The February recording finally became part of Decca when Pitt sold the rights to Love You Till Tuesday to PolyGram in 1984. Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideosAY Socials: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/
    https://wn.com/David_Bowie_Space_Oddity
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • David Bowie – Space Oddity (Official Video)
      5:05
      David Bowie – Space Oddity (Official Video)remove from playlist
    • David Bowie - Heroes
      7:33
      David Bowie - Heroesremove from playlist
    • David Bowie - Let's Dance (Official Video)
      4:09
      David Bowie - Let's Dance (Official Video)remove from playlist
    • David Bowie - Starman (Official Video)
      4:18
      David Bowie - Starman (Official Video)remove from playlist
    • David Bowie - Starman (Top Of The Pops, 1972)
      3:33
      David Bowie - Starman (Top Of The Pops, 1972)remove from playlist
    • David Bowie - Lazarus (Video)
      4:09
      David Bowie - Lazarus (Video)remove from playlist
    • David Bowie – Life On Mars? (Official Video)
      4:10
      David Bowie – Life On Mars? (Official Video)remove from playlist
    • David Bowie - Ashes To Ashes
      3:50
      David Bowie - Ashes To Ashesremove from playlist
    • David Bowie - Heroes (Official Video)
      3:29
      David Bowie - Heroes (Official Video)remove from playlist
    PLAYLIST TIME: 0:00 / 45:20

    David Bowie – Space Oddity (Official Video)

    The official music video for David Bowie - Space Oddity Taken from Bowie's 2nd studio album 'David Bowie' released in 1969 (aka Space Oddity), of which this was the only single. Subscribe to the David Bowie channel for all the best official music videos, live performances and interviews here - Subscribe now: http://bit.ly/2lO9yQo Listen to more from the album 'David Bowie (1969)' here: https://www.youtube.com/playlist?list=OLAK5uy_kYgfG7NdKRrwMqY6v8ma_wfGW2Ai3x2OE Watch David Bowie's official music videos here: https://lnk.to/DavidBowieOfficialVideos Follow David Bowie: https://www.davidbowie.com/ https://www.facebook.com/davidbowie/ https://twitter.com/DavidBowieReal https://www.instagram.com/davidbowie/ Produced & directed by Mick Rock – New York, December 1972. Copyright Mick Rock 2002. Lyrics: Ground Control to Major Tom Ground Control to Major Tom Take your protein pills and put your helmet on Ground Control to Major Tom Commencing countdown, engines on Check ignition and may God's love be with you Ten, Nine, Eight, Seven, Six, Five, Four, Three, Two, One, Liftoff This is Ground Control to Major Tom You've really made the grade And the papers want to know whose shirts you wear Now it's time to leave the capsule if you dare This is Major Tom to Ground Control I'm stepping through the door And I'm floating in a most peculiar way And the stars look very different today For here Am I sitting in a tin can Far above the world Planet Earth is blue And there's nothing I can do Though I'm past one hundred thousand miles I'm feeling very still And I think my spaceship knows which way to go Tell my wife I love her very much she knows Ground Control to Major Tom Your circuit's dead, there's something wrong Can you hear me, Major Tom? Can you hear me, Major Tom? Can you hear me, Major Tom? Can you.... Here am I floating round my tin can Far above the Moon Planet Earth is blue And there's nothing I can do About David Bowie: David Bowie redefined musical genres and the potential of live performance for generations of music lovers. Creating and discarding a variety of personae and restlessly challenging musical boundaries, Bowie released timeless albums including Space Oddity, Hunky Dory, The Rise and Fall of Ziggy Stardust…, Aladdin Sane, Diamond Dogs, Young Americans, Station to Station, "Heroes,” Let's Dance, Heathen, The Next Day and many more. Blackstar, Bowie’s 28th and final studio album, was released on his 69th birthday, January 8, 2016. David Bowie died on January 10, 2016, two days after the release of Blackstar. His body of work, his influence on the worlds of music, art, fashion, film, theatre and beyond, and his legacy of innovation and reinvention will live forever. 2022 kicks off with Bowie at 75, a celebration of his 75th birthday with the Brilliant Adventure box set, the previously unreleased Toy, the 50th anniversary of Ziggy Stardust and a series of special events. #DavidBowie #SpaceOddity #MajorTom #Bowie
    5:05
    David Bowie – Space Oddity (Official Video)
    The official music video for David Bowie - Space Oddity Taken from Bowie's 2nd studio alb...
    published: 09 Jul 2015
    Play in Full Screen
    7:33
    David Bowie - Heroes
    David Bowie performing Heroes, live in Berlin. In this iconic live recording, David Bowie...
    published: 17 Mar 2010
    Play in Full Screen
    4:09
    David Bowie - Let's Dance (Official Video)
    The official music video for David Bowie - Let's Dance. Taken from Bowie's 'Let's Dance'...
    published: 14 Jun 2018
    Play in Full Screen
    4:18
    David Bowie - Starman (Official Video)
    The official video for Starman by David Bowie, featuring footage from the Ziggy Stardust t...
    published: 27 Aug 2024
    Play in Full Screen
    3:33
    David Bowie - Starman (Top Of The Pops, 1972)
    Celebrating the 50th anniversary of David Bowie's legendary Starman performance on Top of ...
    published: 06 Jul 2022
    Play in Full Screen
    4:09
    David Bowie - Lazarus (Video)
    "Lazarus" by David Bowie Listen to David Bowie: https://DavidBowie.lnk.to/listenYD Watch ...
    published: 07 Jan 2016
    Play in Full Screen
    4:10
    David Bowie – Life On Mars? (Official Video)
    The official music video for David Bowie - Life On Mars? Taken from Bowie's 4th studio al...
    published: 09 Jul 2015
    Play in Full Screen
    3:50
    David Bowie - Ashes To Ashes
    Music video by David Bowie performing Ashes To Ashes.
    published: 06 Mar 2009
    Play in Full Screen
    5:04
    Space Oddity - Acoustic Cover (David Bowie)
    I messed up the lyrics.
    published: 23 Sep 2024
    Play in Full Screen
    3:29
    David Bowie - Heroes (Official Video)
    The official music video for David Bowie - Heroes Taken from Bowie's 'Heroes' album relea...
    published: 13 Jun 2018
    Play in Full Screen

    David Bowie

    David Robert Jones (8 January 1947 – 10 January 2016), known as David Bowie (/ˈb.i/), was an English singer, songwriter, multi-instrumentalist, record producer, painter, and actor. He was a figure in popular music for over five decades, and was considered by critics and musicians as an innovator, particularly for his work in the 1970s. His career was marked by reinvention and visual presentation, and his music and stagecraft significantly impacted popular music. During his lifetime, he sold an estimated 140 million records worldwide. In the UK, he was awarded nine platinum album certifications, eleven gold and eight silver, and released eleven number-one albums. In the US, he received five platinum and seven gold certifications. He was inducted into the Rock and Roll Hall of Fame in 1996.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxing
      17:15
      David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxingremove from playlist
    • Unboxing David Bowie - 'Who Can I Be Now? (1974 – 1976)'
      0:30
      Unboxing David Bowie - 'Who Can I Be Now? (1974 – 1976)'remove from playlist
    • FIRST LOOK: David Bowie - Rock 'n' Roll Star! 5CD/1BR Box Set
      20:23
      FIRST LOOK: David Bowie - Rock 'n' Roll Star! 5CD/1BR Box Setremove from playlist
    • NEW David Bowie Box Offers Ziggy Stardust Origin: Rock 'N Roll Star!
      1:31
      NEW David Bowie Box Offers Ziggy Stardust Origin: Rock 'N Roll Star!remove from playlist
    • Unboxing the David Bowie - Five Years 1969-1973 Box Set (Sunboxing #27) | Vinyl Community
      16:01
      Unboxing the David Bowie - Five Years 1969-1973 Box Set (Sunboxing #27) | Vinyl Communityremove from playlist
    • Unboxing David Bowie (Five Years 1969 – 1973)
      0:36
      Unboxing David Bowie (Five Years 1969 – 1973)remove from playlist
    • Unboxing 'David Bowie: Loving the Alien [1983-1988]'
      0:29
      Unboxing 'David Bowie: Loving the Alien [1983-1988]'remove from playlist
    • TUESDAY LIVE VINYL RECORD SHOW - August 27, 2024
      1:52:28
      TUESDAY LIVE VINYL RECORD SHOW - August 27, 2024remove from playlist
    • UNBOXED: David Bowie NEW & RARE
      3:12
      UNBOXED: David Bowie NEW & RARE "Brilliant Live Adventures" Complete Set!remove from playlist
    PLAYLIST TIME: 0:00 / 2:57:23

    David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxing

    This is a review and unboxing for the new David Bowie boxset Rock ‘N’ Roll Star. The boxset dives deep into the era and recordings surround the iconic album The Rise And Fall Of Ziggy Stardust & The Spiders From Mars. The classic album from 1972. Related videos: David Bowie - Toy - Album Review https://youtu.be/-g_MDAbqE_Y Please help support my channel by subscribing, leave comment, and hit like.
    17:15
    David Bowie - Rock ‘N’ Roll Star! - New Boxset Review & Unboxing
    This is a review and unboxing for the new David Bowie boxset Rock ‘N’ Roll Star. The boxs...
    published: 16 Jun 2024
    Play in Full Screen
    0:30
    Unboxing David Bowie - 'Who Can I Be Now? (1974 – 1976)'
    Official unboxing video for the David Bowie 'Who Can I Be Now? (1974 – 1976)' box set. Bu...
    published: 05 Aug 2016
    Play in Full Screen
    20:23
    FIRST LOOK: David Bowie - Rock 'n' Roll Star! 5CD/1BR Box Set
    On this video, I will be giving you a first look at the David Bowie - Rock 'n' Roll Star! ...
    published: 14 Jun 2024
    Play in Full Screen
    1:31
    NEW David Bowie Box Offers Ziggy Stardust Origin: Rock 'N Roll Star!
    The David Bowie archives have opened once again, this time to share the origins of Ziggy S...
    published: 21 Mar 2024
    Play in Full Screen
    16:01
    Unboxing the David Bowie - Five Years 1969-1973 Box Set (Sunboxing #27) | Vinyl Community
    On this 27th episode of the Sunboxing series, I will be unboxing the David Bowie - Five Ye...
    published: 06 Mar 2022
    Play in Full Screen
    0:36
    Unboxing David Bowie (Five Years 1969 – 1973)
    David Bowie (Five Years 1969 – 1973) available as 2 beautifully packaged Limited Edition b...
    published: 23 Jun 2015
    Play in Full Screen
    0:29
    Unboxing 'David Bowie: Loving the Alien [1983-1988]'
    Unboxing the contents of the newly released 'David Bowie: Loving the Alien (1983-1988)' bo...
    published: 03 Nov 2018
    Play in Full Screen
    4:58
    UNBOXING DAVID BOWIE ZEIT! 77-79 BOX SET
    BOX SET DE DAVID BOWIE ZEIT! 77-79 SUSCRIBETE Y DALE A LIKE
    published: 23 Jan 2019
    Play in Full Screen
    1:52:28
    TUESDAY LIVE VINYL RECORD SHOW - August 27, 2024
    Starting at 8pm ET, 7pm CT, 5pm PT/Arizona we'll be streaming live on Facebook, YouTube, a...
    published: 28 Aug 2024
    Play in Full Screen
    3:12
    UNBOXED: David Bowie NEW & RARE "Brilliant Live Adventures" Complete Set!
    The new David Bowie box set "Brilliant Live Adventures" has been released one disc at a ti...
    published: 04 Apr 2021
    Play in Full Screen
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • 데이비드 보위 (1967) David Bowie — David Bowie [Full Album]
      38:50
      데이비드 보위 (1967) David Bowie — David Bowie [Full Album]remove from playlist
    • David Bowie - When I Live My Dream
      3:32
      David Bowie - When I Live My Dreamremove from playlist
    • David Bowie - When I'm Five
      3:11
      David Bowie - When I'm Fiveremove from playlist
    • David Bowie - Rubber Band
      2:19
      David Bowie - Rubber Bandremove from playlist
    • David Bowie - Sell Me A Coat
      2:53
      David Bowie - Sell Me A Coatremove from playlist
    • David Bowie - Let Me Sleep Beside You
      3:27
      David Bowie - Let Me Sleep Beside Youremove from playlist
    • When I Live My Dream
      3:25
      When I Live My Dreamremove from playlist
    • DAVID BOWIE ALBUMS RANKED AND REVIEWED - DAVID BOWIE (1967)
      7:36
      DAVID BOWIE ALBUMS RANKED AND REVIEWED - DAVID BOWIE (1967)remove from playlist
    • David Bowie - Space Oddity
      3:47
      David Bowie - Space Oddityremove from playlist
    PLAYLIST TIME: 0:00 / 1:48:20

    데이비드 보위 (1967) David Bowie — David Bowie [Full Album]

    Hi it's KevMusic. Welcome and Enjoy Awesome Music~! This is David Bowie — David Bowie [Full Album]. 안녕하세요 KevMusic입니다 ~ 데이비드 보위 — David Bowie 음반입니다! 즐감요!! #데이비드보위 #DavidBowie
    38:50
    데이비드 보위 (1967) David Bowie — David Bowie [Full Album]
    Hi it's KevMusic. Welcome and Enjoy Awesome Music~! This is David Bowie — David Bowie [F...
    published: 17 Jul 2022
    Play in Full Screen
    3:32
    David Bowie - When I Live My Dream
    When I Live My Dream was a song that was very dear to David Bowie’s heart. Recorded after ...
    published: 06 Jun 2019
    Play in Full Screen
    3:11
    David Bowie - When I'm Five
    Official video for When I'm Five by David Bowie. Subscribe now: http://bit.ly/2lO9yQo He...
    published: 04 Jul 2019
    Play in Full Screen
    2:19
    David Bowie - Rubber Band
    Official video for Rubber Band by David Bowie. Subscribe now: http://bit.ly/2lO9yQo A hi...
    published: 04 Apr 2019
    Play in Full Screen
    2:53
    David Bowie - Sell Me A Coat
    To celebrate Decca 90, here is David Bowie in early 1969 singing Sell Me A Coat, one of th...
    published: 02 May 2019
    Play in Full Screen
    3:27
    David Bowie - Let Me Sleep Beside You
    Official video for Let Me Sleep Beside You by David Bowie. Subscribe now: http://bit.ly/2l...
    published: 01 Aug 2019
    Play in Full Screen
    39:20
    1967 David Bowie Self Titled
    published: 06 Apr 2018
    Play in Full Screen
    3:25
    When I Live My Dream
    Provided to YouTube by Universal Music Group When I Live My Dream · David Bowie David Bo...
    published: 04 Sep 2018
    Play in Full Screen
    7:36
    DAVID BOWIE ALBUMS RANKED AND REVIEWED - DAVID BOWIE (1967)
    CANADIAN STUDMUFFIN PATREON SONG & ALBUM REACTIONS (FREE TRIAL!): https://www.patreon.com/...
    published: 27 Apr 2020
    Play in Full Screen
    3:47
    David Bowie - Space Oddity
    Official video for Space Oddity by David Bowie. Subscribe now: http://bit.ly/2lO9yQo On ...
    published: 10 Mar 2019
    Play in Full Screen
    '); } 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: David Bowie

    Edit

    The Conners' Sara Gilbert Talks Potential Return To The Big Bang Theory Universe For New Spinoff, And I Hope Chuck Lorre Is Listening

    Cinema Blend 22 Apr 2025
    The new offshoot, titled Stuart Fails to Save the Universe, features Kevin Sussman returning for the titular role, with a trio of co-stars in John David Bowie, Lauren Lapkus and Brian Posehn as Barry, Denise and Burt, respectively.
    Edit

    Oasis classic ‘Live Forever’ voted greatest British song of all time ahead of reunion tour

    Music News 21 Apr 2025
    17 songs from 10 different London artists feature on the final poll, such as David Bowie, The Clash and Florence And The Machine, making up 16% of the total votes ... David Bowie – ‘Heroes’ ... David Bowie – ‘Life On Mars?’ ... David Bowie – ‘Let's Dance’.
    Edit

    The Aaron Ramsey curse strikes again! Football fans are convinced the Pope' death is linked ...

    The Daily Mail 21 Apr 2025
    Superstitious football fans are convinced the Pope has become the latest victim of the 'Aaron Ramsey curse' ... The following day, Henry V actor David Lloyd Meredith died ... Read More ... After his goal against Sunderland on January 9, David Bowie died ... .
    Edit

    Liv Tyler recalls moment she learnt Steven Tyler was her dad

    Newsner 21 Apr 2025
    Shutterstock.com ... I had lovely boyfriends.”. An archetypical groupie, Buell dated music legends like Elvis Costello, Mick Jagger, David Bowie, Iggy Pop, Jimmy Page, and Aerosmith frontman Steven Tyler, whom she met while Rundgren was touring.
    Edit

    Actors who became Jesus Christ

    Manila Standard 20 Apr 2025
    That’s definitely two different characters ... Willem DafoeDirector Martin Scorsese’s controversial film “The Last Temptation of Christ” (1988) tapped Dafoe as Christ and pop rock icon David Bowie as Pontius Pilate ... .
    Edit

    The Community Spotlight 2025.04.19

    Giant Bomb 20 Apr 2025
    The GB Album Club 084 - Low by David Bowie (Cycle Finale) (By ... David Bowie's Low closed the latest season for the Giant Bomb Album Club and the group is open to suggestions and new blood for the next ...
    Edit

    How David Bowie inspired Scottish artist Jack Vettriano's dying wish | Daily Mail Online

    The Daily Mail 18 Apr 2025
    It has now been revealed that the Fife-born artist - who achieved global recognition for his works including his most famous painting The Singing Butler - chose to be cremated with no pomp or ceremony after being inspired by rock legend David Bowie.
    Edit

    David Bowie once spent the night at Stockport station - and now it's being commemorated

    Manchester Evening News 18 Apr 2025
    After playing a gig at the Poco A Poco club on Manchester Road, the legendary singer made a dash for the railway station ... .
    Edit

    Pulp’s Jarvis Cocker admits “life became dark” after Michael Jackson BRITs stunt

    NME 18 Apr 2025
    The comments echo those made in a 2020 interview with the New York Times, where Cocker he said that the incident “changed my life forever, because of the fallout,” and went on to reveal how David Bowie wound up being an unlikely lifeline.
    Edit

    Jack hadn't been able to paint for years, although he would have loved to. In ...

    The Daily Mail 18 Apr 2025
    'He had planned maybe ten or 15 years ago for a bigger funeral and then, strangely, when he heard what David Bowie did, which was nothing, absolutely nothing, he said ... like the late David Bowie.
    ×