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

Oldenburg (Oldenburg)

Oldenburg (Oldb) or simply Oldenburg (German pronunciation: [ˈɔldənbʊʁk]; Low German: Ollnborg; Saterland Frisian: Ooldenbuurich) is an independent city in the state of Lower Saxony, Germany. During the French annexation (1811–1813) in the wake of the Napoleonic war against Britain, it was also known as Le Vieux-Bourg in French. The city is situated at the Rivers Hunte and Haaren, in the northwestern region between the cities of Bremen in the east and Groningen (Netherlands) in the west. It has a population of 160,907 (December 2014).

The city is the place of origin of the House of Oldenburg. Before the end of the German Empire (1918), it was the administrative centre and residence of the monarchs of Oldenburg.

History

Archaeological finds point to a settlement dating back to the 8th century. The place was first mentioned in 1108 as Aldenburg in connection with Elimar I (also known as Egilmar I) who is now commonly seen as the first count of Oldenburg. The town gained importance due to its location at a ford of the navigable Hunte river. Oldenburg became the capital of the County of Oldenburg (later Duchy, Grand Duchy, and Free State), a small state in the shadow of the much more powerful Hanseatic city of Bremen.

SM U-151

SM U-151 or SM Unterseeboot 151 was a World War I U-boat of the Imperial German Navy, constructed by Reiherstieg Schiffswerfte & Maschinenfabrik at Hamburg and launched on 4 April 1917. From 1917 until the Armistice in November 1918 she was part of the U-Kreuzer Flotilla, and was responsible for sinking 37 ships.

Background

The U-151 was originally one of seven Deutschland class U-boats designed to carry cargo between the United States and Germany in 1916. Five of the submarine freighters were converted into long-range cruiser U-boats (U-kreuzers) equipped with two 15 cm deck guns, including the U-151 which was originally to have been named Oldenburg. They were the largest U-boats of World War I.

Service history

U-151 was commissioned on 21 July 1917. From 21 July to 26 December 1917 she was commanded by Waldemar Kophamel who took U-151 on a long-range cruise which eventually covered a total of 12,000 miles. On 19 September 1917 the U-151 claimed her first victim, the 3,104 ton French sailing vessel Blanche in the Atlantic. On 20 November 1917 U-151 captured the steamship Johan Mjelde, and scuttled her on 26 November after transferring 22 tons of her cargo of copper.

Oldenburg (ship)

Several naval ships of Germany were named Oldenburg after the city of Oldenburg, Germany:

  • SMS Oldenburg (1884): 5,250 ton unique coastal armored ship
  • SMS Oldenburg (1910): 23,000 ton Helgoland-class battleship
  • Oldenburg (F263): Braunschweig-class (Type 130) corvette, commissioned 2013
  • See also

    MS Oldenburg

    Podcasts:

    • Top 10 Best Tourist Places to Visit in Oldenburg | Germany - English

      #OldenburgPlaces #PlacesInOldenburg #OldenburgVisitPlaces #OldenburgGermany Oldenburg is one of the biggest tourist attractions in Germany having many best places in Oldenburg. Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays works by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. So to help you figure out the places you need to try, we've gathered up a bucket list of the best Places in Oldenburg that you won't regret going to. Wiki Peaks is on a mission to promote the tourism in the World. We are he...

      published: 29 Jun 2022
    • One day in Oldenburg 🇩🇪 GERMANY

      One day in Oldenburg! 🇩🇪 Oldenburg is an independent city in the state of Lower Saxony, Germany. The city is officially named Oldenburg (Oldb) (Oldenburg in Oldenburg) to distinguish from Oldenburg in Holstein. During the French annexation (1811–1813) in the wake of the Napoleonic war against Britain, it was also known as Le Vieux-Bourg in French. The city is at the rivers Hunte and Haaren, in the northwestern region between the cities of Bremen in the east and Groningen (Netherlands) in the west. It has a population of 170,000 (November 2019). Oldenburg is part of the Bremen/Oldenburg Metropolitan Region, with 2.37 million people. The city is the place of origin of the House of Oldenburg. Before the end of the German Empire (1918), it was the administrative centre and residence of the mo...

      published: 30 Aug 2023
    • Realer Irrsinn: Skyline-Panne in Oldenburg | extra 3 Spezial: Der reale Irrsinn | NDR

      Noch mehr irre Realsatiren in der ganze Folge "extra 3 Spezial: Der reale Irrsinn" vom 08.11.2023 in der ARD Mediathek: https://1.ard.de/extra3_RIS_08112023_BT 22 Dienstwägen, zwei Rathäuser, 300 Kilometer Unterschied. Ein Bildfehler entlarvt, dass selbst Städte manchmal Identitätskrisen haben. Autor*in: Patricia Kümpel

      published: 23 Jul 2024
    • Oldenburg Germany/walking tour in Oldenburg, one of the most beautiful cities in Germany 4k 60fps

      Oldenburg Germany Does your heart beat for shopping? How fitting that Oldenburg's large pedestrian zone looks like a heart from above. Lange Straße and Achternstraße form the main arteries. They lead from our bright yellow castle to the Lappan landmark. You will find many small and large shops along the way. We recommend that you definitely turn into the smaller cross streets in the city center during your shopping trip. Discover fashion, shoes, accessories and jewelry off the beaten track or browse through a bookstore. Shopping tip: On Bergstrasse or Burgstrasse you will not only find small shops, but also relaxed cafés. The colorful houses are also a great photo opportunity. Make yourself comfortable here after shopping in the city center. Enjoy good conversation and delici...

      published: 05 Nov 2023
    • "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism | GERMANY

      Oldenburg (Things to do - Places to Visit) - OLDENBURG Top Tourist Places City in Germany Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays work by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism Things to do in OLDENBURG - Places to Visit in Oldenburg Follow us on Twitter https://twitter.com/TopTouristPlac2 For Top Tourist Places, Videos Subscribe us on Youtube https://www.youtube.com/c/TopTouristPlaces Follow us on Facebook https://www.fac...

      published: 10 Nov 2019
    • Places to see in ( Oldenburg - Germany )

      Places to see in ( Oldenburg - Germany ) Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays works by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. An former royal seat in Lower Saxony, Oldenburg has a legacy left by generations of counts, dukes and grand dukes. Studying Oldenburg’s aristocratic history can be tricky as the House of Oldenburg had German, Danish and Russian branches. Just to illustrate, the future Russian Tsar Alexander II lived at Oldenburg’s Prinzepalais for a time in the 19th centu...

      published: 01 Aug 2018
    • 4k Germany City Oldenburg 🇩🇪 Walk in Tour Ultra HD (4k 60fps) Video

      Hello, my lovely people. Please Join my channel to get access to our perks: 👇🏾🫶🏾📹 https://www.youtube.com/channel/UC5wO0d9W48L-mY8C2ALMZ0Q/join We would like to get the best equipment for your best Views in all areas, we would need your Support to make it a better tomorrow 🗽 please click on the link ☝🏽 to support us with anything from your heart 💙💛🩵💚💜❤️🩷🧡🤍👇🏾👇🏾 https://www.youtube.com/channel/UC5wO0d9W48L-mY8C2ALMZ0Q/join #citytour #germany4k #4k60fps

      published: 16 May 2023
    • OLDENBURG - Sehenswürdigkeiten & Aktivitäten in der Grünkohlhauptstadt

      Komm mit uns nach Oldenburg! Wir zeigen dir in diesem Video, was Deutschlands Kohltourstadt Oldenburg an Sehenswürdigkeiten zu bieten hat und wo man den besten Grünkohl essen kann. Disclaimer: Wir wurden von Oldenburg für eine Nacht eingeladen. Vielen Dank dafür! Unsere Meinung bleibt davon natürlich unberührt. 👉🏻 *Abonniere für Reisetipps und mehr:* https://www.youtube.com/channel/UCqDnEoxKeRzBoVXJHAbrcGw?sub_confirmation=1 ❤️ *Werde Kanalmitglied:* https://www.youtube.com/nilsatravels/join ➡️ Hotels in Oldenburg: https://www.booking.com/searchresults.de.html?city=-1839439&aid=1840227&no_rooms=1&group_adults=2 * 📺 Gesamte Nordsee-Playlist ansehen: https://www.youtube.com/playlist?list=PLI3hETY2PqYy-yJeClpfbHODdgCaCsHMy = = = ÜBER UNS = = = Wir sind Nils und Isabell und wir wohnen i...

      published: 21 Jan 2024
    • XXL HIGHLIGHTS VfB Oldenburg vs. Ottensen inkl. PyroShow

      Alle getrackten Highlights aus dem Spiel!

      published: 04 Aug 2024
    • From 1994: The oversized pop art of Claes Oldenburg

      Swedish-American artist Claes Oldenburg, who created monumental, outsized sculptures of ordinary objects that stirred conversations about pop art in public spaces, has died at age 93. In this "Sunday Morning" report originally broadcast December 18, 1994, host Charles Osgood speaks with Oldenburg and his wife and collaborator, artist Coosje Van Bruggen, about the evolution of "The Shuttlecocks," their sculptures of giant badminton birds outside the Nelson-Atkins Museum in Kansas City. Osgood also talks with curators and critics about Oldenburg’s work. #claesoldenburg #popart "CBS Sunday Morning" features stories on the arts, music, nature, entertainment, sports, history, science and Americana, and highlights unique human accomplishments and achievements. Check local listings for CBS Sunda...

      published: 18 Jul 2022
    Top 10 Best Tourist Places to Visit in Oldenburg | Germany - English
    4:25

    Top 10 Best Tourist Places to Visit in Oldenburg | Germany - English

    • Order:
    • Duration: 4:25
    • Uploaded Date: 29 Jun 2022
    • views: 5420
    #OldenburgPlaces #PlacesInOldenburg #OldenburgVisitPlaces #OldenburgGermany Oldenburg is one of the biggest tourist attractions in Germany having many best places in Oldenburg. Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays works by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. So to help you figure out the places you need to try, we've gathered up a bucket list of the best Places in Oldenburg that you won't regret going to. Wiki Peaks is on a mission to promote the tourism in the World. We are here to show you the beautiful places in the world. You can see the beauty of this world from the comfort of your home. There are many beautiful places in Oldenburg. Germany has some of the best places in Oldenburg. We collected data on the top 10 places to visit in Oldenburg. There are many famous places in Oldenburg and some of them are beautiful places in Oldenburg. People from all over Germany love these Oldenburg beautiful places which are also Oldenburg famous places. In this video, we will show you the beautiful places to visit in Oldenburg. Please help us in our cause and share this channel as much as possible with your friends and family. ***All images used in this video are a property of their owners. We have no intention of showing these images as our own property. We used these images just to promote tourism.***
    https://wn.com/Top_10_Best_Tourist_Places_To_Visit_In_Oldenburg_|_Germany_English
    One day in Oldenburg 🇩🇪 GERMANY
    4:48

    One day in Oldenburg 🇩🇪 GERMANY

    • Order:
    • Duration: 4:48
    • Uploaded Date: 30 Aug 2023
    • views: 5742
    One day in Oldenburg! 🇩🇪 Oldenburg is an independent city in the state of Lower Saxony, Germany. The city is officially named Oldenburg (Oldb) (Oldenburg in Oldenburg) to distinguish from Oldenburg in Holstein. During the French annexation (1811–1813) in the wake of the Napoleonic war against Britain, it was also known as Le Vieux-Bourg in French. The city is at the rivers Hunte and Haaren, in the northwestern region between the cities of Bremen in the east and Groningen (Netherlands) in the west. It has a population of 170,000 (November 2019). Oldenburg is part of the Bremen/Oldenburg Metropolitan Region, with 2.37 million people. The city is the place of origin of the House of Oldenburg. Before the end of the German Empire (1918), it was the administrative centre and residence of the monarchs of Oldenburg. What to see in one day in Oldenburg? •The State Theater is the oldest and largest theater in Oldenburg. The theater offers opera, musicals and various theater projects at four venues. The Big House with up to 577 seats offers space for operas and lavishly designed pieces. •St. Lambert's Church (in German: St Lamberti-Kirche) is the main Evangelical Lutheran church in the centre of the city of Oldenburg, Lower Saxony, Germany. •The State Museum for Art and Cultural History (in German: Landesmuseum für Kunst und Kulturgeschichte) is an art museum consisting of three separate buildings located close to each other in the city of Oldenburg, Lower Saxony, Germany. •The State Museum for Nature and Man (in German: Landesmuseum für Natur und Mensch) is a natural history, ethnology, and archaeology museum in the city of Oldenburg, Lower Saxony, Germany. •Laboratorium Theater •Friedenskirche #oldenburg #germany #deutschland #niedersachsen #onedayinoldenburg #touroldenburg #oldenburgstadt #oldenburgcity #walking #placestovisitneargermany #bestcitiesingermany #germanybeautifulplaces #germanybeautifulcity #bestdesignedcityintheworld #mostbeautifulcitiesineurope #mostbeautifulcityintheworld #10bestplacestovisitingermany #germanytop10city #daytrips #amazingcities2023
    https://wn.com/One_Day_In_Oldenburg_🇩🇪_Germany
    Realer Irrsinn: Skyline-Panne in Oldenburg | extra 3 Spezial: Der reale Irrsinn | NDR
    2:38

    Realer Irrsinn: Skyline-Panne in Oldenburg | extra 3 Spezial: Der reale Irrsinn | NDR

    • Order:
    • Duration: 2:38
    • Uploaded Date: 23 Jul 2024
    • views: 192815
    Noch mehr irre Realsatiren in der ganze Folge "extra 3 Spezial: Der reale Irrsinn" vom 08.11.2023 in der ARD Mediathek: https://1.ard.de/extra3_RIS_08112023_BT 22 Dienstwägen, zwei Rathäuser, 300 Kilometer Unterschied. Ein Bildfehler entlarvt, dass selbst Städte manchmal Identitätskrisen haben. Autor*in: Patricia Kümpel
    https://wn.com/Realer_Irrsinn_Skyline_Panne_In_Oldenburg_|_Extra_3_Spezial_Der_Reale_Irrsinn_|_Ndr
    Oldenburg Germany/walking tour in Oldenburg, one of the most beautiful cities in Germany 4k 60fps
    46:17

    Oldenburg Germany/walking tour in Oldenburg, one of the most beautiful cities in Germany 4k 60fps

    • Order:
    • Duration: 46:17
    • Uploaded Date: 05 Nov 2023
    • views: 11852
    Oldenburg Germany Does your heart beat for shopping? How fitting that Oldenburg's large pedestrian zone looks like a heart from above. Lange Straße and Achternstraße form the main arteries. They lead from our bright yellow castle to the Lappan landmark. You will find many small and large shops along the way. We recommend that you definitely turn into the smaller cross streets in the city center during your shopping trip. Discover fashion, shoes, accessories and jewelry off the beaten track or browse through a bookstore. Shopping tip: On Bergstrasse or Burgstrasse you will not only find small shops, but also relaxed cafés. The colorful houses are also a great photo opportunity. Make yourself comfortable here after shopping in the city center. Enjoy good conversation and delicious cake while you admire your new achievements. The shopping Sundays in Oldenburg are also a highlight. From bicycles to kale – each one has its own motto and promises extra shopping fun. Owner-managed retail with service and quality Throughout the city, but especially in Oldenburg's large pedestrian zone, you will find a colorful mix of international fashion, crafts and design with many owner-managed specialist shops. There is simply everything in our beautiful city. Great things from people who surprise, provide special service, inspire and deserve your trust. Personal advice and high-quality products are a given for the owner-managed businesses. Take your time browsing through the stores and discover your new favorite item. Oldenburg markets attract with freshness and personality Tuesdays, Fridays and Saturdays are market days in Oldenburg's parlor in front of the old town hall and the large St. Lamberti Church. Not only are typical weekly market products offered here, but there is also always something delicious to eat and plenty of opportunities to talk to the locals. Try out the regional and seasonal offerings and observe the goings-on around you. Freshly strengthened, the large pedestrian zone right next door invites you to continue shopping.
    https://wn.com/Oldenburg_Germany_Walking_Tour_In_Oldenburg,_One_Of_The_Most_Beautiful_Cities_In_Germany_4K_60Fps
    "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism | GERMANY
    4:14

    "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism | GERMANY

    • Order:
    • Duration: 4:14
    • Uploaded Date: 10 Nov 2019
    • views: 6783
    Oldenburg (Things to do - Places to Visit) - OLDENBURG Top Tourist Places City in Germany Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays work by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism Things to do in OLDENBURG - Places to Visit in Oldenburg Follow us on Twitter https://twitter.com/TopTouristPlac2 For Top Tourist Places, Videos Subscribe us on Youtube https://www.youtube.com/c/TopTouristPlaces Follow us on Facebook https://www.facebook.com/toptouristplaces/ OLDENBURG Top 29 Tourist Places - Oldenburg, Germany, Europe
    https://wn.com/Oldenburg_Top_29_Tourist_Places_|_Oldenburg_Tourism_|_Germany
    Places to see in ( Oldenburg - Germany )
    1:41

    Places to see in ( Oldenburg - Germany )

    • Order:
    • Duration: 1:41
    • Uploaded Date: 01 Aug 2018
    • views: 9145
    Places to see in ( Oldenburg - Germany ) Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays works by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. An former royal seat in Lower Saxony, Oldenburg has a legacy left by generations of counts, dukes and grand dukes. Studying Oldenburg’s aristocratic history can be tricky as the House of Oldenburg had German, Danish and Russian branches. Just to illustrate, the future Russian Tsar Alexander II lived at Oldenburg’s Prinzepalais for a time in the 19th century. The tremendous art collections of the Grand Dukes of Oldenburg awaits you across three resplendent properties. Keep the palace garden and stunning opera house in mind, and catch up with Oldenburg’s past at engrossing museums and old landmarks like the “Lappan” belfry. The tallest building in the city, the Lutheran St Lambert’s Church has five towers, the highest of which measures 86 metres above the western facade. The multitalented 20th-century artist Horst Janssen grew up in Oldenburg and lived here most of his life, becoming an honorary citizen in 1992. The dedicated museum opened in a purpose-built edifice in 2000 and gives you a timeline of his career and shows the many different mediums he used for his art: There are watercolours, posters, etchings, drawings and lithographies. When the land Grand Duke of Oldenburg abdicated in 1919, the Duchy’s art collections and valuable ensembles of decorative arts were made available to the public. Oldenburg’s first art museum goes back 1867, making it one of the oldest purpose-built museum buildings in North Germany. Dating to 1826, the Prinzepalais was the residence for the Russian princes Peter and Alexander. In 16 hectares, the grounds of Oldenburg Palace push out to the south of the city’s historical centre. The garden is in the English landscape style and in 2014 celebrated its 200th anniversary. With a deceptive, modern lobby next to the Horst-Janssen-Museum, Oldenburg’s municipal museum is actually an ensemble of three interconnected historic villas. The tower is from the 1460s and was actually the bell-tower of a church and hospital that became defunct during the Reformation and were lost in the city fire in 1676. The Lappan meanwhile was secularised and became a habitable watchtower, while its current Baroque dome was added in 1709. All bus lines running through the centre of Oldenburg stop in front of this popular landmark, which now contains a travel agency. The last Burgher house to be found in Oldenburg also came through the fire of 1676 undamaged. The Degodehaus is at Markt 24 a little way from the town hall, and is an early-16th-century residential house. In 3.7 hectares on Philosophenweg to the northwest of the city lies the botanical garden, maintained by the University of Oldenburg. Landesmuseum für Natur und Mensch was born back in 1835 when Augustus, Grand Duke of Oldenburg purchased a compendium of insect and bird specimens. On the southern side of the Lambertikirche is the last remaining vestige of Oldenburg’s city defences. This powder magazine dates from the final expansion of the fortifications in the 1500s, and at first would have been used as a watchtower when it had a conical roof. This splendid Historicist theatre is a big institution in Oldenburg, employing 450 people and attracting 200,000 spectators each year. On Tuesdays, Thursdays and Saturdays there’s a fresh produce market at Markt between the town hall and the Lamberikirche. Minutes west of Oldenburg is a sophisticated resort on the south shore of the Zwischenahner Meer. This 550-hectare lake has been drawing holidaymakers for its water sports and healthy air since the mid-19th century. ( Oldenburg - Germany ) is well know as a tourist destination because of the variety of places you can enjoy while you are visiting Oldenburg . Through a series of videos we will try to show you recommended places to visit in Oldenburg - Germany Join us for more : https://www.youtube.com/channel/UCLP2J3yzHO9rZDyzie5Y5Og http://placestoseein87.blogspot.com.eg/ https://plus.google.com/108460845579164318812 https://www.facebook.com/placestoseein87/ https://twitter.com/Placestoseein1 https://www.tumblr.com/blog/placestoseein https://www.pinterest.com/placestoseein87/places-to-see-in/
    https://wn.com/Places_To_See_In_(_Oldenburg_Germany_)
    4k Germany City Oldenburg 🇩🇪 Walk in Tour Ultra HD (4k 60fps) Video
    33:01

    4k Germany City Oldenburg 🇩🇪 Walk in Tour Ultra HD (4k 60fps) Video

    • Order:
    • Duration: 33:01
    • Uploaded Date: 16 May 2023
    • views: 2525
    Hello, my lovely people. Please Join my channel to get access to our perks: 👇🏾🫶🏾📹 https://www.youtube.com/channel/UC5wO0d9W48L-mY8C2ALMZ0Q/join We would like to get the best equipment for your best Views in all areas, we would need your Support to make it a better tomorrow 🗽 please click on the link ☝🏽 to support us with anything from your heart 💙💛🩵💚💜❤️🩷🧡🤍👇🏾👇🏾 https://www.youtube.com/channel/UC5wO0d9W48L-mY8C2ALMZ0Q/join #citytour #germany4k #4k60fps
    https://wn.com/4K_Germany_City_Oldenburg_🇩🇪_Walk_In_Tour_Ultra_Hd_(4K_60Fps)_Video
    OLDENBURG - Sehenswürdigkeiten & Aktivitäten in der Grünkohlhauptstadt
    5:00

    OLDENBURG - Sehenswürdigkeiten & Aktivitäten in der Grünkohlhauptstadt

    • Order:
    • Duration: 5:00
    • Uploaded Date: 21 Jan 2024
    • views: 10472
    Komm mit uns nach Oldenburg! Wir zeigen dir in diesem Video, was Deutschlands Kohltourstadt Oldenburg an Sehenswürdigkeiten zu bieten hat und wo man den besten Grünkohl essen kann. Disclaimer: Wir wurden von Oldenburg für eine Nacht eingeladen. Vielen Dank dafür! Unsere Meinung bleibt davon natürlich unberührt. 👉🏻 *Abonniere für Reisetipps und mehr:* https://www.youtube.com/channel/UCqDnEoxKeRzBoVXJHAbrcGw?sub_confirmation=1 ❤️ *Werde Kanalmitglied:* https://www.youtube.com/nilsatravels/join ➡️ Hotels in Oldenburg: https://www.booking.com/searchresults.de.html?city=-1839439&aid=1840227&no_rooms=1&group_adults=2 * 📺 Gesamte Nordsee-Playlist ansehen: https://www.youtube.com/playlist?list=PLI3hETY2PqYy-yJeClpfbHODdgCaCsHMy = = = ÜBER UNS = = = Wir sind Nils und Isabell und wir wohnen in der Nähe von Düsseldorf. Auf Nilsa Travels möchten wir dich aus dem Alltag entführen und mit auf unsere Reisen und Ausflüge nehmen: 🌎 BLOG: https://www.nilsa-travels.de 📧 E-MAIL: info@nilsa-travels.de ☕ KAFFEEKASSE: https://www.nilsa-travels.de/trinkgeld 📷 EQUIPMENT & MEHR: https://www.amazon.de/shop/nilsatravels * Alle mit * gekennzeichneten Links sind Affilate-Links. Solltest du über einen dieser Links etwas kaufen, werden wir, ohne Mehrkosten für dich, durch eine kleine Summe am Kauf beteiligt. Danke für deine Unterstützung! 0:00 Einleitung 0:19 Lappan 0:42 Donnerhall 1:00 Oldenburger Schloss 1:29 Schlossgarten 2:19 Oldenburger Staatstheater 2:40 Altes Rathaus 2:49 St. Lamberti-Kirche 3:13 Kohltourhauptstadt 3:54 Shoppen in Oldenburg 4:21 Stadthafen 4:40 Outro
    https://wn.com/Oldenburg_Sehenswürdigkeiten_Aktivitäten_In_Der_Grünkohlhauptstadt
    XXL HIGHLIGHTS VfB Oldenburg vs. Ottensen inkl. PyroShow
    14:25

    XXL HIGHLIGHTS VfB Oldenburg vs. Ottensen inkl. PyroShow

    • Order:
    • Duration: 14:25
    • Uploaded Date: 04 Aug 2024
    • views: 247
    Alle getrackten Highlights aus dem Spiel!
    https://wn.com/Xxl_Highlights_Vfb_Oldenburg_Vs._Ottensen_Inkl._Pyroshow
    From 1994: The oversized pop art of Claes Oldenburg
    9:09

    From 1994: The oversized pop art of Claes Oldenburg

    • Order:
    • Duration: 9:09
    • Uploaded Date: 18 Jul 2022
    • views: 44255
    Swedish-American artist Claes Oldenburg, who created monumental, outsized sculptures of ordinary objects that stirred conversations about pop art in public spaces, has died at age 93. In this "Sunday Morning" report originally broadcast December 18, 1994, host Charles Osgood speaks with Oldenburg and his wife and collaborator, artist Coosje Van Bruggen, about the evolution of "The Shuttlecocks," their sculptures of giant badminton birds outside the Nelson-Atkins Museum in Kansas City. Osgood also talks with curators and critics about Oldenburg’s work. #claesoldenburg #popart "CBS Sunday Morning" features stories on the arts, music, nature, entertainment, sports, history, science and Americana, and highlights unique human accomplishments and achievements. Check local listings for CBS Sunday Morning broadcast times. Subscribe to the "CBS Sunday Morning" YouTube channel: http://bit.ly/20gXwJT Get more of "CBS Sunday Morning": http://cbsn.ws/1PlMmAz Follow "CBS Sunday Morning" on Instagram: http://bit.ly/23XunIh Like "CBS Sunday Morning" on Facebook: https://bit.ly/3sRgLPG Follow "CBS Sunday Morning" on Twitter: http://bit.ly/1RquoQb Subscribe to our newsletter: http://cbsn.ws/1RqHw7T Download the CBS News app: http://cbsn.ws/1Xb1WC8 Try Paramount+ free: https://bit.ly/2OiW1kZ For video licensing inquiries, contact: licensing@veritone.com
    https://wn.com/From_1994_The_Oversized_Pop_Art_Of_Claes_Oldenburg
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Top 10 Best Tourist Places to Visit in Oldenburg | Germany - English
      4:25
      Top 10 Best Tourist Places to Visit in Oldenburg | Germany - Englishremove from playlist
    • One day in Oldenburg 🇩🇪 GERMANY
      4:48
      One day in Oldenburg 🇩🇪 GERMANYremove from playlist
    • Realer Irrsinn: Skyline-Panne in Oldenburg | extra 3 Spezial: Der reale Irrsinn | NDR
      2:38
      Realer Irrsinn: Skyline-Panne in Oldenburg | extra 3 Spezial: Der reale Irrsinn | NDRremove from playlist
    • Oldenburg Germany/walking tour in Oldenburg, one of the most beautiful cities in Germany 4k 60fps
      46:17
      Oldenburg Germany/walking tour in Oldenburg, one of the most beautiful cities in Germany 4k 60fpsremove from playlist
    • 4:14
      "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism | GERMANYremove from playlist
    • Places to see in ( Oldenburg - Germany )
      1:41
      Places to see in ( Oldenburg - Germany )remove from playlist
    • 4k Germany City Oldenburg 🇩🇪 Walk in Tour Ultra HD (4k 60fps) Video
      33:01
      4k Germany City Oldenburg 🇩🇪 Walk in Tour Ultra HD (4k 60fps) Videoremove from playlist
    • OLDENBURG - Sehenswürdigkeiten & Aktivitäten in der Grünkohlhauptstadt
      5:00
      OLDENBURG - Sehenswürdigkeiten & Aktivitäten in der Grünkohlhauptstadtremove from playlist
    • From 1994: The oversized pop art of Claes Oldenburg
      9:09
      From 1994: The oversized pop art of Claes Oldenburgremove from playlist
    PLAYLIST TIME: 0:00 / 2:05:38

    Top 10 Best Tourist Places to Visit in Oldenburg | Germany - English

    #OldenburgPlaces #PlacesInOldenburg #OldenburgVisitPlaces #OldenburgGermany Oldenburg is one of the biggest tourist attractions in Germany having many best places in Oldenburg. Oldenburg is a city in northwest Germany. The central Horst-Janssen-Museum displays works by the 20th-century artist, including lithographs and drawings. The State Museum for Nature and Man has exhibits exploring the region's natural history, plus an aquarium. Oldenburg Castle houses part of the State Museum for Art and Cultural History, which showcases regional artifacts and European paintings. So to help you figure out the places you need to try, we've gathered up a bucket list of the best Places in Oldenburg that you won't regret going to. Wiki Peaks is on a mission to promote the tourism in the World. We are here to show you the beautiful places in the world. You can see the beauty of this world from the comfort of your home. There are many beautiful places in Oldenburg. Germany has some of the best places in Oldenburg. We collected data on the top 10 places to visit in Oldenburg. There are many famous places in Oldenburg and some of them are beautiful places in Oldenburg. People from all over Germany love these Oldenburg beautiful places which are also Oldenburg famous places. In this video, we will show you the beautiful places to visit in Oldenburg. Please help us in our cause and share this channel as much as possible with your friends and family. ***All images used in this video are a property of their owners. We have no intention of showing these images as our own property. We used these images just to promote tourism.***
    4:25
    Top 10 Best Tourist Places to Visit in Oldenburg | Germany - English
    #OldenburgPlaces #PlacesInOldenburg #OldenburgVisitPlaces #OldenburgGermany Oldenburg is o...
    published: 29 Jun 2022
    Play in Full Screen
    4:48
    One day in Oldenburg 🇩🇪 GERMANY
    One day in Oldenburg! 🇩🇪 Oldenburg is an independent city in the state of Lower Saxony, G...
    published: 30 Aug 2023
    Play in Full Screen
    2:38
    Realer Irrsinn: Skyline-Panne in Oldenburg | extra 3 Spezial: Der reale Irrsinn | NDR
    Noch mehr irre Realsatiren in der ganze Folge "extra 3 Spezial: Der reale Irrsinn" vom 08....
    published: 23 Jul 2024
    Play in Full Screen
    46:17
    Oldenburg Germany/walking tour in Oldenburg, one of the most beautiful cities in Germany 4k 60fps
    Oldenburg Germany Does your heart beat for shopping? How fitting that Oldenburg's larg...
    published: 05 Nov 2023
    Play in Full Screen
    4:14
    "OLDENBURG" Top 29 Tourist Places | Oldenburg Tourism | GERMANY
    Oldenburg (Things to do - Places to Visit) - OLDENBURG Top Tourist Places City in Germany ...
    published: 10 Nov 2019
    Play in Full Screen
    1:41
    Places to see in ( Oldenburg - Germany )
    Places to see in ( Oldenburg - Germany ) Oldenburg is a city in northwest Germany. The ce...
    published: 01 Aug 2018
    Play in Full Screen
    33:01
    4k Germany City Oldenburg 🇩🇪 Walk in Tour Ultra HD (4k 60fps) Video
    Hello, my lovely people. Please Join my channel to get access to our perks: 👇🏾🫶🏾📹 https://...
    published: 16 May 2023
    Play in Full Screen
    5:00
    OLDENBURG - Sehenswürdigkeiten & Aktivitäten in der Grünkohlhauptstadt
    Komm mit uns nach Oldenburg! Wir zeigen dir in diesem Video, was Deutschlands Kohltourstad...
    published: 21 Jan 2024
    Play in Full Screen
    14:25
    XXL HIGHLIGHTS VfB Oldenburg vs. Ottensen inkl. PyroShow
    Alle getrackten Highlights aus dem Spiel!
    published: 04 Aug 2024
    Play in Full Screen
    9:09
    From 1994: The oversized pop art of Claes Oldenburg
    Swedish-American artist Claes Oldenburg, who created monumental, outsized sculptures of or...
    published: 18 Jul 2022
    Play in Full Screen

    Oldenburg (Oldenburg)

    Oldenburg (Oldb) or simply Oldenburg (German pronunciation: [ˈɔldənbʊʁk]; Low German: Ollnborg; Saterland Frisian: Ooldenbuurich) is an independent city in the state of Lower Saxony, Germany. During the French annexation (1811–1813) in the wake of the Napoleonic war against Britain, it was also known as Le Vieux-Bourg in French. The city is situated at the Rivers Hunte and Haaren, in the northwestern region between the cities of Bremen in the east and Groningen (Netherlands) in the west. It has a population of 160,907 (December 2014).

    The city is the place of origin of the House of Oldenburg. Before the end of the German Empire (1918), it was the administrative centre and residence of the monarchs of Oldenburg.

    History

    Archaeological finds point to a settlement dating back to the 8th century. The place was first mentioned in 1108 as Aldenburg in connection with Elimar I (also known as Egilmar I) who is now commonly seen as the first count of Oldenburg. The town gained importance due to its location at a ford of the navigable Hunte river. Oldenburg became the capital of the County of Oldenburg (later Duchy, Grand Duchy, and Free State), a small state in the shadow of the much more powerful Hanseatic city of Bremen.

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

    Edit

    Punk Preservation: Getty’s Glenn Phillips On Securing Raymond Pettibon’s Archive

    New York Observer 29 Apr 2025
    Pettibon’s archive captures the full sweep of a career that bridges Southern California’s punk scene and the wider art world ... Sign Up ... But we also have Rodin’s house key, Claes Oldenburg’s childhood drawings and a great collection of his ray guns ... .
    Edit

    From loathed to legendary: The KC artworks that sparked a new era of public art

    Kansas City Star 16 Apr 2025
    Dive into the history of the Nelson-Atkins’ famous Shuttlecocks and the way they’ve influenced contemporary sculpture across KC in the 20 years since their unveiling ... .
    Edit

    Daniella Luxembourg’s $30 Million Collection Leads Sotheby’s May Auctions

    New York Observer 15 Apr 2025
    Featuring work by some of the most prominent names of the Italian postwar period alongside American contemporary masters such as Alexander Calder and Claes Oldenburg, the collection is expected to generate $30 million.
    • 1
    ×