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

Earthquake (DJ Fresh and Diplo song)

"Earthquake" is a single by British disc jockey DJ Fresh and American counterpart Diplo featuring vocals from Dominique Young Unique. The song was released in the United Kingdom on 18 August 2013 as the lead single from his fourth studio album. An edited version of the song with extra production and sound effects features in the film Kick-Ass 2, under the name "Motherquake". It contains a sample from the song "Teach Me How to Dougie" by the hip hop group Cali Swag District. "Earthquake" peaked at number four on the UK Singles Chart, number three on the UK Dance Chart and topped the UK Indie Chart.

The debut performance of "Earthquake" occurred during DJ Fresh's set at the New York leg of the international Electric Daisy Carnival festival. Dominique and DJ Fresh performed "Earthquake" again at Radio 1's Big Weekend, during the latter's headlining set on the "1Xtra Arena/In New Music We Trust Stage". DJ Fresh and Dominique Young Unique performed the track live on 4Music panel show 'McFlurry Music Mix Up' presented by Rickie and Melvin on 19 August 2013.

Earthquake (disambiguation)

An earthquake is the result of a sudden release of energy in the Earth's crust that creates seismic waves.

Earthquake may also refer to:

  • Earthquake (film), a 1974 film starring Charlton Heston and Ava Gardner
  • Earthquake (cocktail), a cocktail containing absinthe and cognac
  • Earthquake (comedian) (born 1963), American stand-up comedian
  • Earthquake (comics), a fictional character in the Marvel Universe
  • Earthquake (Gladiators), an event in the television series Gladiators
  • Earthquake (Samurai Shodown), a fictional character in the video game series Samurai Shodown
  • Earthquake, a ringname of John Tenta, Canadian professional wrestler
  • Earthquake: The Big One, a former attraction at Universal Studios Florida
  • San Jose Earthquakes, an American professional soccer team
  • ""Earthquake" (Modern Family)", a 2010 Modern Family episode
  • Earthquake map in mathematics
  • Music

  • Earth Quake (band), a 1970s American rock band
  • Earthquake (album), a 1979 album by Electric Sun
  • "Earthquake" (DJ Fresh and Diplo song), 2013
  • Earthquake (film)

    Earthquake is a 1974 American ensemble disaster film directed and produced by Mark Robson. The plot concerns the struggle for survival after a catastrophic earthquake destroys most of the city of Los Angeles, California.

    Directed by Mark Robson and with a screenplay by George Fox and Mario Puzo, the film starred a large cast of well-known actors, including Charlton Heston, Ava Gardner, George Kennedy, Lorne Greene, Geneviève Bujold, Richard Roundtree, Marjoe Gortner, Barry Sullivan, Lloyd Nolan, Victoria Principal, and (under an alias) Walter Matthau. It is notable for the use of an innovative sound effect called Sensurround which created the sense of actually experiencing an earthquake in theatres.

    Plot

    Former pro-footballer Stewart Graff (Heston) is jogging near the Hollywood Sign. Back home, his wife Remy Royce-Graff (Gardner), bitter because of their failing marriage, starts her morning by picking a fight with him. After he has showered and is preparing to leave, Stewart finds Remy unconscious with a bottle of pills nearby. Accustomed to her periodic suicide attempts, Stewart prepares to induce vomiting when a violent tremor shakes the bedroom. Remy bolts out of bed, revealing that she was faking.

    Podcasts:

    • Vanuatu earthquake: Journalist recounts ‘very serious’ disaster | ABC News

      Vanuatu’s emergency services and the military have been deployed after a magnitude 7.4 earthquake struck 37 km from the country’s capital Port Vila. Local journalist Dan McGarry says the earthquake is the strongest he has experienced in 21 years, despite having witnesses several earthquake events. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2024-12-17/earthquake-hits-vanuatu-tsunami-warning-live-blog/104736454 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: h...

      published: 17 Dec 2024
    • Buildings damaged, communications cut after 7.3 magnitude earthquake in Vanuatu | ABC NEWS

      A tsunami alert has been issued for Vanuatu following a powerful earthquake near the capital, Port Vila. The magnitude 7.3 quake hit just off the coast at a depth of 57km. There are early reports of landslides and structural damage in Port Vila. Authorities are monitoring for signs of a tsunami. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2024-12-17/earthquake-hits-vanuatu-tsunami-warning-live-blog/104736454 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: htt...

      published: 17 Dec 2024
    • 7.3 magnitude earthquake shakes Vanuatu | 7NEWS

      A powerful earthquake has rocked the South Pacific Island nation of Vanuatu with fears lives have been lost. Subscribe and set 🔔 » https://7news.link/YTSubscribe | For the latest Australian news and breaking news alerts, connect with 7NEWS online: Visit » https://7news.com.au 7NEWS Podcast » http://smarturl.it/7NewsDaily Facebook » https://www.facebook.com/7NewsAustralia Twitter » https://twitter.com/7NewsAustralia Instagram » https://www.instagram.com/7newsaustralia/ 7NEWS combines the trusted and powerful news brands including Sunrise, The Morning Show, The Latest, and 7NEWS.com.au, delivering unique, engaging and continuous coverage on the issues that matter most to Australians. Watch 7 News Australia full broadcasts and full episodes nightly at 6pm and weekdays at 11:30am and 4pm ...

      published: 17 Dec 2024
    • 7.3 magnitude earthquake rocks Vanuatu

      7.3 magnitude earthquake rocks Vanuatu A powerful 7.3 magnitude earthquake has struck off a Pacific Island nation, triggering landslides and demolishing buildings.

      published: 17 Dec 2024
    • 'Violent' earthquake strikes Vanuatu — no tsunami threat to NZ | 1News on TVNZ+

      The 7.3 magnitude earthquake, which struck at a depth of 57km, occurred 30km to the west of the capital Port Vila at 2.47pm, according to the US Geological Survey. - Join the 1News team on TVNZ+ and stream the latest news from Aotearoa New Zealand and overseas. - Due to the immense volume of comments 1News videos attract, we've made the decision to hold all comments for review, and in some cases, turn them off entirely. 1News is a media outlet based in New Zealand, and could potentially be liable for any comments that defame others or breach New Zealand law. Our content receives thousands of comments each day, and we lack the capacity to moderate that volume without holding comments for review. This decision ensures that our platform remains a safe and compliant space for all vi...

      published: 17 Dec 2024
    • BREAKING: M7.3 Earthquake Strikes Vanuatu with Tsunami Warning Issued 🌊

      Breaking news as a magnitude 7.3 earthquake struck near Vanuatu at 01:47 am December 17th UTC at a depth of 57.1 km. Geophysicist Stefan Burns reports Credit: Space Observing System USGS #earthquakes #geophysics #geology #breakingnews #spaceweather #earthenergy #geoscience

      published: 17 Dec 2024
    • Tsunami warning in Vanuatu following earthquake

      A tsunami warning has been triggered in Vanuatu after a 7.4 magnitude earthquake struck off the island nation’s capital. The Australian Bureau of Meteorology says there is no risk of a tsunami to Australia. Meanwhile, New Zealand is assessing the threat.

      published: 17 Dec 2024
    • Moment ‘Israeli earthquake bomb hits Syria’ in heaviest blitz on region for 12 years

      THIS is the dramatic moment a colossal explosion rung out in Syria marking the "heaviest strikes" to hit the region in over a decade - even registering on the Richter scale. An astounding video showed a giant mushroom-cloud fireball filling the sky alongside deafening sounds - with claims that the blast was caused by an Israeli strike. Read more: https://www.thesun.co.uk/news/32322323/explosion-syria-israel-drops-bomb-strikes-earthquake/ The Sun delivers breaking news, latest gossip and incredible exclusives around the world with hubs in London, New York, Scotland and Ireland. Covering topics from news, money and sport along with our famous Fabulous Magazine, The Sun is the biggest news brand in the UK and one of the fastest growing news sites in the US. Stay tuned for video clips ac...

      published: 16 Dec 2024
    • Earthquake Bomb Attack on Syria by Israel | #syria #israel #india #shorts #upsc

      published: 16 Dec 2024
    • Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale

      Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale Israel reportedly used an "Earthquake Bomb" during airstrikes on Syrian territory, causing tremors powerful enough to be registered on the Richter scale. The strike, which targeted key military installations, has triggered regional tensions, with concerns mounting over further escalation Full Story On: https://www.republicworld.com #israel #israeli #benjaminnetanyahu #idf #earthquakebomb #earthquake #BreakingNews #RepublicTV #RepublicTVLive Republic TV is India's no.1 English news channel since its launch. Watch Republic YouTube Channel to get all the breaking news updates, LIVE news, videos and perspectives from Republic Media Network's battery of reporters, anchors, and producers spread across India and th...

      published: 16 Dec 2024
    Vanuatu earthquake: Journalist recounts ‘very serious’ disaster | ABC News
    5:15

    Vanuatu earthquake: Journalist recounts ‘very serious’ disaster | ABC News

    • Order:
    • Duration: 5:15
    • Uploaded Date: 17 Dec 2024
    • views: 61327
    Vanuatu’s emergency services and the military have been deployed after a magnitude 7.4 earthquake struck 37 km from the country’s capital Port Vila. Local journalist Dan McGarry says the earthquake is the strongest he has experienced in 21 years, despite having witnesses several earthquake events. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2024-12-17/earthquake-hits-vanuatu-tsunami-warning-live-blog/104736454 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: https://ab.co/2lNeBn2 Like ABC News on Facebook: http://facebook.com/abcnews.au Follow ABC News on Instagram: http://instagram.com/abcnews_au Follow ABC News on X (Twitter): http://twitter.com/abcnews Note: In most cases, our captions are auto-generated. #ABCNews #ABCNewsAustralia
    https://wn.com/Vanuatu_Earthquake_Journalist_Recounts_‘Very_Serious’_Disaster_|_Abc_News
    Buildings damaged, communications cut after 7.3 magnitude earthquake in Vanuatu | ABC NEWS
    6:27

    Buildings damaged, communications cut after 7.3 magnitude earthquake in Vanuatu | ABC NEWS

    • Order:
    • Duration: 6:27
    • Uploaded Date: 17 Dec 2024
    • views: 55775
    A tsunami alert has been issued for Vanuatu following a powerful earthquake near the capital, Port Vila. The magnitude 7.3 quake hit just off the coast at a depth of 57km. There are early reports of landslides and structural damage in Port Vila. Authorities are monitoring for signs of a tsunami. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2024-12-17/earthquake-hits-vanuatu-tsunami-warning-live-blog/104736454 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: https://ab.co/2lNeBn2 Like ABC News on Facebook: http://facebook.com/abcnews.au Follow ABC News on Instagram: http://instagram.com/abcnews_au Follow ABC News on X (Twitter): http://twitter.com/abcnews Note: In most cases, our captions are auto-generated. #ABCNews #ABCNewsAustralia
    https://wn.com/Buildings_Damaged,_Communications_Cut_After_7.3_Magnitude_Earthquake_In_Vanuatu_|_Abc_News
    7.3 magnitude earthquake shakes Vanuatu | 7NEWS
    0:36

    7.3 magnitude earthquake shakes Vanuatu | 7NEWS

    • Order:
    • Duration: 0:36
    • Uploaded Date: 17 Dec 2024
    • views: 43394
    A powerful earthquake has rocked the South Pacific Island nation of Vanuatu with fears lives have been lost. Subscribe and set 🔔 » https://7news.link/YTSubscribe | For the latest Australian news and breaking news alerts, connect with 7NEWS online: Visit » https://7news.com.au 7NEWS Podcast » http://smarturl.it/7NewsDaily Facebook » https://www.facebook.com/7NewsAustralia Twitter » https://twitter.com/7NewsAustralia Instagram » https://www.instagram.com/7newsaustralia/ 7NEWS combines the trusted and powerful news brands including Sunrise, The Morning Show, The Latest, and 7NEWS.com.au, delivering unique, engaging and continuous coverage on the issues that matter most to Australians. Watch 7 News Australia full broadcasts and full episodes nightly at 6pm and weekdays at 11:30am and 4pm on Channel 7 and 7plus. #BREAKINGNEWS #7NEWS
    https://wn.com/7.3_Magnitude_Earthquake_Shakes_Vanuatu_|_7News
    7.3 magnitude earthquake rocks Vanuatu
    1:10

    7.3 magnitude earthquake rocks Vanuatu

    • Order:
    • Duration: 1:10
    • Uploaded Date: 17 Dec 2024
    • views: 40752
    7.3 magnitude earthquake rocks Vanuatu A powerful 7.3 magnitude earthquake has struck off a Pacific Island nation, triggering landslides and demolishing buildings.
    https://wn.com/7.3_Magnitude_Earthquake_Rocks_Vanuatu
    'Violent' earthquake strikes Vanuatu — no tsunami threat to NZ | 1News on TVNZ+
    4:37

    'Violent' earthquake strikes Vanuatu — no tsunami threat to NZ | 1News on TVNZ+

    • Order:
    • Duration: 4:37
    • Uploaded Date: 17 Dec 2024
    • views: 204822
    The 7.3 magnitude earthquake, which struck at a depth of 57km, occurred 30km to the west of the capital Port Vila at 2.47pm, according to the US Geological Survey. - Join the 1News team on TVNZ+ and stream the latest news from Aotearoa New Zealand and overseas. - Due to the immense volume of comments 1News videos attract, we've made the decision to hold all comments for review, and in some cases, turn them off entirely. 1News is a media outlet based in New Zealand, and could potentially be liable for any comments that defame others or breach New Zealand law. Our content receives thousands of comments each day, and we lack the capacity to moderate that volume without holding comments for review. This decision ensures that our platform remains a safe and compliant space for all viewers. We appreciate your understanding and continued support. - For the latest news from Aotearoa and overseas: https://www.1News.co.nz | Stream more news and current affairs, consumer reports, and in-depth stories: https://www.tvnz.co.nz/news This is the official channel of TVNZ's 1News, where we deliver the latest news, in-depth journalism and expert analysis from reporters you can trust.
    https://wn.com/'Violent'_Earthquake_Strikes_Vanuatu_—_No_Tsunami_Threat_To_Nz_|_1News_On_Tvnz
    BREAKING: M7.3 Earthquake Strikes Vanuatu with Tsunami Warning Issued 🌊
    1:03:15

    BREAKING: M7.3 Earthquake Strikes Vanuatu with Tsunami Warning Issued 🌊

    • Order:
    • Duration: 1:03:15
    • Uploaded Date: 17 Dec 2024
    • views: 18864
    Breaking news as a magnitude 7.3 earthquake struck near Vanuatu at 01:47 am December 17th UTC at a depth of 57.1 km. Geophysicist Stefan Burns reports Credit: Space Observing System USGS #earthquakes #geophysics #geology #breakingnews #spaceweather #earthenergy #geoscience
    https://wn.com/Breaking_M7.3_Earthquake_Strikes_Vanuatu_With_Tsunami_Warning_Issued_🌊
    Tsunami warning in Vanuatu following earthquake
    0:25

    Tsunami warning in Vanuatu following earthquake

    • Order:
    • Duration: 0:25
    • Uploaded Date: 17 Dec 2024
    • views: 18249
    A tsunami warning has been triggered in Vanuatu after a 7.4 magnitude earthquake struck off the island nation’s capital. The Australian Bureau of Meteorology says there is no risk of a tsunami to Australia. Meanwhile, New Zealand is assessing the threat.
    https://wn.com/Tsunami_Warning_In_Vanuatu_Following_Earthquake
    Moment ‘Israeli earthquake bomb hits Syria’ in heaviest blitz on region for 12 years
    8:42

    Moment ‘Israeli earthquake bomb hits Syria’ in heaviest blitz on region for 12 years

    • Order:
    • Duration: 8:42
    • Uploaded Date: 16 Dec 2024
    • views: 647849
    THIS is the dramatic moment a colossal explosion rung out in Syria marking the "heaviest strikes" to hit the region in over a decade - even registering on the Richter scale. An astounding video showed a giant mushroom-cloud fireball filling the sky alongside deafening sounds - with claims that the blast was caused by an Israeli strike. Read more: https://www.thesun.co.uk/news/32322323/explosion-syria-israel-drops-bomb-strikes-earthquake/ The Sun delivers breaking news, latest gossip and incredible exclusives around the world with hubs in London, New York, Scotland and Ireland. Covering topics from news, money and sport along with our famous Fabulous Magazine, The Sun is the biggest news brand in the UK and one of the fastest growing news sites in the US. Stay tuned for video clips across the biggest news stories and segments from The Sun’s expert journalists. Become a Sun Subscriber and hit the bell to be the first to know. Read The Sun: https://www.thesun.co.uk/?utm_source=youtube&utm_medium=social&utm_campaign=sunyoutubesitelink Like The Sun on Facebook: https://www.facebook.com/thesun/ Follow The Sun on X: https://twitter.com/TheSun Follow The Sun on TikTok: https://www.tiktok.com/@thesun Subscribe to The Sun on Snapchat: https://www.snapchat.com/discover/The_Sun/1633225139 #thesun #syria #israel
    https://wn.com/Moment_‘Israeli_Earthquake_Bomb_Hits_Syria’_In_Heaviest_Blitz_On_Region_For_12_Years
    Earthquake Bomb Attack on Syria by Israel | #syria #israel #india #shorts #upsc
    0:51

    Earthquake Bomb Attack on Syria by Israel | #syria #israel #india #shorts #upsc

    • Order:
    • Duration: 0:51
    • Uploaded Date: 16 Dec 2024
    • views: 112153
    https://wn.com/Earthquake_Bomb_Attack_On_Syria_By_Israel_|_Syria_Israel_India_Shorts_Upsc
    Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale
    3:05

    Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale

    • Order:
    • Duration: 3:05
    • Uploaded Date: 16 Dec 2024
    • views: 18517
    Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale Israel reportedly used an "Earthquake Bomb" during airstrikes on Syrian territory, causing tremors powerful enough to be registered on the Richter scale. The strike, which targeted key military installations, has triggered regional tensions, with concerns mounting over further escalation Full Story On: https://www.republicworld.com #israel #israeli #benjaminnetanyahu #idf #earthquakebomb #earthquake #BreakingNews #RepublicTV #RepublicTVLive Republic TV is India's no.1 English news channel since its launch. Watch Republic YouTube Channel to get all the breaking news updates, LIVE news, videos and perspectives from Republic Media Network's battery of reporters, anchors, and producers spread across India and the world. Watch Republic for Arnab Goswami's most watched debates. Republic TV makes news accessible at all times and across devices. At Republic, we keep you updated with up-to-the-minute news on the world of politics, sports, entertainment, business, defense, science, health, lifestyle, gadgets, and much more. We believe in Breaking the story and Breaking the Silence. But most importantly, for us ‘You Are Republic, We Are Your Voice.’ Also, Watch ► Republic TV Live News Updates ►http://bit.ly/RepublicTVLiveNews The Debate With Arnab Goswami ► http://bit.ly/TheDebateWithArnabGoswami Exclusive Sunday Debate With Arnab Goswami ► http://bit.ly/SundayDebate The Grand Strategy With Maj Gen G.D Bakshi (Retd) ► https://bit.ly/3EPZ6xF R.Explained ► https://bit.ly/3sOLT5K R.Uninterrupted ► https://bit.ly/34isZdh You can stay connected with Republic TV on - Facebook - https://www.facebook.com/RepublicWorld Twitter - https://twitter.com/republic Instagram: https://www.instagram.com/republicworld WhatsApp Channel: https://whatsapp.com/channel/0029Va1whYb7dmeZr7v3ar0y Telegram: https://t.me/RepublicLive Koo: https://www.kooapp.com/profile/republic Disclaimer: Republic Media Network may provide content through third-party websites, operating systems, platforms, and portals (‘Third-Party Platforms’). Republic does not control and has no liability for Third-Party Platforms, including content hosted, advertisements, security, functionality, operation, or availability.
    https://wn.com/Israel_Targets_Syria_With_'Earthquake_Bomb',_Impact_Felt_On_Richter_Scale
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 1:34:23

    Vanuatu earthquake: Journalist recounts ‘very serious’ disaster | ABC News

    Vanuatu’s emergency services and the military have been deployed after a magnitude 7.4 earthquake struck 37 km from the country’s capital Port Vila. Local journalist Dan McGarry says the earthquake is the strongest he has experienced in 21 years, despite having witnesses several earthquake events. Subscribe: http://ab.co/1svxLVE Read more here: https://www.abc.net.au/news/2024-12-17/earthquake-hits-vanuatu-tsunami-warning-live-blog/104736454 ABC News provides around the clock coverage of news events as they break in Australia and abroad. It's news when you want it, from Australia's most trusted news organisation. For more from ABC News, click here: https://ab.co/2kxYCZY Watch more ABC News content ad-free on ABC iview: https://ab.co/2OB7Mk1 Go deeper on our ABC News In-depth channel: https://ab.co/2lNeBn2 Like ABC News on Facebook: http://facebook.com/abcnews.au Follow ABC News on Instagram: http://instagram.com/abcnews_au Follow ABC News on X (Twitter): http://twitter.com/abcnews Note: In most cases, our captions are auto-generated. #ABCNews #ABCNewsAustralia
    5:15
    Vanuatu earthquake: Journalist recounts ‘very serious’ disaster | ABC News
    Vanuatu’s emergency services and the military have been deployed after a magnitude 7.4 ear...
    published: 17 Dec 2024
    Play in Full Screen
    6:27
    Buildings damaged, communications cut after 7.3 magnitude earthquake in Vanuatu | ABC NEWS
    A tsunami alert has been issued for Vanuatu following a powerful earthquake near the capit...
    published: 17 Dec 2024
    Play in Full Screen
    0:36
    7.3 magnitude earthquake shakes Vanuatu | 7NEWS
    A powerful earthquake has rocked the South Pacific Island nation of Vanuatu with fears liv...
    published: 17 Dec 2024
    Play in Full Screen
    1:10
    7.3 magnitude earthquake rocks Vanuatu
    7.3 magnitude earthquake rocks Vanuatu A powerful 7.3 magnitude earthquake has struck off ...
    published: 17 Dec 2024
    Play in Full Screen
    4:37
    'Violent' earthquake strikes Vanuatu — no tsunami threat to NZ | 1News on TVNZ+
    The 7.3 magnitude earthquake, which struck at a depth of 57km, occurred 30km to the west o...
    published: 17 Dec 2024
    Play in Full Screen
    1:03:15
    BREAKING: M7.3 Earthquake Strikes Vanuatu with Tsunami Warning Issued 🌊
    Breaking news as a magnitude 7.3 earthquake struck near Vanuatu at 01:47 am December 17th ...
    published: 17 Dec 2024
    Play in Full Screen
    0:25
    Tsunami warning in Vanuatu following earthquake
    A tsunami warning has been triggered in Vanuatu after a 7.4 magnitude earthquake struck of...
    published: 17 Dec 2024
    Play in Full Screen
    8:42
    Moment ‘Israeli earthquake bomb hits Syria’ in heaviest blitz on region for 12 years
    THIS is the dramatic moment a colossal explosion rung out in Syria marking the "heaviest s...
    published: 16 Dec 2024
    Play in Full Screen
    0:51
    Earthquake Bomb Attack on Syria by Israel | #syria #israel #india #shorts #upsc
    published: 16 Dec 2024
    Play in Full Screen
    3:05
    Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale
    Israel Targets Syria With 'Earthquake Bomb', Impact Felt on Richter Scale Israel reported...
    published: 16 Dec 2024
    Play in Full Screen

    Earthquake (DJ Fresh and Diplo song)

    "Earthquake" is a single by British disc jockey DJ Fresh and American counterpart Diplo featuring vocals from Dominique Young Unique. The song was released in the United Kingdom on 18 August 2013 as the lead single from his fourth studio album. An edited version of the song with extra production and sound effects features in the film Kick-Ass 2, under the name "Motherquake". It contains a sample from the song "Teach Me How to Dougie" by the hip hop group Cali Swag District. "Earthquake" peaked at number four on the UK Singles Chart, number three on the UK Dance Chart and topped the UK Indie Chart.

    The debut performance of "Earthquake" occurred during DJ Fresh's set at the New York leg of the international Electric Daisy Carnival festival. Dominique and DJ Fresh performed "Earthquake" again at Radio 1's Big Weekend, during the latter's headlining set on the "1Xtra Arena/In New Music We Trust Stage". DJ Fresh and Dominique Young Unique performed the track live on 4Music panel show 'McFlurry Music Mix Up' presented by Rickie and Melvin on 19 August 2013.

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

    Edit

    Myanmar state media say the death toll has passed 2,000 in last week's massive earthquake

    The Oskaloosa Herald 01 Apr 2025
    Myanmar state media say the death toll has passed 2,000 in last week's massive earthquake ... .
    Edit

    French far-right leader Marine Le Pen barred from seeking office for 5 years, a political earthquake

    The Oskaloosa Herald 01 Apr 2025
    A French court has convicted Marine Le Pen of embezzlement and barred her from seeking public office for five years — a hammer blow to the far-right leader’s presidential hopes and an earthquake for French politics. Le Pen has denounced ... .
    Edit

    After an earthquake, how long can trapped victims survive?

    The Philadelphia Inquirer 01 Apr 2025
    NEW YORK — For those trapped in rubble after an earthquake, survival depends on many factors, including weather and access to water and air ... .
    Edit

    NDRF retrieves 9 bodies from building debris in earthquake-affected Myanmar

    Hindustan Times 01 Apr 2025
    NDRF personnel work under 'Operation Brahma' to provide humanitarian aid and assistance at an earthquake-hit site in Myanmar ... Myanmar earthquake death toll crosses 2,000 ... Myanmar earthquake ... Myanmar Earthquake Ndrf.
    Edit

    AI and satellites help aid workers respond to Myanmar earthquake damage

    Times Standard 01 Apr 2025
    Just after sunrise on Saturday, a satellite set its long-range camera on the city of Mandalay in Myanmar, not far from the epicenter of Friday’s 7.7 magnitude earthquake that devastated the Southeast Asian country’s second-largest city.
    Edit

    Earthquake takes tower cranes

    Vertikal 31 Mar 2025
    In addition to the damage and human suffering in the recent earthquake in Myanmar and Thailand a number of tower cranes were destroyed ... .
    Edit

    Tsunami warning lifted after 7.0 earthquake near Tonga in the South Pacific

    Corsicana Daily Sun 31 Mar 2025
    A strong 7.0 magnitude earthquake has hit near the Pacific nation of Tonga and an initial tsunami warning was lifted hours later. The U.S. Geological Survey said the quake hit at a depth of 18 miles and was centered about ....
    Edit

    ‘Still Very Dire’: Canadian Red Cross Is Fundraising Following Myanmar Earthquake

    The Epoch Times 31 Mar 2025
    ... the situation on the ground in Myanmar is “still very dire and tragic” days after a massive earthquake that has killed at least 1,600 people.
    Edit

    Tsunami warning issued after 7.1 magnitude earthquake hits near Tonga

    Lodi News Sentinel 31 Mar 2025
    A strong 7.1 magnitude earthquake hit near Tonga, a country in Polynesia made up of 171 islands with a population of a little more than 100,000 people ....
    Edit

    Damage from Myanmar earthquake assessed as death toll tops 1,700

    CBS News 31 Mar 2025
    Officials are continuing to survey the destruction left in two major Myanmar cities and the Thai capital Bangkok, after a powerful earthquake hit the region Friday ... .
    Edit

    14 Chinese nationals injured in Myanmar earthquake: Chinese embassy

    China.dot.org 31 Mar 2025
    Fourteen Chinese nationals were injured in Friday's earthquake in Myanmar, the ...
    Edit

    Malaysia Pledges RM10 Mln In Humanitarian Aid For Earthquake-hit Myanmar

    Malaysian National News Agency 31 Mar 2025
    Malaysia Pledges RM10 Mln In Humanitarian Aid For Earthquake-hit Myanmar ... support the people of Myanmar who are affected by Friday's devastating earthquake, said Datuk Seri Anwar Ibrahim.
    ×