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

Podcasts:

  • 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 Space Oddity Lyrics

    One of the best songs of all times . From David's 1969 album with the title david bowie . ENJOY !

    published: 26 May 2013
  • Space Oddity

    NEW YOUTUBE SERIES (Rare Earth): https://www.youtube.com/playlist?list=PLPfak9ofGSn9sWgKrHrXrxQXXxwhCblaT Rest in peace, Starman. A revised version of David Bowie's Space Oddity, recorded by Commander Chris Hadfield on board the International Space Station. Composition: “SPACE ODDITY” Written by David Bowie Published by Onward Music Limited (Note: This video cannot be reproduced and is licensed for online music use only.) With thanks to Emm Gryner, Joe Corcoran, Andrew Tidby and Evan Hadfield for all their hard work. Captioning kindly provided by CHS (www.chs.ca) From the album “Space Sessions: Songs From a Tin Can.” Available everywhere now. CD/LP: http://www.smarturl.it/SpaceSessionsPhys Download: http://www.smarturl.it/SpaceSessionsDL Stream: http://www.smarturl.it/SpaceSesionsSt...

    published: 12 May 2013
  • Space Oddity (2009 Remaster)

    Provided to YouTube by Rhino Space Oddity (2009 Remaster) · David Bowie Legacy ℗ Under exclusive licence to Parlophone Records Limited, ℗ 1969, 2009 Jones/Tintoretto Entertainment Company LLC Engineer: Barry Sheffield Acoustic Guitar: David Bowie Keyboards, Vocals: David Bowie Stylophone Synthesizer: David Bowie Producer: Gus Dudgeon Bass Guitar: Herbie Flowers Acoustic Guitar: Keith Christmas Unknown: Ken Scott Unknown: Ken Scott Engineer: Malcolm Toft Guitar: Mick Wayne Remastering Engineer: Nigel Reeve Arranger: Paul Buckmaster Remastering Engineer: Peter Mew Harpsichord, Mellotron: Rick Wakeman Drums: Terry Cox Unknown: Tony Visconti Remastering Engineer: Tris Penna Orchestra: Unknown Session Orchestra Writer: David Bowie Auto-generated by YouTube.

    published: 03 Mar 2023
  • 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
  • David Bowie - Space Oddity (1969, David Bowie) / (가사/해석)

    #davidbowie #spaceoddity #TheSecretLifeofWalterMitty 영국 아티스트 데이빗 보위의 두번째 앨범 "David Bowie" 에 수록된 곡이다. 노래 제목인 “Space Oddity”는 "우주 괴짜"라는 뜻으로 가사 내용과 일맥상통하는 제목이기도 하지만, 곡 녹음 1년 전 개봉하여 엄청난 화제를 불러 일으킨 스탠리 큐브릭 감독의 영화"2001 Space Odyssey(1968)"의 제목을 살짝 비튼 것이라는 의견이 많다. 가사는 우주 비행을 떠나는 주인공이 지상 관제소와 교신하는 내용으로, 서로 대화를 주고 받는 식으로 구성되어 있다. 1절은 발사에 성공해 환희에 찬 두 사람의 대화로 이루어진 반면 2절은 우주 비행사가 지구로 귀환하지 않을 것임을 암시하며 끝이난다. 충분히 아름다운 스토리로 만들 수 있는 곡에 이런 가사를 쓴 이유를 정확히 알 수는 없지만 데이빗 보위가 이후에 발매한 곡들(톰 소령이 등장하는 Ashes to Ashes, Hallo Spaceboy 등)의 가사들 그리고 69년 당시 시대상(히피, 우드스탁, 베트남 전쟁 등)으로 미루어 봤을 때 환각상태에서의 느낌을 표현한 것이라는 의견이 지배적이다. * 가사 중간에 나오는 "whose shirt you wear?"는 "어느 축구팀을 응원하는가?"라는 영국에서 쓰이는 관용적 표현이다. * 영상출처 : 영화 " 월터의 상상은 현실이 된다(The Secret Life of Walter Mitty, 2013)" * 모든 수익은 원저작권자에게 돌아갑니다.

    published: 11 Apr 2023
  • Space Oddity (2019 Mix)

    Provided to YouTube by Parlophone UK Space Oddity (2019 Mix) · David Bowie Space Oddity ℗ 2019 Jones/Tintoretto Entertainment Company LLC under exclusive license to Parlophone Records Ltd, a Warner Music Group Company Engineer: Barry Sheffield Arranger: David Bowie Acoustic Guitar: David Bowie Stylophone Synthesizer: David Bowie Vocals: David Bowie Producer: Gus Dudgeon Bass Guitar: Herbie Flowers Acoustic Guitar: Keith Christmas Unknown: Ken Scott Engineer: Malcolm Toft Guitar: Mick Wayne Arranger: Paul Buckmaster Unknown: Ray Staff Harpsichord: Rick Wakeman Mellotron: Rick Wakeman Orchestra: Session Orchestra Drums: Terry Cox Unknown: Tony Visconti Unknown: Tony Visconti Composer: David Bowie Auto-generated by YouTube.

    published: 14 Nov 2019
  • David Bowie - Space Oddity live excellent quality

    David Bowie, Mick Ronson (lead guitar), Trevor Bolder (bass), Mike Garson (keyboards), Mark Carr Pritchard (guitar), Aynsley Dunbar (drums) from the 1980 Floor Show, filmed at the Marquee Club in London, October 19-20, 1973

    published: 03 Feb 2010
  • Radio Frequency Detector LEIXEN N8 Signal Checker 1-1000MHz

    Frequency, CTCSS tone and DCS detected and it transmits tone on captured frequency.

    published: 24 Feb 2025
  • Secret Life of Walter Mitty - Space Oddity scene

    Movie: Secret Life of Walter Mitty Song: Space Oddity (David Bowie + Kristen Wiig)

    published: 19 Apr 2014
David Bowie – Space Oddity (Official Video)
5:05

David Bowie – Space Oddity (Official Video)

  • Order:
  • Duration: 5:05
  • Uploaded Date: 09 Jul 2015
  • views: 138089126
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 Space Oddity  Lyrics
5:15

David Bowie Space Oddity Lyrics

  • Order:
  • Duration: 5:15
  • Uploaded Date: 26 May 2013
  • views: 19770676
One of the best songs of all times . From David's 1969 album with the title david bowie . ENJOY !
https://wn.com/David_Bowie_Space_Oddity_Lyrics
Space Oddity
5:31

Space Oddity

  • Order:
  • Duration: 5:31
  • Uploaded Date: 12 May 2013
  • views: 55366945
NEW YOUTUBE SERIES (Rare Earth): https://www.youtube.com/playlist?list=PLPfak9ofGSn9sWgKrHrXrxQXXxwhCblaT Rest in peace, Starman. A revised version of David Bowie's Space Oddity, recorded by Commander Chris Hadfield on board the International Space Station. Composition: “SPACE ODDITY” Written by David Bowie Published by Onward Music Limited (Note: This video cannot be reproduced and is licensed for online music use only.) With thanks to Emm Gryner, Joe Corcoran, Andrew Tidby and Evan Hadfield for all their hard work. Captioning kindly provided by CHS (www.chs.ca) From the album “Space Sessions: Songs From a Tin Can.” Available everywhere now. CD/LP: http://www.smarturl.it/SpaceSessionsPhys Download: http://www.smarturl.it/SpaceSessionsDL Stream: http://www.smarturl.it/SpaceSesionsStrm
https://wn.com/Space_Oddity
Space Oddity (2009 Remaster)
5:17

Space Oddity (2009 Remaster)

  • Order:
  • Duration: 5:17
  • Uploaded Date: 03 Mar 2023
  • views: 658740
Provided to YouTube by Rhino Space Oddity (2009 Remaster) · David Bowie Legacy ℗ Under exclusive licence to Parlophone Records Limited, ℗ 1969, 2009 Jones/Tintoretto Entertainment Company LLC Engineer: Barry Sheffield Acoustic Guitar: David Bowie Keyboards, Vocals: David Bowie Stylophone Synthesizer: David Bowie Producer: Gus Dudgeon Bass Guitar: Herbie Flowers Acoustic Guitar: Keith Christmas Unknown: Ken Scott Unknown: Ken Scott Engineer: Malcolm Toft Guitar: Mick Wayne Remastering Engineer: Nigel Reeve Arranger: Paul Buckmaster Remastering Engineer: Peter Mew Harpsichord, Mellotron: Rick Wakeman Drums: Terry Cox Unknown: Tony Visconti Remastering Engineer: Tris Penna Orchestra: Unknown Session Orchestra Writer: David Bowie Auto-generated by YouTube.
https://wn.com/Space_Oddity_(2009_Remaster)
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
David Bowie - Space Oddity (1969, David Bowie) / (가사/해석)
4:44

David Bowie - Space Oddity (1969, David Bowie) / (가사/해석)

  • Order:
  • Duration: 4:44
  • Uploaded Date: 11 Apr 2023
  • views: 796807
#davidbowie #spaceoddity #TheSecretLifeofWalterMitty 영국 아티스트 데이빗 보위의 두번째 앨범 "David Bowie" 에 수록된 곡이다. 노래 제목인 “Space Oddity”는 "우주 괴짜"라는 뜻으로 가사 내용과 일맥상통하는 제목이기도 하지만, 곡 녹음 1년 전 개봉하여 엄청난 화제를 불러 일으킨 스탠리 큐브릭 감독의 영화"2001 Space Odyssey(1968)"의 제목을 살짝 비튼 것이라는 의견이 많다. 가사는 우주 비행을 떠나는 주인공이 지상 관제소와 교신하는 내용으로, 서로 대화를 주고 받는 식으로 구성되어 있다. 1절은 발사에 성공해 환희에 찬 두 사람의 대화로 이루어진 반면 2절은 우주 비행사가 지구로 귀환하지 않을 것임을 암시하며 끝이난다. 충분히 아름다운 스토리로 만들 수 있는 곡에 이런 가사를 쓴 이유를 정확히 알 수는 없지만 데이빗 보위가 이후에 발매한 곡들(톰 소령이 등장하는 Ashes to Ashes, Hallo Spaceboy 등)의 가사들 그리고 69년 당시 시대상(히피, 우드스탁, 베트남 전쟁 등)으로 미루어 봤을 때 환각상태에서의 느낌을 표현한 것이라는 의견이 지배적이다. * 가사 중간에 나오는 "whose shirt you wear?"는 "어느 축구팀을 응원하는가?"라는 영국에서 쓰이는 관용적 표현이다. * 영상출처 : 영화 " 월터의 상상은 현실이 된다(The Secret Life of Walter Mitty, 2013)" * 모든 수익은 원저작권자에게 돌아갑니다.
https://wn.com/David_Bowie_Space_Oddity_(1969,_David_Bowie)_(가사_해석)
Space Oddity (2019 Mix)
5:21

Space Oddity (2019 Mix)

  • Order:
  • Duration: 5:21
  • Uploaded Date: 14 Nov 2019
  • views: 105051
Provided to YouTube by Parlophone UK Space Oddity (2019 Mix) · David Bowie Space Oddity ℗ 2019 Jones/Tintoretto Entertainment Company LLC under exclusive license to Parlophone Records Ltd, a Warner Music Group Company Engineer: Barry Sheffield Arranger: David Bowie Acoustic Guitar: David Bowie Stylophone Synthesizer: David Bowie Vocals: David Bowie Producer: Gus Dudgeon Bass Guitar: Herbie Flowers Acoustic Guitar: Keith Christmas Unknown: Ken Scott Engineer: Malcolm Toft Guitar: Mick Wayne Arranger: Paul Buckmaster Unknown: Ray Staff Harpsichord: Rick Wakeman Mellotron: Rick Wakeman Orchestra: Session Orchestra Drums: Terry Cox Unknown: Tony Visconti Unknown: Tony Visconti Composer: David Bowie Auto-generated by YouTube.
https://wn.com/Space_Oddity_(2019_Mix)
David Bowie - Space Oddity live excellent quality
5:16

David Bowie - Space Oddity live excellent quality

  • Order:
  • Duration: 5:16
  • Uploaded Date: 03 Feb 2010
  • views: 14785455
David Bowie, Mick Ronson (lead guitar), Trevor Bolder (bass), Mike Garson (keyboards), Mark Carr Pritchard (guitar), Aynsley Dunbar (drums) from the 1980 Floor Show, filmed at the Marquee Club in London, October 19-20, 1973
https://wn.com/David_Bowie_Space_Oddity_Live_Excellent_Quality
Radio Frequency Detector LEIXEN N8 Signal Checker 1-1000MHz
0:22

Radio Frequency Detector LEIXEN N8 Signal Checker 1-1000MHz

  • Order:
  • Duration: 0:22
  • Uploaded Date: 24 Feb 2025
  • views: 26
Frequency, CTCSS tone and DCS detected and it transmits tone on captured frequency.
https://wn.com/Radio_Frequency_Detector_Leixen_N8_Signal_Checker_1_1000Mhz
Secret Life of Walter Mitty - Space Oddity scene
3:02

Secret Life of Walter Mitty - Space Oddity scene

  • Order:
  • Duration: 3:02
  • Uploaded Date: 19 Apr 2014
  • views: 2619552
Movie: Secret Life of Walter Mitty Song: Space Oddity (David Bowie + Kristen Wiig)
https://wn.com/Secret_Life_Of_Walter_Mitty_Space_Oddity_Scene
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 Space Oddity  Lyrics
    5:15
    David Bowie Space Oddity Lyricsremove from playlist
  • Space Oddity
    5:31
    Space Oddityremove from playlist
  • Space Oddity (2009 Remaster)
    5:17
    Space Oddity (2009 Remaster)remove from playlist
  • David Bowie - Space Oddity
    3:47
    David Bowie - Space Oddityremove from playlist
  • David Bowie - Space Oddity (1969, David Bowie) / (가사/해석)
    4:44
    David Bowie - Space Oddity (1969, David Bowie) / (가사/해석)remove from playlist
  • Space Oddity (2019 Mix)
    5:21
    Space Oddity (2019 Mix)remove from playlist
  • David Bowie - Space Oddity live excellent quality
    5:16
    David Bowie - Space Oddity live excellent qualityremove from playlist
  • Secret Life of Walter Mitty - Space Oddity scene
    3:02
    Secret Life of Walter Mitty - Space Oddity sceneremove from playlist
PLAYLIST TIME: 0:00 / 43:40

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
5:15
David Bowie Space Oddity Lyrics
One of the best songs of all times . From David's 1969 album with the title david bowie . ...
published: 26 May 2013
Play in Full Screen
5:31
Space Oddity
NEW YOUTUBE SERIES (Rare Earth): https://www.youtube.com/playlist?list=PLPfak9ofGSn9sWgKrH...
published: 12 May 2013
Play in Full Screen
5:17
Space Oddity (2009 Remaster)
Provided to YouTube by Rhino Space Oddity (2009 Remaster) · David Bowie Legacy ℗ Under ...
published: 03 Mar 2023
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
4:44
David Bowie - Space Oddity (1969, David Bowie) / (가사/해석)
#davidbowie #spaceoddity #TheSecretLifeofWalterMitty 영국 아티스트 데이빗 보위의 두번째 앨범 "David Bowie" ...
published: 11 Apr 2023
Play in Full Screen
5:21
Space Oddity (2019 Mix)
Provided to YouTube by Parlophone UK Space Oddity (2019 Mix) · David Bowie Space Oddity ...
published: 14 Nov 2019
Play in Full Screen
5:16
David Bowie - Space Oddity live excellent quality
David Bowie, Mick Ronson (lead guitar), Trevor Bolder (bass), Mike Garson (keyboards), Mar...
published: 03 Feb 2010
Play in Full Screen
0:22
Radio Frequency Detector LEIXEN N8 Signal Checker 1-1000MHz
Frequency, CTCSS tone and DCS detected and it transmits tone on captured frequency.
published: 24 Feb 2025
Play in Full Screen
3:02
Secret Life of Walter Mitty - Space Oddity scene
Movie: Secret Life of Walter Mitty Song: Space Oddity (David Bowie + Kristen Wiig)
published: 19 Apr 2014
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: space oddity

Edit

Supercomputer reveals exact date Elon Musk's doomsday prediction will come true | Daily Mail Online

The Daily Mail 11 May 2025
Space oddity ... President Trump took the first step in helping Musk reach this lofty goal, by signing off on a massive shift in funding priorities at NASA - including the largest cut to the space agency's budget in its history.
Edit

Palace tried to ‘block picture of David Bowie and Princess Diana’

The Daily Telegraph 10 May 2025
“I think he would.”. “I thought it was so funny,” he said, adding that Diana had been “so sweet” ... So that’s when it kind of erupted ... Jonathan Little ... The pair’s working relationship began in 1974, five years after Bowie’s breakthrough hit, Space Oddity ... .
Edit

Raw sewage spills into Queens bay from broken pipe — but NYers swim there anyway ...

New York Post 09 May 2025
4. About 7,100 gallons of raw sewage spilled into Flushing Bay last month. Stefano Giovannini ... “We’re using these waters for recreation ... HBO star’s new 44-seat micro-moviehouse screens film oddities, classics in offbeat NYC space ... cops.
Edit

Astronaut Chris Hadfield reveals why Space Oddity cover put 'big smile' on David Bowie's face

Music News 07 May 2025
The 65-year-old astronaut and spaceship commander performed his own "optimistic" rendition of Bowie's iconic 1969 hit 'Space Oddity' from the International Space Station in 2013, and he has opened up ...
Edit

Experts scramble to prevent disaster as 'car-sized' spacecraft set to crash back to Earth | ...

The Daily Mail 28 Apr 2025
But it's reentry capsule, which was ejected into higher orbit during the launch, has remained in space ... However, it wouldn't be the first time that space junk has crash landed in someone's community ... Space oddity.
Edit

Curtain Calls: The Wiggles coming to dazzle children at Oakland’s Paramount Theatre

East Bay Times 28 Apr 2025
Curtain Calls ... Curtain Calls ... Curtain Calls ... Curtain Calls ... Curtain Calls ... A Space Rhapsody,” a guide through a cosmic journey from the energy of “Age of Aquarius” to the haunting echoes of “A Space Oddity” and to the self-discovery of “Defying Gravity.”.
Edit

Doctor Who: The Well Review - 8 Ups & 2 Downs

What Culture 27 Apr 2025
UP - The Doctor and Bel's Space Skydive. Instead of Britney Spears' Toxic, the Doctor and Belinda should have been listening to David Bowie's Space Oddity.
Edit

Why David Bowie slept on platform at Stockport train station

BBC News 27 Apr 2025
Ms Acton said of the artist, who went on to global success with hits including Let's Dance, Changes, Space Oddity, Starman, Modern Love, Heroes, Under Pressure, Rebel Rebel and Life on Mars, ...
Edit

‘You’ Season 5 Cast and Character Guide: Who’s Who in the Final Season?

The Wrap 25 Apr 2025
Penn Badgley as Joe Goldberg ... You might recognize Brewer as Janine Lindo in “The Handmaid’s Tale” or from her roles in “Hustlers,” “Orange is the New Black,” “Cam” and “Space Oddity.” ... .
Edit

Dial hard: This archive holds futuristic Nokia designs that never made it to the factory floor

Hindustan Times 25 Apr 2025
A rendering of virtual-reality goggles, from the Nokia Design Archive at Aalto University ... For designers and researchers, the online and offline spaces offer precious insight. For the layperson, the digital archive is a trove of delightful oddities.
Edit

Bossy Grrl's Pinup Joint dancer rises through ranks to become bar owner

The Columbus Dispatch 21 Apr 2025
It bears mentioning that the business bug bit Helton a second time, prompting her to buy the space next door to Bossy Grrl’s and open an oddities shop, Cora’s Curiosities, also in 2023.
  • 1
×