- published: 04 Jul 2018
- views: 261596971
'+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; })); }); -->
Robyn Loau (/laʊ/; born October 20, 1972) is an Australian singer, songwriter and actress. From 1991 to 1994, she was lead singer of pop group, Girlfriend, before leaving the group to become the face and voice of world music project Siva Pacifica. Loau launched her solo career in 1997 with the Adamski produced single Sick With Love.
Robyn Loau first came into the spotlight as the lead singer of Australian all girl pop group Girlfriend, with fellow vocalists Jacqui Cowell, Siobhánn Heidenreich, Lorinda Noble and Melanie Alexander. Their debut single, Take It from Me, released in April 1992, peaked at #1 on the Australian ARIA singles chart. Two further Australian top 20 singles followed, with "Girl's Life" and "Without You", and the group's debut album, Make It Come True, was certified platinum.
Girlfriend's popularity helped launch their own range of clothing, available through Myer. The group achieved minor success in the UK, where "Take It From Me" and "Girl's Life" charted at #47 and #68 respectively. In an attempt to achieve success in Japan, the group re-recorded the single "Take It from Me" in Japanese, and the Make It Come True album was released there under the name of Girl's Life, containing exclusive tracks.
Duran Duran are an English new wave/synthpop band formed in Birmingham in 1978. They were a successful band of the 1980s and a leading band in the MTV-driven "Second British Invasion" of the US. Since the 1980s, they have placed 14 singles in the Top 10 of the UK Singles Chart and 21 in the Billboard Hot 100, and have sold over 70 million records.
While they were generally considered part of the New Romantic scene, along with bands such as Spandau Ballet, when they first emerged, the band later shed this image. The band worked with fashion designers to build a sharp and elegant image. The band has won a number of awards throughout their career: two Brit Awards including the 2004 award for Outstanding Contribution to Music, two Grammy Awards, and an MTV Video Music Award for Lifetime Achievement. They were also awarded a star on the Hollywood Walk of Fame.
The band's controversial videos, which included partial nudity and suggestions of sexuality, became popular in the early 1980s on the then-new music video channel, MTV. Duran Duran were among the first bands to have their videos shot by professional directors with 35 mm film movie cameras, which gave their videos a much more polished look than was standard at the time. In 1984, the band were early innovators with video technology in their live stadium shows.
Officially titled simply Duran Duran (just like Duran Duran's 1981 debut album and their 1993 comeback album), this video compilation is sometimes unofficially referred to in print as the Duran Duran video album or Duran Duran: The First 11 Videos. This pioneering video album won a 1984 Grammy Award for Best Long Form Music Video.
The planning for this "video album" had begun early in the band's career, as Duran Duran and their management realised the power of video as an artistic marketing tool. In a move that is rarely seen today, they filmed videos during this period (1981–1983) for songs that were never released as singles – videos for the album tracks "Lonely in your Nightmare", "Night Boat" and "The Chauffeur" were shot especially for this collection.
The release date, March 1983, was chosen to coincide with the promotion of the band's No. 1 single "Is There Something I Should Know?", and the American re-issue of their first album Duran Duran.
Future filmmaker Russell Mulcahy directed the majority of this "travelogue-style" collection of videos, featuring exotic locations and cinematic style that made Duran Duran's name as a video band. Videos for tracks like "Hungry Like The Wolf" and "Save a Prayer" were showpieces of this style.
Duran Duran is the debut album by the English pop rock band Duran Duran, released worldwide on EMI Records on 15 June 1981.
The album reached No. 3 on the United Kingdom charts and remained in the UK Top 100 for 117 weeks, achieving platinum status by December 1982. The initial United States release was unsuccessful, but the album was reissued there in 1983 following the success of the band's second album, Rio. This time it reached No. 10 on the US Billboard 200, and remained on that chart for 87 weeks. Duran Duran was certified platinum (a shipment of one million units) by the RIAA in June 1985.
The band wrote and recorded demos for the album at AIR Studios in 1980, while one of their main influences, the band Japan, was recording the Gentlemen Take Polaroids album just down the hall.
The album was formally recorded in December 1980 at various recording studios in London (as well as Chipping Norton Studios) with record producer Colin Thurston, shortly after Duran Duran signed their record deal with EMI. In interviews, the band has recalled the struggle to continue recording after hearing of the murder of John Lennon on 8 December.
Robin Miriam Carlsson (born 12 June 1979), known as Robyn, is a Swedish soprano vocalist. Robyn became known in 1997 for the worldwide dance-pop hit "Do You Know (What It Takes)" from her debut album, Robyn Is Here. The popularity of her UK number-one "With Every Heartbeat" and her 2005 album, Robyn, brought her international success. Australian Dance Albums Chart [60], Belgian Albums Chart [61], Canadian Albums Chart [62], European Top 100 Albums [46], Irish Albums Chart [63], Swiss Albums Chart [64], UK Albums Chart [43], US Billboard 200 [50], In June 2010 Robyn released the first album of a trilogy, Body Talk Pt. 1 (her first album since Robyn), which reached number one. Its lead single, "Dancing on My Own", was released several weeks before the album and received a Best Dance Recording nomination for a 2010 Grammy Award. Body Talk Pt. 2 was released on 6 September and debuted at number one on the Swedish chart. The trilogy's final album, Body Talk, was released on 22 November with "Indestructible" its lead single; "Call Your Girlfriend" was the album's second single. In May 2015 Robyn announced a new music project, La Bagatelle Magique.
Robyn Carlsson is a Swedish pop singer-songwriter.
Robyn may also refer to:
Robyn is the fourth studio album by Swedish recording artist Robyn. It was released on 27 April 2005 by Konichiwa Records. The album represented a change in Robyn's musical style, in which she explored synthpop and dance-pop music, with inspirations from electronic duo The Knife and rock band Teddybears. It also marks Robyn's first album release on her own record label, Konichiwa Records, which she founded in 2005.
The album debuted at number one on the Swedish Albums Chart in 2005, becoming Robyn's first-ever number-one album on the chart. It was released Internationally in 2007, two years after it was originally released. The album received a nomination for Best Electronic/Dance Album at the 2009 Grammy Awards. Five singles were released from the album: "Be Mine!", "Who's That Girl", UK number one song "With Every Heartbeat", "Konichiwa Bitches" and "Handle Me".
In 2003, Robyn left her record label, Jive Records, because of the lack of artistic control offered to her by the label. The previous year she had released her third album, Don't Stop the Music, but felt disillusioned by the label's attempt to market her as the next Christina Aguilera in the United States. Robyn described the album as a "big compromise" and was upset because she "was going backwards" and not "doing what [she] wanted to".
The official Duran Duran video for 'Come Undone' from 1993's THE WEDDING ALBUM. Directed by Julien Temple. Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Lyrics: Mine, immaculate dream made breath and skin I've been waiting for you Signed with a home tattoo Happy birthday to you was created for you Can't ever keep from falling apart at the seams Can I believe you're taking my heart to pieces? Ah, it'll take a little time Might take a little crime to come undone Now w...
The official Duran Duran video for "Ordinary World" from 1993's THE WEDDING ALBUM. Directed by Nick Egan.. Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Lyrics: Came in from a rainy Thursday on the avenue Thought I heard you talking softly I turned on the lights, the TV, and the radio Still I can't escape the ghost of you What has happened to it all? Crazy someone say Where is the life that I recognize? Gone away But I won't cry for yesterday There's an ordinary wo...
“Evil Woman” from DANSE MACABRE DE LUXE. Juan Pinto, Animation Director. Order Duran Duran’s new album ‘DANSE MACABRE: DE LUXE’: https://duran.lnk.to/DanseMacabreDeluxeID Connect with Duran Duran: http://DuranDuran.com https://duranduranofficialstore.com/ Facebook: https://www.facebook.com/duranduran/ Twitter: https://twitter.com/duranduran Instagram: https://www.instagram.com/duranduran/ TikTok: https://www.tiktok.com/@duranduran Lyrics: Ha, ha, Ha, ha, Ha, ha, Ha, ha, Hey, woman, you got the blues 'Cause you ain't got no one else to use There's an open road that leads nowhere So just make some miles between here and there There's a hole in my head where the rain comes in You took my body and played to win Ha, ha, woman, it's a cryin' shame But you ain't got nobody ...
The official Duran Duran video for 'Save a Prayer' from 1982's RIO album. Directed by Russell Mulcahy. Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Lyrics: You saw me standing by the wall corner of a main street And the lights are flashing on your window sill All alone ain't much fun so you're looking for the thrill And you know just what it takes and where to go Don't save a prayer for me now Save it til the morning after No don't say a prayer for me now Save i...
The official Duran Duran video for 'Hungry like the Wolf' from 1982's RIO. Directed by Russell Mulchay. Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Lyrics: Dark in the city night is a wire Steam in the subway earth is afire Do do do do do do do dodo dododo dodo Woman you want me give me a sign And catch my breathing even closer behind Do do do do do do do dodo dododo dodo In touch with the ground I'm on the hunt down I'm after you Smell like I sound I'm lost in a...
Duran Duran - INVISIBLE
The official Duran Duran video for "The Reflex" by Duran Duran from 1983's SEVEN & THE RAGGED TIGER. Directed by Russell Mulcahy Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Lyrics: You've gone too far this time And I'm dancing on the valentine I tell you somebody's fooling around With my chances on the danger line I'll cross that bridge when I find it Another day To make my stand, oh oh High time is no time for deciding If I should find a helping hand, oh oh Why d...
Music video by Duran Duran performing A View To A Kill (2003 Digital Remaster).
The official Duran Duran video for "Rio" from 1982's RIO. Directed by Russell Mulcahy. Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Lyrics: Moving on the floor now babe you're a bird of paradise Cherry ice cream smile I suppose it's very nice With a step to your left and a flick to the right You catch that mirror way out west You know you're something special and you look like you're the best Her name is Rio and she dances on the sand Just like that river twistin...
The official Duran Duran video for "The Wild Boys" from 1984's ARENA. Directed by Russell Mulcahy. Stream Duran Duran's greatest hits here ▶ https://duran.io/2GMNTzX Subscribe here ▶ https://duran.io/2xnWlGr Watch Duran Duran’s other official music videos ▶ https://duran.io/2J8R5Lf Socials: Facebook | https://www.facebook.com/duranduran Twitter | https://twitter.com/duranduran Instagram | https://www.instagram.com/duranduran Website| https://www.duranduran.com Lyrics: Wild boys Wild boys Wild boys Wild boys Wild, wild, boys, boys The wild boys are calling On their way back from the fire In August moon's surrender to A dust cloud on the rise Wild boys fallen far from glory Reckless and so hungered On the razors edge you trail Because there's murder by the roadside In a sore afrai...
Robyn Loau (/laʊ/; born October 20, 1972) is an Australian singer, songwriter and actress. From 1991 to 1994, she was lead singer of pop group, Girlfriend, before leaving the group to become the face and voice of world music project Siva Pacifica. Loau launched her solo career in 1997 with the Adamski produced single Sick With Love.
Robyn Loau first came into the spotlight as the lead singer of Australian all girl pop group Girlfriend, with fellow vocalists Jacqui Cowell, Siobhánn Heidenreich, Lorinda Noble and Melanie Alexander. Their debut single, Take It from Me, released in April 1992, peaked at #1 on the Australian ARIA singles chart. Two further Australian top 20 singles followed, with "Girl's Life" and "Without You", and the group's debut album, Make It Come True, was certified platinum.
Girlfriend's popularity helped launch their own range of clothing, available through Myer. The group achieved minor success in the UK, where "Take It From Me" and "Girl's Life" charted at #47 and #68 respectively. In an attempt to achieve success in Japan, the group re-recorded the single "Take It from Me" in Japanese, and the Make It Come True album was released there under the name of Girl's Life, containing exclusive tracks.
A stormy summer is rolling closer
Lighting up this holy smoker
And if this drinking could ease the thinking
I toast to my home truth with this glass
All rise, you promises broken
Call my lovers by their names
Lost hearts and words that are spoken to the wind which blows before the rain
Little pin-pricks, and how my ears bleed
On the bomb ticks that is my heartbeat
In every life-flash, in every car crash
I hear the silence waiting to fall
(Chorus)
For all I carry, are murdered secrets
The price of my blue star-eyed weakness
And so we travel, and we unravel
Towards the place where all loose ends go