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

ARIA Music Awards of 2014

The 28th Annual Australian Recording Industry Association Music Awards (generally known as ARIA Music Awards or simply The ARIAs) are a series of award ceremonies which include the 2014 ARIA Artisan Awards, ARIA Hall of Fame Awards, ARIA Fine Arts Awards and ARIA Awards. The latter ceremony took place on 26 November at the Star Event Centre, and was telecast by Network Ten.

The final nominees for ARIA Awards categories were announced on 10 October as well as nominees and winners for Fine Arts Awards and Artisan Awards. Public votes were used for the categories, Song of the Year, Best Australian Live Act, Best International Artist and Best Video.

Also on 26 November ARIA inducted Molly Meldrum and his TV series, Countdown, into their Hall of Fame. Denis Handlin, CEO, of Sony Music Entertainment Australia and New Zealand, and ARIA Chairman was presented with the second annual ARIA Industry Icon Award.

Nominees and winners

ARIA Awards

Winners are listed first and highlighted in boldface; other final nominees are listed alphabetically by artists' first name.

ARIA Music Awards of 1987

The First Australian Recording Industry Association Music Awards (generally known as the ARIA Music Awards or simply The ARIAS) was held on 2 March 1987 at the Sheraton Wentworth Hotel in Sydney with Elton John as the host. The awards were introduced by ARIA Chairman, Paul Turner, who explained the nomination and voting procedures. Presenters of the 20 awards included, Slim Dusty, Basia Bonkowski and Donnie Sutherland, the ceremony was not televised. The most successful artist was John Farnham with his album (Whispering Jack) and its associated single, "You're the Voice" helping him win six awards.

History

Countdown was an Australian pop music TV series on national broadcaster ABC-TV from 19741987, it presented music awards from 19791987, initially in conjunction with magazine TV Week which had sponsored the previously existing 'King of Pop' Awards. After Cold Chisel performed at the 1980 awards ceremony, and then trashed their instruments and the set, sponsors TV Week withdrew their support and Countdown held its own awards ceremonies until the 1986 awards which were broadcast in 1987. The awards ceremony was co-produced by Carolyn James (aka Carolyn Bailey) during 19811984 in collaboration with the Australian Recording Industry Association (ARIA), which provided peer voting for some awards. Countdown provided coupons in the related Countdown Magazine for viewers to vote for some awards including 'Most Popular Male Performer', 'Most Popular Female Performer', 'Most Popular Group' and 'Most Popular International Act'. At the 1985 awards ceremony (held in April 1986) fans of INXS and Uncanny X-Men scuffled and as a result ARIA decided to hold their own awards.

ARIA Music Awards of 2009

The 23rd Annual Australian Recording Industry Association Music Awards (generally known as ARIA Music Awards or simply The ARIAs) took place on 26 November 2009 at the Acer Arena at the Sydney Olympic Park complex. The ceremony was telecast on the Nine Network at 8:30pm that night. The nominees for all categories were announced on 8 October, with the winners of the Fine Arts Awards and Artisan Awards announced on 10 November. Biggest winners for the year were Empire of the Sun which collected a total of seven awards.

The ARIA Hall of Fame inducted: Kev Carmody, The Dingoes, Little Pattie, Mental As Anything and John Paul Young.

Ceremony details

The ceremony was hosted by Gyton Grantley and Kate Ritchie with presenters including Ruby Rose, Missy Higgins, Powderfinger, Orianthi, Vanessa Amorosi, Guy Sebastian, Natalie Bassingthwaighte, Richard Wilkins, Lee Kernaghan, Daniel Merriweather, Jabba, Jason Dundas, Natalie Gruzlewski, John Butler, Keith Urban, Tim Ross (Rosso), Cassie Davis, Andrew G, Jimmy Barnes, Marieke Hardy, Lindsay McDougall, Rove McManus and Robbie Williams.

Podcasts:

  • Missy Higgins x Friends Live at the 2024 ARIA Awards

    @MissyHigginsOfficial featuring @AmyShark , @angiemcmahon , @GFlipDrums and @GrettaRay performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #MissyHiggins #AmyShark #AngieMcMahon #GFlip #GrettaRay#LiveMusic #AusMusic

    published: 20 Nov 2024
  • One Direction: Steal My Girl | 2014 ARIA Awards

    One Direction perform Steal My Girl at the 2014 ARIA Awards. Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official

    published: 03 Sep 2019
  • I Am Woman Tribute to Helen Reddy | 2020 ARIA Awards #Livestream

    Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 I Am Woman Tribute to Helen Reddy at the 2020 ARIA Awards from The Star, Sydney, performed by: AMY SHARK CHRISTINE ANU DELTA GOODREM EMMA WATKINS JESSICA MAUBOY KATE CEBERANO MARCIA HINES MONTAIGNE THE MCCLYMONTS TONES AND I Joining in the tribute as part of the virtual chorus Amy Sheppard, Christie Wheelan-Browne, Clare Bowen, Dami Im, Emma Donovan, Erika Heynatz, Fanny Lumsden, GRAACE, Kate Miller-Heidke, Katie Noonan, KLP, Maddy Jane, Missy Higgins, Mo’Ju, Odette, Samantha Jade, Teeny Tiny Stevies, Thandi Phoenix and Wendy Matthews. Find out more at http://www.aria.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official #ARIAs ARIA Aw...

    published: 25 Nov 2020
  • Ava Max Live at the 2024 ARIA Awards

    @avamax performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #AvaMax #LiveMusic #AusMusic

    published: 22 Nov 2024
  • One Direction win Best International Artist | 2014 ARIA Awards

    One Direction wins Best International Artist at the 2014 ARIA Awards. Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official #ARIAs

    published: 28 Jul 2020
  • 5 Seconds Of Summer: She Looks So Perfect | 2014 ARIA Awards

    5 Seconds Of Summer perform She Looks So Perfect at the 2014 ARIA Awards. Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official

    published: 03 Sep 2019
  • 2024 ARIA Awards in partnership with YouTube

    Join us for the 2024 ARIA Awards in partnership with YouTube from Sydney Wednesday November 20 on YouTube. Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 Find out more at http://www.aria.com.au

    published: 20 Nov 2024
  • The Kid LAROI Live at the 2024 ARIA Awards

    @TheKidLAROI performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #TheKidLAROI #LiveMusic #AusMusic

    published: 20 Nov 2024
  • Ava Max at 2024 ARIA Awards

    Ava Max at 2024 ARIA Awards at Hordern Pavilion in Sydney (Nov 2024)

    published: 24 Mar 2025
  • The Veronicas: In My Blood | 2016 ARIA Awards

    The Veronicas perform In My Blood at the 2016 ARIA Awards. Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official

    published: 19 Sep 2019
Missy Higgins x Friends Live at the 2024 ARIA Awards
7:22

Missy Higgins x Friends Live at the 2024 ARIA Awards

  • Order:
  • Duration: 7:22
  • Uploaded Date: 20 Nov 2024
  • views: 107882
@MissyHigginsOfficial featuring @AmyShark , @angiemcmahon , @GFlipDrums and @GrettaRay performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #MissyHiggins #AmyShark #AngieMcMahon #GFlip #GrettaRay#LiveMusic #AusMusic
https://wn.com/Missy_Higgins_X_Friends_Live_At_The_2024_Aria_Awards
One Direction: Steal My Girl  | 2014 ARIA Awards
3:59

One Direction: Steal My Girl | 2014 ARIA Awards

  • Order:
  • Duration: 3:59
  • Uploaded Date: 03 Sep 2019
  • views: 1429261
One Direction perform Steal My Girl at the 2014 ARIA Awards. Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official
https://wn.com/One_Direction_Steal_My_Girl_|_2014_Aria_Awards
I Am Woman Tribute to Helen Reddy | 2020 ARIA Awards #Livestream
4:49

I Am Woman Tribute to Helen Reddy | 2020 ARIA Awards #Livestream

  • Order:
  • Duration: 4:49
  • Uploaded Date: 25 Nov 2020
  • views: 587951
Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 I Am Woman Tribute to Helen Reddy at the 2020 ARIA Awards from The Star, Sydney, performed by: AMY SHARK CHRISTINE ANU DELTA GOODREM EMMA WATKINS JESSICA MAUBOY KATE CEBERANO MARCIA HINES MONTAIGNE THE MCCLYMONTS TONES AND I Joining in the tribute as part of the virtual chorus Amy Sheppard, Christie Wheelan-Browne, Clare Bowen, Dami Im, Emma Donovan, Erika Heynatz, Fanny Lumsden, GRAACE, Kate Miller-Heidke, Katie Noonan, KLP, Maddy Jane, Missy Higgins, Mo’Ju, Odette, Samantha Jade, Teeny Tiny Stevies, Thandi Phoenix and Wendy Matthews. Find out more at http://www.aria.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official #ARIAs ARIA Awards content produced for ARIA by ZigZagTV.
https://wn.com/I_Am_Woman_Tribute_To_Helen_Reddy_|_2020_Aria_Awards_Livestream
Ava Max Live at the 2024 ARIA Awards
4:15

Ava Max Live at the 2024 ARIA Awards

  • Order:
  • Duration: 4:15
  • Uploaded Date: 22 Nov 2024
  • views: 422848
@avamax performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #AvaMax #LiveMusic #AusMusic
https://wn.com/Ava_Max_Live_At_The_2024_Aria_Awards
One Direction win Best International Artist | 2014 ARIA Awards
3:24

One Direction win Best International Artist | 2014 ARIA Awards

  • Order:
  • Duration: 3:24
  • Uploaded Date: 28 Jul 2020
  • views: 462375
One Direction wins Best International Artist at the 2014 ARIA Awards. Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official #ARIAs
https://wn.com/One_Direction_Win_Best_International_Artist_|_2014_Aria_Awards
5 Seconds Of Summer: She Looks So Perfect | 2014 ARIA Awards
3:51

5 Seconds Of Summer: She Looks So Perfect | 2014 ARIA Awards

  • Order:
  • Duration: 3:51
  • Uploaded Date: 03 Sep 2019
  • views: 124185
5 Seconds Of Summer perform She Looks So Perfect at the 2014 ARIA Awards. Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official
https://wn.com/5_Seconds_Of_Summer_She_Looks_So_Perfect_|_2014_Aria_Awards
2024 ARIA Awards in partnership with YouTube
2:32:36

2024 ARIA Awards in partnership with YouTube

  • Order:
  • Duration: 2:32:36
  • Uploaded Date: 20 Nov 2024
  • views: 6126
Join us for the 2024 ARIA Awards in partnership with YouTube from Sydney Wednesday November 20 on YouTube. Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 Find out more at http://www.aria.com.au
https://wn.com/2024_Aria_Awards_In_Partnership_With_Youtube
The Kid LAROI Live at the 2024 ARIA Awards
4:21

The Kid LAROI Live at the 2024 ARIA Awards

  • Order:
  • Duration: 4:21
  • Uploaded Date: 20 Nov 2024
  • views: 131678
@TheKidLAROI performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #TheKidLAROI #LiveMusic #AusMusic
https://wn.com/The_Kid_Laroi_Live_At_The_2024_Aria_Awards
Ava Max at 2024 ARIA Awards
2:25

Ava Max at 2024 ARIA Awards

  • Order:
  • Duration: 2:25
  • Uploaded Date: 24 Mar 2025
  • views: 126
Ava Max at 2024 ARIA Awards at Hordern Pavilion in Sydney (Nov 2024)
https://wn.com/Ava_Max_At_2024_Aria_Awards
The Veronicas: In My Blood | 2016 ARIA Awards
3:18

The Veronicas: In My Blood | 2016 ARIA Awards

  • Order:
  • Duration: 3:18
  • Uploaded Date: 19 Sep 2019
  • views: 225659
The Veronicas perform In My Blood at the 2016 ARIA Awards. Find out more at http://www.ariaawards.com.au Facebook: http://www.facebook.com/ARIA.Official Twitter: http://twitter.com/ARIA_Official Instagram: https://www.instagram.com/ARIA_Official
https://wn.com/The_Veronicas_In_My_Blood_|_2016_Aria_Awards
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 3:10:20

Missy Higgins x Friends Live at the 2024 ARIA Awards

@MissyHigginsOfficial featuring @AmyShark , @angiemcmahon , @GFlipDrums and @GrettaRay performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern Pavilion. #ARIA #ARIAAwards #YouTube #MissyHiggins #AmyShark #AngieMcMahon #GFlip #GrettaRay#LiveMusic #AusMusic
7:22
Missy Higgins x Friends Live at the 2024 ARIA Awards
@MissyHigginsOfficial featuring @AmyShark , @angiemcmahon , @GFlipDrums and @GrettaRay ...
published: 20 Nov 2024
Play in Full Screen
3:59
One Direction: Steal My Girl | 2014 ARIA Awards
One Direction perform Steal My Girl at the 2014 ARIA Awards. Find out more at http://www....
published: 03 Sep 2019
Play in Full Screen
4:49
I Am Woman Tribute to Helen Reddy | 2020 ARIA Awards #Livestream
Subscribe to the ARIAs Channel: https://bit.ly/2nhrKG5 I Am Woman Tribute to Helen Reddy...
published: 25 Nov 2020
Play in Full Screen
4:15
Ava Max Live at the 2024 ARIA Awards
@avamax performing live at the 2024 ARIA Awards in partnership with YouTube at the Hordern...
published: 22 Nov 2024
Play in Full Screen
3:24
One Direction win Best International Artist | 2014 ARIA Awards
One Direction wins Best International Artist at the 2014 ARIA Awards. Subscribe to the AR...
published: 28 Jul 2020
Play in Full Screen
3:51
5 Seconds Of Summer: She Looks So Perfect | 2014 ARIA Awards
5 Seconds Of Summer perform She Looks So Perfect at the 2014 ARIA Awards. Find out more a...
published: 03 Sep 2019
Play in Full Screen
2:32:36
2024 ARIA Awards in partnership with YouTube
Join us for the 2024 ARIA Awards in partnership with YouTube from Sydney Wednesday Novembe...
published: 20 Nov 2024
Play in Full Screen
4:21
The Kid LAROI Live at the 2024 ARIA Awards
@TheKidLAROI performing live at the 2024 ARIA Awards in partnership with YouTube at the H...
published: 20 Nov 2024
Play in Full Screen
2:25
Ava Max at 2024 ARIA Awards
Ava Max at 2024 ARIA Awards at Hordern Pavilion in Sydney (Nov 2024)
published: 24 Mar 2025
Play in Full Screen
3:18
The Veronicas: In My Blood | 2016 ARIA Awards
The Veronicas perform In My Blood at the 2016 ARIA Awards. Find out more at http://www.ar...
published: 19 Sep 2019
Play in Full Screen

ARIA Music Awards of 2014

The 28th Annual Australian Recording Industry Association Music Awards (generally known as ARIA Music Awards or simply The ARIAs) are a series of award ceremonies which include the 2014 ARIA Artisan Awards, ARIA Hall of Fame Awards, ARIA Fine Arts Awards and ARIA Awards. The latter ceremony took place on 26 November at the Star Event Centre, and was telecast by Network Ten.

The final nominees for ARIA Awards categories were announced on 10 October as well as nominees and winners for Fine Arts Awards and Artisan Awards. Public votes were used for the categories, Song of the Year, Best Australian Live Act, Best International Artist and Best Video.

Also on 26 November ARIA inducted Molly Meldrum and his TV series, Countdown, into their Hall of Fame. Denis Handlin, CEO, of Sony Music Entertainment Australia and New Zealand, and ARIA Chairman was presented with the second annual ARIA Industry Icon Award.

Nominees and winners

ARIA Awards

Winners are listed first and highlighted in boldface; other final nominees are listed alphabetically by artists' first name.

'); } 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: aria music awards

Edit

Kylie Minogue brings the party to her first Phoenix concert: 'We'll be here all night'

Azcentral 20 Apr 2025
Here are 12 of the biggest music celebrities who ... She has won two Grammy Awards, four Brit Awards and eighteen ARIA Music Awards – making her the highest-selling Australian female artist of all time.
Edit

The moment I knew: the Veronicas were on stage when I spotted him apologetically squeezing past people

The Observer 20 Apr 2025
It was November 2016 and raining ... It was the Aria music awards, which meant I’d soon be in a room with a few thousand people sipping free booze and growing increasingly raucous as the night progressed ... The moment I knew ... Read more ... My stomach flipped ... No.
Edit

Savage Garden star Darren Hayes reveals shocking health scare after jaw-snapping fall saw him hospitalised: ...

The Daily Mail 18 Apr 2025
'On March 17, two months after my Mother passed away, I had a terrible accident ... 'I am under incredible care ... Read More ... 'Darling Darren ... Combined the albums sold 23 million worldwide and the group won a record number of ten ARIA Music Awards in 1997 ... .
  • 1
×