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

  • Indian police use violence against coronavirus lockdown offenders

    Baton-wielding police in India have been filmed beating people breaking the coronavirus lockdown rules and making some offenders do physical punishments. -------------------- SUBSCRIBE ➤ http://bit.ly/FollowST -------------------- WEBSITE ➤ http://www.straitstimes.com TWITTER ➤ https://www.twitter.com/STcom FACEBOOK ➤ https://www.facebook.com/TheStraitsTimes INSTAGRAM ➤ https://www.instagram.com/straits_times PODCASTS ➤ https://omny.fm/shows/st-bt/playlists The Straits Times, the English flagship daily of SPH, has been serving readers for more than a century. Launched on July 15, 1845, its comprehensive coverage of world news, East Asian news, Southeast Asian news, home news, sports news, financial news and lifestyle updates makes The Straits Times the most-read newspaper in Singapore. ...

    published: 26 Mar 2020
  • Indian police forces and canine units were deployed to provide security at the #Olympics #Paris2024

    published: 27 Jul 2024
  • This Kerala policeman’s bravery went viral on the internet as he subdued a man wielding a machete

    published: 20 Jun 2022
  • Indian Police Force (Title Track): Rohit Shetty | Sidharth Malhotra, Shilpa Shetty, Vivek Oberoi

    Be Ready To Witness The India's Biggest Action Series. Presenting "Indian Police Force (Title Track)" from the upcoming Web Series "Indian Police Force". Starring Sidharth Malhotra, Shilpa Shetty Kundra, and Vivek Anand Oberoi. Prime Video India Presents A Rohit Shetty Picturez Production "Indian Police Force" Directed by Rohit Shetty and Sushwanth Prakash Produced by Rohit Shetty Official Release Date January 19, 2024, on @PrimeVideoIN ♪Full Song Available on♪ JioSaavn: https://bit.ly/3RMEfFb Spotify: https://bit.ly/3Nu00ac Hungama: https://bit.ly/3ttYOwx Apple Music: https://bit.ly/3ttYLAR Amazon Prime Music: https://bit.ly/46X9S2V Wynk: https://bit.ly/473lulh YouTube Music: https://bit.ly/41tWQsD Credits: Song: Indian Police Force (Title Track) Music Composer : Lijo George-Dj ...

    published: 13 Jan 2024
  • Indian Police Force - Rohit Shetty | Sidharth Malhotra | New Series Announcement |Amazon Prime Video

    Prime Video Joins Forces with Rohit Shetty Picturez for its Most Ambitious, Action-Packed Series Titled Indian Police Force. The eight-part high-octane action series marks the digital debut of one of India’s most exciting and accomplished filmmakers - Rohit Shetty, known for his big ticket mass entertainers. The series will present Sidharth Malhotra in a never-before-seen avatar of a cop hero. Currently under production, the Amazon Original series aims to become the beacon of high-quality Indian entertainment globally, with a simultaneous launch in more than 240 countries and territories. Created by Rohit Shetty Music by Rohit Shetty's Cop Universe For more such videos, subscribe to our YouTube channel ► https://amzn.to/Subscribe Don't forget to push the Bell 🔔 icon to never miss an upda...

    published: 20 Apr 2022
  • Indian Police Force Season 1 - Official Trailer | Prime Video India

    Prime Video India Presents Indian Police Force Season 1 - Official Trailer Starring Sidharth Malhotra, Shilpa Shetty Kundra, Vivek Anand Oberoi, Mukesh Rishi, Shweta Ashok Tiwari, Mrinal Ruchir Kulkarni, Nikitin Dheer, Mayyank Taandon, Vaidehi Parashurami, Sharad Kelkar, Ritu Raj Singh, Isha Talwar. Directed by Rohit Shetty, Sushwanth Prakash Produced by Rohit Shetty Written by Rohit Shetty, Sandeep Saket, Anusha Nandkumar, Ayush Trivedi, Vidhi Ghodgaonkar, Sanchit Bedre Created by Rohit Shetty Official Release Date January 19, 2024 on Prime Video India. About: Indian Police Force, a seven-part action-packed series created by Rohit Shetty, and directed by Rohit Shetty and Sushwanth Prakash is a homage to the relentless commitment of Indian police officers. Promising to redefine the con...

    published: 05 Jan 2024
  • Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S

    Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S #urfijaved #boldclothes #englishnews #custody #police #urfi #trending #shorts n18oc_shorts

    published: 03 Nov 2023
  • Police, Protesters Clash in India

    A student protest in New Delhi, India turned violent, Thursday, January 9, after police, wielding batons, charged at demonstrators trying to march towards the president’s residence. Police detained several students and activists who had gathered to protest an attack at Jawaharlal Nehru University residence hall, Sunday. Eyewitnesses claimed police had been beating protesters with batons and smashing phones of people filming the violence. The protests come in reaction to a new citizenship law that critics argue is anti-Muslim. So far, at least two dozen people have been killed in the protests. (AP)

    published: 09 Jan 2020
  • Why we hate Police [ Hindi ] | By Nitish Rajput

    IndianPolice is often associated with corruption, dominance, and incompetence. Police department does not enjoy a good public image in general. Let’s discuss the overlooked aspects of Indianpolicesystem. We’ll try to look into the work culture of IndianPolice and lifeofanIndianpoliceman. How did the Policesystem come into existence? How Politicalinterference creates hindrance in a smooth-running system. How the Policepower is misused to personal advantage. Let's discuss this. Website: https://www.nitishrajput.com Instagram: https://www.instagram.com/nitishrajpute/ youtube: https://www.youtube.com/nitishrajput Twitter: https://twitter.com/nitishrajpute ------------------------------ ------------------------------ Gadgets I use: Camera: Canon EOS Link: https://amzn.to/44kihMS Printer: ...

    published: 12 Nov 2020
Indian police use violence against coronavirus lockdown offenders
0:58

Indian police use violence against coronavirus lockdown offenders

  • Order:
  • Duration: 0:58
  • Uploaded Date: 26 Mar 2020
  • views: 2479719
Baton-wielding police in India have been filmed beating people breaking the coronavirus lockdown rules and making some offenders do physical punishments. -------------------- SUBSCRIBE ➤ http://bit.ly/FollowST -------------------- WEBSITE ➤ http://www.straitstimes.com TWITTER ➤ https://www.twitter.com/STcom FACEBOOK ➤ https://www.facebook.com/TheStraitsTimes INSTAGRAM ➤ https://www.instagram.com/straits_times PODCASTS ➤ https://omny.fm/shows/st-bt/playlists The Straits Times, the English flagship daily of SPH, has been serving readers for more than a century. Launched on July 15, 1845, its comprehensive coverage of world news, East Asian news, Southeast Asian news, home news, sports news, financial news and lifestyle updates makes The Straits Times the most-read newspaper in Singapore. Video: Reuters
https://wn.com/Indian_Police_Use_Violence_Against_Coronavirus_Lockdown_Offenders
Indian police forces and canine units were deployed to provide security at the #Olympics #Paris2024
0:47

Indian police forces and canine units were deployed to provide security at the #Olympics #Paris2024

  • Order:
  • Duration: 0:47
  • Uploaded Date: 27 Jul 2024
  • views: 2221140
https://wn.com/Indian_Police_Forces_And_Canine_Units_Were_Deployed_To_Provide_Security_At_The_Olympics_Paris2024
This Kerala policeman’s bravery went viral on the internet as he subdued a man wielding a machete
0:23

This Kerala policeman’s bravery went viral on the internet as he subdued a man wielding a machete

  • Order:
  • Duration: 0:23
  • Uploaded Date: 20 Jun 2022
  • views: 174896064
https://wn.com/This_Kerala_Policeman’S_Bravery_Went_Viral_On_The_Internet_As_He_Subdued_A_Man_Wielding_A_Machete
Indian Police Force (Title Track): Rohit Shetty | Sidharth Malhotra, Shilpa Shetty, Vivek Oberoi
1:30

Indian Police Force (Title Track): Rohit Shetty | Sidharth Malhotra, Shilpa Shetty, Vivek Oberoi

  • Order:
  • Duration: 1:30
  • Uploaded Date: 13 Jan 2024
  • views: 10661549
Be Ready To Witness The India's Biggest Action Series. Presenting "Indian Police Force (Title Track)" from the upcoming Web Series "Indian Police Force". Starring Sidharth Malhotra, Shilpa Shetty Kundra, and Vivek Anand Oberoi. Prime Video India Presents A Rohit Shetty Picturez Production "Indian Police Force" Directed by Rohit Shetty and Sushwanth Prakash Produced by Rohit Shetty Official Release Date January 19, 2024, on @PrimeVideoIN ♪Full Song Available on♪ JioSaavn: https://bit.ly/3RMEfFb Spotify: https://bit.ly/3Nu00ac Hungama: https://bit.ly/3ttYOwx Apple Music: https://bit.ly/3ttYLAR Amazon Prime Music: https://bit.ly/46X9S2V Wynk: https://bit.ly/473lulh YouTube Music: https://bit.ly/41tWQsD Credits: Song: Indian Police Force (Title Track) Music Composer : Lijo George-Dj Chetas Vocals: Lijo George Song produced by Lijo George Live Guitars Electric & Acoustic by Arbaz Khan Mix and Master by Shadab Rayeen @ New Edge Assistant engineers - Pukhraj, Anup, Ehsan & Siddhant Music Label - T-Series Download Song Beat: https://bit.ly/3Cjh24R ___________________________________ Enjoy & stay connected with us! 👉 Subscribe to T-Series: https://youtube.com/tseries 👉 Like us on Facebook: https://www.facebook.com/tseriesmusic 👉 Follow us on X: https://twitter.com/tseries 👉 Follow us on Instagram: https://instagram.com/tseries.official
https://wn.com/Indian_Police_Force_(Title_Track)_Rohit_Shetty_|_Sidharth_Malhotra,_Shilpa_Shetty,_Vivek_Oberoi
Indian Police Force - Rohit Shetty | Sidharth Malhotra | New Series Announcement |Amazon Prime Video
2:03

Indian Police Force - Rohit Shetty | Sidharth Malhotra | New Series Announcement |Amazon Prime Video

  • Order:
  • Duration: 2:03
  • Uploaded Date: 20 Apr 2022
  • views: 44534737
Prime Video Joins Forces with Rohit Shetty Picturez for its Most Ambitious, Action-Packed Series Titled Indian Police Force. The eight-part high-octane action series marks the digital debut of one of India’s most exciting and accomplished filmmakers - Rohit Shetty, known for his big ticket mass entertainers. The series will present Sidharth Malhotra in a never-before-seen avatar of a cop hero. Currently under production, the Amazon Original series aims to become the beacon of high-quality Indian entertainment globally, with a simultaneous launch in more than 240 countries and territories. Created by Rohit Shetty Music by Rohit Shetty's Cop Universe For more such videos, subscribe to our YouTube channel ► https://amzn.to/Subscribe Don't forget to push the Bell 🔔 icon to never miss an update. For more updates, stay connected with us on ► Facebook: https://www.facebook.com/PrimeVideoIN/ ► Twitter: https://twitter.com/PrimeVideoIN ► Instagram: https://www.instagram.com/primevideoin ► Watch Now: https://primevideo.com About Amazon Prime Video Prime Video is a premium streaming service that offers Prime members a collection of award-winning Amazon Original series, thousands of movies and TV shows—all with the ease of finding what they love to watch in one place. Find out more at PrimeVideo.com. Included with Prime Video: Thousands of acclaimed TV shows and movies across languages and geographies, including Indian films such as Jai Bhim, Shershaah, Toofaan, Sardar Udham, Coolie No. 1, Gulabo Sitabo, Shakuntala Devi, Sherni, Durgamati, Chhalaang, Hello Charlie, Cold Case, Narappa, Sara’s, Sarpatta Parambarai, Kuruthi and Tuck Jagadish, along with Indian-produced Amazon Original series like Mumbai Diaries 26/11, The Last Hour, Paatal Lok, Bandish Bandits, Breathe, Comicstaan Semma Comedy Pa, The Family Man, Mirzapur, Inside Edge and Made In Heaven. Also included are popular global Amazon Originals like The Tomorrow War, Coming 2 America, Cinderella, Borat Subsequent Moviefilm, Without Remorse, The Wheel of Time, American Gods, One Night in Miami, Tom Clancy's Jack Ryan, The Boys, Hunters, Cruel Summer, Fleabag, The Marvelous Mrs. Maisel and many more, available for unlimited streaming as part of a Prime membership. Prime Video includes content across Hindi, Marathi, Gujarati, Tamil, Telugu, Kannada, Malayalam, Punjabi and Bengali. Instant Access: Prime Members can watch anywhere, anytime on the Prime Video app for smart TVs, mobile devices, Fire TV, Fire TV stick, Fire tablets, Apple TV and multiple gaming devices. Prime Video is also available to consumers through Airtel and Vodafone pre-paid and post-paid subscription plans. In the Prime Video app, Prime members can download episodes on their mobile devices and tablets and watch anywhere offline at no additional cost. Enhanced experiences Make the most of every viewing with 4K Ultra HD- and High Dynamic Range (HDR)-compatible content. Go behind the scenes of your favourite movies and TV shows with exclusive X-Ray access, powered by IMDb. Save it for later with select mobile downloads for offline viewing. Included with Prime Prime Video is available in India at no extra cost with Prime membership for just ₹1499 annually or ₹179 monthly. New customers can find out more at www.amazon.in/prime and subscribe to a free 30-day trial. #IndianPoliceForceOnPrime #AmazonOriginalSeries #AmazonPrimeVideo
https://wn.com/Indian_Police_Force_Rohit_Shetty_|_Sidharth_Malhotra_|_New_Series_Announcement_|Amazon_Prime_Video
Indian Police Force Season 1 - Official Trailer | Prime Video India
3:02

Indian Police Force Season 1 - Official Trailer | Prime Video India

  • Order:
  • Duration: 3:02
  • Uploaded Date: 05 Jan 2024
  • views: 54193850
Prime Video India Presents Indian Police Force Season 1 - Official Trailer Starring Sidharth Malhotra, Shilpa Shetty Kundra, Vivek Anand Oberoi, Mukesh Rishi, Shweta Ashok Tiwari, Mrinal Ruchir Kulkarni, Nikitin Dheer, Mayyank Taandon, Vaidehi Parashurami, Sharad Kelkar, Ritu Raj Singh, Isha Talwar. Directed by Rohit Shetty, Sushwanth Prakash Produced by Rohit Shetty Written by Rohit Shetty, Sandeep Saket, Anusha Nandkumar, Ayush Trivedi, Vidhi Ghodgaonkar, Sanchit Bedre Created by Rohit Shetty Official Release Date January 19, 2024 on Prime Video India. About: Indian Police Force, a seven-part action-packed series created by Rohit Shetty, and directed by Rohit Shetty and Sushwanth Prakash is a homage to the relentless commitment of Indian police officers. Promising to redefine the contours of action as a genre in the streaming space, the series will mark Shetty’s digital directorial debut in a spectacle that is headlined by Siddharth Malhotra in a refreshing cop avatar as lead along with Shilpa Shetty Kundra, Vivek Oberoi, Shweta Tiwari, Nikitin Dheer, Rituraj Singh, Mukesh Rishi, Lalit Parimoo in pivotal roles. The series proudly pays an ode to the selfless service, unconditional commitment and fierce patriotism of the Indian police officers across the country who put everything on the line in their call of duty to keep us safe. About Prime Video: Prime Video is a premium streaming service that offers Prime members a collection of award-winning Amazon Original series, thousands of movies & TV shows—all with the ease of finding what they love to watch in one place. Prime Video is just one of the many benefits of a Prime membership, available for just ₹1499/ year. Included with Prime Video: Thousands of acclaimed TV shows & movies across languages & geographies, including Indian films such as Shershaah, Soorarai Pottru, Sardar Udham, Gehraiyaan, Jai Bhim, Jalsa, Shakuntala Devi, Sherni, Narappa, Sarpatta Parambarai, Kuruthi, Joji, Malik, and HOME, along with Indian-produced Amazon Original series like Farzi, Jubilee, Dahaad, The Family Man, Mirzapur, Made in Heaven, Four More Shots Please!, Mumbai Diaries 26/11, Suzhal – The Vortex, Modern Love, Paatal Lok, Bandish Bandits, Guilty Minds, Cinema Marte Dum Tak, and Amazon Original movies like Maja Ma & Ammu. Also included are popular global Amazon Originals like Citadel, The Lord of The Rings: The Rings of Power, Reacher, Tom Clancy's Jack Ryan, The Boys, Hunters, Fleabag, The Marvelous Mrs. Maisel, & many more, available for unlimited streaming as part of a Prime membership. Prime Video includes content across Hindi, Marathi, Gujarati, Tamil, Telugu, Kannada, Malayalam, Punjabi, & Bengali. Prime Video Mobile Edition: Consumers can also enjoy Prime Video’s exclusive content library with Prime Video Mobile Edition at ₹599 per year. This single-user, mobile-only annual video plan offers everyone access to high-quality entertainment exclusively on their mobile devices. Users can sign-up for this plan via the Prime Video app (on Android) or website. Instant Access: Prime Members can watch anywhere, anytime on the Prime Video app for smart TVs, mobile devices, Fire TV, Fire TV stick, Fire tablets, Apple TV, & multiple gaming devices. Prime Video is also available to consumers through Airtel and Vodafone pre-paid & post-paid subscription plans. In the Prime Video app, Prime members can download episodes on their mobile devices & tablets & watch anywhere offline at no additional cost. Enhanced experiences: Make the most of every viewing with 4K Ultra HD- & High Dynamic Range (HDR)-compatible content. Go behind the scenes of your favourite movies & TV shows with exclusive X-Ray access, powered by IMDb. Save it for later with select mobile downloads for offline viewing. Video Entertainment Marketplace: In addition to a Prime Video subscription, customers can also purchase add-on subscriptions to other streaming services, as well as, get rental access to movies on Prime Video. Prime Video Channels: Prime Video Channels offers friction-free & convenient access to a wide range of premium content from multiple video streaming services all available at a single destination – Prime Video website & apps. Prime Members can buy add-on subscriptions & enjoy a hassle-free entertainment experience, simplified discovery, frictionless payments, & more. Rent: Consumers can enjoy even more movies from new releases to classic favourites, available to rent – no Prime membership required. View titles available by visiting primevideo.com/store. The rental destination can be accessed via the STORE tab on primevideo.com & the Prime Video app on Android smart phones, smart-TVs, connected STBs, & Fire TV stick. #IndianPoliceForce #rohitshetty #primevideoindia
https://wn.com/Indian_Police_Force_Season_1_Official_Trailer_|_Prime_Video_India
Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S
0:44

Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S

  • Order:
  • Duration: 0:44
  • Uploaded Date: 03 Nov 2023
  • views: 116834509
Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S #urfijaved #boldclothes #englishnews #custody #police #urfi #trending #shorts n18oc_shorts
https://wn.com/Urfi_Javed_Arrested_For_Her_Bold_Clothes_Police_Officials_Take_Her_Into_Custody_Watch_Video_|_N18S
Police, Protesters Clash in India
0:45

Police, Protesters Clash in India

  • Order:
  • Duration: 0:45
  • Uploaded Date: 09 Jan 2020
  • views: 3190433
A student protest in New Delhi, India turned violent, Thursday, January 9, after police, wielding batons, charged at demonstrators trying to march towards the president’s residence. Police detained several students and activists who had gathered to protest an attack at Jawaharlal Nehru University residence hall, Sunday. Eyewitnesses claimed police had been beating protesters with batons and smashing phones of people filming the violence. The protests come in reaction to a new citizenship law that critics argue is anti-Muslim. So far, at least two dozen people have been killed in the protests. (AP)
https://wn.com/Police,_Protesters_Clash_In_India
Why we hate Police [ Hindi ] | By Nitish Rajput
9:29

Why we hate Police [ Hindi ] | By Nitish Rajput

  • Order:
  • Duration: 9:29
  • Uploaded Date: 12 Nov 2020
  • views: 1288038
IndianPolice is often associated with corruption, dominance, and incompetence. Police department does not enjoy a good public image in general. Let’s discuss the overlooked aspects of Indianpolicesystem. We’ll try to look into the work culture of IndianPolice and lifeofanIndianpoliceman. How did the Policesystem come into existence? How Politicalinterference creates hindrance in a smooth-running system. How the Policepower is misused to personal advantage. Let's discuss this. Website: https://www.nitishrajput.com Instagram: https://www.instagram.com/nitishrajpute/ youtube: https://www.youtube.com/nitishrajput Twitter: https://twitter.com/nitishrajpute ------------------------------ ------------------------------ Gadgets I use: Camera: Canon EOS Link: https://amzn.to/44kihMS Printer: HP Link: https://amzn.to/3JTXUib Camera stands: Jaerb and Innorel https://amzn.to/46pQkVS https://amzn.to/46ok1GT Mouse: Lenovo: https://amzn.to/3XotDNE Apple: https://amzn.to/3NM95eO Lights: Godox Link: https://amzn.to/3NKV1m2 Laptops: HP: https://amzn.to/46oCLpW Macbook: https://amzn.to/42SZQOo iPad: https://amzn.to/46qG93l CPU: https://amzn.to/3CKg95u Softlight: https://amzn.to/3NuaQfg Phone: https://amzn.to/3r1ti7I
https://wn.com/Why_We_Hate_Police_Hindi_|_By_Nitish_Rajput
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Indian police use violence against coronavirus lockdown offenders
    0:58
    Indian police use violence against coronavirus lockdown offendersremove from playlist
  • Indian Police Force (Title Track): Rohit Shetty | Sidharth Malhotra, Shilpa Shetty, Vivek Oberoi
    1:30
    Indian Police Force (Title Track): Rohit Shetty | Sidharth Malhotra, Shilpa Shetty, Vivek Oberoiremove from playlist
  • Indian Police Force - Rohit Shetty | Sidharth Malhotra | New Series Announcement |Amazon Prime Video
    2:03
    Indian Police Force - Rohit Shetty | Sidharth Malhotra | New Series Announcement |Amazon Prime Videoremove from playlist
  • Indian Police Force Season 1 - Official Trailer | Prime Video India
    3:02
    Indian Police Force Season 1 - Official Trailer | Prime Video Indiaremove from playlist
  • Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S
    0:44
    Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18Sremove from playlist
  • Police, Protesters Clash in India
    0:45
    Police, Protesters Clash in Indiaremove from playlist
  • Why we hate Police [ Hindi ] | By Nitish Rajput
    9:29
    Why we hate Police [ Hindi ] | By Nitish Rajputremove from playlist
PLAYLIST TIME: 0:00 / 19:41

Indian police use violence against coronavirus lockdown offenders

Baton-wielding police in India have been filmed beating people breaking the coronavirus lockdown rules and making some offenders do physical punishments. -------------------- SUBSCRIBE ➤ http://bit.ly/FollowST -------------------- WEBSITE ➤ http://www.straitstimes.com TWITTER ➤ https://www.twitter.com/STcom FACEBOOK ➤ https://www.facebook.com/TheStraitsTimes INSTAGRAM ➤ https://www.instagram.com/straits_times PODCASTS ➤ https://omny.fm/shows/st-bt/playlists The Straits Times, the English flagship daily of SPH, has been serving readers for more than a century. Launched on July 15, 1845, its comprehensive coverage of world news, East Asian news, Southeast Asian news, home news, sports news, financial news and lifestyle updates makes The Straits Times the most-read newspaper in Singapore. Video: Reuters
0:58
Indian police use violence against coronavirus lockdown offenders
Baton-wielding police in India have been filmed beating people breaking the coronavirus lo...
published: 26 Mar 2020
Play in Full Screen
0:47
Indian police forces and canine units were deployed to provide security at the #Olympics #Paris2024
published: 27 Jul 2024
Play in Full Screen
0:23
This Kerala policeman’s bravery went viral on the internet as he subdued a man wielding a machete
published: 20 Jun 2022
Play in Full Screen
1:30
Indian Police Force (Title Track): Rohit Shetty | Sidharth Malhotra, Shilpa Shetty, Vivek Oberoi
Be Ready To Witness The India's Biggest Action Series. Presenting "Indian Police Force (Ti...
published: 13 Jan 2024
Play in Full Screen
2:03
Indian Police Force - Rohit Shetty | Sidharth Malhotra | New Series Announcement |Amazon Prime Video
Prime Video Joins Forces with Rohit Shetty Picturez for its Most Ambitious, Action-Packed ...
published: 20 Apr 2022
Play in Full Screen
3:02
Indian Police Force Season 1 - Official Trailer | Prime Video India
Prime Video India Presents Indian Police Force Season 1 - Official Trailer Starring Sidhar...
published: 05 Jan 2024
Play in Full Screen
0:44
Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Video | N18S
Urfi Javed ARRESTED For Her Bold Clothes? Police Officials Take Her Into Custody; Watch Vi...
published: 03 Nov 2023
Play in Full Screen
0:45
Police, Protesters Clash in India
A student protest in New Delhi, India turned violent, Thursday, January 9, after police, w...
published: 09 Jan 2020
Play in Full Screen
9:29
Why we hate Police [ Hindi ] | By Nitish Rajput
IndianPolice is often associated with corruption, dominance, and incompetence. Police depa...
published: 12 Nov 2020
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: indian police

Edit

Indian and Pakistan soldiers swap intense artillery fire

Taipei Times 09 May 2025
Two people were killed and four others injured in Uri and Poonch sectors, police said, taking the civilian death toll in Indian-controled Kashmir to 18 since Wednesday ... Pakistan said it shot down five Indian fighter jets.
Edit

Nagpur police arrests Kerala journalist for criticising Operation Sindoor

Madhyamam 09 May 2025
In their remand application, the police argued that his custody was necessary ... According to police, the post included the phrase “Indian Army Murdabad” and featured a photo of a child with the caption.
Edit

STF nabs man accused of duping youths on pretext of Army jobs

Hindustan Times 09 May 2025
During interrogation, Ravikant told police that he had previously served in the Indian Army as a soldier after completing high school in 2018 ... During interrogation, Ravikant told police that he had ...
Edit

Media portrays teacher killed in Kashmir as terrorist, police refute

The Siasat Daily 09 May 2025
However, police clarified that the victim identified as Qari Mohammad Iqbal was a teacher ... The channel further claimed that the victim was among 50 terrorists who were present in the present at the Kotli camp targeted by Indian missiles.
Edit

Karnataka: Medical student booked for 'pro-Pakistan' post on social media

International Business Times 09 May 2025
Police said they traced the accused's presence to Mumbai and would initiate legal proceedings against her ... The police said that after the FIR was filed, the accused issued an apology to the Indian public, expressing regret for her actions.
Edit

Star Health hacker says they sent death threats, bullets to India executives

Hindustan Times 09 May 2025
The New Indian Express on Saturday reported that police in Tamil Nadu were investigating the threats and had linked them to xenZen ... Three Indian police sources confirmed an investigation was underway.
Edit

Karnataka: FIR filed for calling Pahalgam terror attack a ‘pre-planned act’ by Centre

The Siasat Daily 09 May 2025
According to police, the FIR has been registered against Muneer Khan Qureshi, a resident of Kumbarpet in Kolar ... The police said that after the FIR was filed, the accused issued an apology to the Indian public, expressing regret for her actions.
Edit

India says repulsed fresh Pakistan attacks as death toll climbs

Potter Leader-Enterprise 09 May 2025
In Indian-administered Kashmir, a police official said one woman died after heavy overnight shelling in Uri, some 100 kilometres (60 miles) from the state capital Srinagar, and two men were wounded.
Edit

23 Bangladeshis held for illegally staying in India

Deccan Herald 09 May 2025
... police also arrested an Indian tout for trying to facilitate their return to the neighbouring country illegally.</p>.<p> .
Edit

Indian ‘kamikaze drones’ intercepted

Dawn 09 May 2025
Moreover, as per police, one person each was slain in Attock and Rawalpindi ... In Gujrat, parts of an Indian drone were found in Peer Jhand village in the jurisdiction of the Dinga police station.
Edit

Indian and Pakistan troops swap intense artillery fire

Chicago Tribune 09 May 2025
Two people were killed and four others injured in Uri and Poonch sectors, police said, taking the civilian death toll in Indian-controlled Kashmir to 18 since Wednesday ... Pakistan said it shot down five Indian fighter jets.
Edit

Pakistan says India has brought neighbours 'closer to conflict'

The New Arab 09 May 2025
"In response, the Pakistan Army carried out a strong counterattack, targeting three Indian posts," police official Adeel Khan, told AFP from Kotli district, where four of the deaths occurred.
Edit

Indian and Pakistani troops swap intense artillery fire

The Los Angeles Times 09 May 2025
Two people were killed and four others injured in Uri and Poonch sectors, police said, taking the civilian death toll in Indian-controlled Kashmir to 18 since Wednesday ... Pakistan said it shot down five Indian fighter jets.
Edit

Indian and Pakistan troops swap intense artillery fire overnight

Chatanooga Times Free Press 09 May 2025
In Pakistan, an unusually intense night of artillery exchanges left at least four civilians dead and wounded 12 others in areas near the Line of Control that divides Kashmir, local police official Adeel Ahmad said.
Edit

Blackouts, sirens & Pakistan's failed drone attacks: 10 things that happened in the last 36 hours

The Times of India 09 May 2025
Following this, teams from the local police and the Indian Air Force arrived at the scene, they said.The area has been cordoned off as a precautionary measure and further investigation is underway.The ...
×