- published: 02 Mar 2020
- views: 4369511
'+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; })); }); -->
Ryuichi Sakamoto (坂本 龍一, Sakamoto Ryūichi, born January 17, 1952) (Japanese pronunciation: [sakamoto ɽju͍ːitɕi]) is a Japanese musician, activist, composer, record producer, writer, singer, pianist, and actor based in Tokyo and New York. Gaining major success in 1978 as a member of the electronic music group Yellow Magic Orchestra (YMO), Sakamoto served on keyboards and sometimes vocals. The band had worldwide hits such as "Computer Game / Firecracker" (1978), "Behind the Mask" (1978) and "Rydeen" (1979), playing a pioneering role in the techno and acid house movements.
He concurrently pursued a solo career, releasing the experimental electronic fusion album Thousand Knives (1978), and later released the pioneering album B-2 Unit (1980), which included the electro classic "Riot in Lagos". From thereon, he produced more solo records, collaborated with many international artists, and pursued a wide variety of projects, such as having composed music for the 1992 Barcelona Olympics opening ceremony. His composition "Energy Flow" (1999) was the first instrumental number-one single in Japan's Oricon charts history.
Douglas Lawrence Osowski (born January 1, 1969), better known as Mr. Lawrence and sometimes credited as Doug Lawrence, is an American voice actor, writer, comedian, and animator, best known for his work as a writer and actor for the animated series SpongeBob SquarePants and Rocko's Modern Life.
Lawrence was born in East Brunswick, New Jersey. He is known for his work on the animated TV series SpongeBob SquarePants, on which he has long-running-roles as Sheldon Plankton, Larry the Lobster, Elaine and various other characters including Artist at Sea.
He was the voice of Edward T. Platypus, Nurse Leslie, Dave, and Ping-Pong on Camp Lazlo. Lawrence also performed the voice of Filburt in Rocko's Modern Life and is recently the voice of the Announcer and Manant in The Aquabats! Super Show!. Lawrence is a standup comedian, cartoonist, writer-director, animator and producer on the television series Johnny Talk. He worked on The Ren and Stimpy Show in its second season as a layout assistant. Apart from his voice work he is a writer on SpongeBob SquarePants and worked as a writer on Rocko's Modern Life and The Twisted Whiskers Show. He is currently a writer and story editor on Mighty Magiswords, Cartoon Network's first original online series.
Merry Christmas, Mr. Lawrence (Japanese: Senjō no Merī Kurisumasu (戦場のメリークリスマス, "Merry Christmas on the Battlefield"), also known in many European editions as Furyo (俘虜, Japanese for "prisoner of war"), is a 1983 British-Japanese drama film directed by Nagisa Oshima, produced by Jeremy Thomas and starring David Bowie, Tom Conti, Ryuichi Sakamoto, Takeshi Kitano and Jack Thompson.
The screenplay by Oshima with Paul Mayersberg was based on Sir Laurens van der Post's experiences as a Japanese prisoner of war during World War II as depicted in his works The Seed and the Sower (1963) and The Night of the New Moon (1970). Sakamoto also wrote the score and the vocal theme "Forbidden Colours", featuring David Sylvian.
The film was entered into the 1983 Cannes Film Festival in competition for the Palme d'Or. Sakamoto's score also won the film a BAFTA Award for Best Film Music.
The film deals with the relationships among four men in a Japanese prisoner of war camp during the Second World War — Major Jack Celliers (Bowie), a rebellious New Zealander with a guilty secret from his youth; Captain Yonoi (Sakamoto), the young camp commandant; Lieutenant Colonel John Lawrence (Conti), a British officer who has lived in Japan and speaks Japanese fluently; and Sergeant Hara (Takeshi), who is seemingly brutal and yet humane in some ways and with whom Lawrence develops a peculiar friendship.
"Merry Christmas, Mr. Lawrence" is a 1983 instrumental by Japanese electronic composer Ryuichi Sakamoto. The song was originally made for the film of the same name. In recent years, the song has become a staple of holiday music in the USA, England and Japan. A vocal version of this song was released titled "Forbidden Colours" which featured the same instrumental music and vocals by former Japan frontman David Sylvian charted in the top 20 of the UK Singles Chart and Irish Singles Chart.
There is a 12" vinyl Italo disco cover version on the Italian record label Discomagic named "Clock On 5 - Theme From Furyo" which was released in 1984. In 2000, a re-mix of Ryuichi Sakamoto's Merry Christmas Mr. Lawrence called "Heart of Asia" was released in Europe by dance group Watergate, and it reached #3 on the UK Singles Chart. In 2004, Croatian pianist Maksim Mrvica included a piano remix of "Merry Christmas, Mr. Lawrence" on his third album, Variations Part I&II. Hikaru Utada also borrows the theme for her 2009 song, "Merry Christmas Mr. Lawrence - FYI" from the album This Is The One.
坂本 龍一 Ryuichi Sakamoto Full Album 2020 - 坂本 龍一 Ryuichi Sakamoto Best Of 坂本 龍一 Ryuichi Sakamoto Full Album 2020 - 坂本 龍一 Ryuichi Sakamoto Best Of 坂本 龍一 Ryuichi Sakamoto Full Album 2020 - 坂本 龍一 Ryuichi Sakamoto Best Of
Established in 1929, Decca is the legendary British record label, home to some of the greatest recording artists ever. Visit the Decca Store at https://decca.lnk.to/StoreID Join the official mailing list for news and offers in your inbox: https://decca.lnk.to/NewsletterSignUpID Official music video for Ryuichi Sakamoto's 'Merry Christmas, Mr. Lawrence'.
Merry Christmas Mr. Lawrence / Ryuichi Sakamoto from live streaming "Ryuichi Sakamoto: Playing the Piano 2022" Sunday, December 11, 2022 @Tokyo/JAPAN Music Written and Performed by Ryuichi Sakamoto Director Neo Sora Produced by Norika Sora Director of Photography Bill Kirstein Mixed & Mastered by ZAK at st-robo Editor Neo Sora, Takuya Kawakami Presented by KAB Inc. commmons / Avex Entertainment Inc. ------- [release info] Ryuichi Sakamoto “12” Release Date: January 17, 2023 Format 1: 2-CD analog set (Signed sketches/score prints* first pressing limited edition) / RZJM-77655-6 / ¥10,780 (tax incl.) Format 2: CD / RZCM-77657 / ¥3,410 (tax incl.) Pre-Oder: https://commmons.lnk.to/twelve special site: https://shop.mu-mo.net/st/special/ryuichisakamoto_12 Tracklist: 01 20210310 02 20211...
Ryuichi Sakamoto & Joe Hisaishi Best Piano Music Collection - Relaxing Instrumental Music https://youtu.be/k9vJKFfTu4A Welcome to my channel, Best Piano Music 💕💕 I hope you will have a good time here 💕 🔹Make sure you LIKE if you enjoyed this video and don't forget to SUBSCRIBE for my channel ▽ Follow "Best Piano Music " : https://bitly.com.vn/bcokcr Thanks for watching!💖 Don't forget to SUBSCRIBE, Like and Share my video if you enjoy it.
NO COPYRIGHT INTENDED! i dont own any songs.
엔딩크레딧의 여운이 담긴 플레이리스트를 들려드리고자 합니다:) 〰️ 모든 배경 영상과 사진은 직접 촬영해요 🎥/📸 :) #클래식 #ryuichisakamoto #영화음악
The film, which will world premiere at the Venice Film Festival on September 5, features Sakamoto and his piano alone on a stage, performing twenty of his compositions. Directed by: Neo Sora Year: 2023
Label: Commmons – AQB1-76463 Country: Japan Released: 2014 Written to commemorate Aoyama clothing company 50th anniversary.
Established in 1929, Decca is the legendary British record label, home to some of the greatest recording artists ever. Visit the Decca Store at https://decca.lnk.to/StoreID Join the official mailing list for news and offers in your inbox: https://decca.lnk.to/NewsletterSignUpID Official music video for Ryuichi Sakamoto's 'Merry Christmas, Mr. Lawrence'.
Merry Christmas Mr. Lawrence / Ryuichi Sakamoto from live streaming "Ryuichi Sakamoto: Playing the Piano 2022" Sunday, December 11, 2022 @Tokyo/JAPAN Music Written and Performed by Ryuichi Sakamoto Director Neo Sora Produced by Norika Sora Director of Photography Bill Kirstein Mixed & Mastered by ZAK at st-robo Editor Neo Sora, Takuya Kawakami Presented by KAB Inc. commmons / Avex Entertainment Inc. ------- [release info] Ryuichi Sakamoto “12” Release Date: January 17, 2023 Format 1: 2-CD analog set (Signed sketches/score prints* first pressing limited edition) / RZJM-77655-6 / ¥10,780 (tax incl.) Format 2: CD / RZCM-77657 / ¥3,410 (tax incl.) Pre-Oder: https://commmons.lnk.to/twelve special site: https://shop.mu-mo.net/st/special/ryuichisakamoto_12 Tracklist: 01 20210310 02 20211...
Provided to YouTube by Symphonic Distribution Merry Christmas Mr. Lawrence · Ryuichi Sakamoto 1996 ℗ 2011 KAB America Inc. Released on: 2011-01-01 Composer: Ryuichi Sakamoto Auto-generated by YouTube.
Ryuichi Sakamoto is a Japanese musician, activist, composer, record producer, writer, singer, pianist, and actor based in Tokyo and New York. During World War II, British soldier Jack Celliers (David Bowie) is captured by Japanese forces and held in a prison camp by the honor-bound Capt. Yanoi (Ryuichi Sakamoto).
During W.W. II, a British colonel tries to bridge the cultural divides between a British P.O.W. and the Japanese camp commander in order to avoid blood-shed. Starring: David Bowie, Tom Conti, Ryuichi Sakamoto Directed by: Nagisa Ôshima Produced by: Jeremy Thomas Twitter: @recordedpicture
As said, weak for endings...
[1시간 반복 재생 | 1 hour piano] 영화 ‘전장의 크리스마스(Merry Christmas Mr.Lawrence/戦場のメリークリスマス)’ OST Merry Christmas Mr. Lawrence (Piano cover) ⓒ 2023. Ryuichi Sakamoto. all rights reserved. This video pays proceeds to the original author according to the YouTube copyright policy. Composed by Ryuichi Sakamoto (坂本龍一) Original Link. https://youtu.be/1OZDaRhHHyM Piano Covered by 피달소 (Pidalso) Photo by marek oko (On Unsplash) https://unsplash.com/photos/0RFcBMbIAxw + 악보 https://www.mapianist.com/sheet/105672 + Score https://www.mymusicsheet.com/pidalso/139508 + 楽譜 www.kokomu.jp/sheet-music/47403 겨울입니다 ❄️ #전장의크리스마스OST #류이치사카모토
Provided to YouTube by Universal Music Group Merry Christmas Mr. Lawrence - FYI · Utada This Is The One ℗ 2009 UMG Recordings, Inc. Released on: 2009-03-13 Producer: StarGate Producer, Co- Producer, Programmer, Associated Performer, Additional Keyboards: Utada Producer, Co- Producer: Sking U Producer: Kuk Harrell Studio Personnel, Engineer: Don Goodrick Studio Personnel, Recording Engineer: Mikkel S. Eriksen Studio Personnel, Recording Engineer: Atsushi Matsui Studio Personnel, Asst. Recording Engineer: Tetsuro Sawamoto Studio Personnel, Mix Engineer: Phil Tan Studio Personnel, Assistant Mixer: Josh Houghkirk Composer Lyricist: Ryuichi Sakamoto Auto-generated by YouTube.
《Merry Christmas Mr Lawrence 圣诞快乐劳伦斯先生》 坂本龙一 2022 高清 转载自B站
Ryuichi Sakamoto (坂本 龍一, Sakamoto Ryūichi, born January 17, 1952) (Japanese pronunciation: [sakamoto ɽju͍ːitɕi]) is a Japanese musician, activist, composer, record producer, writer, singer, pianist, and actor based in Tokyo and New York. Gaining major success in 1978 as a member of the electronic music group Yellow Magic Orchestra (YMO), Sakamoto served on keyboards and sometimes vocals. The band had worldwide hits such as "Computer Game / Firecracker" (1978), "Behind the Mask" (1978) and "Rydeen" (1979), playing a pioneering role in the techno and acid house movements.
He concurrently pursued a solo career, releasing the experimental electronic fusion album Thousand Knives (1978), and later released the pioneering album B-2 Unit (1980), which included the electro classic "Riot in Lagos". From thereon, he produced more solo records, collaborated with many international artists, and pursued a wide variety of projects, such as having composed music for the 1992 Barcelona Olympics opening ceremony. His composition "Energy Flow" (1999) was the first instrumental number-one single in Japan's Oricon charts history.
Sometimes I feel like I'm ready for a crime
the picture's getting clear
I'm running out of time
Well I need Your love
I'm born to fly
so won't You help me touch the sky
Annabel, Annabel
I'll meet You at the Wishing Well
Annabel, Annabel
So many things I have to tell
Annabel, Annabel
I'll meet You at the Wishing Well
I hope You ring a bell
Through the Gates of Heaven
hand in hand we walk
Using bigger words
we dream of smaller talk
I need Your love
I'm born to fly
so won't You help me touch the sky
I know the truth again