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

Robert Black

Robert Black may refer to: Screenwriter/Director

Sports

  • Robert Black (American football), former head coach for the Sewanee college football team
  • Robert Black (rugby player), All Black in 1914
  • Bob Black (baseball) (1862–1933), 19th-century baseball player
  • Bobby Black (footballer) (1927–2012), Scottish footballer
  • Writers

  • Robert Black (author) (1829–1915), British author of fiction and nonfiction
  • Robert Black, a pseudonym used by science fiction and fantasy author Robert Holdstock
  • Bobby Black (journalist), senior editor of High Times magazine
  • Musicians

  • Robert Black (bassist) (born 1956), double bass player in the Bang on a Can All-Stars
  • Robert Black (conductor) (1950–1993), conductor, composer and pianist, who also appeared in Bang on a Can events
  • Others

  • Robert Black (auditor), public administrator, first Auditor General for Scotland, 2000–2012
  • Robert Black (lawyer) (born 1947), professor emeritus of Scots law at the University of Edinburgh
  • Robert Black (serial killer) (1947–2016), Scottish serial killer and sex offender
  • Fine Line

    "Fine Line" is a song from Paul McCartney's 2005 album, Chaos and Creation in the Backyard. McCartney plays all the instruments on the song including drums, bass, and piano. It was released 29 August 2005 as the first single from the album in the UK (see 2005 in British music). It reached number 20 on the UK Singles Chart and number 31 on the US Adult Contemporary. It also reached number 1 in Japan.

    A live version is also featured on The Space Within US concert DVD from 2006.

    Track listings

  • "Fine Line" – 3:05
  • "Growing Up Falling Down" – 3:27
  • "Fine Line" – 3:05
  • "Comfort of Love" – 3:08
  • "Fine Line" – 3:06
  • "Comfort of Love" – 3:09
  • "Growing Up Falling Down" – 3:27
  • Personnel

    Personnel per booklet.

  • Paul McCartney - Vocals, Bösendorfer Grand Piano, Baldwin Spinet, Höfner Bass Guitar, Epiphone Casino Electric Guitar, Martin D28 Acoustic Guitar, Ludwig Drums, Shakers, Tambourine
  • Millennia Ensemble – Strings
  • Joby Talbot – Conducting, Arrangement
  • References

    Fine Line (Barry Gibb song)

    "Fine Line" is a 1984 single by Barry Gibb. The song was written by Gibb and keyboardist George Bitzer. It is the second and final single from his debut solo album Now Voyager. It was released on October 1984 in North America by MCA Records and in most countries by Polydor Records. The song was failed to chart in the United States, but it did manage to reach #50 on the Hot Dance Club Songs. The 12" version of this song was remixed by Larry Patterson. This single was less successful than his previous single, "Shine, Shine".

    Recording

    "Fine Line" was recorded as a demo in November or December 1983 in Miami Beach with "Face to Face", "The Hunter", "One Night (For Lovers)" and "The Hunter". The song features The Who's lead singer Roger Daltrey singing backing vocals along with Olivia Newton-John and Harry Wayne Casey of KC and the Sunshine Band.

    The song also contains a rap section by Gibb himself:

    Music video

    The music video of "Fine Line" was made as a part of Gibb's movie Now Voyager on which all songs on his album of the same name was featured. For "Fine Line", it was filmed in a black and white. Gibb had his trademark beard shaven off in this video. He also shaved his beard on the Bee Gees' music video "Night Fever" and the alternative music videos of "How Deep Is Your Love" and "Stayin' Alive".

    Podcasts:

    • Robert Black | Confessions of a Serial Killer | S1E01

      Robert Black is the worst child killer in modern British history. Convicted of the abduction and murder of four school girls, he is widely expected of having murdered up to ten more in a ten year campaign of terror that murdered the meaning of childhood for a generation In 1993 he agreed to be interviewed by the renowned sex offender process Ray Wyre. What emerged was a chilling insight into Black’s deadly modus operandi – and revelations that he had knowledge of the disappearance of many other girls ★ Subscribe to get more True Crime Central content and hit the notification bell to see freshly uploaded content. Jump into our community to see how people react to our episodes, like and share the content. Binge Watch More Here: https://bit.ly/3rMw8ch #FullDocumentary #YouTubeFreeInvesti...

      published: 24 Dec 2021
    • Robert Black : The Midlands Triangle Murders

      Robert Black had an attraction to little girl as far back as he could remember. Eventually he couldn't resist his urges and he went down the path to become on of the UK's worst serial child killers. You can listen to our Podcast by searching "this is MONSTERS": Apple Podcasts Google Podcasts Amazon Podcasts Stitcher Spotify Pocket Casts Player FM TuneIn Radio Public You can check out our NEW merch by shopping at https://this-is-monsters.creator-spring.com Facebook: https://www.facebook.com/thisismonsters Twitter: https://twitter.com/thisis_monsters Instagram: https://www.instagram.com/thisis_monsters/ If you are a victim of domestic abuse, please reach out to someone for help. Please call the national domestic abuse hotline at 1-800-799-SAFE. That’s 1-800-799-7233 or go to thehotline.o...

      published: 25 Jul 2022
    • The Horrific Crimes of Robert Black

      Robert Black was a Scottish Serial Killer who murdered at least 4 children between 1981 and 1986. His reign of terror was only stopped by chance when he tried to abduct another child. Evil among us is a channel which focuses on horrific serious cases from the UK and abroad with a focus on lesser known cases and serial murderers from around the world. Credit: Intro music by Eric Matyas: http://soundimage.org/dark-ominous/ Audible free trial: https://www.amazon.co.uk/hz/audible/mlp?ie=UTF8&actionCode=AMN30DFT1Bk06604291990WX&tag=evilamongus20-21 Amazon prime free trial: https://www.amazon.co.uk/gp/video/primesignup?tag=evilamongus20-21 Please like, share, subscribe and comment.

      published: 12 Mar 2023
    • THE CHILD MURDERER - Robert Black

      Robert Black Robert Black was a serial killer and child molestor. Black kidnapped, raped and murdered four girls aged between 5 and 11 in a series of killings committed between 1981 and 1986 across the United Kingdom. In our opinion we think he also committed many other horrendous crimes and murders across Europe. He will joining many others in that reserved place in hell. Join Emma Kenny where she takes an extended 90 minute dive into the life of this demon. 'Please be aware this video intro has strobing effects' — Join Emma’s channel membership to get access to perks: https://www.youtube.com/channel/UCwO9D_qzsnrm-xq2lRfhiag/join — MERCH STORE - https://www.emmakennytv.com/shop — EMMA KENNY PATREON - https://www.patreon.com/emmakennytv — Business email : youtube@dustedmedia.com...

      published: 28 Mar 2021
    • KILLER'S FANTASIES: Robert Black's interview released

      Police have released an interview with serial killer Robert Black as he is found guilty of another murder. Report by Anna Drury. Like us on Facebook at http://www.facebook.com/itn and follow us on Twitter at http://twitter.com/itn

      published: 27 Oct 2011
    • Bottle up his Anus - Robert Black story - TRUE CRIME

      Bottle up his Anus - Robert Black story - TRUE CRIME This is the true crime story of Robert Black My videos will always be free with no pay wall, so if you would like to donate to help support the content - link is below - THANKS! Spotify link - https://open.spotify.com/show/7DtVYazXoVoivowp1PqYLu?si=fbb49ce2b2464ef8 Discord - https://discord.gg/fzT89BXbzN Cash app - https://cash.app/$TruRedTV Paypal - https://PayPal.Me/TruRedCRIME Please subscribe if you like what you see!

      published: 17 Dec 2021
    • Kidnap Killers | Encounters with Evil | S1E05 | Crime Stories

      This episode of Encounters with Evil explores four cases of lethal predators who all delighted in taking their victims against their will, and ultimately murdering them. The featured killers include: Robert Black, a serial child molester and murderer who terrorised the UK for decades. Prolific liar and child killer, Soham’s Ian Huntley. Australian Outback slayer Bradley Murdoch who took the life of a British traveller Peter Falconio - and the chilling case of James Bulger who was brutally tortured and murdered by two ten year old boys. 00:00 Introduction 02:45 Robert Black 13:50 James Bulger 24:28 Bradley Murdoch 35:10 Ian Huntley ★ Subscribe to get more True Crime Central content and hit the notification bell to see freshly uploaded content. Jump into our community to see how people rea...

      published: 21 Oct 2022
    • ROBERT BLACK: CHILD KILLER

      Hey Guys! Today’s video is on the case of Robert Black, a serial killer from Scotland. 🦋 I N S T A G R A M: @mollie_westbrook https://www.instagram.com/mollie_westbrook/ 🦋 T W I T T E R: @MolWestbrook https://twitter.com/MolWestbrook 🦋 Business Email: mollie.westbrook@btinternet.com 🦋 BECOME A PATREON MEMBER: https://www.patreon.com/molliewestbrook 🦋 MYSTERIES WITH MOLLIE PLAYLIST: https://www.youtube.com/watch?v=rB9RHAsI6DU&list=PLtS4892aIov1i87ci7vby7Tnn5E5z9_i9 🦋 WANT TO REQUEST A CASE FOR ME TO COVER? GO TO THIS LINK: https://docs.google.com/forms/d/1ivAmxiDGdDVzVziYSnXlRQqZmJEhrRJvD-ycKCdG1Aw/edit?ts=5d149c52 🦋CRIME TIME PODCAST: https://www.youtube.com/channel/UCiICDWM9EF0S_FjE005VtCg **DISCLAIMER** I just want to clarify that it is NEVER my intent to offend or upset an...

      published: 23 Jun 2020
    • Robert James Fischer vs Pal C Benko - New York (1959)

      [Event "USA-ch"] [Site "New York"] [Date "1959.??.??"] [Round "10"] [White "Fischer, Robert James"] [Black "Benko, Pal C"] [Result "1-0"] [ECO "B63"] 1. e4 c5 2. Nf3 d6 3. d4 cxd4 4. Nxd4 Nf6 5. Nc3 Nc6 6. Bg5 e6 7. Qd2 Be7 8. O-O-O O-O 9. Nb3 Qb6 10. f3 Rd8 11. Be3 Qc7 12. Qf2 Nd7 13. Nb5 Qb8 14. g4 a6 15. N5d4 Nde5 16. g5 d5 17. exd5 exd5 18. h4 Nc4 19. Nxc6 bxc6 20. Bc5 Bxc5 21. Qxc5 Qf4+ 22. Kb1 Ne3 23. Re1 d4 24. Bd3 Be6 25. Be4 Nf5 26. Bxf5 Bxf5 27. Qe5 Qxe5 28. Rxe5 g6 29. Rd1 d3 30. cxd3 Bxd3+ 31. Kc1 Bc4 32. Rxd8+ Rxd8 33. Nc5 Bd5 34. f4 Kf8 35. b3 a5 36. Re3 f6 37. Ne6+ Bxe6 38. Rxe6 fxg5 39. fxg5 Rd4 40. Rxc6 Rxh4 41. Ra6 Rh1+ 42. Kb2 Rh2+ 43. Ka3 Rh3 44. Rxa5 h6 45. Ra8+ Kf7 46. gxh6 Rxh6 47. Kb4 g5 48. Ra7+ Kf6 49. a4 g4 50. Rd7 g3 51. Rd6+ Kf7 52. Rd7+ Kf6 53. Rd1 g2 54. Rg...

      published: 09 Feb 2024
    • The Scottish Serial killer & Pedophile Robert Black Official Documentary Full Documentary

      published: 09 Aug 2016
    developed with YouTube
    Robert Black | Confessions of a Serial Killer | S1E01
    45:03

    Robert Black | Confessions of a Serial Killer | S1E01

    • Order:
    • Duration: 45:03
    • Uploaded Date: 24 Dec 2021
    • views: 198790
    Robert Black is the worst child killer in modern British history. Convicted of the abduction and murder of four school girls, he is widely expected of having murdered up to ten more in a ten year campaign of terror that murdered the meaning of childhood for a generation In 1993 he agreed to be interviewed by the renowned sex offender process Ray Wyre. What emerged was a chilling insight into Black’s deadly modus operandi – and revelations that he had knowledge of the disappearance of many other girls ★ Subscribe to get more True Crime Central content and hit the notification bell to see freshly uploaded content. Jump into our community to see how people react to our episodes, like and share the content. Binge Watch More Here: https://bit.ly/3rMw8ch #FullDocumentary #YouTubeFreeInvestigativeSeries #DocuSeries
    https://wn.com/Robert_Black_|_Confessions_Of_A_Serial_Killer_|_S1E01
    Robert Black : The Midlands Triangle Murders
    43:36

    Robert Black : The Midlands Triangle Murders

    • Order:
    • Duration: 43:36
    • Uploaded Date: 25 Jul 2022
    • views: 449525
    Robert Black had an attraction to little girl as far back as he could remember. Eventually he couldn't resist his urges and he went down the path to become on of the UK's worst serial child killers. You can listen to our Podcast by searching "this is MONSTERS": Apple Podcasts Google Podcasts Amazon Podcasts Stitcher Spotify Pocket Casts Player FM TuneIn Radio Public You can check out our NEW merch by shopping at https://this-is-monsters.creator-spring.com Facebook: https://www.facebook.com/thisismonsters Twitter: https://twitter.com/thisis_monsters Instagram: https://www.instagram.com/thisis_monsters/ If you are a victim of domestic abuse, please reach out to someone for help. Please call the national domestic abuse hotline at 1-800-799-SAFE. That’s 1-800-799-7233 or go to thehotline.org to chat with someone online. This website is set up so that at any time, hitting the escape key twice will instantly take your browser to a google search page. In the event the abuser is nearby, you can ensure that you don’t get caught trying to get help. If you are having feelings of harming yourself or someone else or even just need someone to talk to, please contact your local mental health facility, call 911 or call Mental Health America who operate the National Suicide Prevention Lifeline at 1-800-273-TALK. That’s 1-800-273-8255. They’re available 24 hours a day, 7 days a week.
    https://wn.com/Robert_Black_The_Midlands_Triangle_Murders
    The Horrific Crimes of Robert Black
    30:28

    The Horrific Crimes of Robert Black

    • Order:
    • Duration: 30:28
    • Uploaded Date: 12 Mar 2023
    • views: 89388
    Robert Black was a Scottish Serial Killer who murdered at least 4 children between 1981 and 1986. His reign of terror was only stopped by chance when he tried to abduct another child. Evil among us is a channel which focuses on horrific serious cases from the UK and abroad with a focus on lesser known cases and serial murderers from around the world. Credit: Intro music by Eric Matyas: http://soundimage.org/dark-ominous/ Audible free trial: https://www.amazon.co.uk/hz/audible/mlp?ie=UTF8&actionCode=AMN30DFT1Bk06604291990WX&tag=evilamongus20-21 Amazon prime free trial: https://www.amazon.co.uk/gp/video/primesignup?tag=evilamongus20-21 Please like, share, subscribe and comment.
    https://wn.com/The_Horrific_Crimes_Of_Robert_Black
    THE CHILD MURDERER - Robert Black
    1:39:46

    THE CHILD MURDERER - Robert Black

    • Order:
    • Duration: 1:39:46
    • Uploaded Date: 28 Mar 2021
    • views: 292146
    Robert Black Robert Black was a serial killer and child molestor. Black kidnapped, raped and murdered four girls aged between 5 and 11 in a series of killings committed between 1981 and 1986 across the United Kingdom. In our opinion we think he also committed many other horrendous crimes and murders across Europe. He will joining many others in that reserved place in hell. Join Emma Kenny where she takes an extended 90 minute dive into the life of this demon. 'Please be aware this video intro has strobing effects' — Join Emma’s channel membership to get access to perks: https://www.youtube.com/channel/UCwO9D_qzsnrm-xq2lRfhiag/join — MERCH STORE - https://www.emmakennytv.com/shop — EMMA KENNY PATREON - https://www.patreon.com/emmakennytv — Business email : youtube@dustedmedia.com Website - https://www.ekenny.co.uk — Serial Killer next door stage tour dates - https://www.emmakennytv.com/serial-killer-next-door-tour — PAYPAL DONATE - https://www.paypal.com/donate/?hosted_button_id=ACRBP86KLBB76 — CONTRIBEE - http://contribee.com/emmakennytv — Follow me on: Twitter - https://www.twitter.com/emmakennytv Facebook - https://www.facebook.com/emmakennytv Instagram - https://www.instagram.com/emmakennytv TikTok - https://www.tiktok.com/@emmakennytv? Wellbeing youtube - https://www.youtube.com/emmakennywellbeing — #emmakenny #truecrime #robertblack #serialkillers #youtubecrime
    https://wn.com/The_Child_Murderer_Robert_Black
    KILLER'S FANTASIES: Robert Black's interview released
    1:37

    KILLER'S FANTASIES: Robert Black's interview released

    • Order:
    • Duration: 1:37
    • Uploaded Date: 27 Oct 2011
    • views: 41690
    Police have released an interview with serial killer Robert Black as he is found guilty of another murder. Report by Anna Drury. Like us on Facebook at http://www.facebook.com/itn and follow us on Twitter at http://twitter.com/itn
    https://wn.com/Killer'S_Fantasies_Robert_Black's_Interview_Released
    Bottle up his Anus - Robert Black story - TRUE CRIME
    12:22

    Bottle up his Anus - Robert Black story - TRUE CRIME

    • Order:
    • Duration: 12:22
    • Uploaded Date: 17 Dec 2021
    • views: 14032
    Bottle up his Anus - Robert Black story - TRUE CRIME This is the true crime story of Robert Black My videos will always be free with no pay wall, so if you would like to donate to help support the content - link is below - THANKS! Spotify link - https://open.spotify.com/show/7DtVYazXoVoivowp1PqYLu?si=fbb49ce2b2464ef8 Discord - https://discord.gg/fzT89BXbzN Cash app - https://cash.app/$TruRedTV Paypal - https://PayPal.Me/TruRedCRIME Please subscribe if you like what you see!
    https://wn.com/Bottle_Up_His_Anus_Robert_Black_Story_True_Crime
    Kidnap Killers | Encounters with Evil | S1E05 | Crime Stories
    45:16

    Kidnap Killers | Encounters with Evil | S1E05 | Crime Stories

    • Order:
    • Duration: 45:16
    • Uploaded Date: 21 Oct 2022
    • views: 50636
    This episode of Encounters with Evil explores four cases of lethal predators who all delighted in taking their victims against their will, and ultimately murdering them. The featured killers include: Robert Black, a serial child molester and murderer who terrorised the UK for decades. Prolific liar and child killer, Soham’s Ian Huntley. Australian Outback slayer Bradley Murdoch who took the life of a British traveller Peter Falconio - and the chilling case of James Bulger who was brutally tortured and murdered by two ten year old boys. 00:00 Introduction 02:45 Robert Black 13:50 James Bulger 24:28 Bradley Murdoch 35:10 Ian Huntley ★ Subscribe to get more True Crime Central content and hit the notification bell to see freshly uploaded content. Jump into our community to see how people react to our episodes, like and share the content: https://bit.ly/SubscribetoTCC Watch more here: https://bit.ly/3rMw8ch #FullDocumentary #truecrime #crimestories
    https://wn.com/Kidnap_Killers_|_Encounters_With_Evil_|_S1E05_|_Crime_Stories
    ROBERT BLACK: CHILD KILLER
    1:10:45

    ROBERT BLACK: CHILD KILLER

    • Order:
    • Duration: 1:10:45
    • Uploaded Date: 23 Jun 2020
    • views: 304943
    Hey Guys! Today’s video is on the case of Robert Black, a serial killer from Scotland. 🦋 I N S T A G R A M: @mollie_westbrook https://www.instagram.com/mollie_westbrook/ 🦋 T W I T T E R: @MolWestbrook https://twitter.com/MolWestbrook 🦋 Business Email: mollie.westbrook@btinternet.com 🦋 BECOME A PATREON MEMBER: https://www.patreon.com/molliewestbrook 🦋 MYSTERIES WITH MOLLIE PLAYLIST: https://www.youtube.com/watch?v=rB9RHAsI6DU&list=PLtS4892aIov1i87ci7vby7Tnn5E5z9_i9 🦋 WANT TO REQUEST A CASE FOR ME TO COVER? GO TO THIS LINK: https://docs.google.com/forms/d/1ivAmxiDGdDVzVziYSnXlRQqZmJEhrRJvD-ycKCdG1Aw/edit?ts=5d149c52 🦋CRIME TIME PODCAST: https://www.youtube.com/channel/UCiICDWM9EF0S_FjE005VtCg **DISCLAIMER** I just want to clarify that it is NEVER my intent to offend or upset anyone that may have been involved with these cases. My aim is just to educate and spread awareness about these topics. All of the information I have gathered has been from several different sources online all of which are linked below. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. THANK YOU SO MUCH FOR WATCHING ANGELS ✨ SOURCES: https://listverse.com/2020/03/15/top-10-horrific-facts-about-robert-black-britains-worst-pedophile-serial-killer/ https://en.wikipedia.org/wiki/Robert_Black_(serial_killer) https://murderpedia.org/male.B/b/black-robert.htm https://www.crimeandinvestigation.co.uk/shows/making-a-monster/articles/robert-black-a-prolific-and-dedicated-predatory-paedophile https://www.youtube.com/watch?v=vT536sWnvts https://www.youtube.com/watch?v=zixai1THjxQ&t=101s https://peoplepill.com/people/robert-black-8/ https://www.dailymail.co.uk/femail/article-2056915/I-escaped-child-killer--destroyed-life.html https://en.wikipedia.org/wiki/Disappearance_of_Genette_Tate Sky Crime Documentary- Britain's Most Evil Killers- Robert Black.
    https://wn.com/Robert_Black_Child_Killer
    Robert James Fischer vs Pal C Benko - New York (1959)
    6:55

    Robert James Fischer vs Pal C Benko - New York (1959)

    • Order:
    • Duration: 6:55
    • Uploaded Date: 09 Feb 2024
    • views: 24
    [Event "USA-ch"] [Site "New York"] [Date "1959.??.??"] [Round "10"] [White "Fischer, Robert James"] [Black "Benko, Pal C"] [Result "1-0"] [ECO "B63"] 1. e4 c5 2. Nf3 d6 3. d4 cxd4 4. Nxd4 Nf6 5. Nc3 Nc6 6. Bg5 e6 7. Qd2 Be7 8. O-O-O O-O 9. Nb3 Qb6 10. f3 Rd8 11. Be3 Qc7 12. Qf2 Nd7 13. Nb5 Qb8 14. g4 a6 15. N5d4 Nde5 16. g5 d5 17. exd5 exd5 18. h4 Nc4 19. Nxc6 bxc6 20. Bc5 Bxc5 21. Qxc5 Qf4+ 22. Kb1 Ne3 23. Re1 d4 24. Bd3 Be6 25. Be4 Nf5 26. Bxf5 Bxf5 27. Qe5 Qxe5 28. Rxe5 g6 29. Rd1 d3 30. cxd3 Bxd3+ 31. Kc1 Bc4 32. Rxd8+ Rxd8 33. Nc5 Bd5 34. f4 Kf8 35. b3 a5 36. Re3 f6 37. Ne6+ Bxe6 38. Rxe6 fxg5 39. fxg5 Rd4 40. Rxc6 Rxh4 41. Ra6 Rh1+ 42. Kb2 Rh2+ 43. Ka3 Rh3 44. Rxa5 h6 45. Ra8+ Kf7 46. gxh6 Rxh6 47. Kb4 g5 48. Ra7+ Kf6 49. a4 g4 50. Rd7 g3 51. Rd6+ Kf7 52. Rd7+ Kf6 53. Rd1 g2 54. Rg1 Rg6 55. a5 Ke7 56. a6 Rb6+ 57. Ka5 Rxb3 58. Rxg2 Ra3+ 59. Kb6 Rb3+ 60. Kc5 Ra3 61. a7 Ke6 62. Rg7 Ra1 63. Kc6 Ra2 64. Kb7 Rb2+ 65. Kc8 Ra2 66. Kb8 Rb2+ 67. Rb7 Rh2 68. a8=Q Rh8+ 69. Ka7 1-0
    https://wn.com/Robert_James_Fischer_Vs_Pal_C_Benko_New_York_(1959)
    The Scottish Serial killer & Pedophile   Robert Black   Official Documentary   Full Documentary
    45:39

    The Scottish Serial killer & Pedophile Robert Black Official Documentary Full Documentary

    • Order:
    • Duration: 45:39
    • Uploaded Date: 09 Aug 2016
    • views: 22581
    https://wn.com/The_Scottish_Serial_Killer_Pedophile_Robert_Black_Official_Documentary_Full_Documentary
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Robert Black | Confessions of a Serial Killer | S1E01
      45:03
      Robert Black | Confessions of a Serial Killer | S1E01remove from playlist
    • Robert Black : The Midlands Triangle Murders
      43:36
      Robert Black : The Midlands Triangle Murdersremove from playlist
    • The Horrific Crimes of Robert Black
      30:28
      The Horrific Crimes of Robert Blackremove from playlist
    • THE CHILD MURDERER - Robert Black
      1:39:46
      THE CHILD MURDERER - Robert Blackremove from playlist
    • KILLER'S FANTASIES: Robert Black's interview released
      1:37
      KILLER'S FANTASIES: Robert Black's interview releasedremove from playlist
    • Bottle up his Anus - Robert Black story - TRUE CRIME
      12:22
      Bottle up his Anus - Robert Black story - TRUE CRIMEremove from playlist
    • Kidnap Killers | Encounters with Evil | S1E05 | Crime Stories
      45:16
      Kidnap Killers | Encounters with Evil | S1E05 | Crime Storiesremove from playlist
    • ROBERT BLACK: CHILD KILLER
      1:10:45
      ROBERT BLACK: CHILD KILLERremove from playlist
    • Robert James Fischer vs Pal C Benko - New York (1959)
      6:55
      Robert James Fischer vs Pal C Benko - New York (1959)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Robert Black | Confessions of a Serial Killer | S1E01

    Robert Black is the worst child killer in modern British history. Convicted of the abduction and murder of four school girls, he is widely expected of having murdered up to ten more in a ten year campaign of terror that murdered the meaning of childhood for a generation In 1993 he agreed to be interviewed by the renowned sex offender process Ray Wyre. What emerged was a chilling insight into Black’s deadly modus operandi – and revelations that he had knowledge of the disappearance of many other girls ★ Subscribe to get more True Crime Central content and hit the notification bell to see freshly uploaded content. Jump into our community to see how people react to our episodes, like and share the content. Binge Watch More Here: https://bit.ly/3rMw8ch #FullDocumentary #YouTubeFreeInvestigativeSeries #DocuSeries
    45:03
    Robert Black | Confessions of a Serial Killer | S1E01
    Robert Black is the worst child killer in modern British history. Convicted of the abducti...
    published: 24 Dec 2021
    Play in Full Screen
    43:36
    Robert Black : The Midlands Triangle Murders
    Robert Black had an attraction to little girl as far back as he could remember. Eventually...
    published: 25 Jul 2022
    Play in Full Screen
    30:28
    The Horrific Crimes of Robert Black
    Robert Black was a Scottish Serial Killer who murdered at least 4 children between 1981 an...
    published: 12 Mar 2023
    Play in Full Screen
    1:39:46
    THE CHILD MURDERER - Robert Black
    Robert Black Robert Black was a serial killer and child molestor. Black kidnapped, raped ...
    published: 28 Mar 2021
    Play in Full Screen
    1:37
    KILLER'S FANTASIES: Robert Black's interview released
    Police have released an interview with serial killer Robert Black as he is found guilty of...
    published: 27 Oct 2011
    Play in Full Screen
    12:22
    Bottle up his Anus - Robert Black story - TRUE CRIME
    Bottle up his Anus - Robert Black story - TRUE CRIME This is the true crime story of Robe...
    published: 17 Dec 2021
    Play in Full Screen
    45:16
    Kidnap Killers | Encounters with Evil | S1E05 | Crime Stories
    This episode of Encounters with Evil explores four cases of lethal predators who all delig...
    published: 21 Oct 2022
    Play in Full Screen
    1:10:45
    ROBERT BLACK: CHILD KILLER
    Hey Guys! Today’s video is on the case of Robert Black, a serial killer from Scotland. 🦋...
    published: 23 Jun 2020
    Play in Full Screen
    6:55
    Robert James Fischer vs Pal C Benko - New York (1959)
    [Event "USA-ch"] [Site "New York"] [Date "1959.??.??"] [Round "10"] [White "Fischer, Rober...
    published: 09 Feb 2024
    Play in Full Screen
    45:39
    The Scottish Serial killer & Pedophile Robert Black Official Documentary Full Documentary
    published: 09 Aug 2016
    Play in Full Screen

    Robert Black

    Robert Black may refer to: Screenwriter/Director

    Sports

  • Robert Black (American football), former head coach for the Sewanee college football team
  • Robert Black (rugby player), All Black in 1914
  • Bob Black (baseball) (1862–1933), 19th-century baseball player
  • Bobby Black (footballer) (1927–2012), Scottish footballer
  • Writers

  • Robert Black (author) (1829–1915), British author of fiction and nonfiction
  • Robert Black, a pseudonym used by science fiction and fantasy author Robert Holdstock
  • Bobby Black (journalist), senior editor of High Times magazine
  • Musicians

  • Robert Black (bassist) (born 1956), double bass player in the Bang on a Can All-Stars
  • Robert Black (conductor) (1950–1993), conductor, composer and pianist, who also appeared in Bang on a Can events
  • Others

  • Robert Black (auditor), public administrator, first Auditor General for Scotland, 2000–2012
  • Robert Black (lawyer) (born 1947), professor emeritus of Scots law at the University of Edinburgh
  • Robert Black (serial killer) (1947–2016), Scottish serial killer and sex offender
  • '); } 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)); } }); }); }); // -->
    ×