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

  • George Brent (1899-1979)

    George Brent was an Irish-American actor born in 1904. He appeared in over 100 films throughout his career, including "42nd Street" and "The Great Lie." Brent also worked on stage and television, and he was known for his suave and sophisticated demeanor on screen. He passed away in 1979 at the age of 75.

    published: 20 Apr 2023
  • 10 Things You Should Know About George Brent

    Here are 10 things you should know about George Brent, born on March 15, 1904. He enjoyed success in the theatre, pictures, radio and television. ____________ About Cladrite Radio: Cladrite Radio is a streaming radio station (https://cladriteradio.com) that has been featuring pop and jazz of the 1920s, '30s and '40s for more than a dozen years. We also explore other areas of vintage popular culture on our website and social media pages. Our licensing costs are sizable, and we are a fully listener-supported station, so if you enjoy the content we share on social media and the music we play on our streaming station, please consider joining as a sponsor at https://patreon.com/cladriteradio for as little as $5 a month. #CladriteRadio #vintagepopculture #classicmovies #1920smusic #1920sjazz #1...

    published: 15 Mar 2023
  • George Brent Documentary - Hollywood Walk of Fame

    George Brent was an Irish-American stage, film, and television actor. He is best remembered for the eleven films he made with Bette Davis, which included Jezebel and Dark Victory. Early life Brent was born in Main Street, Ballinasloe, County Galway, on March 15, 1904, to John J. and Mary Nolan. His father was a shopkeeper and his mother was a native of Clonfad, Moore, County Roscommon. In September 1915, he moved with his younger sister Kathleen to New York City. There, they joined their mother, who was living in the US after her separation from her husband. Brent returned to Ireland in February 1921, during the Irish War of Independence , and was involved in the Irish Republican Army. During this period he also became involved with the Abbey Theatre. He fled Ireland with a bounty set ...

    published: 29 Oct 2021
  • F.B.I. Girl (1952) Crime/Noir | Cesar Romero, George Brent, Raymond Burr

    Fingerprints don't lie--which is why a state governor with a hidden criminal past wants a file card with his prints stolen from FBI headquarters. Not so fast!: guardians of the law Cesar Romero and George Brent are there to make America secure! Raymond Burr at his sinister peak and an exciting helicopter-motorboat chase keep the action on high. Director: William Berke Stars: Cesar Romero, George Brent, Audrey Totter, Tom Drake, Raymond Burr WEBSITE http://thesprocketvault.com/ SOCIAL MEDIA Facebook: https://www.facebook.com/sprocketvault/ Instagram: https://www.instagram.com/sprocketvault/ Pinterest: https://www.pinterest.com/Film_Buff/

    published: 06 May 2023
  • Luxury Liner (1933) Full Movie | George Brent, Zita Johann, Vivienne Osborne

    #fullmovie #1930s #precode Synopsis: Having tracked down his estranged wife, an obsessed husband gets himself appointed as the ship's doctor on a cross-Atlantic luxury liner in order to confront her and the millionaire with whom she has ran away with. Genre: Drama Director: Lothar Mendes Top cast: George Brent, Zita Johann, Vivienne Osborne, Alice White, Verree Teasdale, Frank Morgan, C. Aubrey Smith

    published: 15 Nov 2023
  • Twin Beds 1942 George Brent & Joan Bennett & Mischa Auer & Glenda Farrell

    published: 14 Apr 2020
  • Ann Sheridan Revealed Why Her Marriage to George Brent Failed

    Did you know that Ann Sheridan had numerous affairs with costar Errol Flynn over the course of her lifetime and that she was known to the public as “the Oomph Girl”? Ann Sheridan was a popular actress from Hollywood’s Golden Age, with some of her best performances being in films such as 1938’s Angels with Dirty Faces and 1943’s Edge of Darkness. The latter film saw Ann starring alongside Errol Flynn, whom she had multiple affairs with over the course of her lifetime. One of these affairs came during Ann’s marriage to actor George Bent, though there were other reasons that Ann and George couldn’t make things work as a couple. ▬Contents of this video▬ 00:00 - Intro 00:28 - Ann Sheridan’s Early Life 01:54 - Ann’s Early Hollywood Days 02:51 - Ann Sheridan Was Married Multiple Times 03:29 - Ho...

    published: 04 Aug 2022
  • The Case Against Mrs Ames (1936) Full Movie | Madeleine Carroll, George Brent, Beulah Bondi

    #fullmovie #1930s Synopsis: An attorney falls for the woman he’s representing on a murder charge. Genre: Drama Director: William A. Seiter Top cast: Madeleine Carroll, George Brent, Beulah Bondi, Arthur Treacher, Alan Mowbray, Esther Dale, Edward Brophy

    published: 12 Nov 2023
  • Out Of The Blue | Full Classic Movie In HD | Virginia Mayo | George Brent

    In this 1947 comedic classic, a young man panics when a woman passes out in his apartment. Convinced that she's dead, he tries to hide the body only to find himself involved in a blackmail scheme! 1947. Stars: George Brent, Virginia Mayo, Turhan Bey **Under legal license from Cineverse. All rights reserved** Binge-watch more classic movies here: Full Classic Movies | Restored In HD | http://bit.ly/3tVt2oU Full Classic Action Movies | Restored In HD | http://bit.ly/3Ozizcc Full Classic Drama & Comedy Movies | Restored in HD | http://bit.ly/3U4JgXs Full UK Comedy Movies | Restored in HD | http://bit.ly/3AHYLOj Full Classic Horror Movies | Restored in HD | http://bit.ly/3F9uPxf Full Classic Adventure Movies | Restored In HD | http://bit.ly/3OxiQfV Full Sherlock Holmes Movies | Restored In H...

    published: 16 Dec 2023
George Brent  (1899-1979)
1:20

George Brent (1899-1979)

  • Order:
  • Duration: 1:20
  • Uploaded Date: 20 Apr 2023
  • views: 512
George Brent was an Irish-American actor born in 1904. He appeared in over 100 films throughout his career, including "42nd Street" and "The Great Lie." Brent also worked on stage and television, and he was known for his suave and sophisticated demeanor on screen. He passed away in 1979 at the age of 75.
https://wn.com/George_Brent_(1899_1979)
10 Things You Should Know About George Brent
2:07

10 Things You Should Know About George Brent

  • Order:
  • Duration: 2:07
  • Uploaded Date: 15 Mar 2023
  • views: 1902
Here are 10 things you should know about George Brent, born on March 15, 1904. He enjoyed success in the theatre, pictures, radio and television. ____________ About Cladrite Radio: Cladrite Radio is a streaming radio station (https://cladriteradio.com) that has been featuring pop and jazz of the 1920s, '30s and '40s for more than a dozen years. We also explore other areas of vintage popular culture on our website and social media pages. Our licensing costs are sizable, and we are a fully listener-supported station, so if you enjoy the content we share on social media and the music we play on our streaming station, please consider joining as a sponsor at https://patreon.com/cladriteradio for as little as $5 a month. #CladriteRadio #vintagepopculture #classicmovies #1920smusic #1920sjazz #1920spop #1930smusic #1930sjazz #1930spop #vintagelifestyle #vintagepopularculture #classicfilm #classicHollywood #classicmoviestars #filmnoir #precode #precodemovies #screwballcomedy
https://wn.com/10_Things_You_Should_Know_About_George_Brent
George Brent Documentary  - Hollywood Walk of Fame
7:52

George Brent Documentary - Hollywood Walk of Fame

  • Order:
  • Duration: 7:52
  • Uploaded Date: 29 Oct 2021
  • views: 1090
George Brent was an Irish-American stage, film, and television actor. He is best remembered for the eleven films he made with Bette Davis, which included Jezebel and Dark Victory. Early life Brent was born in Main Street, Ballinasloe, County Galway, on March 15, 1904, to John J. and Mary Nolan. His father was a shopkeeper and his mother was a native of Clonfad, Moore, County Roscommon. In September 1915, he moved with his younger sister Kathleen to New York City. There, they joined their mother, who was living in the US after her separation from her husband. Brent returned to Ireland in February 1921, during the Irish War of Independence , and was involved in the Irish Republican Army. During this period he also became involved with the Abbey Theatre. He fled Ireland with a bounty set on his head by the British government, although he later claimed only to have been a courier for guerrilla leader and tactician Michael Collins. According to Ballinasloe Life , the Irish War of Independence careers of three different men named George Nolan were apparently conflated, which may explain some of the discrepancies regarding Brent's year of birth, life, and activities during the 1919 to 1922 period.
https://wn.com/George_Brent_Documentary_Hollywood_Walk_Of_Fame
F.B.I. Girl (1952) Crime/Noir | Cesar Romero, George Brent, Raymond Burr
1:14:14

F.B.I. Girl (1952) Crime/Noir | Cesar Romero, George Brent, Raymond Burr

  • Order:
  • Duration: 1:14:14
  • Uploaded Date: 06 May 2023
  • views: 290335
Fingerprints don't lie--which is why a state governor with a hidden criminal past wants a file card with his prints stolen from FBI headquarters. Not so fast!: guardians of the law Cesar Romero and George Brent are there to make America secure! Raymond Burr at his sinister peak and an exciting helicopter-motorboat chase keep the action on high. Director: William Berke Stars: Cesar Romero, George Brent, Audrey Totter, Tom Drake, Raymond Burr WEBSITE http://thesprocketvault.com/ SOCIAL MEDIA Facebook: https://www.facebook.com/sprocketvault/ Instagram: https://www.instagram.com/sprocketvault/ Pinterest: https://www.pinterest.com/Film_Buff/
https://wn.com/F.B.I._Girl_(1952)_Crime_Noir_|_Cesar_Romero,_George_Brent,_Raymond_Burr
Luxury Liner (1933) Full Movie | George Brent, Zita Johann, Vivienne Osborne
1:08:05

Luxury Liner (1933) Full Movie | George Brent, Zita Johann, Vivienne Osborne

  • Order:
  • Duration: 1:08:05
  • Uploaded Date: 15 Nov 2023
  • views: 51277
#fullmovie #1930s #precode Synopsis: Having tracked down his estranged wife, an obsessed husband gets himself appointed as the ship's doctor on a cross-Atlantic luxury liner in order to confront her and the millionaire with whom she has ran away with. Genre: Drama Director: Lothar Mendes Top cast: George Brent, Zita Johann, Vivienne Osborne, Alice White, Verree Teasdale, Frank Morgan, C. Aubrey Smith
https://wn.com/Luxury_Liner_(1933)_Full_Movie_|_George_Brent,_Zita_Johann,_Vivienne_Osborne
Twin Beds 1942 George Brent & Joan Bennett & Mischa Auer & Glenda Farrell
1:23:50

Twin Beds 1942 George Brent & Joan Bennett & Mischa Auer & Glenda Farrell

  • Order:
  • Duration: 1:23:50
  • Uploaded Date: 14 Apr 2020
  • views: 123747
https://wn.com/Twin_Beds_1942_George_Brent_Joan_Bennett_Mischa_Auer_Glenda_Farrell
Ann Sheridan Revealed Why Her Marriage to George Brent Failed
8:34

Ann Sheridan Revealed Why Her Marriage to George Brent Failed

  • Order:
  • Duration: 8:34
  • Uploaded Date: 04 Aug 2022
  • views: 15061
Did you know that Ann Sheridan had numerous affairs with costar Errol Flynn over the course of her lifetime and that she was known to the public as “the Oomph Girl”? Ann Sheridan was a popular actress from Hollywood’s Golden Age, with some of her best performances being in films such as 1938’s Angels with Dirty Faces and 1943’s Edge of Darkness. The latter film saw Ann starring alongside Errol Flynn, whom she had multiple affairs with over the course of her lifetime. One of these affairs came during Ann’s marriage to actor George Bent, though there were other reasons that Ann and George couldn’t make things work as a couple. ▬Contents of this video▬ 00:00 - Intro 00:28 - Ann Sheridan’s Early Life 01:54 - Ann’s Early Hollywood Days 02:51 - Ann Sheridan Was Married Multiple Times 03:29 - How Ann Met George Brent 05:15 - Why Ann and George Brent Got Divorced 06:32 - Ann Sheridan’s Legacy and Later Work 06:56 - Outro Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSKgHx6EQVOwNKVz1cR2hKV Ann Sheridan grew up a tomboy, though she often daydreamed of becoming a singer with a big band. Ann’s dreams of stardom ended up leading her onto the screen instead, where she received a breakout role alongside James Cagney in the aforementioned 1938 film Angels with Dirty Faces. Ann entered into the 1940s as one of Hollywood’s biggest stars, and she became known by the nickname of “the Oomph Girl”. During the 1940s, Ann starred in a picture alongside an established Hollywood actor by the name of George Brent, and the two ended up developing feelings for each other over the course of filming. Ann and George tied the knot in 1942, though they were divorced within the span of a year. Join Facts Verse as Ann Sheridan revealed why her marriage to George Brent failed. Ann Sheridan Revealed Why Her Marriage to George Brent Failed
https://wn.com/Ann_Sheridan_Revealed_Why_Her_Marriage_To_George_Brent_Failed
The Case Against Mrs Ames (1936) Full Movie |  Madeleine Carroll, George Brent, Beulah Bondi
1:26:05

The Case Against Mrs Ames (1936) Full Movie | Madeleine Carroll, George Brent, Beulah Bondi

  • Order:
  • Duration: 1:26:05
  • Uploaded Date: 12 Nov 2023
  • views: 68451
#fullmovie #1930s Synopsis: An attorney falls for the woman he’s representing on a murder charge. Genre: Drama Director: William A. Seiter Top cast: Madeleine Carroll, George Brent, Beulah Bondi, Arthur Treacher, Alan Mowbray, Esther Dale, Edward Brophy
https://wn.com/The_Case_Against_Mrs_Ames_(1936)_Full_Movie_|_Madeleine_Carroll,_George_Brent,_Beulah_Bondi
Out Of The Blue | Full Classic Movie In HD | Virginia Mayo | George Brent
1:25:20

Out Of The Blue | Full Classic Movie In HD | Virginia Mayo | George Brent

  • Order:
  • Duration: 1:25:20
  • Uploaded Date: 16 Dec 2023
  • views: 185645
In this 1947 comedic classic, a young man panics when a woman passes out in his apartment. Convinced that she's dead, he tries to hide the body only to find himself involved in a blackmail scheme! 1947. Stars: George Brent, Virginia Mayo, Turhan Bey **Under legal license from Cineverse. All rights reserved** Binge-watch more classic movies here: Full Classic Movies | Restored In HD | http://bit.ly/3tVt2oU Full Classic Action Movies | Restored In HD | http://bit.ly/3Ozizcc Full Classic Drama & Comedy Movies | Restored in HD | http://bit.ly/3U4JgXs Full UK Comedy Movies | Restored in HD | http://bit.ly/3AHYLOj Full Classic Horror Movies | Restored in HD | http://bit.ly/3F9uPxf Full Classic Adventure Movies | Restored In HD | http://bit.ly/3OxiQfV Full Sherlock Holmes Movies | Restored In HD | http://bit.ly/3gst7gU 📽️ RETRO CENTRAL - TV's Greatest Hits! We've built this channel for anyone who likes their TV "Old School"! We'll be bringing you fully restored Classic Movies in HD plus the TV Hits (And misses!) that either you or your folks grew up watching on the old "Square" TV set from back in the day! Make sure you Subscribe and hit the "Bell" icon so you can stay up to date with our latest uploads. Thanks for watching! Retro Central is Owned & Operated by VA Media Ltd. All rights reserved. All of the content on this channel is legally licensed from various distributors, please contact if you have any copyright inquiries - hello@vamedianetwork.com #RetroCentral #ClassicMoviesHD #ClassicTV #TCM
https://wn.com/Out_Of_The_Blue_|_Full_Classic_Movie_In_Hd_|_Virginia_Mayo_|_George_Brent
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 6:57:27

George Brent (1899-1979)

George Brent was an Irish-American actor born in 1904. He appeared in over 100 films throughout his career, including "42nd Street" and "The Great Lie." Brent also worked on stage and television, and he was known for his suave and sophisticated demeanor on screen. He passed away in 1979 at the age of 75.
1:20
George Brent (1899-1979)
George Brent was an Irish-American actor born in 1904. He appeared in over 100 films throu...
published: 20 Apr 2023
Play in Full Screen
2:07
10 Things You Should Know About George Brent
Here are 10 things you should know about George Brent, born on March 15, 1904. He enjoyed ...
published: 15 Mar 2023
Play in Full Screen
7:52
George Brent Documentary - Hollywood Walk of Fame
George Brent was an Irish-American stage, film, and television actor. He is best remember...
published: 29 Oct 2021
Play in Full Screen
1:14:14
F.B.I. Girl (1952) Crime/Noir | Cesar Romero, George Brent, Raymond Burr
Fingerprints don't lie--which is why a state governor with a hidden criminal past wants a ...
published: 06 May 2023
Play in Full Screen
1:08:05
Luxury Liner (1933) Full Movie | George Brent, Zita Johann, Vivienne Osborne
#fullmovie #1930s #precode Synopsis: Having tracked down his estranged wife, an obsessed ...
published: 15 Nov 2023
Play in Full Screen
1:23:50
Twin Beds 1942 George Brent & Joan Bennett & Mischa Auer & Glenda Farrell
published: 14 Apr 2020
Play in Full Screen
8:34
Ann Sheridan Revealed Why Her Marriage to George Brent Failed
Did you know that Ann Sheridan had numerous affairs with costar Errol Flynn over the cours...
published: 04 Aug 2022
Play in Full Screen
1:26:05
The Case Against Mrs Ames (1936) Full Movie | Madeleine Carroll, George Brent, Beulah Bondi
#fullmovie #1930s Synopsis: An attorney falls for the woman he’s representing on a murder...
published: 12 Nov 2023
Play in Full Screen
1:25:20
Out Of The Blue | Full Classic Movie In HD | Virginia Mayo | George Brent
In this 1947 comedic classic, a young man panics when a woman passes out in his apartment....
published: 16 Dec 2023
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: george brent

Edit

Brandon’s silent film series kicks off with ‘The Strong Man’

Addison County Independent 08 May 2025
First up is Harry Langdon in “The Strong Man” (1926), a comedy that marked Frank Capra’s directorial debut ... Admission is free; donations are welcome ... Next up in the series will be “Underworld” (1927) starring George Bancroft and Evelyn Brent ... ....
Edit

JEZEBEL [1938] - BETTE DAVIS • HENRY FONDA • GEORGE BRENT

Bitchute 23 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
  • 1
×