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

Australian rock

Australian rock, also called Oz rock, is rock music from Australia. The nation has a rich history of rock music and an appreciation of the roots of various rock genres, usually originating in the United States or Britain, but also Ireland, continental Europe and more recently the musical styles of Africa. Australian rock has also contributed to the development of some of these genres, as well as having its own unique Australiana sound with pub rock and its indigenous music.

From 1955 to 1975 three distinct "waves" of Australian rock occurred. The first wave was from 1955 to 1963 and was influenced by American and British styles with local variants provided by artists such as Johnny O'Keefe, who had a hit with "Wild One", which appeared in July 1958. Late in that stage, clean-cut acts, which featured on TV's Bandstand and toured as the "Bandstand family", were representing local music on the record charts. The second wave from 1964 to 1969 was directly influenced by The Beatles and their tour of the country in June 1964. Two major acts from that era are The Easybeats and Bee Gees. A weekly magazine, Go-Set, which was published from 1966 to 1974, and aimed at teenagers and twenty-year-olds, quickly became the most influential and popular music-related publication of the period. The third wave from 1970 to 1975, with the advent of pub rock, was typified by early exponents, Billy Thorpe & The Aztecs, Blackfeather, and Buffalo. Internationally, AC/DC, which had started as a pub rock group in November 1973 has come to be the most well-known Australian rock band, with more than 71 million sales in the US alone by 2014.

Podcasts:

  • Classic Aussie Rock - Down Under Best

    Please Like & Subscribe if you enjoy the content.... Today we going down under to experience some their best Classic Rock songs, so take the journey with us as we experience Aussie Rock.

    published: 29 Sep 2022
  • Men At Work - Down Under (Official HD Video)

    Men At Work's official HD music video for "Down Under" As featured on Contraband: The Best of Men At Work. Click to buy the track or album via iTunes: http://smarturl.it/MAWContraband?IQid... Google Play: http://smarturl.it/MAWDUGPlay?IQid=Me... Amazon: http://smarturl.it/MAWContrabandAmazo... More From Men At Work Who Can It Be Now: https://youtu.be/SECVGN4Bsgg Overkill: https://youtu.be/RY7S6EgSlCI It's A Mistake: https://youtu.be/I0AxrOUJ62E More great 80s videos here: http://smarturl.it/Ultimate80?IQid=Me... Subscribe to Men At Work on YouTube: http://smarturl.it/MenAtWorkSub?IQid=... #MenAtWork #DownUnder #OfficialHDVideo #HD #Remastered --------- Lyrics: Travelling in a fried-out Kombi On a hippie trail, head full of zombie I met a strange lady, she made me nervous She took ...

    published: 07 Feb 2013
  • Australian Crawl - Oh No Not You Again (1981)

    #AustralianCrawl #Sirocco #1981 Australian Crawl - Oh No Not You Again (1981) Let me tell you about two young lovers that lived down the coast She was such a pretty thing... Man what a host Evening time she sets the table for four Some friends are coming round tonight He's out on the town, he's trying to score Woke up early this morning something's got his mind Cursing the night before... breakfast at nine Felt him restless whoa all through the night She sees that something is wrong with him She don't want to cry she just wants to know why Oh, oh, oh, oh... oh, no not you again Oh, oh, oh, oh... oh, no not you again Don't own a swimming pool not even a colour TV Works awful hard some days... she lets him be You know it ain't looking good for them no loving no more Some friends are co...

    published: 30 May 2013
  • Choirboys - Run To Paradise (Official Music Video)

    Official video for Choirboys’ “Run To Paradise” from the album Big Bad Noise! Stream or Download Big Bad Noise: https://WMA.lnk.to/RunParadiseAY Follow Choirboys on Facebook: https://www.facebook.com/choirboysband/ | LYRICS | Baby, you were always gonna be the one You only ever did it just for fun But you run to paradise Jenny, I'll meet you at the grocery store You don't need a friend when you can score You run to paradise Johnny We were always best of friends Stick together and defend But you run to paradise And Mamma, now don't you worry 'bout me anymore And I see you crying at the door When I run to paradise That's right, they had it all worked out You were young and blonde and you could never do wrong That's right, they were so surprised You opened their eyes up (Opened their eye...

    published: 28 Jun 2019
  • Goanna - Solid Rock (Official Music Video)

    Spirit Of Place 40th Anniversary vinyl + digital deluxe out now! https://WMA.lnk.to/goanna40years

    published: 03 Jul 2017
  • Aussie Pub Rock 70s & 80s Vol 1

    In my opinion the best music to come out of Oz

    published: 23 Dec 2022
  • Top 30 Australian Songs of All Time

    In this video I will take you through what I think is the Top 30 Australian Songs of All Time. I am fully expecting disagreements here so please feel free to share. There are a list of honourable mentions near the end, so have a look there if your favourite song doesn't show up. Here is a spotify playlist of all the songs (honourable mentions included) https://open.spotify.com/playlist/1BBzxvlD7AIuvGsV0wyibB?si=7b9b22f064c746b2 You can check out more of my curated Spotify playlists here: New Australian Alternative and Indie Rock (Updated Regularly): https://open.spotify.com/playlist/0RBubjpzfiS8WAamn3onMB?si=5a59dfc808fd490d Greatest Australian songs: https://open.spotify.com/playlist/1BBzxvlD7AIuvGsV0wyibB?si=4195103dc2484954 Greatest Perth songs: https://open.spotify.com/playlist/4tk...

    published: 26 Jan 2022
  • Midnight Oil - Beds Are Burning

    Midnight Oil – Beds Are Burning (Official Video) Taken from the album Diesel and Dust SUBSCRIBE to the MIDNIGHT OIL YouTube channel Official Website https://www.midnightoil.com Listen https://smarturl.it/MidnightOilListen Mailing List http://eepurl.com/cBpcov Facebook https://www.facebook.com/midnightoilofficial Instagram https://www.instagram.com/midnightoilband Twitter https://twitter.com/midnightoilband Beds Are Burning - Lyrics Out where the river broke The blood-wood and the desert oak Holden wrecks and boiling diesels Steam in forty-five degrees The time has come To say fair's fair To pay the rent To pay our share The time has come A fact's a fact It belongs to them Let's give it back How can we dance When our earth is turning How do we sleep While our beds a...

    published: 03 Oct 2009
  • If cockatoos made a punk rock music video

    ...it would look like this. No, we didn't actually give a bird chocolate. It's bad for them! Cockatoos destroy homes, wreak havoc on town | A Current Affair | https://www.youtube.com/watch?v=FE4GxzZ4Sr4 elliemay16x | the cockatoos here really dont gaf about anyone (Hamilton Island bikini bottoms incident) | https://www.tiktok.com/@elliemay16x/video/7257007873127894273 War is Hell | World War 1 Graphic Footage | https://www.youtube.com/watch?v=mhu_77VU4tA Cockatoos wreak havoc after flying into hotel room | Today Show Australia | https://www.youtube.com/watch?v=9p-X3O1D7pw why you should have an animal | Cockatoo eating croissant | https://twitter.com/shouldhaveanima/status/1745860597542256684 How Cockatoos Outsmart Humans To Open Trash Bins | World Wide Waste | Insider Business | h...

    published: 11 Feb 2024
  • Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s

    Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s Rock Love Songs Playlist: https://bit.ly/3NUxJaH Slow Rock Ballads Playlist: https://bit.ly/3wQpmHs #classicrockcollection, #classicrock70s80s90s, #classicrockmusic, Thanks for watching! Don't forget to SUBCRIBE, Like & Share my video if you enjoy it! Have a nice day! ❤ ❤ ❤ Follow me : ► Subscribe : https://bit.ly/2HjOStW ► Facebook : https://bit.ly/2S9FXSF ► Twitter : https://bit.ly/2Z1aL9f classic rock rock classic classic rock songs classic rock greatest hits greatest hits classic rock classic rock 60s classic rock 70s classic rock 80s classic rock 90s classic rock 60s 70s 80s classic rock 70s 80s 90s classic rock 80s 90s classic rock playlist classic rock collection best of classic rock best classic rock song...

    published: 30 Nov 2020
Classic Aussie Rock - Down Under Best
1:39:42

Classic Aussie Rock - Down Under Best

  • Order:
  • Duration: 1:39:42
  • Uploaded Date: 29 Sep 2022
  • views: 21518
Please Like & Subscribe if you enjoy the content.... Today we going down under to experience some their best Classic Rock songs, so take the journey with us as we experience Aussie Rock.
https://wn.com/Classic_Aussie_Rock_Down_Under_Best
Men At Work - Down Under (Official HD Video)
3:41

Men At Work - Down Under (Official HD Video)

  • Order:
  • Duration: 3:41
  • Uploaded Date: 07 Feb 2013
  • views: 445942940
Men At Work's official HD music video for "Down Under" As featured on Contraband: The Best of Men At Work. Click to buy the track or album via iTunes: http://smarturl.it/MAWContraband?IQid... Google Play: http://smarturl.it/MAWDUGPlay?IQid=Me... Amazon: http://smarturl.it/MAWContrabandAmazo... More From Men At Work Who Can It Be Now: https://youtu.be/SECVGN4Bsgg Overkill: https://youtu.be/RY7S6EgSlCI It's A Mistake: https://youtu.be/I0AxrOUJ62E More great 80s videos here: http://smarturl.it/Ultimate80?IQid=Me... Subscribe to Men At Work on YouTube: http://smarturl.it/MenAtWorkSub?IQid=... #MenAtWork #DownUnder #OfficialHDVideo #HD #Remastered --------- Lyrics: Travelling in a fried-out Kombi On a hippie trail, head full of zombie I met a strange lady, she made me nervous She took me in and gave me breakfast And she said: Do you come from a land down under Where women glow and men plunder Can't you hear, can't you hear the thunder You better run, you better take cover."
https://wn.com/Men_At_Work_Down_Under_(Official_Hd_Video)
Australian Crawl  - Oh No Not You Again (1981)
4:59

Australian Crawl - Oh No Not You Again (1981)

  • Order:
  • Duration: 4:59
  • Uploaded Date: 30 May 2013
  • views: 13891101
#AustralianCrawl #Sirocco #1981 Australian Crawl - Oh No Not You Again (1981) Let me tell you about two young lovers that lived down the coast She was such a pretty thing... Man what a host Evening time she sets the table for four Some friends are coming round tonight He's out on the town, he's trying to score Woke up early this morning something's got his mind Cursing the night before... breakfast at nine Felt him restless whoa all through the night She sees that something is wrong with him She don't want to cry she just wants to know why Oh, oh, oh, oh... oh, no not you again Oh, oh, oh, oh... oh, no not you again Don't own a swimming pool not even a colour TV Works awful hard some days... she lets him be You know it ain't looking good for them no loving no more Some friends are coming round tonight he's out on the town He's knocking on the wrong door Oh, oh, oh, oh... oh, no not you again Oh, oh, oh, oh... oh, no not you again Oh, oh, oh, oh... oh, no not you again, She's gone, she's gone, she's gone, she's gone yeah [Repeat 1st verse & chorus] Oh, oh, oh, oh... oh, no not you again [repeat & fade]
https://wn.com/Australian_Crawl_Oh_No_Not_You_Again_(1981)
Choirboys - Run To Paradise (Official Music Video)
4:07

Choirboys - Run To Paradise (Official Music Video)

  • Order:
  • Duration: 4:07
  • Uploaded Date: 28 Jun 2019
  • views: 4009146
Official video for Choirboys’ “Run To Paradise” from the album Big Bad Noise! Stream or Download Big Bad Noise: https://WMA.lnk.to/RunParadiseAY Follow Choirboys on Facebook: https://www.facebook.com/choirboysband/ | LYRICS | Baby, you were always gonna be the one You only ever did it just for fun But you run to paradise Jenny, I'll meet you at the grocery store You don't need a friend when you can score You run to paradise Johnny We were always best of friends Stick together and defend But you run to paradise And Mamma, now don't you worry 'bout me anymore And I see you crying at the door When I run to paradise That's right, they had it all worked out You were young and blonde and you could never do wrong That's right, they were so surprised You opened their eyes up (Opened their eyes up) Opened their eyes up You don't want anyone (You don't, you don't, open your eyes up) You don't want anyone (You don't, your no fool) Don't tell me, this is paradise (Open your eyes up) You don't want anyone (You don't, open your eyes up) You don't want anyone (You don't, your no fool) Don't tell me, this is paradise Good times, why'd I let them slip away Why'd I let them slip away 'Cause I lived in paradise Run to paradise Run to paradise Run to paradise Jesus say's it's gonna be alright He's gonna pat my back so I can walk in the light (That's right!) You don't mind if I abuse myself So I can hold my head up (Hold my head up) Hold my head up You don't want anyone (You don't, hold your head up) You don't want anyone (You don't, your no fool) Don't tell me, this is paradise (Open your eyes up) You don't need anyone You don't need anyone (You don't) You'll tell me, this is paradise You don't want anyone (You don't, hold your head up) You don't want anyone (You don't, your no fool) You'll tell me, this is paradise (Open your eyes up) You don't need anyone You don't want anyone, (You don't) You'll tell me, this is paradise
https://wn.com/Choirboys_Run_To_Paradise_(Official_Music_Video)
Goanna - Solid Rock (Official Music Video)
4:35

Goanna - Solid Rock (Official Music Video)

  • Order:
  • Duration: 4:35
  • Uploaded Date: 03 Jul 2017
  • views: 3173575
Spirit Of Place 40th Anniversary vinyl + digital deluxe out now! https://WMA.lnk.to/goanna40years
https://wn.com/Goanna_Solid_Rock_(Official_Music_Video)
Aussie Pub Rock 70s & 80s Vol 1
20:36

Aussie Pub Rock 70s & 80s Vol 1

  • Order:
  • Duration: 20:36
  • Uploaded Date: 23 Dec 2022
  • views: 14684
In my opinion the best music to come out of Oz
https://wn.com/Aussie_Pub_Rock_70S_80S_Vol_1
Top 30 Australian Songs of All Time
14:32

Top 30 Australian Songs of All Time

  • Order:
  • Duration: 14:32
  • Uploaded Date: 26 Jan 2022
  • views: 157316
In this video I will take you through what I think is the Top 30 Australian Songs of All Time. I am fully expecting disagreements here so please feel free to share. There are a list of honourable mentions near the end, so have a look there if your favourite song doesn't show up. Here is a spotify playlist of all the songs (honourable mentions included) https://open.spotify.com/playlist/1BBzxvlD7AIuvGsV0wyibB?si=7b9b22f064c746b2 You can check out more of my curated Spotify playlists here: New Australian Alternative and Indie Rock (Updated Regularly): https://open.spotify.com/playlist/0RBubjpzfiS8WAamn3onMB?si=5a59dfc808fd490d Greatest Australian songs: https://open.spotify.com/playlist/1BBzxvlD7AIuvGsV0wyibB?si=4195103dc2484954 Greatest Perth songs: https://open.spotify.com/playlist/4tkRb0lZ1fVkVi5cHnOxnL?si=b34b108a22644ba7 Follow my social media: Instagram: https://www.instagram.com/solitudeliam/ Facebook: https://www.facebook.com/solitudeliam
https://wn.com/Top_30_Australian_Songs_Of_All_Time
Midnight Oil - Beds Are Burning
4:37

Midnight Oil - Beds Are Burning

  • Order:
  • Duration: 4:37
  • Uploaded Date: 03 Oct 2009
  • views: 259558210
Midnight Oil – Beds Are Burning (Official Video) Taken from the album Diesel and Dust SUBSCRIBE to the MIDNIGHT OIL YouTube channel Official Website https://www.midnightoil.com Listen https://smarturl.it/MidnightOilListen Mailing List http://eepurl.com/cBpcov Facebook https://www.facebook.com/midnightoilofficial Instagram https://www.instagram.com/midnightoilband Twitter https://twitter.com/midnightoilband Beds Are Burning - Lyrics Out where the river broke The blood-wood and the desert oak Holden wrecks and boiling diesels Steam in forty-five degrees The time has come To say fair's fair To pay the rent To pay our share The time has come A fact's a fact It belongs to them Let's give it back How can we dance When our earth is turning How do we sleep While our beds are burning How can we dance When our earth is turning How do we sleep While our beds are burning The time has come To say fair's fair To pay the rent Now to pay our share Four wheels scare the cockatoos From Kintore East to Yuendemu The western desert lives and breathes In forty-five degrees The time has come To say fair's fair To pay the rent To pay our share The time has come A fact's a fact It belongs to them Let's give it back How can we dance When our earth is turning How do we sleep While our beds are burning How can we dance When our earth is turning How do we sleep While our beds are burning The time has come To say fair's fair To pay the rent now To pay our share The time has come A fact's a fact It belongs to them We're gonna give it back How can we dance When our earth is turning How do we sleep While our beds are burning #MidnightOil #BedsAreBurning #DieselandDust
https://wn.com/Midnight_Oil_Beds_Are_Burning
If cockatoos made a punk rock music video
1:56

If cockatoos made a punk rock music video

  • Order:
  • Duration: 1:56
  • Uploaded Date: 11 Feb 2024
  • views: 561
...it would look like this. No, we didn't actually give a bird chocolate. It's bad for them! Cockatoos destroy homes, wreak havoc on town | A Current Affair | https://www.youtube.com/watch?v=FE4GxzZ4Sr4 elliemay16x | the cockatoos here really dont gaf about anyone (Hamilton Island bikini bottoms incident) | https://www.tiktok.com/@elliemay16x/video/7257007873127894273 War is Hell | World War 1 Graphic Footage | https://www.youtube.com/watch?v=mhu_77VU4tA Cockatoos wreak havoc after flying into hotel room | Today Show Australia | https://www.youtube.com/watch?v=9p-X3O1D7pw why you should have an animal | Cockatoo eating croissant | https://twitter.com/shouldhaveanima/status/1745860597542256684 How Cockatoos Outsmart Humans To Open Trash Bins | World Wide Waste | Insider Business | https://www.youtube.com/watch?v=N-3oHccgenE BirdLoversOnly | Snowball (TM) - Another One Bites The Dust | https://www.youtube.com/watch?v=cJOZp2ZftCw BirdLoversOnly | Snowball (TM) and Irena on The Late Show | https://www.youtube.com/watch?v=YC1Wly4_hKU World Science Festival | Snowball the Dancing Cockatoo | https://www.youtube.com/watch?v=j4O8J1JOhyw GeoBeats Animals | Meanwhile in Australia, cockatoos are biting tails of kangaroos and stealing their food | https://www.youtube.com/watch?v=j4O8J1JOhyw We're Cockatoos (and we don't care) Hello Sydney! We are The Cockatoos We're here to rock And we don't give a flock! We're cockatoos and we don't care On the ground or in the air We will steal your underwear We're cockatoos and we don't care We don't need your philosophies We got beak and feather disease Don't care about your atrocities We're gonna make some holes in trees We eat your Snickers Steal all your knickers We eat your kernels We read your journals Got a yellow bouffant Gonna eat your croissant Scream so you'll hear us Even though you're near us Don't call us dumb We got opposable thumbs Some say we're curious, playful, or smart ... I dunno man I'm just hungry You think I like you I'll take your food and bite you Spit it out to spite you Spread my wings and fight you I'll chew your timber I'm fat but limber We chuck your bricks Rock out to Stevie Nicks Open your bins We'll drink your tins Got a little violent On Hamilton Island I bit a kangaroo At Taronga Zoo Wastie Birdo's book about his battle to reopen the Norwood, Ohio Firebird factory and build the first new cars the world has seen since the apocalypse: https://www.lulu.com/shop/john-binns-and-steve-scholz-and-marky-make-up/heads-will-rock/paperback/product-r2vrpv.html Email: wastelandfirebird at gmail dot com Patreon: https://patreon.com/wastelandfirebird PayPal: https://paypal.com/paypalme/wastelandfirebird Substack: https://wastelandfirebird.substack.com/ Facebook: https://www.facebook.com/WastelandFirebird Instagram: https://instagram.com/wastelandfirebird Twitter: https://twitter.com/wastiebirdo Mad Skelli: https://www.youtube.com/@madskelli
https://wn.com/If_Cockatoos_Made_A_Punk_Rock_Music_Video
Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s
1:44:11

Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s

  • Order:
  • Duration: 1:44:11
  • Uploaded Date: 30 Nov 2020
  • views: 10871390
Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s Rock Love Songs Playlist: https://bit.ly/3NUxJaH Slow Rock Ballads Playlist: https://bit.ly/3wQpmHs #classicrockcollection, #classicrock70s80s90s, #classicrockmusic, Thanks for watching! Don't forget to SUBCRIBE, Like & Share my video if you enjoy it! Have a nice day! ❤ ❤ ❤ Follow me : ► Subscribe : https://bit.ly/2HjOStW ► Facebook : https://bit.ly/2S9FXSF ► Twitter : https://bit.ly/2Z1aL9f classic rock rock classic classic rock songs classic rock greatest hits greatest hits classic rock classic rock 60s classic rock 70s classic rock 80s classic rock 90s classic rock 60s 70s 80s classic rock 70s 80s 90s classic rock 80s 90s classic rock playlist classic rock collection best of classic rock best classic rock songs classic rock hits top classic rock songs rock rock 70s rock 80s rock 90s best rock music best rock 60s 70s 80s best rock 70s 80s 90s great classic rock best classic rock songs of all time top 20 classic rock songs classic rock music
https://wn.com/Classic_Rock_Collection_|_The_Best_Of_Classic_Rock_Songs_Of_70S_80S_90S
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Classic Aussie Rock - Down Under Best
    1:39:42
    Classic Aussie Rock - Down Under Bestremove from playlist
  • Men At Work - Down Under (Official HD Video)
    3:41
    Men At Work - Down Under (Official HD Video)remove from playlist
  • Australian Crawl  - Oh No Not You Again (1981)
    4:59
    Australian Crawl - Oh No Not You Again (1981)remove from playlist
  • Choirboys - Run To Paradise (Official Music Video)
    4:07
    Choirboys - Run To Paradise (Official Music Video)remove from playlist
  • Goanna - Solid Rock (Official Music Video)
    4:35
    Goanna - Solid Rock (Official Music Video)remove from playlist
  • Top 30 Australian Songs of All Time
    14:32
    Top 30 Australian Songs of All Timeremove from playlist
  • Midnight Oil - Beds Are Burning
    4:37
    Midnight Oil - Beds Are Burningremove from playlist
  • If cockatoos made a punk rock music video
    1:56
    If cockatoos made a punk rock music videoremove from playlist
  • Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s
    1:44:11
    Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90sremove from playlist
PLAYLIST TIME: 0:00 / 4:22:56

Classic Aussie Rock - Down Under Best

Please Like & Subscribe if you enjoy the content.... Today we going down under to experience some their best Classic Rock songs, so take the journey with us as we experience Aussie Rock.
1:39:42
Classic Aussie Rock - Down Under Best
Please Like & Subscribe if you enjoy the content.... Today we going down under to experie...
published: 29 Sep 2022
Play in Full Screen
3:41
Men At Work - Down Under (Official HD Video)
Men At Work's official HD music video for "Down Under" As featured on Contraband: The Bes...
published: 07 Feb 2013
Play in Full Screen
4:59
Australian Crawl - Oh No Not You Again (1981)
#AustralianCrawl #Sirocco #1981 Australian Crawl - Oh No Not You Again (1981) Let me te...
published: 30 May 2013
Play in Full Screen
4:07
Choirboys - Run To Paradise (Official Music Video)
Official video for Choirboys’ “Run To Paradise” from the album Big Bad Noise! Stream or D...
published: 28 Jun 2019
Play in Full Screen
4:35
Goanna - Solid Rock (Official Music Video)
Spirit Of Place 40th Anniversary vinyl + digital deluxe out now! https://WMA.lnk.to/goanna...
published: 03 Jul 2017
Play in Full Screen
20:36
Aussie Pub Rock 70s & 80s Vol 1
In my opinion the best music to come out of Oz
published: 23 Dec 2022
Play in Full Screen
14:32
Top 30 Australian Songs of All Time
In this video I will take you through what I think is the Top 30 Australian Songs of All T...
published: 26 Jan 2022
Play in Full Screen
4:37
Midnight Oil - Beds Are Burning
Midnight Oil – Beds Are Burning (Official Video) Taken from the album Diesel and Dust SU...
published: 03 Oct 2009
Play in Full Screen
1:56
If cockatoos made a punk rock music video
...it would look like this. No, we didn't actually give a bird chocolate. It's bad for t...
published: 11 Feb 2024
Play in Full Screen
1:44:11
Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s
Classic Rock Collection | The Best Of Classic Rock Songs Of 70s 80s 90s Rock Love Songs Pl...
published: 30 Nov 2020
Play in Full Screen

Australian rock

Australian rock, also called Oz rock, is rock music from Australia. The nation has a rich history of rock music and an appreciation of the roots of various rock genres, usually originating in the United States or Britain, but also Ireland, continental Europe and more recently the musical styles of Africa. Australian rock has also contributed to the development of some of these genres, as well as having its own unique Australiana sound with pub rock and its indigenous music.

From 1955 to 1975 three distinct "waves" of Australian rock occurred. The first wave was from 1955 to 1963 and was influenced by American and British styles with local variants provided by artists such as Johnny O'Keefe, who had a hit with "Wild One", which appeared in July 1958. Late in that stage, clean-cut acts, which featured on TV's Bandstand and toured as the "Bandstand family", were representing local music on the record charts. The second wave from 1964 to 1969 was directly influenced by The Beatles and their tour of the country in June 1964. Two major acts from that era are The Easybeats and Bee Gees. A weekly magazine, Go-Set, which was published from 1966 to 1974, and aimed at teenagers and twenty-year-olds, quickly became the most influential and popular music-related publication of the period. The third wave from 1970 to 1975, with the advent of pub rock, was typified by early exponents, Billy Thorpe & The Aztecs, Blackfeather, and Buffalo. Internationally, AC/DC, which had started as a pub rock group in November 1973 has come to be the most well-known Australian rock band, with more than 71 million sales in the US alone by 2014.

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

Edit

Lilo restaurant founders aim to serve ‘one of the best meals’ you’ve ever had

San Diego Union-Tribune 28 Mar 2025
Restaurateur John Resnick and executive chef Eric Bost in their new Carlsbad restaurant Wildland on Dec ... The patio, surrounded by tall, curving cedar-plank walls will be landscaped with native plants, rocks and a large Australian bottle brush tree.
Edit

Ricki-Lee Coulter flaunts her curves in $2,500 skin-tight Alex Perry dress | Daily Mail Online

The Daily Mail 27 Mar 2025
The singer and Nova drive-time host, 39, recently shared backstage Australian Idol photos to social media, capturing her in a $2,500 form-fitting, strapless gown which featured a shimmering gunmetal grey hue.
Edit

So long then Gabba, thanks for the thrillers

Hindustan Times 26 Mar 2025
... routs at Perth were sobering because by 8 am the mind had been inevitably prepared to process the rock hard WACA pitch and the relentless pace bowling under an unforgiving West Australian sun.
Edit

'Death of a Unicorn' and 'A Working Man' among new movies in Milwaukee theaters this week

Milwaukee Journal Sentinel 26 Mar 2025
5 movies not to miss in 2025 ... AMC Mayfair Mall.RestoredPicnic at Hanging Rock’ at Oriental Theatre. Peter Weir's 1975 Australian New Wave masterpiece “Picnic at Hanging Rock” is showing in a new 4K restoration at the Oriental Theatre at 6 p.m ... Info.
Edit

5 things to know for March 25: Yemen group chat, Deportations, FEMA, USPS, Director assaulted

CNN 25 Mar 2025
TODAY’S NUMBER 66That’s how many fossilized footprints from 47 individual dinosaurs were discovered on a rock that’s been sitting on the grounds of an Australian school for two decades.
Edit

Off the Grid: Sally breaks down USA TODAY's daily crossword puzzle, Hold It (Freestyle)

Oakridger 23 Mar 2025
There are spoilers ahead ... Constructor ... Editor ... Zachary ... Bird in Australian Aboriginal rock art) Aboriginal people (Indigenous peoples of the Australian mainland) used rock surfaces as a canvas. Rock art has been discovered in rock shelters and in caves.
Edit

Fundora stops Booker to retain WBC, WBO super welterweight titles

The Manila Times 23 Mar 2025
Fundora, the six-foot, six-inch southpaw dubbed the "Towering Inferno," made a convincing first defense of the titles he claimed last March with a split-decision victory over Australian Tim Tszyu.
Edit

Andrew Dickens: my take on GDP

NewstalkZB 23 Mar 2025
GDP Came out better than we expected with a rise of 0.7 per cent in the fourth quarter. &nbsp; ... And then Paul Bloxham the Australian economist who invented the rock star economy name came out and said our recession has been the worst in the OECD ... .
Edit

EDEN CONFIDENTIAL: Bob Geldof reveals the real reason why he finally married partner Jeanne Marine ...

The Daily Mail 22 Mar 2025
'She wanted to be Lady Paula,' he says. In fact, she became Lady Geldof. Nine years later, Yates left him for Australian rock star Michael Hutchence – a defection which, Geldof has reflected, broke him so badly that he was, for a time, 'actually mad' ... .
Edit

Bella Hunter and billionaire husband Gary Friedman welcome their first baby - just one month ...

The Daily Mail 20 Mar 2025
The Australian DJ, 35, who is the daughter of late rock musician Marc Hunter, shared the happy news to Instagram on Friday ... The Australian DJ, who is the daughter of late rock musician Marc Hunter, shared the happy news to Instagram on Friday.
Edit

Sometimes I Sit And Think, And Sometimes I Just Sit Turns 10

Stereogum 20 Mar 2025
Most of the Australian acts to find indie renown since then have either branched from the Tame Impala universe of vintage Beatledelia (Pond, the Psychedelic Porn Crumpets) or the continent’s ...
Edit

Raducanu earns dominant win over Japan's Ishii at Miami Open

The Daily Herald - St Maarten 20 Mar 2025
Frenchman Gael Monfils was up against Hungarian Fabian Marozsan while Australian Nick Kyrgios was set to cap the Hard Rock Stadium day session against American qualifier Mackenzie McDonald.
Edit

New Species Of 15-Million-Year-Old Fossil Fish Found With Perfectly Preserved Belly Full Of Food

IFL Science 20 Mar 2025
ADVERTISEMENT ... &nbsp;     ... ADVERTISEMENT ... ADVERTISEMENT ... Splitting the rust-red slabs of rock is like opening an ancient book, revealing the creatures that inhabited an Australian oxbow lake some 15 million years ago ... Having F ... .
Edit

Scientists discover 15-mln-year-old Australian fish fossil

Xinhua 19 Mar 2025
Jochen Brocks from the Australian National University (ANU), who played a key role in its discovery, according to a news release of the ANU Research School of Earth Sciences ... Scientists discover 15-mln-year-old Australian fish fossil.
Edit

Machine Gun Kelly pays tribute to Luke ‘Dingo’ Trembath on bittersweet single ‘Your Name Forever’ ...

NME 19 Mar 2025
READ MORE. Machine Gun Kelly on the cover ... The rap-rock song honours the late Australian snowboarder, who died last month aged 38, and also features Avenged Sevenfold‘s M ... Shadows took to X/Twitter to share the video for the song, writing ... .
×