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

Valley Brook, Oklahoma

Valley Brook is a town in Oklahoma County, Oklahoma, United States and is part of the Oklahoma City Metropolitan Area. The population was 817 at the 2000 census. The town is well known for its large number of adult entertainment businesses and corrupt police department.

Geography

Valley Brook is located at 35°24′13″N 97°28′55″W / 35.40361°N 97.48194°W / 35.40361; -97.48194 (35.403662, -97.482063).

According to the United States Census Bureau, the town has a total area of 0.3 square miles (0.78 km2), all of it land.

Demographics

As of the census of 2000, there were 817 people, 298 households, and 204 families residing in the town. The population density was 3,037.6 people per square mile (1,168.3/km²). There were 337 housing units at an average density of 1,253.0 per square mile (481.9/km²). The racial makeup of the town was 77.48% White, 4.41% African American, 7.83% Native American, 0.37% Asian, 1.96% from other races, and 7.96% from two or more races. Hispanic or Latino of any race were 8.20% of the population.

Police brutality

Police brutality is the deliberate use of excessive force, usually physical, carried out during law enforcement activities with the population. This type of behavior also includes verbal attacks and psychological intimidation by a police officer.

Widespread police brutality exists in many countries, even those that prosecute it. It is one of several forms of police misconduct, which include: false arrest; intimidation; racial profiling; political repression; surveillance abuse; sexual abuse; and police corruption. Although illegal, it can be performed under the color of law.

History

The word "brutality" has several meanings; the sense used here (savage cruelty) was first used in 1633. The term "police brutality" was in use in the American press as early as 1872, when the Chicago Tribune reported on the beating of a civilian under arrest at the Harrison Street Police Station.

The origin of 'modern' policing based on the authority of the nation state is commonly traced back to developments in seventeenth and 18th century France, with modern police departments being established in most nations by the nineteenth and early twentieth centuries. Cases of police brutality appear to have been frequent then, with "the routine bludgeoning of citizens by patrolmen armed with nightsticks or blackjacks." Large-scale incidents of brutality were associated with labor strikes, such as the Great Railroad Strike of 1877, the Pullman Strike of 1894, the Lawrence textile strike of 1912, the Ludlow massacre of 1914, the Steel strike of 1919, and the Hanapepe massacre of 1924.

Excessive Force

Excessive Force is a musical side project started in 1991 by Sascha Konietzko of KMFDM and Buzz McCoy of My Life With the Thrill Kill Kult.

History

In 1991, Excessive Force released the single "Conquer Your House", followed by the album Conquer Your World. After this release, McCoy had no more involvement in Excessive Force, which went on to become exclusively a KMFDM side project. In 1993, Excessive Force released the single "Blitzkrieg" followed by the album Gentle Death. The band is also credited with remixes of the KMFDM songs "Light" and "Megalomaniac".

Konietzko initially dismissed the possibility of reforming Excessive Force referring to it as "a one off that turned into a two off." He also noted that there is a Canadian white supremacist band that uses the same name. However, in a recent radio interview he has discussed the possibility of collaborating with Andy LaPlegua of Combichrist, Panzer AG, and Icon of Coil on a new Excessive Force album.

On November 6, 2007, KMFDM Records re-released the entire Excessive Force back catalog.

Excessive Force (film)

Excessive Force is a 1993 American action film, starring and written by Thomas Ian Griffith. It co-stars Burt Young and is directed by Jon Hess.

Plot

Terry (Thomas Ian Griffith) and his two partners from the Chicago special investigation police squad are engaged in war against Chicago's mafia boss, DiMarco (Burt Young). Despite many attempts to jail him, he always manages somehow to walk free. Not discouraged by that, police prepares another action to raise some evidence against DiMarco, this time it's a controlled sale of drugs for $3 million. After the exchange of the money for the narcotics police wants to arrest gangsters involved in the business, unfortunately this won't come without a shootout, during one of them manages to escape (only to be killed later by DiMarco himself, for losing the mafia's money). The other gangster which was wounded during the shooting is making confessions in the hospital (forced by Terry), those are though worthless in the eyes of the judge, who rules that the interrogation was held with use of 'excessive force' and as that was illegal. DiMarco is once again free, furthermore now he wants vengeance on the police who, as he thinks stole his money. Terry's co-cops are being killed one by one and soon he finds himself in peril, especially after he learns that DiMarco's suspicions are not so quite abstract.

Podcasts:

  • Bodycam video in lawsuit shows alleged assault by police officers during pandemic

    Dramatic police body camera video shows an alleged assault by Honolulu police officers during a confrontation over the mask mandate. For more Local News from Hawaii News Now: https:/www.hawaiinewsnow.com For more YouTube Content: https://www.youtube.com/channel/UCBnLE14tUHTDyDc8Xij9rAg

    published: 18 Feb 2025
  • Federally Wanted DEA Suspect Meets Karma

    This video is sponsored by SafetyVid.org which uses a network of 10,000 cameras to automatically capture video of highway crashes. Yes, you can get video of YOUR crash today at SafetyVid.org. Please consider JOINING for $1 a month. It *really* helps us do original reporting like this. CONTACT US: Complaints? Video submissions? Sponsorships? Collabs? Business inquires? Email our board at mn.safety.alerts@gmail.com. BE NICE: The individuals presented in these videos may be suffering from the effects of alcohol, drug abuse, a mental health disorder or simply having a bad day. The videos should NOT be presumed to be representative of their general behavior. Everyone deserves to be treated with respect. MIDWEST SAFETY: Promoting transparency in government for the safety of the public.

    published: 15 Feb 2025
  • Lawrence Walmart fight with police | Edited body camera video | Feb. 18, 2025

    On Feb. 18, 2025, Lawrence, Indiana police confronted a man outside a Walmart. A fight ensued, and a video taken by a witness went viral. This is body camera video from the responding officers and their vehicles, edited to provided a variety of views of the fight. The man was released from jail and has not been charged with a crime. MORE: https://www.wthr.com/article/news/crime/lawrence-police-release-bodycam-video-viral-arrest/531-14afc4d3-b70d-4ee3-818b-3962394930d4

    published: 20 Feb 2025
  • ‘We won’t rest’ | Family seeks justice after alleged police beating in Hammond

    Chief of Police Edwin Bergeron Jr. said the accusations are false.

    published: 19 Feb 2025
  • Police brutality lawsuit filed against American Fork officers

    Nearly two years after an incident leading to his arrest in American Fork, a man has filed a federal lawsuit against the police officers who arrested him, as well as the police department itself. FULL STORY - https://www.fox13now.com/news/local-news/man-files-police-brutality-lawsuit-against-american-fork-officers More Utah news: https://www.fox13now.com/ Subscribe: youtube.com/user/fox13newsutah Like Fox 13 News on Facebook: https://bit.ly/3ydzNlD Follow on Twitter: https://bit.ly/3kraqI8 Follow on Instagram: https://bit.ly/2XQc4eJ Subscribe to Fox 13 Newsletters to receive breaking news, weather, and daily headlines from around Utah right in your inbox: https://bit.ly/3B9heku

    published: 02 Mar 2022
  • Footage of East Cleveland police brutality (graphic content and language)

    (Warning: graphic violence) The Cuyahoga County Prosecutor's Office released a video detailing incidents involving 11 current and former East Cleveland police officers who were charged with unlawful conduct while on duty. The video has been edited for brevity. It includes graphic body camera footage and audio recordings. The full video can be found here: https://youtu.be/VYyXoWBDPVE

    published: 08 Mar 2023
  • Violent arrest caught on camera, officers accused of police brutality

    Police officers in San Bernardino are facing accusations of police brutality after a violent arrest was caught on camera in a grocery store, Subscribe to FOX 11 on YouTube: https://www.youtube.com/channel/UCHfF8wFnipMeDpJf8OmMxDg Watch more FOX 11 on YouTube: Police Chases: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G-ozh3Gr_VH_pCAVzipyjb Brazen Crime: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G5JxCcXBOLn1TvLLK2AYSv Homeless Crisis: https://www.youtube.com/playlist?list=PLzQIUTzrLS1FxqzL9-ydLX3UjdJyP2S5F

    published: 04 Jan 2025
  • Queensland police officers rushed to hospital after violent brawl | 9 News Australia

    Shocking footage has captured a wild brawl involving several Queensland police officers, who were attempting to make an arrest when chaos erupted. | *Subscribe and 🔔: http://9Soci.al/KM6e50GjSK9* *Get more breaking news at 9News.com.au: http://9Soci.al/iyCO50GjSK6* FOLLOW 9News Australia ► Facebook: https://www.facebook.com/9News/ ► Twitter: https://twitter.com/9NewsAUS ► Instagram: https://www.instagram.com/9news/ Join 9News for the latest in news and events that affect you in your local city, as well as news from across Australia and the world. #9News #BreakingNews #NineNewsAustralia #9NewsAUS

    published: 14 Feb 2025
  • BODY CAM: Police respond after employee at Chevrolet dealership fired shots inside the building

    A man faces charges after he allegedly fired shots inside a Colerain Township Chevrolet dealership. Police said the man was an employee,

    published: 31 Jan 2025
  • Malcolm X’s Fiery Speech Addressing Police Brutality

    In 1962, a confrontation with the LAPD outside a mosque resulted in the death of a Nation of Islam member. It was an event seized on by an outraged Malcolm X, who would condemn it in an impassioned speech. From the Series: The Lost Tapes: Malcolm X http://bit.ly/2Dun05T

    published: 16 Feb 2018
Bodycam video in lawsuit shows alleged assault by police officers during pandemic
3:18

Bodycam video in lawsuit shows alleged assault by police officers during pandemic

  • Order:
  • Duration: 3:18
  • Uploaded Date: 18 Feb 2025
  • views: 9135
Dramatic police body camera video shows an alleged assault by Honolulu police officers during a confrontation over the mask mandate. For more Local News from Hawaii News Now: https:/www.hawaiinewsnow.com For more YouTube Content: https://www.youtube.com/channel/UCBnLE14tUHTDyDc8Xij9rAg
https://wn.com/Bodycam_Video_In_Lawsuit_Shows_Alleged_Assault_By_Police_Officers_During_Pandemic
Federally Wanted DEA Suspect Meets Karma
13:10

Federally Wanted DEA Suspect Meets Karma

  • Order:
  • Duration: 13:10
  • Uploaded Date: 15 Feb 2025
  • views: 807084
This video is sponsored by SafetyVid.org which uses a network of 10,000 cameras to automatically capture video of highway crashes. Yes, you can get video of YOUR crash today at SafetyVid.org. Please consider JOINING for $1 a month. It *really* helps us do original reporting like this. CONTACT US: Complaints? Video submissions? Sponsorships? Collabs? Business inquires? Email our board at mn.safety.alerts@gmail.com. BE NICE: The individuals presented in these videos may be suffering from the effects of alcohol, drug abuse, a mental health disorder or simply having a bad day. The videos should NOT be presumed to be representative of their general behavior. Everyone deserves to be treated with respect. MIDWEST SAFETY: Promoting transparency in government for the safety of the public.
https://wn.com/Federally_Wanted_Dea_Suspect_Meets_Karma
Lawrence Walmart fight with police | Edited body camera video | Feb. 18, 2025
1:11

Lawrence Walmart fight with police | Edited body camera video | Feb. 18, 2025

  • Order:
  • Duration: 1:11
  • Uploaded Date: 20 Feb 2025
  • views: 2814
On Feb. 18, 2025, Lawrence, Indiana police confronted a man outside a Walmart. A fight ensued, and a video taken by a witness went viral. This is body camera video from the responding officers and their vehicles, edited to provided a variety of views of the fight. The man was released from jail and has not been charged with a crime. MORE: https://www.wthr.com/article/news/crime/lawrence-police-release-bodycam-video-viral-arrest/531-14afc4d3-b70d-4ee3-818b-3962394930d4
https://wn.com/Lawrence_Walmart_Fight_With_Police_|_Edited_Body_Camera_Video_|_Feb._18,_2025
‘We won’t rest’ | Family seeks justice after alleged police beating in Hammond
2:24

‘We won’t rest’ | Family seeks justice after alleged police beating in Hammond

  • Order:
  • Duration: 2:24
  • Uploaded Date: 19 Feb 2025
  • views: 2290
Chief of Police Edwin Bergeron Jr. said the accusations are false.
https://wn.com/‘We_Won’T_Rest’_|_Family_Seeks_Justice_After_Alleged_Police_Beating_In_Hammond
Police brutality lawsuit filed against American Fork officers
2:48

Police brutality lawsuit filed against American Fork officers

  • Order:
  • Duration: 2:48
  • Uploaded Date: 02 Mar 2022
  • views: 863844
Nearly two years after an incident leading to his arrest in American Fork, a man has filed a federal lawsuit against the police officers who arrested him, as well as the police department itself. FULL STORY - https://www.fox13now.com/news/local-news/man-files-police-brutality-lawsuit-against-american-fork-officers More Utah news: https://www.fox13now.com/ Subscribe: youtube.com/user/fox13newsutah Like Fox 13 News on Facebook: https://bit.ly/3ydzNlD Follow on Twitter: https://bit.ly/3kraqI8 Follow on Instagram: https://bit.ly/2XQc4eJ Subscribe to Fox 13 Newsletters to receive breaking news, weather, and daily headlines from around Utah right in your inbox: https://bit.ly/3B9heku
https://wn.com/Police_Brutality_Lawsuit_Filed_Against_American_Fork_Officers
Footage of East Cleveland police brutality (graphic content and language)
7:51

Footage of East Cleveland police brutality (graphic content and language)

  • Order:
  • Duration: 7:51
  • Uploaded Date: 08 Mar 2023
  • views: 1461805
(Warning: graphic violence) The Cuyahoga County Prosecutor's Office released a video detailing incidents involving 11 current and former East Cleveland police officers who were charged with unlawful conduct while on duty. The video has been edited for brevity. It includes graphic body camera footage and audio recordings. The full video can be found here: https://youtu.be/VYyXoWBDPVE
https://wn.com/Footage_Of_East_Cleveland_Police_Brutality_(Graphic_Content_And_Language)
Violent arrest caught on camera, officers accused of police brutality
2:22

Violent arrest caught on camera, officers accused of police brutality

  • Order:
  • Duration: 2:22
  • Uploaded Date: 04 Jan 2025
  • views: 32760
Police officers in San Bernardino are facing accusations of police brutality after a violent arrest was caught on camera in a grocery store, Subscribe to FOX 11 on YouTube: https://www.youtube.com/channel/UCHfF8wFnipMeDpJf8OmMxDg Watch more FOX 11 on YouTube: Police Chases: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G-ozh3Gr_VH_pCAVzipyjb Brazen Crime: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G5JxCcXBOLn1TvLLK2AYSv Homeless Crisis: https://www.youtube.com/playlist?list=PLzQIUTzrLS1FxqzL9-ydLX3UjdJyP2S5F
https://wn.com/Violent_Arrest_Caught_On_Camera,_Officers_Accused_Of_Police_Brutality
Queensland police officers rushed to hospital after violent brawl | 9 News Australia
2:28

Queensland police officers rushed to hospital after violent brawl | 9 News Australia

  • Order:
  • Duration: 2:28
  • Uploaded Date: 14 Feb 2025
  • views: 68849
Shocking footage has captured a wild brawl involving several Queensland police officers, who were attempting to make an arrest when chaos erupted. | *Subscribe and 🔔: http://9Soci.al/KM6e50GjSK9* *Get more breaking news at 9News.com.au: http://9Soci.al/iyCO50GjSK6* FOLLOW 9News Australia ► Facebook: https://www.facebook.com/9News/ ► Twitter: https://twitter.com/9NewsAUS ► Instagram: https://www.instagram.com/9news/ Join 9News for the latest in news and events that affect you in your local city, as well as news from across Australia and the world. #9News #BreakingNews #NineNewsAustralia #9NewsAUS
https://wn.com/Queensland_Police_Officers_Rushed_To_Hospital_After_Violent_Brawl_|_9_News_Australia
BODY CAM: Police respond after employee at Chevrolet dealership fired shots inside the building
1:58

BODY CAM: Police respond after employee at Chevrolet dealership fired shots inside the building

  • Order:
  • Duration: 1:58
  • Uploaded Date: 31 Jan 2025
  • views: 10270
A man faces charges after he allegedly fired shots inside a Colerain Township Chevrolet dealership. Police said the man was an employee,
https://wn.com/Body_Cam_Police_Respond_After_Employee_At_Chevrolet_Dealership_Fired_Shots_Inside_The_Building
Malcolm X’s Fiery Speech Addressing Police Brutality
2:49

Malcolm X’s Fiery Speech Addressing Police Brutality

  • Order:
  • Duration: 2:49
  • Uploaded Date: 16 Feb 2018
  • views: 3843665
In 1962, a confrontation with the LAPD outside a mosque resulted in the death of a Nation of Islam member. It was an event seized on by an outraged Malcolm X, who would condemn it in an impassioned speech. From the Series: The Lost Tapes: Malcolm X http://bit.ly/2Dun05T
https://wn.com/Malcolm_X’S_Fiery_Speech_Addressing_Police_Brutality
  • Corrections deputy fired for using excessive force; breaking inmate's nose, teeth

    A Manatee County corrections deputy was fired after using excessive force on an inmate.

    published: 17 Jul 2017
  • Former FL corrections deputy who was fired for excessive force on inmate now charged with battery

    A Manatee County Sheriff's Office Corrections Deputy who was fired after a video showed him kicking an inmate multiple times is now facing charges.

    published: 26 Jun 2019
  • Video released of 'excessive use of force' by fired Texas police officer

    Sgt. Cole Thompson was fired and eventually indicted for an incident involving an "excessive use of force," according to police in Sanger, Texas.

    published: 13 Jul 2023
  • An excessive force epidemic?

    Susan Candiotti reports on what many perceive to be an alarming increase in the use of excessive force amongst police

    published: 24 Jul 2014
  • Graphic: Corrections officer fired for excessive force in Indiana

    » Watch More WTHR 13NEWS: Watch Live and On-Demand Videos on WTHR | Indianapolis, Indiana | wthr.com WTHR 13NEWS brings you thoughtful, essential storytelling from central Indiana and beyond. You can access our collection of compelling stories at WTHR.com and WTHR +. We deliver the best in breaking news, live video coverage, original journalism and segments from Indianapolis. Connect with WTHR 13NEWS Online: Find WTHR 13News on Facebook: WTHR-TV | Facebook Follow WTHR 13News on Twitter: WTHR.com (@WTHRcom) / Twitter #WTHR #WTHR13News #Indiana

    published: 11 Feb 2023
  • Federal appeals judges overturn lower court judge in excessive force lawsuit

    The US 9th Circuit Court of Appeals has decided a Mesa Officer, Aaron Pew, will not get qualified immunity and can be taken to trial in an excessive force case involving the 2018 prone restraint of Cole Spencer. The decision was released on Monday.

    published: 18 Sep 2024
  • Dallas police officer fired for excessive force after Deep Ellum attack

    The Dallas police chief fired an officer who was seen on video repeatedly punching a man in Deep Ellum last year. Subscribe to FOX 4: https://www.youtube.com/fox4news?sub_confirmation=1 Watch FOX 4 Live: https://www.fox4news.com/live Dallas news, weather, sports and traffic from KDFW FOX 4, serving Dallas-Fort Worth, North Texas and the state of Texas. Download the FOX 4 News app: https://fox4news.onelink.me/TXYK?pid=social&c=youtube&af_web_dp=https%3A%2F%2Fwww.fox4news.com%2Fapps Download the FOX 4 WAPP: https://www.fox4news.com/apps Follow FOX 4 on Facebook: https://www.facebook.com/Fox4DFW/ Follow FOX 4 on Twitter: https://twitter.com/FOX4 Follow FOX 4 on Instagram: https://www.instagram.com/fox4news/ Subscribe to the FOX 4 newsletter: https://www.fox4news.com/newsletters

    published: 26 Jan 2022
  • Court Cam: Judge Files Complaint Over Deputy Using Excessive Force | A&E

    When a deputy uses extreme force, the judge reacts by filing a complaint, in this scene from Season 4, Episode 15. #CourtCam Subscribe for more from Court Cam and other great A&E shows: http://aetv.us/subscribe-ae Find out more about Court Cam and watch full episodes on our site: https://www.aetv.com/shows/court-cam Check out exclusive A&E content: Website - http://www.aetv.com/ Facebook: https://www.facebook.com/AETV/ Twitter: https://twitter.com/aetv Instagram: https://www.instagram.com/aetv TikTok: https://www.tiktok.com/@aetv Tune in to Court Cam, Wednesdays at 9/8c on A&E, and stay up to date on all of A&E's premieres at http://aetv.com/schedule. From frightening outbursts to furious judges, "Court Cam" gives viewers an in-depth examination of some of the most stunning and ...

    published: 10 Jun 2022
  • Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence

    Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence For more Local News from WOIO: https://www.cleveland19.com/ For more YouTube Content: https://www.youtube.com/channel/UCZ4OZ-SF_Dtw8xlVPavaiDw

    published: 09 May 2024
  • Former Meridian police officer pleads guilty to excessive force charge

    News.

    published: 28 Jul 2021
Corrections deputy fired for using excessive force; breaking inmate's nose, teeth
0:38

Corrections deputy fired for using excessive force; breaking inmate's nose, teeth

  • Order:
  • Duration: 0:38
  • Uploaded Date: 17 Jul 2017
  • views: 41718
A Manatee County corrections deputy was fired after using excessive force on an inmate.
https://wn.com/Corrections_Deputy_Fired_For_Using_Excessive_Force_Breaking_Inmate's_Nose,_Teeth
Former FL corrections deputy who was fired for excessive force on inmate now charged with battery
0:23

Former FL corrections deputy who was fired for excessive force on inmate now charged with battery

  • Order:
  • Duration: 0:23
  • Uploaded Date: 26 Jun 2019
  • views: 6313
A Manatee County Sheriff's Office Corrections Deputy who was fired after a video showed him kicking an inmate multiple times is now facing charges.
https://wn.com/Former_Fl_Corrections_Deputy_Who_Was_Fired_For_Excessive_Force_On_Inmate_Now_Charged_With_Battery
Video released of 'excessive use of force' by fired Texas police officer
0:34

Video released of 'excessive use of force' by fired Texas police officer

  • Order:
  • Duration: 0:34
  • Uploaded Date: 13 Jul 2023
  • views: 20977
Sgt. Cole Thompson was fired and eventually indicted for an incident involving an "excessive use of force," according to police in Sanger, Texas.
https://wn.com/Video_Released_Of_'Excessive_Use_Of_Force'_By_Fired_Texas_Police_Officer
An excessive force epidemic?
4:16

An excessive force epidemic?

  • Order:
  • Duration: 4:16
  • Uploaded Date: 24 Jul 2014
  • views: 22833
Susan Candiotti reports on what many perceive to be an alarming increase in the use of excessive force amongst police
https://wn.com/An_Excessive_Force_Epidemic
Graphic: Corrections officer fired for excessive force in Indiana
3:19

Graphic: Corrections officer fired for excessive force in Indiana

  • Order:
  • Duration: 3:19
  • Uploaded Date: 11 Feb 2023
  • views: 127658
» Watch More WTHR 13NEWS: Watch Live and On-Demand Videos on WTHR | Indianapolis, Indiana | wthr.com WTHR 13NEWS brings you thoughtful, essential storytelling from central Indiana and beyond. You can access our collection of compelling stories at WTHR.com and WTHR +. We deliver the best in breaking news, live video coverage, original journalism and segments from Indianapolis. Connect with WTHR 13NEWS Online: Find WTHR 13News on Facebook: WTHR-TV | Facebook Follow WTHR 13News on Twitter: WTHR.com (@WTHRcom) / Twitter #WTHR #WTHR13News #Indiana
https://wn.com/Graphic_Corrections_Officer_Fired_For_Excessive_Force_In_Indiana
Federal appeals judges overturn lower court judge in excessive force lawsuit
2:38

Federal appeals judges overturn lower court judge in excessive force lawsuit

  • Order:
  • Duration: 2:38
  • Uploaded Date: 18 Sep 2024
  • views: 154117
The US 9th Circuit Court of Appeals has decided a Mesa Officer, Aaron Pew, will not get qualified immunity and can be taken to trial in an excessive force case involving the 2018 prone restraint of Cole Spencer. The decision was released on Monday.
https://wn.com/Federal_Appeals_Judges_Overturn_Lower_Court_Judge_In_Excessive_Force_Lawsuit
Dallas police officer fired for excessive force after Deep Ellum attack
0:28

Dallas police officer fired for excessive force after Deep Ellum attack

  • Order:
  • Duration: 0:28
  • Uploaded Date: 26 Jan 2022
  • views: 26053
The Dallas police chief fired an officer who was seen on video repeatedly punching a man in Deep Ellum last year. Subscribe to FOX 4: https://www.youtube.com/fox4news?sub_confirmation=1 Watch FOX 4 Live: https://www.fox4news.com/live Dallas news, weather, sports and traffic from KDFW FOX 4, serving Dallas-Fort Worth, North Texas and the state of Texas. Download the FOX 4 News app: https://fox4news.onelink.me/TXYK?pid=social&c=youtube&af_web_dp=https%3A%2F%2Fwww.fox4news.com%2Fapps Download the FOX 4 WAPP: https://www.fox4news.com/apps Follow FOX 4 on Facebook: https://www.facebook.com/Fox4DFW/ Follow FOX 4 on Twitter: https://twitter.com/FOX4 Follow FOX 4 on Instagram: https://www.instagram.com/fox4news/ Subscribe to the FOX 4 newsletter: https://www.fox4news.com/newsletters
https://wn.com/Dallas_Police_Officer_Fired_For_Excessive_Force_After_Deep_Ellum_Attack
Court Cam: Judge Files Complaint Over Deputy Using Excessive Force | A&E
3:37

Court Cam: Judge Files Complaint Over Deputy Using Excessive Force | A&E

  • Order:
  • Duration: 3:37
  • Uploaded Date: 10 Jun 2022
  • views: 1651200
When a deputy uses extreme force, the judge reacts by filing a complaint, in this scene from Season 4, Episode 15. #CourtCam Subscribe for more from Court Cam and other great A&E shows: http://aetv.us/subscribe-ae Find out more about Court Cam and watch full episodes on our site: https://www.aetv.com/shows/court-cam Check out exclusive A&E content: Website - http://www.aetv.com/ Facebook: https://www.facebook.com/AETV/ Twitter: https://twitter.com/aetv Instagram: https://www.instagram.com/aetv TikTok: https://www.tiktok.com/@aetv Tune in to Court Cam, Wednesdays at 9/8c on A&E, and stay up to date on all of A&E's premieres at http://aetv.com/schedule. From frightening outbursts to furious judges, "Court Cam" gives viewers an in-depth examination of some of the most stunning and emotional courtroom moments caught on camera. Hosted by Dan Abrams, each episode includes interviews with judges, witnesses, and victims who give a first-hand account of what really happened during these intense courtroom moments. This comprehensive look at how the action unfolds allows viewers to sit in the courtroom as they witness crazy courtroom moments from the most high-profile trials to minor court proceedings. A&E® leads the cultural conversation through high-quality, thought provoking original programming with a unique point of view. Whether it's the network's distinctive brand of award-winning disruptive reality or groundbreaking documentary, A&E makes entertainment an art form. Visit us at aetv.com for more info.
https://wn.com/Court_Cam_Judge_Files_Complaint_Over_Deputy_Using_Excessive_Force_|_A_E
Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence
3:32

Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence

  • Order:
  • Duration: 3:32
  • Uploaded Date: 09 May 2024
  • views: 309759
Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence For more Local News from WOIO: https://www.cleveland19.com/ For more YouTube Content: https://www.youtube.com/channel/UCZ4OZ-SF_Dtw8xlVPavaiDw
https://wn.com/Excessive_Force_Twinsburg_Officers’_Lawsuit_Heats_Up_With_Leaked_Body_Dashcam_Evidence
Former Meridian police officer pleads guilty to excessive force charge
0:26

Former Meridian police officer pleads guilty to excessive force charge

  • Order:
  • Duration: 0:26
  • Uploaded Date: 28 Jul 2021
  • views: 3694
News.
https://wn.com/Former_Meridian_Police_Officer_Pleads_Guilty_To_Excessive_Force_Charge
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 40:19

Bodycam video in lawsuit shows alleged assault by police officers during pandemic

Dramatic police body camera video shows an alleged assault by Honolulu police officers during a confrontation over the mask mandate. For more Local News from Hawaii News Now: https:/www.hawaiinewsnow.com For more YouTube Content: https://www.youtube.com/channel/UCBnLE14tUHTDyDc8Xij9rAg
3:18
Bodycam video in lawsuit shows alleged assault by police officers during pandemic
Dramatic police body camera video shows an alleged assault by Honolulu police officers dur...
published: 18 Feb 2025
Play in Full Screen
13:10
Federally Wanted DEA Suspect Meets Karma
This video is sponsored by SafetyVid.org which uses a network of 10,000 cameras to automat...
published: 15 Feb 2025
Play in Full Screen
1:11
Lawrence Walmart fight with police | Edited body camera video | Feb. 18, 2025
On Feb. 18, 2025, Lawrence, Indiana police confronted a man outside a Walmart. A fight ens...
published: 20 Feb 2025
Play in Full Screen
2:24
‘We won’t rest’ | Family seeks justice after alleged police beating in Hammond
Chief of Police Edwin Bergeron Jr. said the accusations are false.
published: 19 Feb 2025
Play in Full Screen
2:48
Police brutality lawsuit filed against American Fork officers
Nearly two years after an incident leading to his arrest in American Fork, a man has filed...
published: 02 Mar 2022
Play in Full Screen
7:51
Footage of East Cleveland police brutality (graphic content and language)
(Warning: graphic violence) The Cuyahoga County Prosecutor's Office released a video detai...
published: 08 Mar 2023
Play in Full Screen
2:22
Violent arrest caught on camera, officers accused of police brutality
Police officers in San Bernardino are facing accusations of police brutality after a viole...
published: 04 Jan 2025
Play in Full Screen
2:28
Queensland police officers rushed to hospital after violent brawl | 9 News Australia
Shocking footage has captured a wild brawl involving several Queensland police officers, w...
published: 14 Feb 2025
Play in Full Screen
1:58
BODY CAM: Police respond after employee at Chevrolet dealership fired shots inside the building
A man faces charges after he allegedly fired shots inside a Colerain Township Chevrolet de...
published: 31 Jan 2025
Play in Full Screen
2:49
Malcolm X’s Fiery Speech Addressing Police Brutality
In 1962, a confrontation with the LAPD outside a mosque resulted in the death of a Nation ...
published: 16 Feb 2018
Play in Full Screen

Valley Brook, Oklahoma

Valley Brook is a town in Oklahoma County, Oklahoma, United States and is part of the Oklahoma City Metropolitan Area. The population was 817 at the 2000 census. The town is well known for its large number of adult entertainment businesses and corrupt police department.

Geography

Valley Brook is located at 35°24′13″N 97°28′55″W / 35.40361°N 97.48194°W / 35.40361; -97.48194 (35.403662, -97.482063).

According to the United States Census Bureau, the town has a total area of 0.3 square miles (0.78 km2), all of it land.

Demographics

As of the census of 2000, there were 817 people, 298 households, and 204 families residing in the town. The population density was 3,037.6 people per square mile (1,168.3/km²). There were 337 housing units at an average density of 1,253.0 per square mile (481.9/km²). The racial makeup of the town was 77.48% White, 4.41% African American, 7.83% Native American, 0.37% Asian, 1.96% from other races, and 7.96% from two or more races. Hispanic or Latino of any race were 8.20% of the population.

  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

Corrections deputy fired for using excessive force; breaking inmate's nose, teeth

A Manatee County corrections deputy was fired after using excessive force on an inmate.
0:38
Corrections deputy fired for using excessive force; breaking inmate's nose, teeth
A Manatee County corrections deputy was fired after using excessive force on an inmate.
published: 17 Jul 2017
Play in Full Screen
0:23
Former FL corrections deputy who was fired for excessive force on inmate now charged with battery
A Manatee County Sheriff's Office Corrections Deputy who was fired after a video showed hi...
published: 26 Jun 2019
Play in Full Screen
0:34
Video released of 'excessive use of force' by fired Texas police officer
Sgt. Cole Thompson was fired and eventually indicted for an incident involving an "excessi...
published: 13 Jul 2023
Play in Full Screen
4:16
An excessive force epidemic?
Susan Candiotti reports on what many perceive to be an alarming increase in the use of exc...
published: 24 Jul 2014
Play in Full Screen
3:19
Graphic: Corrections officer fired for excessive force in Indiana
» Watch More WTHR 13NEWS: Watch Live and On-Demand Videos on WTHR | Indianapolis, Indiana ...
published: 11 Feb 2023
Play in Full Screen
2:38
Federal appeals judges overturn lower court judge in excessive force lawsuit
The US 9th Circuit Court of Appeals has decided a Mesa Officer, Aaron Pew, will not get qu...
published: 18 Sep 2024
Play in Full Screen
0:28
Dallas police officer fired for excessive force after Deep Ellum attack
The Dallas police chief fired an officer who was seen on video repeatedly punching a man i...
published: 26 Jan 2022
Play in Full Screen
3:37
Court Cam: Judge Files Complaint Over Deputy Using Excessive Force | A&E
When a deputy uses extreme force, the judge reacts by filing a complaint, in this scene fr...
published: 10 Jun 2022
Play in Full Screen
3:32
Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence
Excessive Force? Twinsburg officers’ lawsuit heats up with leaked body & dashcam evidence ...
published: 09 May 2024
Play in Full Screen
0:26
Former Meridian police officer pleads guilty to excessive force charge
News.
published: 28 Jul 2021
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)); } }); }); }); // -->
×