- published: 23 Jul 2022
- views: 28882
'+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; })); }); -->
The Temple is a historic octagon-shaped Baptist church building on Temple Avenue in the Ocean Park area of Old Orchard Beach, Maine. Built in 1881, it is the centerpiece of the summer camp meeting established in 1880 by Free Will Baptists led by Bates College President Oren Cheney. It is the only known octagonal religious structure currently in use in the state. It was listed on the National Register of Historic Places in 1975, and included in the Ocean Park Historic Buildings district in 1982.
The Temple is set on the north side of Temple Avenue, in an area known as Temple Square. Flanking it are two other buildings associated with the camp meeting: Porter Hall an B.C. Jordan Memorial Hall. It is a two story wood frame structure, capped by an octagonal hip roof whose elements meet at a central cupola. It is finished in wooden clapboards and rests on a foundation of brick piers. The main facade, facing south, is three bays wide, with a central projecting entry section topped by a doubled gable roof. This section has a double door on the first level and a double sash window above, while the flanking bays have single sash windows. The east and west-facing walls have similar organization, but only a single gable roof. The north wall has a low storage area projecting from it. The interior of the building is a large open hall, with the speaker's platform on the north wall, and seating, much of it original, arrayed facing it.
Old Orchard Beach is a town and census-designated place (CDP) in York County, Maine, United States. The population was 8,624 at the 2010 census. It is part of the Portland−South Portland−Biddeford, Maine Metropolitan Statistical Area.
Located on the inner side of Saco Bay on the Atlantic Ocean, the town is a popular summer beach destination. The downtown contains many tourist-oriented businesses, including clam shacks and T-shirt shops. A wooden pier on the beach contains many other tourist businesses, including a variety of souvenir shops. The seven mile (11 km) long beach stretching away from the downtown is lined with many beach residential properties, condominiums, motels and bed and breakfasts.
The Old Orchard Beach area began appearing in historical records around 1653. The area was first officially settled in 1657 by Thomas Rogers who had arrived in the Goose Fare Brook area in 1636, and who dubbed it "The Garden By The Sea". The town takes its name from Rogers' abandoned apple orchard. Rogers' family left the area and relocated in Kittery, Maine after an Indian attack destroyed the Rogers' homestead. The namesake orchard survived for approximately 150 years as a beacon of land to sailors in the Atlantic Ocean. The historic Free Will Baptist revival camp at Ocean Park, Maine, just down the beach from central Old Orchard, was built in 1881 by Bates College President Oren B. Cheney. The mission of the Association, as declared to the State of Maine on January 24, 1881 was "to establish a place of summer resort for holding religious, educational and other meetings at Old Orchard, in Saco, Maine, in the County of York.". The community still thrives today.
"The Temple" is a short story written by H. P. Lovecraft in 1920, and first published in the pulp magazine Weird Tales #24 in September 1925.
The story is narrated as a "found manuscript" penned by Karl Heinrich, Graf von Altberg-Ehrenstein, a lieutenant-commander in the Imperial German Navy during the days of World War I. It documents his untimely end at the bottom of the ocean.
Altberg begins by declaring that he has decided to document the events leading up to his final hour in order to "set certain facts" before the public, aware that he will not survive to do so himself.
The manuscript states events from June 1917 to August 1917 in the North Atlantic, after sinking SS Victory, a British freighter, and thereafter sinking its surviving crew's lifeboats, the cruel and arrogant Altberg commands his U-29 u-boat to submerge, surfacing later to find the dead body of a crew member of the sunken ship, who died clinging to the exterior railing of the sub. A search of the body reveals a strange piece of carved ivory. Because of its apparent great age and value, one of Altberg's officers keeps the object, and shortly thereafter, strange phenomena begin to occur - such as the dead man apparently swimming away rather than sinking.
The Temple is an upcoming British-Bhutanese horror film directed by Scott Spiegel and written by Peter Alan Roberts. The film stars Ian Buchanan, Emrhys Cooper, Andy Summers, and Keith Jefferson.
Principal photography on the film began on 20 January 2016 in Bhutan, being directed by Scott Spiegel, and produced by Happy Himalayan Pictures and Dream It Productions. While other producers on the film would be Suzanne Patrick, Kinley Pelden, Emrhys Cooper, and Donald A. Barton.
"The Temple" (1996) is a third-person narrative short story by the writer Joyce Carol Oates.
The story is about a woman who constantly hears a mysterious sound that at first sounds like an animal stranded within an area outside but the stronger the noise gets the more the woman realizes it is something else. The noise is horrid to hear according to Oates, "How like baby's cry, terribly distressing to hear! and the scratching which came in spasmodic, desperate flurries, was yet more distressing, evoking an obscure horror." The more she hears this wretched noise, the more anxious she becomes to find the source. She finally sends herself on a mission, gathering her gardening tools and setting out to find where the noises are coming from.
The more she digs, the closer she gets to the source, until she finds the source of the noise; a child's skull.
She removes the years of dust from the skull, not much is left of it. There is no hair to uncover and there are some teeth missing. She begins to dig deeper where she found the skull and finds numerous pieces of bone, which lead her to believe that they are missing pieces of the child's skull. She brings the skull and the rest of the bones into her house where she wraps them in a velvet cloth and promises the skeleton that she will always be here for it, she will never leave it. She lays the skeleton near her bed in human form. In the last paragraph of the story, after discussing how the skeleton is laid out, Oates says, "In this way the woman's bedroom became a secret temple. On the velvet cloth the skull and bones, unnamed, would be discovered after the woman's death, but that was a long way off."
Maine (i/ˈmeɪn/; French: État du Maine) is a state in New England, in the United States. Maine is the 39th most extensive and the 42nd most populous of the 50 U.S. states. It is bordered by New Hampshire to the west, the Atlantic Ocean to the east, and the Canadian provinces of New Brunswick and Quebec to the east and north, respectively. Maine is the northernmost state in the contiguous United States east of the Great Lakes. It is known for its jagged, rocky coastline; low, rolling mountains; heavily forested interior, and picturesque waterways; and also its seafood cuisine, especially lobster and clams. In spite of its maritime position, it has a continental climate even in coastal areas such as its largest city, Portland. The state capital is Augusta with a population of 19,136 (2010), making it the third least-populous state capital (after Montpelier, Vermont and Pierre, South Dakota) in the nation.
For thousands of years, indigenous peoples were the only inhabitants of the territory that is now Maine. At the time of European encounter, several Algonquian-speaking peoples inhabited the area. The first European settlement in Maine was by the French in 1604 on Saint Croix Island, by Pierre Dugua, Sieur de Mons. The first English settlement in Maine, the short-lived Popham Colony, was established by the Plymouth Company in 1607. A number of English settlements were established along the coast of Maine in the 1620s, although the rugged climate, deprivations, and conflict with the local peoples caused many to fail over the years.
Maine is a given name. Notable people with the name include:
Visiting Maine in the summer is excellent, with the incredible coastline, amazing food, and nature spots galore. However, if you want a beach vacation or a family friendly time in Maine in the summer Old Orchard Beach or OOB is a fun place to go. Here is what you need to know about Old Orchard Beach, Maine. Filmed in Old Orchard Beach, Maine Copyright Mark Wolters 2022 Join this channel to get access to perks: https://www.youtube.com/channel/UCFr3sz2t3bDp6Cux08B93KQ/join #visitmaine #maine #oldorchardbeach Learn how to plan your travels like we do with our Travel Planning 101 Course: https://www.brighttrip.com/woltersworld Grab some Wolters World travel gear http://www.woltersworld.store Help Us Keep Make More Honest Travel Videos: https://www.patreon.com/woltersworld Follow our T...
Anthony Everett is off to Old Orchard Beach, a community that’s seen its share of ups and downs, and not just on the rides at Palace Playland. Once known as a honky-tonk haven, today it's a family destination.
In this week's episode we are going to talk about Old Orchard Beach or THE OOB. Old Orchard Beach is an amazing time. With it’s amusement parks, fantastic beach, and great restaurants it is the perfect place to come with your family and friends to have an amazing time. There is a boardwalk, pier, and great events to enjoy. Come to a classic car show, a summer concert, palace playland amusement park, or even take part in the beach olympics. Also Old Orchard is a great place to buy a condo or get a summer rental! There is really something for everyone at Old Orchard beach - what’s your favorite thing to do? Remember if you Make Maine Your Home you don’t have to do it alone! View the blog post on my website... XXXXX To checkout listings all over southern Maine visit: https://www.makemai...
Road Trippin 2014
In this video, I'm walking and exploring Old Orchard Street in OOB Maine. This historic street is full of charming shops and restaurants, and it's a must-visit in Old Orchard Beach! If you enjoy this content please SUBSCRIBE COMMENT. Business Inquiries: [email protected]
🦞 Please 👍, subscribe and share 🦞 🎧 BINAURAL SOUND - Use headphones for a unique listening experience A quick list of my equipment MacBook Pro: https://amzn.to/3T1Gy5x GoPro Hero10: https://amzn.to/3PsT3Es GoPro 3Way Mount: https://amzn.to/3QKuR1o GoPro Suction Mount: https://amzn.to/3PADESC GoPro Media Mount: https://amzn.to/3c70YcY Binaural Earphones: https://amzn.to/3AwWTrT Anker Battery Pack: https://amzn.to/3pu38q7 GoPro Battery Charger: https://amzn.to/3K3VM62 The links above contain Amazon Affiliate links. If you purchase an item using them I receive a small commission. I'll only ever advertise products I use on Amazon to ensure you can use a reputable website. Support future MileMarker4K Travels https://paypal.me/milemarker4k Walk down Maine's most iconic beach town, Old Orchar...
Old Orchard Beach, Maine is just 20 minutes south of Portland on the southern coast. It is a great spot for lobster rolls, live music, and my favorite French fries ever (seriously... EVER). The Pier at Old Orchard Beach (sometimes listed as OOB) was first built in 1898 and has been destroyed by multiple fires, storms, and the great blizzard of 1978 and has been rebuilt each time. The pier has restaurants, shops, and of course great live entertainment like R-Rated musical comedian Yo' Adrian. If you're with kids, you might prefer the Place Playland amusement park though. All this makes Old Orchard Beach my favorite beach town in Maine. Here are the places shown in the video: Pirates Patio: This is the best place for daytime live music and beers right on the beach Shipwreck Foods: The lob...
I had the opportunity to go to Maine this August. I was able to capture the famous pier as well as the surrounding area. I wish I could've gone at night and when it's a little livelier, but I was happy to go even if it was during the day on a Monday. The beach is beautiful. If you love beaches definitely visit Maine. Maine is known for its scenic coastline and there are tons of beautiful beaches you can go to. Old Orchard Beach is located on the shores of the Atlantic Ocean. It is located just 20 minutes south of Portland, Maine’s largest city, and is easily accessible by car, train, and even by bicycle. About Old Orchard Beach ~Old Orchard Pier was built in 1898 ~Old Orchard Beach has seven miles of sandy coastline, making it one of the longest and most popular beaches in Maine. ~The t...
✅DOWNLOAD OUR FREE ME & NH RE-LOCATION GUIDE→https://bit.ly/3A3RFXd Old Orchard Beach is one of Maine's best beach towns. In this video we are going to talk about the pros and cons of living in Old Orchard Beach. Join us as we explore Ocean Park and Walk along the Pier and Beach! ✅DOWNLOAD OUR FREE "COMPLETE HOME SELLERS GUIDE" FOR NH & ME→https://bit.ly/4eUNg8i ✅Schedule a 1 on 1 Call with Cam: https://calendly.com/avery-realtygroup/15min 📥E-mail us: [email protected] ☎️Call/Text: (207) 360-4420 🔥 AGENTS! 🔥 Interested in learning how to partner with me at REAL Broker? Schedule a call/zoom and let's discuss! https://calendly.com/livetheseacoast/realbroker 📺Check out Our Most Popular Playlists! 🏠 Living on the Seacoast ME and NH Full Playlist →https://bit.ly/3VL...
Join Andrew to check out Palace Playland Amusement Park in Old Orchard Beach, Maine. We walk around the park to check out the arcade, flat rides, games, and more. Andrew recorded this video on Thursday, August 15, 2024. 0:00 Intro 1:45 Arcade 3:13 North section rides and games 5:17 Grand Orient Palace Funhouse 9:46 More rides and games 12:52 South section rides and games 21:07 Outro 21:21 Bonus footage – The Pier 23:44 Fireworks Gear used by Park Rover Andrew: DJI - https://www.dji.com - Osmo Action 4, Osmo Pocket 3, Osmo Mobile 6 RØDE Microphones - https://rode.com/ - PodMic, Lavalier GO
"The Temple" is a short story written by H. P. Lovecraft in 1920, and first published in the pulp magazine Weird Tales #24 in September 1925. The story is narrated as a "found manuscript" penned by Karl Heinrich, Graf von Altberg-Ehrenstein, a lieutenant-commander in the Imperial German Navy during the days of World War I. Altberg begins by declaring that he has decided to document the events leading up to his untimely end in order to "set certain facts" before the public, aware that he will not survive to do so himself. Chapters: 00:00 - Introduction 00:43 - The Temple 37:28 - Credits Bandcamp link: https://horrorbabble.bandcamp.com/album/the-temple Narrated by Ian Gordon for HorrorBabble Music and production by Ian Gordon Image used with the permission of M. Crassus: https://www.arts...
- ANOTHER (LONGER) LOVECRAFT SHORT STORY - Check my Facebook page here : https://www.facebook.com/GrimDarkStories Support my hobby, consider buying my novel here: https://gumroad.com/l/WdOm I've been enjoying recording these in addition to the novel I'm also doing at the moment. I've only done shorts for now, but if you guys keep liking these strange stories, I will perhaps do one of his longer works like Call of Cthulu soon. If anyone would like me to "commission" me to narrate something for their personal use, please contact me via PM here or my Facebook page. The Temple is a story full of atmosphere and mystery and I enjoyed it a great deal. It's about a German submarine durin WWI which gets lost under the sea, while everyone aboard it eventually goes mad up to the point where the c...
A German U-boat crew, after sinking a British freighter, surfaces to find a dead man gripping the deck. Clutched in his hand is an ivory figurine of a laurel-crowned youth. Strange occurrences plague the submarine, blurring the line between reality and nightmare. *Created by:* ▶ Narrated by Josh Greenwood ▶ Edited by Martin Gold ▶ Graphic by Jordan Harvey Author: Howard Phillips Lovecraft https://www.youtube.com/playlist?list=PLFA6HwSbUABqcFccVWq9F_TNHwxNAyM3C Date of creation: 1920 First publication: Weird Tales, 1925 Language: English Genre: Cosmic Horror Version: Unabridged, Complete/Full ------------------------------------------ We create and share our audiobooks for free. If you appreciate our work, please subscribe to our channel. You can also support us by buying a ☕️ here: htt...
Спасибо за просмотр \ Thanks for watching. Поддержать \ Donate: https://www.donationalerts.com/r/msa_21 https://boosty.to/msa21 Telegram: https://t.me/+ADHEXjZ1ui40OTYy Zen: https://zen.yandex.ru/msamsatthew RuTube: https://rutube.ru/channel/25033365/ VK: https://vk.com/public140403661 YouTube: https://www.youtube.com/c/MSAMatthew/ H.P. Lovecraft. Illustration by Tanabe Gou. Г.Ф.Лавкрафт. Иллюстрации от Танабе Го. BUY: https://www.amazon.com/Books-Gou-Tanabe/s?rh=n%3A283155%2Cp_27%3AGou+Tanabe BUY: https://digital.darkhorse.com/contributors/4146/gou-tanabe BUY: https://www.bookdepository.com/author/Gou-Tanabe BUY: https://www.abebooks.co.uk/book-search/author/gou-tanabe/ BUY: https://www.labirint.ru/authors/206802/ #lovecraft #лавкрафт #shorts #short #madness #msa #scene #expedition #m...
Strange things start to happen to the crew of German Submarine U-29 after they find the body of a young man. An adaptation of H.P. Lovecraft’s horror story “The Temple,” first published in 1920. Support this channel via Venmo @Ruben-Alcaraz-10 WEBSITE... https://anchor.fm/amazingstories REDBUBBLE... bit.ly/Ellipsis_Swag
An animation I created using my illustration for the Narragansett Brewing Company, Lovecraft themed beer. Based on the short story The Temple.
HP Lovecraft The Temple. A tale of being trapped inside your mind and a sub marine. Llinks to Check out Discord https://discord.gg/Pzmr7HMkax bookstagram https://www.instagram.com/drewsbookreviews/?hl=en Check out my Patreon https://www.patreon.com/drewsbookreviews Amazon Wish list https://www.amazon.ca/hz/wishlist/ls/1E317H9GRQK4R?ref_=wl_share
The Temple by H.P. Lovecraft, a haunting tale of the murky depths. This animation interprets H.P. Lovecraft's tale "The Temple," encapsulating its atmospheric horror and psychological tension through compelling visuals. The story revolves around Karl Heinrich, a German U-boat commander during WWI, who, after sinking a British vessel, retrieves a seemingly ancient and artistically significant statue from the wreckage, shaped like a human head. As the submarine becomes stranded in the Atlantic, the crew experiences disturbing and unexplainable phenomena, fueled by mounting paranoia and deteriorating sanity, possibly emanating from the enigmatic statue. The stable diffusion animations bring forth the invisible, haunting forces at play, morphing fluidly to represent the increasing strain on ...
PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAECsh3fHyM The Temple Authored by H.P. Lovecraft, Howard Phillips Lovecraft Narrated by Kenneth Elliot #hplovecraft #thetemple — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION "The Temple" is a short story written by H. P. Lovecraft in 1920, and first published in the pulp magazine Weird Tales #24 in September 1925. The story is narrated as a "found manuscript" penned by Karl Heinrich, Graf von Altberg-Ehrenstein, a lieutenant-commander in t...
PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAECCbm4u_M The Temple Authored by H. P. Lovecraft Narrated by Howard King #hplovecraft #thetemple — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION "The Temple" is a short story written by H. P. Lovecraft in 1920, and first published in the pulp magazine Weird Tales #24 in September 1925.nThe story is narrated as a "found manuscript" penned by Karl Heinrich, Graf von Altberg-Ehrenstein, a lieutenant-commander in the Imperial German Navy during...
The Temple is a historic octagon-shaped Baptist church building on Temple Avenue in the Ocean Park area of Old Orchard Beach, Maine. Built in 1881, it is the centerpiece of the summer camp meeting established in 1880 by Free Will Baptists led by Bates College President Oren Cheney. It is the only known octagonal religious structure currently in use in the state. It was listed on the National Register of Historic Places in 1975, and included in the Ocean Park Historic Buildings district in 1982.
The Temple is set on the north side of Temple Avenue, in an area known as Temple Square. Flanking it are two other buildings associated with the camp meeting: Porter Hall an B.C. Jordan Memorial Hall. It is a two story wood frame structure, capped by an octagonal hip roof whose elements meet at a central cupola. It is finished in wooden clapboards and rests on a foundation of brick piers. The main facade, facing south, is three bays wide, with a central projecting entry section topped by a doubled gable roof. This section has a double door on the first level and a double sash window above, while the flanking bays have single sash windows. The east and west-facing walls have similar organization, but only a single gable roof. The north wall has a low storage area projecting from it. The interior of the building is a large open hall, with the speaker's platform on the north wall, and seating, much of it original, arrayed facing it.