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

Podcasts:

  • ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002

    The Gujarat Riots were an unfortunate chapter of modern Indian history. The incidents took place after the fire in Sabarmati express in Godhra, Gujarat, which led to the death of Karsevaks and unrest in the Indian state of Gujarat, which ended up in a massive riot and violence that led to the killing of more than 1000 people. This video explains the timeline of major incidents in the Gujarat Riots of 2002 and the inquiries and findings by various commissions. #gujaratriots #godhra #alexplain alexplain is a Malayalam channel where must-know things around the world are explained in the simplest way possible. The videos cover topics like things to know about India, recent current affairs, explanations on politics, economics, history, science, and technology, etc. The videos in this channel...

    published: 31 Mar 2025
  • Exclusive: Mohanlal Speaks On Film Dynamics | Empuraan Sparks Controversy | Kerala Political Debate

    Mohanlal's film Empuraan has sparked controversy for its depiction of the 2002 Gujarat riots. The film shows a Muslim family brutally killed by Hindutva activists. Kerala Congress claims the film exposes Sangh Parivar's agenda, while Kerala BJP states it's not a political issue. Mohanlal says, "When you are committed to a film, there is nothing called junior or senior. He is my director." #empuraan #mohanlalfilm #keralacontroversy #itwebvideos #malayalamcinema #gujaratriots #indianpolitics #bollywood #filmindustry Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube cha...

    published: 29 Mar 2025
  • Empuraan Movie Controversy: Scenes On 2002 Gujarat Riots To Be Cut Amid Pressure | India Today

    Malayalam film Empuran, starring Mohanlal, faces controversy over its portrayal of the 2002 Gujarat riots. The RSS and BJP claim the film promotes an anti-Hindu agenda. Filmmakers agree to cut 17 scenes, including halving the riot scenes. Mohanlal apologizes, stating the movie caused great distress to many. The edited version will screen in theaters from April 2. Critics argue about the film's impact and the right to criticize or appreciate it. #empuran #mohanlalmovie #filmcontroversy #itwebvideos #gujaratriots #malayalamcinema #censorship #filmedits #bjp #rss #indiancinema Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is ...

    published: 31 Mar 2025
  • Empuraan Controversy: Mohanlal Film Sparks Political Controversy Over Gujarat Riots Reference

    Mohanlal's film Empuraan has sparked controversy for its reference to the 2002 Gujarat riots. The film depicts the killing of Muslim characters by Hindutva activists, drawing criticism from right-wing groups and support from left-wing and Congress parties. The Kerala Congress claims the film exposes the Sangh Parivar's alleged agenda to control Kerala's coastline. The film also portrays the ruling party's alleged misuse of central agencies against opposition leaders. #empuraan #mohanlal #gujaratriots #itwebvideos #keralapoltics #malayalamcinema #politicalcontroversy #filmboycott Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today T...

    published: 28 Mar 2025
  • Mohanlal’s L2: Empuraan Sparks Controversy Over Alleged Gujarat Riots Depiction | News9

    L2: Empuraan, starring Mohanlal and directed by Prithviraj Sukumaran, has ignited controversy over alleged references to the 2002 Gujarat riots. Right-wing groups accuse the film of an ‘anti-Hindu’ narrative, while Kerala ministers defend it. Amid backlash, Mohanlal expressed "regret" and confirmed edits to contentious scenes. The CBFC has ordered 17 cuts, increasing public demand to watch the original version. Despite the controversy, the film has grossed over ₹200 crore in five days. .............................................................................................. News9 is India's first fully integrated English news brand across all digital platforms. It includes a publishing platform, viz. www.news9live.com, a future-ready OTT platform, News9 Plus, and a 24-Hour video strea...

    published: 01 Apr 2025
  • The BJP and the Gujarat riots of 2002

    The BJP refutes any accusations of having enabled the Gujarat riots of 2002. However, just last year, India's home minister, Amit Shah, said that those who were "taught a lesson" in 2022 (his reference was to Muslims) would never dare to make mischief again. Mitali Saran spoke with us about what that says about how the BJP's internal narrative about what happened in 2002 is at odds with what they message publicly. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ @AljazeeraEnglish #Aljazeeraenglish #News

    published: 01 Feb 2023
  • PM Modi Reflects On 2002 Gujarat Riots

    In a conversation with Lex Fridman, PM Narendra Modi addressed the 2002 Gujarat riots, asserting that there was a deliberate attempt to portray them as the biggest riots in the state’s history. He highlighted Gujarat’s long history of communal violence before 2002 and emphasized that no such incidents have occurred since then. Recalling the Godhra train burning that triggered the riots, he described the period as highly volatile, coming soon after a devastating earthquake and amid major terrorist attacks in India and worldwide. Watch his full remarks here. Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading...

    published: 17 Mar 2025
  • Two decades on, India still haunted by Gujarat religious riots • FRANCE 24 English

    Twenty-two years ago, the Indian state of Gujarat erupted in violence. For several weeks from the end of February 2002, inter-communal violence led to the deaths of around 2,000 people, most of them Muslims. Entire neighbourhoods were burnt down and families massacred. This outpouring of hatred was sparked by a fire on a train on February 27, 2002 at Godhra station. Fifty-nine Hindu pilgrims were burnt alive and dozens of others seriously injured. Hindu fundamentalist organisations in the region immediately accused Muslim extremists of attacking the convoy. It was the start of the worst religious riots in India since independence in 1947. Two decades later, our team returned to Gujarat, which is still scarred by the tragedy. Read more about this story in our article: https://f24.my/AO5c.y...

    published: 07 Jun 2024
ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002
18:37

ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002

  • Order:
  • Duration: 18:37
  • Uploaded Date: 31 Mar 2025
  • views: 249786
The Gujarat Riots were an unfortunate chapter of modern Indian history. The incidents took place after the fire in Sabarmati express in Godhra, Gujarat, which led to the death of Karsevaks and unrest in the Indian state of Gujarat, which ended up in a massive riot and violence that led to the killing of more than 1000 people. This video explains the timeline of major incidents in the Gujarat Riots of 2002 and the inquiries and findings by various commissions. #gujaratriots #godhra #alexplain alexplain is a Malayalam channel where must-know things around the world are explained in the simplest way possible. The videos cover topics like things to know about India, recent current affairs, explanations on politics, economics, history, science, and technology, etc. The videos in this channel will help you gain knowledge of different things around us. FB - https://www.facebook.com/Alexplain-104170651387815 Insta - https://www.instagram.com/alex.mmanuel/
https://wn.com/ഗോധ്രയും,_ഗുജറാത്ത്_കലാപവും_|_Gujarat_Riots_Malayalam_|_Godhra_Incident_And_Gujarat_Violence_2002
Exclusive: Mohanlal Speaks On Film Dynamics | Empuraan Sparks Controversy | Kerala Political Debate
3:27

Exclusive: Mohanlal Speaks On Film Dynamics | Empuraan Sparks Controversy | Kerala Political Debate

  • Order:
  • Duration: 3:27
  • Uploaded Date: 29 Mar 2025
  • views: 92316
Mohanlal's film Empuraan has sparked controversy for its depiction of the 2002 Gujarat riots. The film shows a Muslim family brutally killed by Hindutva activists. Kerala Congress claims the film exposes Sangh Parivar's agenda, while Kerala BJP states it's not a political issue. Mohanlal says, "When you are committed to a film, there is nothing called junior or senior. He is my director." #empuraan #mohanlalfilm #keralacontroversy #itwebvideos #malayalamcinema #gujaratriots #indianpolitics #bollywood #filmindustry Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! WhatsApp Channel: https://whatsapp.com/channel/0029Va2AnW3JENxxg7OuJv00 Download App: https://indiatoday.link/wHaj Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday
https://wn.com/Exclusive_Mohanlal_Speaks_On_Film_Dynamics_|_Empuraan_Sparks_Controversy_|_Kerala_Political_Debate
Empuraan Movie Controversy: Scenes On 2002 Gujarat Riots To Be Cut Amid Pressure | India Today
2:18

Empuraan Movie Controversy: Scenes On 2002 Gujarat Riots To Be Cut Amid Pressure | India Today

  • Order:
  • Duration: 2:18
  • Uploaded Date: 31 Mar 2025
  • views: 10018
Malayalam film Empuran, starring Mohanlal, faces controversy over its portrayal of the 2002 Gujarat riots. The RSS and BJP claim the film promotes an anti-Hindu agenda. Filmmakers agree to cut 17 scenes, including halving the riot scenes. Mohanlal apologizes, stating the movie caused great distress to many. The edited version will screen in theaters from April 2. Critics argue about the film's impact and the right to criticize or appreciate it. #empuran #mohanlalmovie #filmcontroversy #itwebvideos #gujaratriots #malayalamcinema #censorship #filmedits #bjp #rss #indiancinema Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! WhatsApp Channel: https://whatsapp.com/channel/0029Va2AnW3JENxxg7OuJv00 Download App: https://indiatoday.link/wHaj Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday
https://wn.com/Empuraan_Movie_Controversy_Scenes_On_2002_Gujarat_Riots_To_Be_Cut_Amid_Pressure_|_India_Today
Empuraan Controversy: Mohanlal Film Sparks Political Controversy Over Gujarat Riots Reference
3:34

Empuraan Controversy: Mohanlal Film Sparks Political Controversy Over Gujarat Riots Reference

  • Order:
  • Duration: 3:34
  • Uploaded Date: 28 Mar 2025
  • views: 152831
Mohanlal's film Empuraan has sparked controversy for its reference to the 2002 Gujarat riots. The film depicts the killing of Muslim characters by Hindutva activists, drawing criticism from right-wing groups and support from left-wing and Congress parties. The Kerala Congress claims the film exposes the Sangh Parivar's alleged agenda to control Kerala's coastline. The film also portrays the ruling party's alleged misuse of central agencies against opposition leaders. #empuraan #mohanlal #gujaratriots #itwebvideos #keralapoltics #malayalamcinema #politicalcontroversy #filmboycott Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! WhatsApp Channel: https://whatsapp.com/channel/0029Va2AnW3JENxxg7OuJv00 Download App: https://indiatoday.link/wHaj Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday
https://wn.com/Empuraan_Controversy_Mohanlal_Film_Sparks_Political_Controversy_Over_Gujarat_Riots_Reference
Mohanlal’s L2: Empuraan Sparks Controversy Over Alleged Gujarat Riots Depiction | News9
4:33

Mohanlal’s L2: Empuraan Sparks Controversy Over Alleged Gujarat Riots Depiction | News9

  • Order:
  • Duration: 4:33
  • Uploaded Date: 01 Apr 2025
  • views: 467
L2: Empuraan, starring Mohanlal and directed by Prithviraj Sukumaran, has ignited controversy over alleged references to the 2002 Gujarat riots. Right-wing groups accuse the film of an ‘anti-Hindu’ narrative, while Kerala ministers defend it. Amid backlash, Mohanlal expressed "regret" and confirmed edits to contentious scenes. The CBFC has ordered 17 cuts, increasing public demand to watch the original version. Despite the controversy, the film has grossed over ₹200 crore in five days. .............................................................................................. News9 is India's first fully integrated English news brand across all digital platforms. It includes a publishing platform, viz. www.news9live.com, a future-ready OTT platform, News9 Plus, and a 24-Hour video streaming service on connected TVs and all social platforms. Watch News9 Live - The English news brand that understands and fits perfectly into the digital-first lifestyles of our English news audiences. ► News9 Plus Website : https://www.news9plus.com/all ► News9 Plus App : https://news9plus.app.link/aPwz3P2psMb ► News9 OTT Coupons : https://bit.ly/4dwLDx4 ► Watch us on YouTube : https://www.youtube.com/c/NEWS9LIVE ► Like us on Facebook : https://www.facebook.com/news9live ► Follow us on Instagram : https://www.instagram.com/news9live ► Follow us on Twitter : https://twitter.com/NEWS9TWEETS #l2empuraan #mohanlal #prithvirajsukumaran #gujaratriots #filmcontroversy #cbfc #keralamovies #bollywood #hinducinema #boxoffice #englishnews #tv9digital #tv9d #news #livestream & #news9livestreaming
https://wn.com/Mohanlal’S_L2_Empuraan_Sparks_Controversy_Over_Alleged_Gujarat_Riots_Depiction_|_News9
The BJP and the Gujarat riots of 2002
0:39

The BJP and the Gujarat riots of 2002

  • Order:
  • Duration: 0:39
  • Uploaded Date: 01 Feb 2023
  • views: 163589
The BJP refutes any accusations of having enabled the Gujarat riots of 2002. However, just last year, India's home minister, Amit Shah, said that those who were "taught a lesson" in 2022 (his reference was to Muslims) would never dare to make mischief again. Mitali Saran spoke with us about what that says about how the BJP's internal narrative about what happened in 2002 is at odds with what they message publicly. Subscribe to our channel http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ @AljazeeraEnglish #Aljazeeraenglish #News
https://wn.com/The_Bjp_And_The_Gujarat_Riots_Of_2002
PM Modi Reflects On 2002 Gujarat Riots
0:41

PM Modi Reflects On 2002 Gujarat Riots

  • Order:
  • Duration: 0:41
  • Uploaded Date: 17 Mar 2025
  • views: 10558
In a conversation with Lex Fridman, PM Narendra Modi addressed the 2002 Gujarat riots, asserting that there was a deliberate attempt to portray them as the biggest riots in the state’s history. He highlighted Gujarat’s long history of communal violence before 2002 and emphasized that no such incidents have occurred since then. Recalling the Godhra train burning that triggered the riots, he described the period as highly volatile, coming soon after a devastating earthquake and amid major terrorist attacks in India and worldwide. Watch his full remarks here. Subscribe to India Today for NEW VIDEOS EVERY DAY and make sure to enable Push Notifications so you'll never miss a new video. All you need to do is PRESS THE BELL ICON next to the Subscribe button! India Today TV is India's leading English News Channel. India Today YouTube channel offers latest news videos on Politics, Business, Cricket, Bollywood, Lifestyle, Auto, Technology, Travel, Entertainment and a lot more. Stay tuned for latest updates and in-depth analysis of news from India and around the world! WhatsApp Channel: https://whatsapp.com/channel/0029Va2AnW3JENxxg7OuJv00 Download App: https://indiatoday.link/wHaj Follow us: Official website: https://www.indiatoday.in/ Twitter: https://twitter.com/IndiaToday Facebook: https://www.facebook.com/IndiaToday
https://wn.com/Pm_Modi_Reflects_On_2002_Gujarat_Riots
Two decades on, India still haunted by Gujarat religious riots • FRANCE 24 English
16:19

Two decades on, India still haunted by Gujarat religious riots • FRANCE 24 English

  • Order:
  • Duration: 16:19
  • Uploaded Date: 07 Jun 2024
  • views: 26335
Twenty-two years ago, the Indian state of Gujarat erupted in violence. For several weeks from the end of February 2002, inter-communal violence led to the deaths of around 2,000 people, most of them Muslims. Entire neighbourhoods were burnt down and families massacred. This outpouring of hatred was sparked by a fire on a train on February 27, 2002 at Godhra station. Fifty-nine Hindu pilgrims were burnt alive and dozens of others seriously injured. Hindu fundamentalist organisations in the region immediately accused Muslim extremists of attacking the convoy. It was the start of the worst religious riots in India since independence in 1947. Two decades later, our team returned to Gujarat, which is still scarred by the tragedy. Read more about this story in our article: https://f24.my/AO5c.y 🔔 Subscribe to France 24 now: https://f24.my/YTen 🔴 LIVE - Watch FRANCE 24 English 24/7 here: https://f24.my/YTliveEN 🌍 Read the latest International News and Top Stories: https://www.france24.com/en/ Like us on Facebook: https://f24.my/FBen Follow us on X (Twitter): https://f24.my/Xen Browse the news in pictures on Instagram: https://f24.my/IGen Discover our TikTok videos: https://f24.my/TKen Get the latest top stories on Telegram: https://f24.my/TGen
https://wn.com/Two_Decades_On,_India_Still_Haunted_By_Gujarat_Religious_Riots_•_France_24_English
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002
    18:37
    ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002remove from playlist
  • Exclusive: Mohanlal Speaks On Film Dynamics | Empuraan Sparks Controversy | Kerala Political Debate
    3:27
    Exclusive: Mohanlal Speaks On Film Dynamics | Empuraan Sparks Controversy | Kerala Political Debateremove from playlist
  • Empuraan Movie Controversy: Scenes On 2002 Gujarat Riots To Be Cut Amid Pressure | India Today
    2:18
    Empuraan Movie Controversy: Scenes On 2002 Gujarat Riots To Be Cut Amid Pressure | India Todayremove from playlist
  • Empuraan Controversy: Mohanlal Film Sparks Political Controversy Over Gujarat Riots Reference
    3:34
    Empuraan Controversy: Mohanlal Film Sparks Political Controversy Over Gujarat Riots Referenceremove from playlist
  • Mohanlal’s L2: Empuraan Sparks Controversy Over Alleged Gujarat Riots Depiction | News9
    4:33
    Mohanlal’s L2: Empuraan Sparks Controversy Over Alleged Gujarat Riots Depiction | News9remove from playlist
  • The BJP and the Gujarat riots of 2002
    0:39
    The BJP and the Gujarat riots of 2002remove from playlist
  • PM Modi Reflects On 2002 Gujarat Riots
    0:41
    PM Modi Reflects On 2002 Gujarat Riotsremove from playlist
  • Two decades on, India still haunted by Gujarat religious riots • FRANCE 24 English
    16:19
    Two decades on, India still haunted by Gujarat religious riots • FRANCE 24 Englishremove from playlist
PLAYLIST TIME:

ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002

The Gujarat Riots were an unfortunate chapter of modern Indian history. The incidents took place after the fire in Sabarmati express in Godhra, Gujarat, which led to the death of Karsevaks and unrest in the Indian state of Gujarat, which ended up in a massive riot and violence that led to the killing of more than 1000 people. This video explains the timeline of major incidents in the Gujarat Riots of 2002 and the inquiries and findings by various commissions. #gujaratriots #godhra #alexplain alexplain is a Malayalam channel where must-know things around the world are explained in the simplest way possible. The videos cover topics like things to know about India, recent current affairs, explanations on politics, economics, history, science, and technology, etc. The videos in this channel will help you gain knowledge of different things around us. FB - https://www.facebook.com/Alexplain-104170651387815 Insta - https://www.instagram.com/alex.mmanuel/
18:37
ഗോധ്രയും, ഗുജറാത്ത് കലാപവും | Gujarat Riots Malayalam | Godhra Incident and Gujarat Violence 2002
The Gujarat Riots were an unfortunate chapter of modern Indian history. The incidents took...
published: 31 Mar 2025
Play in Full Screen
3:27
Exclusive: Mohanlal Speaks On Film Dynamics | Empuraan Sparks Controversy | Kerala Political Debate
Mohanlal's film Empuraan has sparked controversy for its depiction of the 2002 Gujarat rio...
published: 29 Mar 2025
Play in Full Screen
2:18
Empuraan Movie Controversy: Scenes On 2002 Gujarat Riots To Be Cut Amid Pressure | India Today
Malayalam film Empuran, starring Mohanlal, faces controversy over its portrayal of the 200...
published: 31 Mar 2025
Play in Full Screen
3:34
Empuraan Controversy: Mohanlal Film Sparks Political Controversy Over Gujarat Riots Reference
Mohanlal's film Empuraan has sparked controversy for its reference to the 2002 Gujarat rio...
published: 28 Mar 2025
Play in Full Screen
4:33
Mohanlal’s L2: Empuraan Sparks Controversy Over Alleged Gujarat Riots Depiction | News9
L2: Empuraan, starring Mohanlal and directed by Prithviraj Sukumaran, has ignited controve...
published: 01 Apr 2025
Play in Full Screen
0:39
The BJP and the Gujarat riots of 2002
The BJP refutes any accusations of having enabled the Gujarat riots of 2002. However, ju...
published: 01 Feb 2023
Play in Full Screen
0:41
PM Modi Reflects On 2002 Gujarat Riots
In a conversation with Lex Fridman, PM Narendra Modi addressed the 2002 Gujarat riots, ass...
published: 17 Mar 2025
Play in Full Screen
16:19
Two decades on, India still haunted by Gujarat religious riots • FRANCE 24 English
Twenty-two years ago, the Indian state of Gujarat erupted in violence. For several weeks f...
published: 07 Jun 2024
Play in Full Screen
'); } 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: gujarat riots

Edit

Modi, Kashmir and Pakistan

Dawn 08 May 2025
What is driving this? ... However, 9/11 changed all that overnight ... This was when Modi made his appearance on the big stage of Indian politics with the Gujarat riots in 2002, cynically using communal hate and violence as a tool to grab power ... .
Edit

2002 Godhra train burning case: SC rejects plea for 3-judge bench, begins hearing appeals against conviction

The Times of India 06 May 2025
“The Gujarat High Court commuted the death penalty of 11 convicts into life imprisonment and did not award the death penalty ... Sabarmati Express was set on fire near Godhra, triggering statewide riots.
Edit

‘Could have averted ’02 Godhra arson’: Guj HC upholds sacking of 9 constables

Hindustan Times 03 May 2025
The Gujarat ... The incident occurred on February 27, 2002, when a mob set fire to the coach near Godhra railway station, triggering widespread riots across Gujarat ... Gujarat High Court Dereliction Of Duty.
Edit

‘2002 Godhra attack could have been prevented’: Gujarat HC upholds sacking of 9 cops

Hindustan Times 02 May 2025
The Gujarat high court has ... The incident occurred near Godhra railway station on February 27, 2002, and triggered widespread riots across Gujarat ... Gujarat High Court ... Gujarat HC upholds sacking of 9 cops.
Edit

Sanjiv Bhatt’s bail rejected, SC directs expedited hearing of his appeal

Madhyamam 29 Apr 2025
... but the trial was stayed by the Gujarat High Court for over a decade until the stay was lifted in 2011 after Bhatt deposed before the Nanavati and Mehta Commissions probing the 2002 Gujarat riots.
Edit

SC rejects bail plea of convicted ex-IPS officer Sanjiv Bhatt

The Siasat Daily 29 Apr 2025
He is also an accused in a case of alleged fabrication of evidence in connection with the 2002 Gujarat riots cases along with activist Teesta Setalvad and former Gujarat director general of police R B Sreekumar.
Edit

Why is BBC India facing criticism over Pahalgam terror attack?

Hindustan Times 28 Apr 2025
Why is BBC under fire? ... The notice was based on a suit filed by a Gujarat-based NGO, which alleged that the BBC’s documentary “India ... The two-part documentary focused on the 2002 Gujarat riots, when Modi served as the state's chief minister ... See Less.
Edit

BBC under fire for calling Kashmir terrorists ‘militants’

The Daily Telegraph 28 Apr 2025
In January 2023, the corporation broadcast a documentary featuring criticism of Mr Modi’s actions as chief minister of state during the 2002 Gujarat riots, during which around 800 Muslims were killed ... Join the conversation. Show comments ... Copy link ... .
Edit

Senators condemn India's malicious campaign against Pakistan over Pahalgam incident

Urdu Point 28 Apr 2025
</p><p>He added that Modi, as Chief Minister of Gujarat, oversaw the 2002 riots that led to the deaths of nearly 3,000 Muslims, mass rapes, and large-scale ...
Edit

The Modi mantra

Dawn 27 Apr 2025
Clearly, paid public relations (PR) campaigns have overtaken Indian television shows. Modi has built his political career on right-wing politics, starting off with the infamous riots in Gujarat in 2002 when he happened to be the state chief minister ... .
Edit

NCERT drops all portions on Mughals, Delhi Sultanate from Class 7 books, adds Maha Kumbh

Hindustan Times 27 Apr 2025
On pilgrimage sites ... NCERT Director Dinesh Prasad Saklani had in an interview to PTI last year claimed, “teaching about riots can make young children negative citizens.” The NCERT had removed portions refering to the Gujarat communal pogrom of 2002.
Edit

Asif warns of ‘all-out war’ if India attacks

Dawn 26 Apr 2025
Responsibility for the attack was allegedly claimed by the hitherto unkown The Resistance Front (TRF) ... Never heard of that organisation.” ... Mr Asif also reminded the interviewer of Mr Modi’s controversial past, citing his role in the Gujarat riots ... .
Edit

Defence Minister Khawaja Asif warns of ‘all-out war’ if India attacks

Dawn 26 Apr 2025
Responsibility for the attack was allegedly claimed by the hitherto unknown The Resistance Front (TRF) ... Never heard of that organisation.” ... Mr Asif also reminded the interviewer of Mr Modi’s controversial past, citing his role in the Gujarat riots ... .
Edit

SC to hear on May 6, 7 pleas of Gujarat, convicts in Godhra train burning case

Hindustan Times 24 Apr 2025
SC to hear on May 6, 7 pleas of Gujarat, convicts in Godhra train burning case ... On February 27, 2002, 59 people were killed when the S-6 coach of the Sabarmati Express was burnt at Gujarat's Godhra, triggering riots in the state.
×