'+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:

  • The Indian Sidemen Are Back And Even Worse... (really bad)

    yea this one def needed the warning at the start lol ∞ my silly little clothing brand {MANGETSU}: https://balarke.com ► yummy gamer fluid (Gamer Supps): https://gamersupps.gg/balarke ●sub if u got a big willy: http://bit.ly/1qgbCQi ●become a member (also helps feed the kids): http://bit.ly/2UKRrNp --------------------------------------------------------------------------------------- ►Social Media: ●Twitter: https://twitter.com/Balarkeuwu ●Instagram: https://www.instagram.com/balarke_/ --------------------------------------------------------------------------------------- The Indian Sidemen Are Back And Even Worse... (really bad) - Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for fair use for purposes such as criticism, comment, news report...

    published: 26 Jan 2025
  • Donald Trump's New Rules Ban Indian Parents from Entering U.S. Airports

    Ever since Donald Trump started his second term as US President, the Indian community in America has been living in fear and uncertainty. Trump has always been known for his tough immigration rules, and now, with his latest policies, Indians on temporary visas like H-1B and visitor visas (B-1/B-2) are facing unexpected trouble. Many are now scared of traveling to the US because of sudden, unannounced immigration rules that could lead to deportation or being denied entry at the airport itself. #india #indianstudents #indiansincanada #usastudentvisa #usnews #usaeducation #donaldtrump Welcome to TimesXP, your go-to source for the latest international news with a special focus on the United States! 🌍🇺🇸 We bring you up-to-date coverage on key global events, breaking news, and in-depth repor...

    published: 25 Jan 2025
  • Filmmakers Roundtable 2024 | Anupama Chopra | The Hollywood Reporter India

    In this insightful roundtable discussion, six accomplished Indian filmmakers - Imtiaz Ali, C. Prem Kumar, Kiran Rao, Christo Tomy, Venky Atluri, and Rajkumar Periasamy - engage in a candid conversation about their creative journeys and the art of filmmaking. From the intensely personal process of writing to managing the complexities of a film set, these directors share fascinating perspectives on their craft. Through conversations about extracting authentic performances, dealing with box office pressures, and their unique relationships with producers, these filmmakers offer an honest glimpse into the evolving landscape of Indian cinema, while emphasizing the importance of staying true to one's creative vision despite commercial pressures. 00:00 Introduction 02:03 Welcoming directors 02:2...

    published: 23 Dec 2024
  • The World's Fastest Indian- Speed Record scene

    Anthony Hopkins as Burt, while the film presents us his efforts for conquering the speed record at Bonneville salt filed, riding his Indian motorcycle! The extracted scene is from the end of the movie, when Burt achieves his goal!

    published: 11 May 2015
  • Republic Day Parade 2025 Live: Celebrations Begin At Kartavya Path | 26 January Parade | PM Modi

    Republic Day Parade 2025 Live: Join us live as India marks its 76th Republic Day with spectacular celebrations at Kartavya Path, New Delhi. This year is special, commemorating 75 years of the Constitution's adoption. Watch the parade featuring India’s cultural heritage, military might, and a special contingent from Indonesia, led by Chief Guest President Prabowo Subianto. Don't miss this historic event! - #republicday #republicday2025 #republicdayparade #republicdayparade2025 #redfort #redfortlive #26january The Indian Express covers a wide spectrum of national and international news, including daily updates, political developments, election coverage, gadget and mobile reviews, technology updates, entertainment news, Bollywood trends, sports news and public opinions on daily topics. The...

    published: 26 Jan 2025
  • Actors Roundtable | Anupama Chopra | The Hollywood Reporter India

    In this engaging roundtable conversation, seven of Indian cinema's most compelling performers - Shabana Azmi, Pratik Gandhi, Kani Kusruti, Anna Ben, Rajkummar Rao, Kareena Kapoor Khan, and Vicky Kaushal - come together to discuss the craft of acting and the evolving landscape of Indian entertainment. From the technical aspects of performance to finding authenticity in characters, these artists offer fascinating insights into their creative processes, while candidly sharing their experiences with success, failure, and staying grounded in an industry of extremes. The discussion takes particularly interesting turns when Rajkummar Rao reflects on the aftermath of Stree 2's massive success, Kareena Kapoor Khan reveals her approach to different genres, and veteran actor Shabana Azmi shares wisd...

    published: 09 Dec 2024
  • Off Script with The Hollywood Reporter India | Filmmakers Roundtable

    In a never-before seen interaction, join THR India editor Anupama Chopra as she sits down with five visionary directors from across India for an insightful roundtable discussion on the first episode of Off Script with THR, India. This star-studded panel features the incomparable Vetri Maaran and Pa. Ranjith from Tamil cinema, game-changers Karan Johar and Zoya Akhtar from Hindi cinema, and the multifaceted Mahesh Narayanan from Malayalam cinema. In this engaging conversation, the directors delve into the current state of Indian cinema, discussing everything from the challenges of the theatrical business to the evolving landscape of streaming platforms. They share personal insights into their creative processes, favorite aspects of filmmaking, and the unique challenges they face in their r...

    published: 23 Sep 2024
  • Sivakarthikeyan on Amaran, Family, Films & Finding His Path | InFocus | THR India

    In this heartfelt conversation, Sivakarthikeyan opens up about his remarkable journey from television to becoming one of Tamil cinema's biggest stars. The actor discusses his recent blockbuster 'Amaran', sharing insights into playing Major Mukund and the preparation that went into the role. He candidly addresses the challenges he faced as an outsider in the industry, revealing how he nearly quit cinema before his wife convinced him to continue. He talks about his evolution as an actor, from his comedy roots to tackling complex roles, and his unique approach to choosing scripts. The conversation explores his production ventures supporting new voices, including the critically acclaimed 'Kottukkaali'. He shares his thoughts on balancing commercial success with artistic growth, his experience...

    published: 06 Jan 2025
  • The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins

    🔶 For Free Smart Video Notes Link 👉 https://drive.google.com/drive/folders/1lI2euYlfiL_rvPYTV6QqOOop_WybXclN?usp=sharing The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins | Rapid Revision Series | Siddharth Sir | Next Toppers Humanities Welcome to the Next Toppers Rapid Revision Series, here we simplify your Class 11 Humanities syllabus in short, power-packed videos under 10-20 minutes. Designed for CBSE Class 11th Humanities exams, this series helps you revise crucial concepts, case studies, and theories for every subject. 👉 What’s included for Humanities Stream? ✅ History: Chronological events, timelines, and critical historical developments ✅ Political Science: Key constitutions, political ideologies, and governance simplified ✅ ...

    published: 25 Jan 2025
  • The Indians - There Goes My First Love

    The Indians singing "There Goes My First Love" Sung by Noel Brady - Aka - Big Chief Flaming Star Recorded live at Pontins Brean Sands' Back in 1990 Enjoy little Indians :'), x x x

    published: 14 Apr 2011
The Indian Sidemen Are Back And Even Worse... (really bad)
24:15

The Indian Sidemen Are Back And Even Worse... (really bad)

  • Order:
  • Duration: 24:15
  • Uploaded Date: 26 Jan 2025
  • views: 112461
yea this one def needed the warning at the start lol ∞ my silly little clothing brand {MANGETSU}: https://balarke.com ► yummy gamer fluid (Gamer Supps): https://gamersupps.gg/balarke ●sub if u got a big willy: http://bit.ly/1qgbCQi ●become a member (also helps feed the kids): http://bit.ly/2UKRrNp --------------------------------------------------------------------------------------- ►Social Media: ●Twitter: https://twitter.com/Balarkeuwu ●Instagram: https://www.instagram.com/balarke_/ --------------------------------------------------------------------------------------- The Indian Sidemen Are Back And Even Worse... (really bad) - Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
https://wn.com/The_Indian_Sidemen_Are_Back_And_Even_Worse..._(Really_Bad)
Donald Trump's New Rules Ban Indian Parents from Entering U.S. Airports
5:26

Donald Trump's New Rules Ban Indian Parents from Entering U.S. Airports

  • Order:
  • Duration: 5:26
  • Uploaded Date: 25 Jan 2025
  • views: 325344
Ever since Donald Trump started his second term as US President, the Indian community in America has been living in fear and uncertainty. Trump has always been known for his tough immigration rules, and now, with his latest policies, Indians on temporary visas like H-1B and visitor visas (B-1/B-2) are facing unexpected trouble. Many are now scared of traveling to the US because of sudden, unannounced immigration rules that could lead to deportation or being denied entry at the airport itself. #india #indianstudents #indiansincanada #usastudentvisa #usnews #usaeducation #donaldtrump Welcome to TimesXP, your go-to source for the latest international news with a special focus on the United States! 🌍🇺🇸 We bring you up-to-date coverage on key global events, breaking news, and in-depth reports that matter to you. From politics to economics, our channel delivers insightful analysis and comprehensive updates to keep you informed. 🔹 Stay tuned for daily news updates 🔹 Get expert analysis on U.S. and international events Subscribe now and never miss a moment of the world’s most important stories. Join our community and stay connected with the latest from around the globe!
https://wn.com/Donald_Trump's_New_Rules_Ban_Indian_Parents_From_Entering_U.S._Airports
Filmmakers Roundtable 2024 | Anupama Chopra | The Hollywood Reporter India
1:22:20

Filmmakers Roundtable 2024 | Anupama Chopra | The Hollywood Reporter India

  • Order:
  • Duration: 1:22:20
  • Uploaded Date: 23 Dec 2024
  • views: 379441
In this insightful roundtable discussion, six accomplished Indian filmmakers - Imtiaz Ali, C. Prem Kumar, Kiran Rao, Christo Tomy, Venky Atluri, and Rajkumar Periasamy - engage in a candid conversation about their creative journeys and the art of filmmaking. From the intensely personal process of writing to managing the complexities of a film set, these directors share fascinating perspectives on their craft. Through conversations about extracting authentic performances, dealing with box office pressures, and their unique relationships with producers, these filmmakers offer an honest glimpse into the evolving landscape of Indian cinema, while emphasizing the importance of staying true to one's creative vision despite commercial pressures. 00:00 Introduction 02:03 Welcoming directors 02:20 Imtiaz Ali’s 20-year milestone & “Chamkila” 05:55 Extracting performances 14:50 Test screenings & editing to find the rhythm 17:09 C. Prem Kumar on cutting 18 minutes of Meiyazhagan 26:20 On-set challenges for Christo Tomy 30:53 Imtiaz Ali's challenges on a set 33:33 Venky Atluri on being meditative on a set 35:18 Is Kiran Rao calm on set? 37:43 Rajkumar Periasamy on shooting action sequences 40:00 C. Prem Kumar's rules on set 43:25 "Adding the cheese" to the films 49:59 Writing processes & styles 58:34 Producers, budgets & reality checks 01:06:36 Box office vs. creative integrity 01:16:00 Upcoming projects 01:22:33 Closing remarks #DirectorsRoundtable #IndianCinema #THRIndia
https://wn.com/Filmmakers_Roundtable_2024_|_Anupama_Chopra_|_The_Hollywood_Reporter_India
The World's Fastest Indian- Speed Record scene
5:30

The World's Fastest Indian- Speed Record scene

  • Order:
  • Duration: 5:30
  • Uploaded Date: 11 May 2015
  • views: 4066595
Anthony Hopkins as Burt, while the film presents us his efforts for conquering the speed record at Bonneville salt filed, riding his Indian motorcycle! The extracted scene is from the end of the movie, when Burt achieves his goal!
https://wn.com/The_World's_Fastest_Indian_Speed_Record_Scene
Republic Day Parade 2025 Live: Celebrations Begin At Kartavya Path | 26 January Parade | PM Modi
0:00

Republic Day Parade 2025 Live: Celebrations Begin At Kartavya Path | 26 January Parade | PM Modi

  • Order:
  • Duration: 0:00
  • Uploaded Date: 26 Jan 2025
  • views: 100289
Republic Day Parade 2025 Live: Join us live as India marks its 76th Republic Day with spectacular celebrations at Kartavya Path, New Delhi. This year is special, commemorating 75 years of the Constitution's adoption. Watch the parade featuring India’s cultural heritage, military might, and a special contingent from Indonesia, led by Chief Guest President Prabowo Subianto. Don't miss this historic event! - #republicday #republicday2025 #republicdayparade #republicdayparade2025 #redfort #redfortlive #26january The Indian Express covers a wide spectrum of national and international news, including daily updates, political developments, election coverage, gadget and mobile reviews, technology updates, entertainment news, Bollywood trends, sports news and public opinions on daily topics. The Indian Express's comprehensive coverage extends to global events, providing insightful analysis on international affairs. With a focus on both Indian and global perspectives, the Indian Express delivers top-notch editorial analysis and in-depth reporting. Stay informed with the latest news, trends, explained and expert views from India and around the world. You can search us on YouTube by: @indianexpress, indian express, indian express newspaper today,indian express newspaper,indian express editorial analysis,indian express analysis,indian express analysis today,indian express,indian express news,the indian express newspaper analysis,the indian express,the indian express newspaper analysis today,the indian express editorial analysis,the indian express newspaper. Stay Tuned To Indian Express For More Updates: https://indianexpress.com/ Watch Out Our Weekly Shows: 🡆 Political Pulse - https://youtube.com/playlist?list=PLrDg7LoYgk9yWQFKrxgIIWgWV-Mbq2jwC 🡆 Express Explained In 60 Seconds - https://youtube.com/playlist?list=PLrDg7LoYgk9wf6MYiN9rR3zN3f-lWmfaS 🡆 Zero Hour with Derek O' Brien - https://youtube.com/playlist?list=PLrDg7LoYgk9w95L5sHxAhGVlNgsRFhMHq 🡆 Indian Express Explained - https://youtube.com/playlist?list=PLrDg7LoYgk9y8Wm50M57nutw5usWUkb-k 🡆 UPSC Essentials- https://www.youtube.com/watch?v=TuhtH8j4stw&list=PLrDg7LoYgk9wBTnLuSQmbj1_6U1K6IOYI #LatestNews #BreakingNews #EnglishNews Subscribe to our Channel: The Indian Express: http://goo.gl/RjJrX0 Subscribe to our Network Channels: Jansatta (Hindi): https://www.youtube.com/c/Jansatta Loksatta (Marathi): https://www.youtube.com/LOKSATTA The Financial Express https://www.youtube.com/c/FinancialExpress Express Drives (Auto): https://www.youtube.com/c/ExpressDrives Inuth (Youth): https://www.youtube.com/c/InUthdotcom Indian Express Bangla: https://www.youtube.com/c/IndianExpressBangla Indian Express Punjab: https://www.youtube.com/@indianexpresspunjab Indian Express Malayalam: https://www.youtube.com/c/iemalayalam Indian Express Tamil: https://www.youtube.com/@indianexpresstamil Connect with us: Facebook: https://www.facebook.com/indianexpress Twitter: https://twitter.com/indianexpress Indian Express App: http://indianexpress.com/apps/ Official Website: https://indianexpress.com/
https://wn.com/Republic_Day_Parade_2025_Live_Celebrations_Begin_At_Kartavya_Path_|_26_January_Parade_|_Pm_Modi
Actors Roundtable | Anupama Chopra | The Hollywood Reporter India
1:17:24

Actors Roundtable | Anupama Chopra | The Hollywood Reporter India

  • Order:
  • Duration: 1:17:24
  • Uploaded Date: 09 Dec 2024
  • views: 754397
In this engaging roundtable conversation, seven of Indian cinema's most compelling performers - Shabana Azmi, Pratik Gandhi, Kani Kusruti, Anna Ben, Rajkummar Rao, Kareena Kapoor Khan, and Vicky Kaushal - come together to discuss the craft of acting and the evolving landscape of Indian entertainment. From the technical aspects of performance to finding authenticity in characters, these artists offer fascinating insights into their creative processes, while candidly sharing their experiences with success, failure, and staying grounded in an industry of extremes. The discussion takes particularly interesting turns when Rajkummar Rao reflects on the aftermath of Stree 2's massive success, Kareena Kapoor Khan reveals her approach to different genres, and veteran actor Shabana Azmi shares wisdom from her 50-year journey in cinema. Through conversations about the art of comedy, dealing with criticism, and hopes for 2025, these performers paint an honest picture of Indian cinema in transition, emphasizing the importance of good writing, authentic storytelling, and maintaining perspective in an industry driven by box office numbers. 00:00 Introduction 02:10 Welcoming Actors 03:20 Discussion on Authenticity in Acting 05:12 Actors Share Their Experiences 10:50 Pratik Gandhi on Discipline from Theatre 12:58 Kani Kusruti on Adapting to Directors 15:11 Kareena Kapoor Khan on Working with Different Directors 17:24 Shabana Azmi on Delivering Rehearsed Lines 20:35 Anna Ben's Role in "Kottukkaali" 23:50 Falling Out of Love with Acting 27:29 Vicky Kaushal on Complacency in Acting 30:05 Kani Kusruti on Her Acting Journey 33:25 Shabana Azmi on Self-Discovery and Growth 35:48 Actors on Handling Criticism and Validation 42:22 Rajkummar Rao on Box Office Success and Traps 46:15 Vicky Kaushal on Freedom to Play Ordinary Characters 48:50 Kani Kusruti on Impact of Critical Acclaim 52:48 Shabana Azmi on Relationships Enhancing Craft 55:39 Kareena Kapoor Khan on Valuing Relationships over Box Office Results 1:00:09 Discussion on The Art of Comedy 1:04:19 Actors on Staying Grounded 1:10:02 Hopes for 2025 1:16:56 Closing Remarks #ActorsRoundtable #IndianCinema #BollywoodStars #THRIndia
https://wn.com/Actors_Roundtable_|_Anupama_Chopra_|_The_Hollywood_Reporter_India
Off Script with The Hollywood Reporter India | Filmmakers Roundtable
1:21:35

Off Script with The Hollywood Reporter India | Filmmakers Roundtable

  • Order:
  • Duration: 1:21:35
  • Uploaded Date: 23 Sep 2024
  • views: 733188
In a never-before seen interaction, join THR India editor Anupama Chopra as she sits down with five visionary directors from across India for an insightful roundtable discussion on the first episode of Off Script with THR, India. This star-studded panel features the incomparable Vetri Maaran and Pa. Ranjith from Tamil cinema, game-changers Karan Johar and Zoya Akhtar from Hindi cinema, and the multifaceted Mahesh Narayanan from Malayalam cinema. In this engaging conversation, the directors delve into the current state of Indian cinema, discussing everything from the challenges of the theatrical business to the evolving landscape of streaming platforms. They share personal insights into their creative processes, favorite aspects of filmmaking, and the unique challenges they face in their respective industries. The discussion touches on crucial topics such as the Hema committee report, representation of caste violence in cinema, the willingness of big stars to take on challenging roles and the importance of maintaining artistic integrity while navigating commercial pressures. This roundtable offers a rare glimpse into the minds of some of India's most influential filmmakers, showcasing their passion, creativity, and dedication to their craft. An RPSG Lifestyle Media Production. Brought to you by RPSG Group 00:00 Introduction by Anupama Chopra 00:58 Directors introduced 01:40 Discussion on Justice Hema Committee report 02:31 Mahesh on systemic change 04:24 Zoya on male entitlement 05:52 Karan on patriarchy and upbringing 08:04 Vetri Maaran on supporting women 10:08 Pa. Ranjith on discrimination 14:47 Zoya on enabling work opportunities 16:26 Current film industry landscape 17:05 Vetri Maaran on OTT impact 22:14 Karan on Hindi cinema challenges 29:16 Challenges making diverse films 33:31 Karan on empowering new actors 36:16 Affordability post-pandemic 44:16 Hindi actors being experimental 53:00 Karan on not holding back 56:15 Filmmakers on favorite processes 58:22 Karan on writing and favorites 01:00:23 Zoya on process and dislikes 1:04:00 Vetri Maaran's unique approach 01:07:08 Pa. Ranjith on writing passion 1:09:06 Directors' favorite recent films 1:13:33 Zoya asks Vetri Maaran about process 1:21:07 Conclusion and closing remarks #IndianCinema #DirectorsRoundtable #THRIndia
https://wn.com/Off_Script_With_The_Hollywood_Reporter_India_|_Filmmakers_Roundtable
Sivakarthikeyan on Amaran, Family, Films & Finding His Path | InFocus | THR India
56:02

Sivakarthikeyan on Amaran, Family, Films & Finding His Path | InFocus | THR India

  • Order:
  • Duration: 56:02
  • Uploaded Date: 06 Jan 2025
  • views: 326068
In this heartfelt conversation, Sivakarthikeyan opens up about his remarkable journey from television to becoming one of Tamil cinema's biggest stars. The actor discusses his recent blockbuster 'Amaran', sharing insights into playing Major Mukund and the preparation that went into the role. He candidly addresses the challenges he faced as an outsider in the industry, revealing how he nearly quit cinema before his wife convinced him to continue. He talks about his evolution as an actor, from his comedy roots to tackling complex roles, and his unique approach to choosing scripts. The conversation explores his production ventures supporting new voices, including the critically acclaimed 'Kottukkaali'. He shares his thoughts on balancing commercial success with artistic growth, his experiences with social media, and how fatherhood has influenced his performances. The interview offers a rare glimpse into the mind of an artist who has maintained his humility despite phenomenal success. Location Courtesy: The Leela Palace, Chennai 00:00 Introduction 01:04 Welcoming Sivakarthikeyan 01:29 A big year: 'Amaran,' producing 'Kottukkaali' and Vijay’s symbolic gesture 04:33 On not feeling insecure about success 09:03 Transition from TV to film 15:07 Prepping for 'Amaran' 19:43 The first few takes or the 10th take - what is Siva's choice? 22:05 Personal rules on-screen 25:35 Enabling new voices through production 28:00 Producing 'Kottukkaali' 32:30 Relation between humility and success 35:25 On taking responsibility for a film not working 38:47 Contemplating leaving the industry and wife's support 45:23 Upcoming films 48:35 Meeting Aamir Khan 49:43 Defining being an entertainer 51:55 Fatherhood’s impact 55:00 Closing remarks #SivaKarthikeyan #TamilCinema #THRIndia
https://wn.com/Sivakarthikeyan_On_Amaran,_Family,_Films_Finding_His_Path_|_Infocus_|_Thr_India
The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins
13:45

The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins

  • Order:
  • Duration: 13:45
  • Uploaded Date: 25 Jan 2025
  • views: 510
🔶 For Free Smart Video Notes Link 👉 https://drive.google.com/drive/folders/1lI2euYlfiL_rvPYTV6QqOOop_WybXclN?usp=sharing The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins | Rapid Revision Series | Siddharth Sir | Next Toppers Humanities Welcome to the Next Toppers Rapid Revision Series, here we simplify your Class 11 Humanities syllabus in short, power-packed videos under 10-20 minutes. Designed for CBSE Class 11th Humanities exams, this series helps you revise crucial concepts, case studies, and theories for every subject. 👉 What’s included for Humanities Stream? ✅ History: Chronological events, timelines, and critical historical developments ✅ Political Science: Key constitutions, political ideologies, and governance simplified ✅ Geography: Important physical, human geography, and map practice 🎯 Why this series? Focus on high-weightage topics for exams Simplified concepts for quick understanding Easy-to-follow approach within 10-20 minutes 📌 This is your ultimate revision guide to score big in CBSE Class 11 Humanities exams Visit our website or contact us for more information. 🟢App 👉 https://play.google.com/store/apps/details?id=com.nexttoppers.app&hl=en_IN 🟢Telegram 👉 https://t.me/+smZa7GiTAYY0N2Rl 🟢Website 👉 https://nexttoppers.com/ 🟢Instagram 👉 https://insta.openinapp.co/izrnf 🟢Twitter 👉 https://twitter.com/Next_Toppers 🟢Linked In 👉 https://www.linkedin.com/company/next-toppers/ 🟢Whatsapp 👉 https://www.whatsapp.com/channel/0029VaeT0t4DjiOlwp8y6i2M ☎️Contact Details: 📩 Support Email id 👉 Support@nexttoppers.com 📞 Support Number 👉 97-11-18-59-87 or 97-11-18-70-50 Subscribe to our channel now and stay ahead in your CBSE Class 11th and 12th journey! Here, we’ll cover the complete NCERT syllabus for Humanities with engaging sessions designed just for you. Don’t miss out on Premiere classes, exam analysis, exam guidance, important topics, latest updates, paper patterns, and expert tips to ace your board exams. Whether it’s quick revision, marathon sessions, or detailed concept explanations – we’ve got it all covered! Hit that subscribe button and stay tuned for more. #NextToppersHumanities #NextToppers11And12 #NextToppersClass11And12 #NextToppers #NextToppers11And12Preparation #CbseExam #CbseClass11 #ThePhilosophyOfTheConstitutionClass11 #PhilosophyOfIndianConstitutionClass11 #Class11PhilosophyOfIndianConstitution #PhilosophyOfIndianConstitutionRevision #Class11PoliticalScienceRevision #PoliticalScienceRevisionClass11 #Class11PoliticalScienceRapidRevision #Class11PoliticalScienceQuickRevision #Class11PolScienceRevision #CbseClass11 #RapidRevisionClass11 #Class11Ncert
https://wn.com/The_Philosophy_Of_The_Indian_Constitution_|_Cbse_Class_11_Political_Science_|_Full_Chapter_In_🔟Mins
The Indians - There Goes My First Love
2:51

The Indians - There Goes My First Love

  • Order:
  • Duration: 2:51
  • Uploaded Date: 14 Apr 2011
  • views: 408260
The Indians singing "There Goes My First Love" Sung by Noel Brady - Aka - Big Chief Flaming Star Recorded live at Pontins Brean Sands' Back in 1990 Enjoy little Indians :'), x x x
https://wn.com/The_Indians_There_Goes_My_First_Love
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Indian Sidemen Are Back And Even Worse... (really bad)
    24:15
    The Indian Sidemen Are Back And Even Worse... (really bad)remove from playlist
  • Donald Trump's New Rules Ban Indian Parents from Entering U.S. Airports
    5:26
    Donald Trump's New Rules Ban Indian Parents from Entering U.S. Airportsremove from playlist
  • Filmmakers Roundtable 2024 | Anupama Chopra | The Hollywood Reporter India
    1:22:20
    Filmmakers Roundtable 2024 | Anupama Chopra | The Hollywood Reporter Indiaremove from playlist
  • The World's Fastest Indian- Speed Record scene
    5:30
    The World's Fastest Indian- Speed Record sceneremove from playlist
  • Republic Day Parade 2025 Live: Celebrations Begin At Kartavya Path | 26 January Parade | PM Modi
    0:00
    Republic Day Parade 2025 Live: Celebrations Begin At Kartavya Path | 26 January Parade | PM Modiremove from playlist
  • Actors Roundtable | Anupama Chopra | The Hollywood Reporter India
    1:17:24
    Actors Roundtable | Anupama Chopra | The Hollywood Reporter Indiaremove from playlist
  • Off Script with The Hollywood Reporter India | Filmmakers Roundtable
    1:21:35
    Off Script with The Hollywood Reporter India | Filmmakers Roundtableremove from playlist
  • Sivakarthikeyan on Amaran, Family, Films & Finding His Path | InFocus | THR India
    56:02
    Sivakarthikeyan on Amaran, Family, Films & Finding His Path | InFocus | THR Indiaremove from playlist
  • The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins
    13:45
    The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Minsremove from playlist
  • The Indians - There Goes My First Love
    2:51
    The Indians - There Goes My First Loveremove from playlist
PLAYLIST TIME:

The Indian Sidemen Are Back And Even Worse... (really bad)

yea this one def needed the warning at the start lol ∞ my silly little clothing brand {MANGETSU}: https://balarke.com ► yummy gamer fluid (Gamer Supps): https://gamersupps.gg/balarke ●sub if u got a big willy: http://bit.ly/1qgbCQi ●become a member (also helps feed the kids): http://bit.ly/2UKRrNp --------------------------------------------------------------------------------------- ►Social Media: ●Twitter: https://twitter.com/Balarkeuwu ●Instagram: https://www.instagram.com/balarke_/ --------------------------------------------------------------------------------------- The Indian Sidemen Are Back And Even Worse... (really bad) - Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
24:15
The Indian Sidemen Are Back And Even Worse... (really bad)
yea this one def needed the warning at the start lol ∞ my silly little clothing brand {MA...
published: 26 Jan 2025
Play in Full Screen
5:26
Donald Trump's New Rules Ban Indian Parents from Entering U.S. Airports
Ever since Donald Trump started his second term as US President, the Indian community in A...
published: 25 Jan 2025
Play in Full Screen
1:22:20
Filmmakers Roundtable 2024 | Anupama Chopra | The Hollywood Reporter India
In this insightful roundtable discussion, six accomplished Indian filmmakers - Imtiaz Ali,...
published: 23 Dec 2024
Play in Full Screen
5:30
The World's Fastest Indian- Speed Record scene
Anthony Hopkins as Burt, while the film presents us his efforts for conquering the speed r...
published: 11 May 2015
Play in Full Screen
0:00
Republic Day Parade 2025 Live: Celebrations Begin At Kartavya Path | 26 January Parade | PM Modi
Republic Day Parade 2025 Live: Join us live as India marks its 76th Republic Day with spec...
published: 26 Jan 2025
Play in Full Screen
1:17:24
Actors Roundtable | Anupama Chopra | The Hollywood Reporter India
In this engaging roundtable conversation, seven of Indian cinema's most compelling perform...
published: 09 Dec 2024
Play in Full Screen
1:21:35
Off Script with The Hollywood Reporter India | Filmmakers Roundtable
In a never-before seen interaction, join THR India editor Anupama Chopra as she sits down ...
published: 23 Sep 2024
Play in Full Screen
56:02
Sivakarthikeyan on Amaran, Family, Films & Finding His Path | InFocus | THR India
In this heartfelt conversation, Sivakarthikeyan opens up about his remarkable journey from...
published: 06 Jan 2025
Play in Full Screen
13:45
The Philosophy of the Indian Constitution | CBSE Class 11 Political Science | Full Chapter in 🔟Mins
🔶 For Free Smart Video Notes Link 👉 https://drive.google.com/drive/folders/1lI2euYlfiL_rvP...
published: 25 Jan 2025
Play in Full Screen
2:51
The Indians - There Goes My First Love
The Indians singing "There Goes My First Love" Sung by Noel Brady - Aka - Big Chief Flami...
published: 14 Apr 2011
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: the indian

Edit

'7 Indian States Are Landlocked': Yunus Pitches Bangladesh As China’s Gateway To The Indian Ocean

News18 31 Mar 2025
... Bangladesh, emphasising that Dhaka is the “sole guardian of the ocean” in the region.
Edit

Why is X suing the Indian govt over censorship? Musk’s heft within US administration could ...

Straits Times 31 Mar 2025
X owner Elon Musk's two other companies, Starlink and Tesla, are inching closer to launching in India ....
Edit

Dead humpback whale spotted in the Indian River Bay to be towed to shore

Delaware Online 31 Mar 2025
A dead whale was spotted Monday, March 31, in the Indian River Bay and is expected to be towed to the shore ... page that its team was responding to a "subadult" humpback whale in the Indian River Bay.
Edit

Metrea announced today it has been awarded an air-to-air refueling contract with the Indian Air Force

PR Newswire 31 Mar 2025
WASHINGTON, March 31, 2025 /PRNewswire/ -- Metrea, a leading provider of commercial air-to-air refueling (AAR), today announced a contract with the Indian Air Force (IAF) to enhance IAF AAR training capabilities.
Edit

7 Japanese cars that transformed the Indian market

DNA India 30 Mar 2025
7 Japanese cars that transformed the Indian market .
Edit

Outdoors – On the Indian trail with Burwyn

Advertiser-Gleam 28 Mar 2025
The invite was too good to be true – a search for a rare relic in the rugged back country near Grant with one of my favorite historians, Burwyn Brewer, the grist miller from Bucksnort ... .
Edit

The Indian Ports Bill 2025 (Lok Sabha Secretariat)

Public Technologies 28 Mar 2025
1 .( 1) This Act may be called the Indian Ports Act, 2025 ... (d) an officer equivalent in rank to the Secretary of the Government of India in the Indian Navy dealing with coastal security, to be ...
Edit

Hyundai Creta N Line: Here's How The Thailand Model Differs From The Indian One

News18 28 Mar 2025
The Thailand-spec Hyundai Creta N Line has a less powerful engine, only a CVT gearbox, and fewer colour options than the India-spec model, which offers more choices ... .
Edit

Review: The Indian Constitution; A Conversation with Power byGautam Bhatia

Hindustan Times 28 Mar 2025
In his latest book, Gautam Bhatia takes us on an illuminating journey into the history, text, design and power map of the Indian Constitution, which has been moulded, at different points, by the judiciary ... The Indian Constitution.
Edit

No house, no bills: Meet the Indian family who sold everything to live on a floating home

The Times of India 26 Mar 2025
An Indian family—former Navy officer Capt ... through their Instagram account, The Reeva Project.
×