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

Old-time radio

The old-time radio era, sometimes referred to as the Golden Age of Radio, refers to a period of radio programming in the United States lasting from the proliferation of radio broadcasting in the early 1920s until the 1950s, when television superseded radio as the medium of choice for scripted programming and radio shifted to playing popular music. During this period, when radio was dominant and filled with a variety of formats and genres, people regularly tuned into their favorite radio programs. According to a 1947 C. E. Hooper survey, 82 out of 100 Americans were found to be radio listeners.

Origins

The broadcasts of live drama, comedy, music and news that characterize the Golden Age of Radio had a precedent in the Théâtrophone, commercially introduced in Paris in 1890 and available as late as 1932. It allowed subscribers to eavesdrop on live stage performances and hear news reports by means of a network of telephone lines. The development of radio eliminated the wires and subscription charges from this concept.

Podcasts:

  • Old Time Radio 1937

    This is a virtual time machine. What I am trying to do is to take you through the World War 2 years through radio. I believe all the programs I am sharing are in the public domain. Programs with wartime significance will be shown with a (W) after the title. This channel is for entertainment and education purposes. Don't forget to check out our eBay store. https://www.ebay.com/usr/tcho_henr If you would like to donate to this channel via Pay Pal here is a link where you may do so. https://www.paypal.me/ww2newsandotrchannel 00:00:00 19370527 Kraft Music Hall (Bing Crosby) 00:59:59 19370707 Baseball All-Star Game from Washington DC-President Roosevelt attends-Dizzy Dean sustains an injury that ruins his career 03:25:30 19370000 National Committee To Uphold A Constitutional Government-Episo...

    published: 15 Feb 2018
  • DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT

    DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT #OTR #OLDTIMERADIO #SCI-FI "The Outer Limit" 0:00 "With Folded Hands" 30:16 "Report on the Barnhouse Project" 59:42 "No Contact" 1:29:42 "Knock" 1:54:10 "Almost Human" 2:23:44 "The Lost Race" 2:53:04 "To the Future" 3:22:44 "The Embassy" 3:52:44 "The Green Hills of Earth" 4:22:40 "There Will Come Soft Rains/Zero Hour" 4:48:34 "Destination Moon" 5:18:33 "A Logic Named Joe" 5:47:29 "Mars Is Heaven" 6:16:18 "The Man on the Moon" 6:45:35 "Beyond Infinity" 7:15:50 "The Potters of Firsk" 7:45:18 "Perigi's Wonderful Dolls" 8:13:07 "The Castaways" 8:42:15 "The Martian Chronicles" 9:12:24 "The Parade" 9:42:42 "The Roads Must Roll" 10:13:03 "The Outer Limit (Repeat)" 10:42:09 OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-...

    published: 25 Nov 2020
  • The Shadow Knows Old Time Radio All Night

    The Shadow Knows Old Time Radio All Night #OTR #OLDTIMERADIO #SCARYSTORIES OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- PUNK EYE RECORDS: https://www.youtube.com/channel/UCu5kVQaIJyep0Lm8JE4GYhw?view_as=subscriber PARANORMAL INTO THE NIGHT: https://www.youtube.com/channel/UCB3oya2-N-387W8oL6qfFfQ?view_as=subscriber SUBSCRIBE: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A TWITTER: https://twitter.com/DinoEwelt FACEBOOK: https://www.facebook.com/THELITTLEMONSTERSMOVIEPODCAST/ HORROR T...

    published: 28 Nov 2020
  • Alien Worlds Sci-fi old time radio shows all night

    Alien Worlds Sci-fi old time radio shows all nigh #OTR #OLDTIMERADIO #SCI-FI EMAIL: CHARLIECHANFAN00@GMAIL.COM EPISODES: The Sun Stealers (Part 1) 0:00 The Sun Stealers (Part 2) 26:15 The Starsmith Project (Part 1) 52:14 The Starsmith Project (Part 2) 1:18:35 The Night Riders of Kalimar (Part 1) 1:44:55 The Night Riders of Kalimar (Part 2) 2:10:15 The Resurrectionists of Lethe (Part 1) 2:35:30 The Resurrectionists of Lethe (Part 2) 3:01:30 The Keeper of Eight (Part 1) 3:26:30 The Keeper of Eight (Part 2) 3:52:20 ISA Conspiracy (Part 1) "The Darkbringers" 4:17:55 ISA Conspiracy (Part 2) "The Deitons" 4:43:50 ISA Conspiracy (Part 3) "Lightstorm" 5:09:15 The Kilohertz War 5:34:50 The Adventure of the Egyptian Necklace (Part 1) 6:03:00 The Adventure of the Egyptian Necklace (Part 2) 6:31:07 T...

    published: 20 Nov 2020
  • Old Time Radio Detectives: SHERLOCK HOLMES | 11 Hours of the New Adventures

    Join Sherlock Holmes and Dr Watson in 11 hours of radio adventures The New Adventures of Sherlock Holmes is an old-time radio show which aired in the USA from 1939 to 1950.[1] Most episodes were written by the team of Dennis Green and Anthony Boucher; some early episodes were written by Green and Leslie Charteris.[2][3] Originally, the show starred Basil Rathbone as Sherlock Holmes and Nigel Bruce as Doctor Watson.[4][5] Together, they starred in 220 episodes which aired weekly on Mondays from 8:30 to 9:00pm. Bromo Quinine sponsored some of the earlier programs on the NBC Blue Network and for a period Parker Pen was the sponsor. The show first aired on the Blue Network but later moved to the Mutual Broadcasting System.[6] It was originally broadcast from Hollywood. During World War II, t...

    published: 29 May 2016
  • VINTAGE RADIO (LIVE OLDIES 24/7!)

    Stream powered by Primcast https://www.primcast.com/ NOW PLAYING MUSIC FROM... Fallout 3 Fallout 4 Fallout New Vegas Bioshock Bioshock 2 L.A. Noire Mafia Mafia II ...and more! We support the creators! Please do as well! Buy the games here... Fallout 3: http://store.steampowered.com/agecheck/app/22370/ Fallout New Vegas: http://store.steampowered.com/agecheck/app/22380/ Fallout 4: http://store.steampowered.com/agecheck/app/377160/ Bioshock: http://store.steampowered.com/agecheck/app/7670/ Bioshock 2: http://store.steampowered.com/agecheck/app/8850/ L.A. Noire http://store.steampowered.com/sub/12072/ Mafia: https://www.amazon.com/Mafia-PC/dp/B00004U8K2 Mafia II: http://store.steampowered.com/agecheck/app/50130/

    published: 04 Apr 2021
  • YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5

    YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5 #OTR #OLDTIMERADIO #DETECTIVE EMAIL: CHARLIECHANFAN00@GMAIL.COM WEBSITE: https://www.thelatelatehorrorshow.com/ FIND EVERYTHING WE HAVE DONE HERE: https://www.bitchute.com/channel/Z21epXiD3nKs/ BUY ME A COFFEE: https://www.buymeacoffee.com/dinoyoutube SUPPORT THE SHOW: https://www.paypal.com/paypalme/littlemonsters JOIN THE CHANNEL: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A/join SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 ----------------------------------------------------------------------------------------...

    published: 04 Apr 2021
  • JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS

    JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS #OTR #OLDTIMERADIO #SCI-FI SUPPORT THE SHOW: https://www.paypal.com/paypalme/littlemonsters SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- PUNK EYE RECORDS: https://www.youtube.com/channel/UCu5kVQaIJyep0Lm8JE4GYhw?view_as=subscriber PARANORMAL INTO THE NIGHT: https://www.youtube.com/channel/UCB3oya2-N-387W8oL6qfFfQ?view_as=subscriber SUBSCRIBE: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A TWITTER: https://twitter.com/DinoEwelt FACEBOOK...

    published: 07 Jan 2021
  • CBS Radio Mystery Theater | Ep5 | "No Hiding Place"

    Subscribe to our YouTube channel and visit http://otrpodcasts.com for more classic radio shows! **** Audio Credit: The Old Time Radio Researchers Group

    published: 25 Aug 2019
Old Time Radio 1937
7:29:05

Old Time Radio 1937

  • Order:
  • Duration: 7:29:05
  • Uploaded Date: 15 Feb 2018
  • views: 110121
This is a virtual time machine. What I am trying to do is to take you through the World War 2 years through radio. I believe all the programs I am sharing are in the public domain. Programs with wartime significance will be shown with a (W) after the title. This channel is for entertainment and education purposes. Don't forget to check out our eBay store. https://www.ebay.com/usr/tcho_henr If you would like to donate to this channel via Pay Pal here is a link where you may do so. https://www.paypal.me/ww2newsandotrchannel 00:00:00 19370527 Kraft Music Hall (Bing Crosby) 00:59:59 19370707 Baseball All-Star Game from Washington DC-President Roosevelt attends-Dizzy Dean sustains an injury that ruins his career 03:25:30 19370000 National Committee To Uphold A Constitutional Government-Episode deals with the President's attempt at packing The Supreme Court (W) 03:39:04 19370830 That Was The Year-A Look Back At 1918 (W) 03:53:52 19370913 Lux Radio Theater-A Star Is Born starring Janet Gaynor and Robert Montgomery 04:54:01 19370926 The Shadow-Death House Rescue-First Episode 05:23:08 19371005 President Roosevelt's Quarantine Speech from the dedication of Chicago's Outer Drive Bridge Dedication (W) 05:52:24 19370916 Lewis Brown Looks At The World-Comments on talk of war (W) 06:06:32 19371212 Chase And Sanborn Hour (Charlie McCarthy) guest Mae West-This program caused an uproar and ultimately led to Mae West being blacklisted from radio 07:02:05 19371223 Burns And Allen Show
https://wn.com/Old_Time_Radio_1937
DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT
11:09:54

DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT

  • Order:
  • Duration: 11:09:54
  • Uploaded Date: 25 Nov 2020
  • views: 150860
DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT #OTR #OLDTIMERADIO #SCI-FI "The Outer Limit" 0:00 "With Folded Hands" 30:16 "Report on the Barnhouse Project" 59:42 "No Contact" 1:29:42 "Knock" 1:54:10 "Almost Human" 2:23:44 "The Lost Race" 2:53:04 "To the Future" 3:22:44 "The Embassy" 3:52:44 "The Green Hills of Earth" 4:22:40 "There Will Come Soft Rains/Zero Hour" 4:48:34 "Destination Moon" 5:18:33 "A Logic Named Joe" 5:47:29 "Mars Is Heaven" 6:16:18 "The Man on the Moon" 6:45:35 "Beyond Infinity" 7:15:50 "The Potters of Firsk" 7:45:18 "Perigi's Wonderful Dolls" 8:13:07 "The Castaways" 8:42:15 "The Martian Chronicles" 9:12:24 "The Parade" 9:42:42 "The Roads Must Roll" 10:13:03 "The Outer Limit (Repeat)" 10:42:09 OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- PUNK EYE RECORDS: https://www.youtube.com/channel/UCu5kVQaIJyep0Lm8JE4GYhw?view_as=subscriber PARANORMAL INTO THE NIGHT: https://www.youtube.com/channel/UCB3oya2-N-387W8oL6qfFfQ?view_as=subscriber SUBSCRIBE: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A TWITTER: https://twitter.com/DinoEwelt FACEBOOK: https://www.facebook.com/THELITTLEMONSTERSMOVIEPODCAST/ HORROR TOWN: https://www.facebook.com/groups/406961509492457/ HORROR DRIVE-IN: https://www.facebook.com/BESTCULTCLASSICHORRORMOVIESPODCAST/
https://wn.com/Dimension_X_Sci_Fi_Old_Time_Radio_Shows_All_Night
The Shadow Knows Old Time Radio All Night
11:43:55

The Shadow Knows Old Time Radio All Night

  • Order:
  • Duration: 11:43:55
  • Uploaded Date: 28 Nov 2020
  • views: 763832
The Shadow Knows Old Time Radio All Night #OTR #OLDTIMERADIO #SCARYSTORIES OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- PUNK EYE RECORDS: https://www.youtube.com/channel/UCu5kVQaIJyep0Lm8JE4GYhw?view_as=subscriber PARANORMAL INTO THE NIGHT: https://www.youtube.com/channel/UCB3oya2-N-387W8oL6qfFfQ?view_as=subscriber SUBSCRIBE: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A TWITTER: https://twitter.com/DinoEwelt FACEBOOK: https://www.facebook.com/THELITTLEMONSTERSMOVIEPODCAST/ HORROR TOWN: https://www.facebook.com/groups/406961509492457/ HORROR DRIVE-IN: https://www.facebook.com/BESTCULTCLASSICHORRORMOVIESPODCAST/
https://wn.com/The_Shadow_Knows_Old_Time_Radio_All_Night
Alien Worlds Sci-fi old time radio shows all night
11:40:20

Alien Worlds Sci-fi old time radio shows all night

  • Order:
  • Duration: 11:40:20
  • Uploaded Date: 20 Nov 2020
  • views: 431903
Alien Worlds Sci-fi old time radio shows all nigh #OTR #OLDTIMERADIO #SCI-FI EMAIL: CHARLIECHANFAN00@GMAIL.COM EPISODES: The Sun Stealers (Part 1) 0:00 The Sun Stealers (Part 2) 26:15 The Starsmith Project (Part 1) 52:14 The Starsmith Project (Part 2) 1:18:35 The Night Riders of Kalimar (Part 1) 1:44:55 The Night Riders of Kalimar (Part 2) 2:10:15 The Resurrectionists of Lethe (Part 1) 2:35:30 The Resurrectionists of Lethe (Part 2) 3:01:30 The Keeper of Eight (Part 1) 3:26:30 The Keeper of Eight (Part 2) 3:52:20 ISA Conspiracy (Part 1) "The Darkbringers" 4:17:55 ISA Conspiracy (Part 2) "The Deitons" 4:43:50 ISA Conspiracy (Part 3) "Lightstorm" 5:09:15 The Kilohertz War 5:34:50 The Adventure of the Egyptian Necklace (Part 1) 6:03:00 The Adventure of the Egyptian Necklace (Part 2) 6:31:07 Time Clash 6:59:05 Deathsong 7:27:20 The Infinity Factor (Part 1) 7:55:15 The Infinity Factor (Part 2) 8:23:15 Earthlight (Part 1) 8:51:30 Earthlight (Part 2) 9:20:08 The Seeds of Time 9:48:22 The Madonnas of Zanzibar Alpha (Part 1) 10:16:15 The Madonnas of Zanzibar Alpha (Part 2) 10:44:10 The Himalayan Parallel 11:12:18 WEBSITE: https://www.thelatelatehorrorshow.com/ FIND EVERYTHING WE HAVE DONE HERE: https://www.bitchute.com/channel/Z21epXiD3nKs/ BUY ME A COFFEE: https://www.buymeacoffee.com/dinoyoutube SUPPORT THE SHOW: https://www.paypal.com/paypalme/littlemonsters JOIN THE CHANNEL: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A/join SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- DINO'S OLD TIME RADIO PAGE: https://www.facebook.com/DINOSOTR INSTAGRAM: https://www.instagram.com/thelatelatehorrorshow/ TWITTER: https://twitter.com/DinoEwelt HORROR TOWN: https://www.facebook.com/groups/406961509492457/ HORROR DRIVE-IN: https://www.facebook.com/BESTCULTCLASSICHORRORMOVIESPODCAST/ BITCHUTE: https://www.bitchute.com/channel/Z21epXiD3nKs/
https://wn.com/Alien_Worlds_Sci_Fi_Old_Time_Radio_Shows_All_Night
Old Time Radio Detectives: SHERLOCK HOLMES | 11 Hours of the New Adventures
10:22:15

Old Time Radio Detectives: SHERLOCK HOLMES | 11 Hours of the New Adventures

  • Order:
  • Duration: 10:22:15
  • Uploaded Date: 29 May 2016
  • views: 471285
Join Sherlock Holmes and Dr Watson in 11 hours of radio adventures The New Adventures of Sherlock Holmes is an old-time radio show which aired in the USA from 1939 to 1950.[1] Most episodes were written by the team of Dennis Green and Anthony Boucher; some early episodes were written by Green and Leslie Charteris.[2][3] Originally, the show starred Basil Rathbone as Sherlock Holmes and Nigel Bruce as Doctor Watson.[4][5] Together, they starred in 220 episodes which aired weekly on Mondays from 8:30 to 9:00pm. Bromo Quinine sponsored some of the earlier programs on the NBC Blue Network and for a period Parker Pen was the sponsor. The show first aired on the Blue Network but later moved to the Mutual Broadcasting System.[6] It was originally broadcast from Hollywood. During World War II, the show was also broadcast overseas through the Armed Forces Radio Service. Basil Rathbone's last episode as the famous Detective was "The Singular Affair of the Baconian Cipher." He was eager to separate himself from the show to avoid being typecast in the role, and even though the show's sponsor Petri Wine[7] offered him generous pay to continue, he decided to move on. Once he did, the sponsor did as well, and Tom Conway took the starring role, though Nigel Bruce got top billing and was always announced first. The new sponsor was Kreml Hair Tonic for Men, and the new series lasted only 39 episodes. Bruce and Conway then left the series. From then until 1950 the series continued as "Sherlock Holmes" with various actors playing the two principal parts.
https://wn.com/Old_Time_Radio_Detectives_Sherlock_Holmes_|_11_Hours_Of_The_New_Adventures
VINTAGE RADIO (LIVE OLDIES 24/7!)
0:00

VINTAGE RADIO (LIVE OLDIES 24/7!)

  • Order:
  • Duration: 0:00
  • Uploaded Date: 04 Apr 2021
  • views: 475812
Stream powered by Primcast https://www.primcast.com/ NOW PLAYING MUSIC FROM... Fallout 3 Fallout 4 Fallout New Vegas Bioshock Bioshock 2 L.A. Noire Mafia Mafia II ...and more! We support the creators! Please do as well! Buy the games here... Fallout 3: http://store.steampowered.com/agecheck/app/22370/ Fallout New Vegas: http://store.steampowered.com/agecheck/app/22380/ Fallout 4: http://store.steampowered.com/agecheck/app/377160/ Bioshock: http://store.steampowered.com/agecheck/app/7670/ Bioshock 2: http://store.steampowered.com/agecheck/app/8850/ L.A. Noire http://store.steampowered.com/sub/12072/ Mafia: https://www.amazon.com/Mafia-PC/dp/B00004U8K2 Mafia II: http://store.steampowered.com/agecheck/app/50130/
https://wn.com/Vintage_Radio_(Live_Oldies_24_7_)
YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5
11:24:01

YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5

  • Order:
  • Duration: 11:24:01
  • Uploaded Date: 04 Apr 2021
  • views: 6949
YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5 #OTR #OLDTIMERADIO #DETECTIVE EMAIL: CHARLIECHANFAN00@GMAIL.COM WEBSITE: https://www.thelatelatehorrorshow.com/ FIND EVERYTHING WE HAVE DONE HERE: https://www.bitchute.com/channel/Z21epXiD3nKs/ BUY ME A COFFEE: https://www.buymeacoffee.com/dinoyoutube SUPPORT THE SHOW: https://www.paypal.com/paypalme/littlemonsters JOIN THE CHANNEL: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A/join SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- DINO'S OLD TIME RADIO PAGE: https://www.facebook.com/DINOSOTR INSTAGRAM: https://www.instagram.com/thelatelatehorrorshow/ TWITTER: https://twitter.com/DinoEwelt HORROR TOWN: https://www.facebook.com/groups/406961509492457/ HORROR DRIVE-IN: https://www.facebook.com/BESTCULTCLASSICHORRORMOVIESPODCAST/ BITCHUTE: https://www.bitchute.com/channel/Z21epXiD3nKs/
https://wn.com/Yours_Truly_Johnny_Dollar_(_Bob_Bailey_)_Old_Time_Radio_Shows_5
JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS
11:37:08

JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS

  • Order:
  • Duration: 11:37:08
  • Uploaded Date: 07 Jan 2021
  • views: 60775
JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS #OTR #OLDTIMERADIO #SCI-FI SUPPORT THE SHOW: https://www.paypal.com/paypalme/littlemonsters SUPPORT US ON PATREON: https://www.patreon.com/thelatelatehorrorshow OFFICIAL MERCHANDISE: https://teespring.com/stores/the-late-late-horror-show CHECK US OUT ON ITUNES: https://podcasts.apple.com/us/podcast/the-late-late-horror-show/id1524214985 -------------------------------------------------------------------------------------------- PUNK EYE RECORDS: https://www.youtube.com/channel/UCu5kVQaIJyep0Lm8JE4GYhw?view_as=subscriber PARANORMAL INTO THE NIGHT: https://www.youtube.com/channel/UCB3oya2-N-387W8oL6qfFfQ?view_as=subscriber SUBSCRIBE: https://www.youtube.com/channel/UC25J6ueIa1L2NTqbbAeGN7A TWITTER: https://twitter.com/DinoEwelt FACEBOOK: https://www.facebook.com/THELITTLEMONSTERSMOVIEPODCAST/ HORROR TOWN: https://www.facebook.com/groups/406961509492457/ HORROR DRIVE-IN: https://www.facebook.com/BESTCULTCLASSICHORRORMOVIESPODCAST/
https://wn.com/Journey_Into_Space_Sci_Fi_Old_Time_Radio_Shows
CBS Radio Mystery Theater | Ep5 | "No Hiding Place"
51:39

CBS Radio Mystery Theater | Ep5 | "No Hiding Place"

  • Order:
  • Duration: 51:39
  • Uploaded Date: 25 Aug 2019
  • views: 371758
Subscribe to our YouTube channel and visit http://otrpodcasts.com for more classic radio shows! **** Audio Credit: The Old Time Radio Researchers Group
https://wn.com/Cbs_Radio_Mystery_Theater_|_Ep5_|_No_Hiding_Place
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Old Time Radio 1937
    7:29:05
    Old Time Radio 1937remove from playlist
  • DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT
    11:09:54
    DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHTremove from playlist
  • The Shadow Knows Old Time Radio All Night
    11:43:55
    The Shadow Knows Old Time Radio All Nightremove from playlist
  • Alien Worlds Sci-fi old time radio shows all night
    11:40:20
    Alien Worlds Sci-fi old time radio shows all nightremove from playlist
  • Old Time Radio Detectives: SHERLOCK HOLMES | 11 Hours of the New Adventures
    10:22:15
    Old Time Radio Detectives: SHERLOCK HOLMES | 11 Hours of the New Adventuresremove from playlist
  • VINTAGE RADIO (LIVE OLDIES 24/7!)
    0:00
    VINTAGE RADIO (LIVE OLDIES 24/7!)remove from playlist
  • YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5
    11:24:01
    YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5remove from playlist
  • JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS
    11:37:08
    JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWSremove from playlist
  • CBS Radio Mystery Theater | Ep5 |
    51:39
    CBS Radio Mystery Theater | Ep5 | "No Hiding Place"remove from playlist
PLAYLIST TIME:

Old Time Radio 1937

This is a virtual time machine. What I am trying to do is to take you through the World War 2 years through radio. I believe all the programs I am sharing are in the public domain. Programs with wartime significance will be shown with a (W) after the title. This channel is for entertainment and education purposes. Don't forget to check out our eBay store. https://www.ebay.com/usr/tcho_henr If you would like to donate to this channel via Pay Pal here is a link where you may do so. https://www.paypal.me/ww2newsandotrchannel 00:00:00 19370527 Kraft Music Hall (Bing Crosby) 00:59:59 19370707 Baseball All-Star Game from Washington DC-President Roosevelt attends-Dizzy Dean sustains an injury that ruins his career 03:25:30 19370000 National Committee To Uphold A Constitutional Government-Episode deals with the President's attempt at packing The Supreme Court (W) 03:39:04 19370830 That Was The Year-A Look Back At 1918 (W) 03:53:52 19370913 Lux Radio Theater-A Star Is Born starring Janet Gaynor and Robert Montgomery 04:54:01 19370926 The Shadow-Death House Rescue-First Episode 05:23:08 19371005 President Roosevelt's Quarantine Speech from the dedication of Chicago's Outer Drive Bridge Dedication (W) 05:52:24 19370916 Lewis Brown Looks At The World-Comments on talk of war (W) 06:06:32 19371212 Chase And Sanborn Hour (Charlie McCarthy) guest Mae West-This program caused an uproar and ultimately led to Mae West being blacklisted from radio 07:02:05 19371223 Burns And Allen Show
7:29:05
Old Time Radio 1937
This is a virtual time machine. What I am trying to do is to take you through the World Wa...
published: 15 Feb 2018
Play in Full Screen
11:09:54
DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT
DIMENSION X SCI-FI OLD TIME RADIO SHOWS ALL NIGHT #OTR #OLDTIMERADIO #SCI-FI "The Outer Li...
published: 25 Nov 2020
Play in Full Screen
11:43:55
The Shadow Knows Old Time Radio All Night
The Shadow Knows Old Time Radio All Night #OTR #OLDTIMERADIO #SCARYSTORIES OFFICIAL MERCHA...
published: 28 Nov 2020
Play in Full Screen
11:40:20
Alien Worlds Sci-fi old time radio shows all night
Alien Worlds Sci-fi old time radio shows all nigh #OTR #OLDTIMERADIO #SCI-FI EMAIL: CHARLI...
published: 20 Nov 2020
Play in Full Screen
10:22:15
Old Time Radio Detectives: SHERLOCK HOLMES | 11 Hours of the New Adventures
Join Sherlock Holmes and Dr Watson in 11 hours of radio adventures The New Adventures of ...
published: 29 May 2016
Play in Full Screen
0:00
VINTAGE RADIO (LIVE OLDIES 24/7!)
Stream powered by Primcast https://www.primcast.com/ NOW PLAYING MUSIC FROM... Fallout 3 F...
published: 04 Apr 2021
Play in Full Screen
11:24:01
YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5
YOURS TRULY JOHNNY DOLLAR ( BOB BAILEY ) OLD TIME RADIO SHOWS #5 #OTR #OLDTIMERADIO #DETEC...
published: 04 Apr 2021
Play in Full Screen
11:37:08
JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS
JOURNEY INTO SPACE SCI-FI OLD TIME RADIO SHOWS #OTR #OLDTIMERADIO #SCI-FI SUPPORT THE SHOW...
published: 07 Jan 2021
Play in Full Screen
51:39
CBS Radio Mystery Theater | Ep5 | "No Hiding Place"
Subscribe to our YouTube channel and visit http://otrpodcasts.com for more classic radio s...
published: 25 Aug 2019
Play in Full Screen

Old-time radio

The old-time radio era, sometimes referred to as the Golden Age of Radio, refers to a period of radio programming in the United States lasting from the proliferation of radio broadcasting in the early 1920s until the 1950s, when television superseded radio as the medium of choice for scripted programming and radio shifted to playing popular music. During this period, when radio was dominant and filled with a variety of formats and genres, people regularly tuned into their favorite radio programs. According to a 1947 C. E. Hooper survey, 82 out of 100 Americans were found to be radio listeners.

Origins

The broadcasts of live drama, comedy, music and news that characterize the Golden Age of Radio had a precedent in the Théâtrophone, commercially introduced in Paris in 1890 and available as late as 1932. It allowed subscribers to eavesdrop on live stage performances and hear news reports by means of a network of telephone lines. The development of radio eliminated the wires and subscription charges from this concept.

'); } 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: old time radio

Edit

City of Jackson could receive $2M for emergency response system replacement

Hattiesburg American 22 Apr 2025
... to recommend the Department of Finance Administration give the city the money to replace a 40-year-old radio system, which has been updated to keep up with modern times but is now totally out-of-date.
Edit

Actress Cate Blanchett says she is 'serious about giving up acting'

RTE 15 Apr 2025
The 55-year-old is preparing to star in her first radio drama in BBC Radio 4's The Fever and told the Radio Times she is still not totally comfortable with being a celebrity ... "My family roll their eyes every time I say it, but I mean it.
Edit

Cate Blanchett: I’m serious about quitting acting

AOL 15 Apr 2025
The 55-year-old, who is set to star in BBC 4 radio drama, The Fever, told the Radio Times it took “a long time” to adjust to being photographed ... “My family roll their eyes every time I say it, but I mean it.
Edit

Detective Mix Bag / The Sap Slept Through the Stakeout / Old Time Radio Shows ...

Bitchute 14 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Got plans? Here are 10 cool things to do in Columbus and central Ohio

The Columbus Dispatch 09 Apr 2025
Young visitors can choose teams, create LEGO drivers and cars, take on timed ... Other stories will be included in the live-scripted podcast recording performed in the style of an old-time radio serial.
Edit

6 ways ADHD impacts daily life as Sue Perkins says her diagnosis isn't an excuse

AOL 08 Apr 2025
The 55-year-old comedian told Radio Times about her recent diagnosis ... such as difficulty concentrating, forgetting tasks (or everyday events like brushing your teeth) or struggling to manage your time.
Edit

A CBS Radio Mystery Theater Mix / Lost in The woods / Old Time Radio ...

Bitchute 07 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

A CBS Radio Mystery Theater Mix / Bloodshot Eyes / Old Time Radio Shows All ...

Bitchute 05 Apr 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

‘Old Time Radio’ with Bingham set Thursday at Museum

Vincennes Sun-Commercial 04 Apr 2025
Leading her listeners on a trip down memory lane, Greencastle stalwart Jinsie Bingham will speak at the Putnam County Museum on Thursday, April 10 ... .
Edit

A CBS Radio Mystery Theater Mix / A Spectral Haunt / Old Time Radio Shows ...

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