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

Offenbach am Main

Offenbach am Main (German pronunciation: [ˈɔfənbaχ am ˈmaɪ̯n]) is a city in Hesse, Germany, located on the southside of the river Main and part of the Frankfurt Rhein-Main urban area. Offenbach has a population of 126,934.

In the twentieth century the city's economy was dominated by the machine-building and leather industries, and it was also a major centre of the typography and design industries. Other important industries are the automobile and pharmaceutical industries. More than half of the city's population have a non-German background, with Turks, former Yugoslavs, Arabs, Italians, Greeks and Poles as major groups.

History

The first documented reference to a suburb of Offenbach appears in 770. In a document of the Holy Roman Emperor Otto II dating to 977 exists the first mention of the place of Offenbach. During the Middle Ages Offenbach passed through many hands. Only in 1486 could the Count Ludwig of Isenburg finally take control of city for his family, and 1556 Count Reinhard of Isenburg relocated his Residence to Offenbach, building a palace, the Isenburger Schloß (Isenburg Palace), which was completed in 1559. It was destroyed by fire in 1564 and rebuilt in 1578.

Offenbach (Main) Hauptbahnhof

Offenbach am Main Hauptbahnhof is a railway station serving the German city of Offenbach am Main. It is located on the Frankfurt–Bebra railway/South Main line between Frankfurt and Hanau on the south bank of the Main. It is also the starting point of the Rodgau Railway, via Obertshausen, Rodgau and Ober-Roden to Dieburg (originally to Reinheim).

History

The station was built from 1872 to 1873 during the construction of the Frankfurt–Bebra railway and was given an entrance building in Renaissance Revival style. It was commissioned by the Königliche Eisenbahndirektion (Royal Railway Division) of Frankfurt. Because of the development of the city around the line which was originally laid on the same level as the roads, the railway was put on an embankment between 1912 and 1926 so that the increasing road traffic could run under it. This forced the rail track field to be elevated. A new station building was out of the question because of the depressed economic conditions. The entrance building was radically restructured in the 1920s with a "conservative-traditionalist” appearance. The entrance building is listed as a monument under the Hessian Monument Protection Act. There is fountain by Bruno Schaefer called Vogelbrunnen ("bird fountain") on the platform between tracks 1 and 2.

Podcasts:

  • Offenbach am Main Tour 2022 Germany - 4K- 60FPS

    Driving in Offenbach am Main germany enjoy the Ride!! ►Date recorded : 30.01.2022 ►► iphone pro13: 4K/60 FPS/ prores Music: NCS → 📸 Subscribe for more: https://www.youtube.com/channel/UC2lQV_KtoO67en7tX6-jQZg ______________________________________________________________ Offenbach am Main Tour 2022 Germany - 4K- 60FPS All material in this video is original and personally recorded by myself on location. The unauthorized reproduction or distribution of this copyrighted work is illegal. Thanks for watching!❤️ Chatha FoodVlog #OffenbachamMain#Germany#Drivingtrip#2022#City

    published: 31 Jan 2022
  • Walking around Offenbach am Main [4K]

    Hi Walkers, in this episode we will explore and walking around Offenbach am Main. Offenbach am Main is a city in Hesse, Germany, on the left bank of the river Main. It borders Frankfurt and is part of the Frankfurt urban area and the larger Frankfurt Rhein-Main urban area. During the Second World War a third of the city was destroyed by Allied bombing, which claimed 467 lives. With the new district Lauterborn the city was expanded to the south in the 1960s. On the border with Frankfurt, the office district Kaiserlei was built. Offenbach is a so-called ´Sozialer Brennpunkt`(= multiple social problems area) because of unemployment, poverty, gang related crime and migration. Offenbach has a large non-German population. In 2016, foreign nationals made up 37% of the population. The largest c...

    published: 03 Dec 2022
  • Offenbach: How bad is it?

    A few of my viewers have asked me about Offenbach, a city with a really poor reputation. But just how terrible a place is it? Music: "Style Funk" and "Hot Swing" by Kevin MacLeod http://incompetech.com/ Creative Commons Attribution licence --------- Support me on Patreon for access to bonus content and more: http://patreon.com/rewboss Send letters and postcards to: Rewboss Postfach 10 06 29 63704 Aschaffenburg Germany Please don't send parcels or packages, or anything that has to be signed for. --------- My website: http://www.rewboss.com/ My blog: http://rewboss.blogspot.com/ My Twitter feed: https://www.twitter.com/rewboss My Facebook profile: http://facebook.com/rewboss

    published: 28 Mar 2019
  • Offenbach am Main, Sehenswürdigkeiten

    Wir beginnen unseren Rundgang durch Offenbach am Main (Hessen) am Büsingpark. Nachdem wir uns u.a. das Büsing-Palais angesehen haben, gehen wir über Dom- und Ludwigstrasse zum Deutschen Ledermuseum. Danach schauen wir uns noch das Rathaus, die Evangelische Stadtkirche, die Französich-Reformierte-Kirche und den Brunnen am Marktplatz an. Später begeistert uns noch das Isenburger Schloss und das Capitol-Theater. Am Meinufer endet unser Rundgang in Offenbach. Musik: Inner Light von Kevin MacLeod ist unter der Lizenz Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/) lizenziert. Quelle: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1300021 Interpret: http://incompetech.com/

    published: 08 Jan 2018
  • Offenbach am Main 4k drone video

    Background music via Fesliyan Studios

    published: 26 Dec 2020
  • Walking in OFFENBACH / Germany 🇩🇪- 4K 60fps (UHD)

    Offenbach (Main) is a city in the state Hesse, Germany. Offenbach lies on the left bank of the river Main and borders to Frankfurt am Main which we visited several times on POPtravel. Tourists may visit Offenbach mostly due to the proximity to Frankfurt for accommodation. Offenbach itself has the highest percentage of foreign residents in all Germany giving it a multi-cultural character. We start our evening tour of Offenbach (October 2020) from the train station and walk to the city center first. After around 5 minutes we are in the main shopping area. Next we head North to the Büsingpark with the Büsing Palais. Our walk continues back to the city center around the Frankfurther Straße, the Marktplatz as we see the Restaurant and Bars around Wilhelmsplatz. It is getting darker now so ...

    published: 07 Jan 2021
  • Offenbach, Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps

    Offenbach Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps Hi everyone, in this episode we will explore and walking through Offenbach am Main. Offenbach am Main is a city in Hesse, Germany, on the left bank of the river Main. It borders Frankfurt and is part of the Frankfurt urban area and the larger Frankfurt Rhein-Main urban area. During the Second World War a third of the city was destroyed by Allied bombing, which claimed 467 lives. With the new district Lauterborn the city was expanded to the south in the 1960s. On the border with Frankfurt, the office district Kaiserlei was built. Offenbach is a so-called ´Sozialer Brennpunkt`(= multiple social problems area) because of unemployment, poverty, gang related crime and migration. Offenbach has a large non-German population. In 201...

    published: 07 Sep 2023
  • Offenbach goes Hollywood | maintower

    Manche trauen ihren Augen nicht so ganz. Eigentlich kennt man den Schriftzug Hollywood doch aus Los Angeles. Er sollte damals Werbung für Grundstückskäufe machen, bevor er in Zusammenhang mit der Film- und Traumfabrik gebracht wurde. Offenbach hat nun auch so einen Schriftzug. Nicht zum ersten Mal, aber jetzt noch schöner. Mehr von uns? Lasst ein Abo bei unserem neuen Kanal https://1.ard.de/hessenschau_abo?p=pi ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📺Mehr aktuelle Inhalte des Hessischen Rundfunks findet ihr hier: https://1.ard.de/hr_in_der_ARD_Mediathek?p=yt ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📰Aktuelle Informationen zu Ereignissen in Hessen findet ihr hier: https://1.ard.de/hessenschau_de?p=yt ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📰Aktuelle Informationen zu Ereignissen in Deutschland findet ihr hier: https://1.ard.de/tagesschau_de?p=yt ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬...

    published: 15 Jul 2023
  • IJG Erlangen Live Service 28.01.2023

    Internationale Jesus Gemeinde (Church) Erlangen / Fürth / Nürnberg Metropolitan Region https://www.ijg-erlangen.de/​ Bilingual Services (English / Deutsch) every Sunday @ 10:30 AM Tennenloher Straße 47, 91058 Erlangen Online | https://www.ijg-erlangen.de/live/​ Contact | office(at)ijg-erlangen.de Prayer | gebet(at)ijg-erlangen.de Donations | https://www.ijg-erlangen.de/de/spenden/ Impressum nach dem Telemediengesetz: Internationale Jesus Gemeinde e.V., Langen (Hessen), Rheinstrasse 32 63225 Langen Telefon: 061035095981 E-Mail: office@ijg-langen.de Vertreten durch: Christian Fricke (1. Vorsitzender) Joshua Gilliland (2.Vorsitzender) Florian Leuschner (Schatzmeister) Registereintrag: Eingetragen im Vereinsregister. Registergericht: Offenbach am Main Registernummer: 3325 IJG Zweigst...

    published: 28 Jan 2024
  • Hartes Pflaster: Sozialer Brennpunkt Offenbach | SPIEGEL TV

    Arbeitslosigkeit, Armut, Kriminalität: schon vor Corona war das hessische Offenbach ein sozialer Brennpunkt. Doch die Pandemie trifft jetzt die Schwächsten der Gesellschaft am Härtesten. Eine SPIEGEL TV-Reportage über Menschen in Not.

    published: 29 Sep 2020
Offenbach am Main Tour 2022 Germany - 4K- 60FPS
18:09

Offenbach am Main Tour 2022 Germany - 4K- 60FPS

  • Order:
  • Duration: 18:09
  • Uploaded Date: 31 Jan 2022
  • views: 8840
Driving in Offenbach am Main germany enjoy the Ride!! ►Date recorded : 30.01.2022 ►► iphone pro13: 4K/60 FPS/ prores Music: NCS → 📸 Subscribe for more: https://www.youtube.com/channel/UC2lQV_KtoO67en7tX6-jQZg ______________________________________________________________ Offenbach am Main Tour 2022 Germany - 4K- 60FPS All material in this video is original and personally recorded by myself on location. The unauthorized reproduction or distribution of this copyrighted work is illegal. Thanks for watching!❤️ Chatha FoodVlog #OffenbachamMain#Germany#Drivingtrip#2022#City
https://wn.com/Offenbach_Am_Main_Tour_2022_Germany_4K_60Fps
Walking around Offenbach am Main [4K]
25:31

Walking around Offenbach am Main [4K]

  • Order:
  • Duration: 25:31
  • Uploaded Date: 03 Dec 2022
  • views: 5389
Hi Walkers, in this episode we will explore and walking around Offenbach am Main. Offenbach am Main is a city in Hesse, Germany, on the left bank of the river Main. It borders Frankfurt and is part of the Frankfurt urban area and the larger Frankfurt Rhein-Main urban area. During the Second World War a third of the city was destroyed by Allied bombing, which claimed 467 lives. With the new district Lauterborn the city was expanded to the south in the 1960s. On the border with Frankfurt, the office district Kaiserlei was built. Offenbach is a so-called ´Sozialer Brennpunkt`(= multiple social problems area) because of unemployment, poverty, gang related crime and migration. Offenbach has a large non-German population. In 2016, foreign nationals made up 37% of the population. The largest communities are, in that order, from Turkey, Greece, Romania, Poland and Italy. According to census data, Offenbach and Duisburg had the highest share of Muslim migrants of all German districts in 2011. Recorded - May 2022, Weekday Weather Conditions & Temperature - sunny, 20°C/68°F VIDEO THEMES Snow walk 2022 // Frankfurt tour // Frankfurt 2022 // Frankfurt in Germany // Frankfurt walk // Walking in Offenbach // Central Frankfurt walk // Frankfurt walking video // Offenbach city walk // Frankfurt walking tour 2022 // Frankfurt street walk // Frankfurt 2022// Frankfurt walk 4K HDR // Frankfurt binaural sound // Frankfurt walking tour 2022 // Virtual walking tour 4K // best Frankfurt walking tour // Central Frankfurt walking tour // Konstablerwache Frankfurt // Zeil Frankfurt // Bankenviertel Frankfurt // Frankfurt Höchst // Höchst Altstadt // Gallusviertel // Frankfurt Gallus #Frankfurt #MrWalking2go #WalkingEurope #CommerzbankTower #FrankfurtWalks #CityWalks #WalkingTour #VideoWalks #WalkingVideo #Videography #ASMR #iPhone #djiPocket #djiAction Please do not copy, reproduce, distribute or re-upload any of my content.
https://wn.com/Walking_Around_Offenbach_Am_Main_4K
Offenbach: How bad is it?
4:19

Offenbach: How bad is it?

  • Order:
  • Duration: 4:19
  • Uploaded Date: 28 Mar 2019
  • views: 20933
A few of my viewers have asked me about Offenbach, a city with a really poor reputation. But just how terrible a place is it? Music: "Style Funk" and "Hot Swing" by Kevin MacLeod http://incompetech.com/ Creative Commons Attribution licence --------- Support me on Patreon for access to bonus content and more: http://patreon.com/rewboss Send letters and postcards to: Rewboss Postfach 10 06 29 63704 Aschaffenburg Germany Please don't send parcels or packages, or anything that has to be signed for. --------- My website: http://www.rewboss.com/ My blog: http://rewboss.blogspot.com/ My Twitter feed: https://www.twitter.com/rewboss My Facebook profile: http://facebook.com/rewboss
https://wn.com/Offenbach_How_Bad_Is_It
Offenbach am Main, Sehenswürdigkeiten
8:00

Offenbach am Main, Sehenswürdigkeiten

  • Order:
  • Duration: 8:00
  • Uploaded Date: 08 Jan 2018
  • views: 14311
Wir beginnen unseren Rundgang durch Offenbach am Main (Hessen) am Büsingpark. Nachdem wir uns u.a. das Büsing-Palais angesehen haben, gehen wir über Dom- und Ludwigstrasse zum Deutschen Ledermuseum. Danach schauen wir uns noch das Rathaus, die Evangelische Stadtkirche, die Französich-Reformierte-Kirche und den Brunnen am Marktplatz an. Später begeistert uns noch das Isenburger Schloss und das Capitol-Theater. Am Meinufer endet unser Rundgang in Offenbach. Musik: Inner Light von Kevin MacLeod ist unter der Lizenz Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/) lizenziert. Quelle: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1300021 Interpret: http://incompetech.com/
https://wn.com/Offenbach_Am_Main,_Sehenswürdigkeiten
Offenbach am Main 4k drone video
10:04

Offenbach am Main 4k drone video

  • Order:
  • Duration: 10:04
  • Uploaded Date: 26 Dec 2020
  • views: 12757
Background music via Fesliyan Studios
https://wn.com/Offenbach_Am_Main_4K_Drone_Video
Walking in OFFENBACH / Germany 🇩🇪- 4K 60fps (UHD)
37:01

Walking in OFFENBACH / Germany 🇩🇪- 4K 60fps (UHD)

  • Order:
  • Duration: 37:01
  • Uploaded Date: 07 Jan 2021
  • views: 52597
Offenbach (Main) is a city in the state Hesse, Germany. Offenbach lies on the left bank of the river Main and borders to Frankfurt am Main which we visited several times on POPtravel. Tourists may visit Offenbach mostly due to the proximity to Frankfurt for accommodation. Offenbach itself has the highest percentage of foreign residents in all Germany giving it a multi-cultural character. We start our evening tour of Offenbach (October 2020) from the train station and walk to the city center first. After around 5 minutes we are in the main shopping area. Next we head North to the Büsingpark with the Büsing Palais. Our walk continues back to the city center around the Frankfurther Straße, the Marktplatz as we see the Restaurant and Bars around Wilhelmsplatz. It is getting darker now so we walk from the eastern part fo Offenbach back South towards the train station. On the way we see Martin-Luther Park and end this quick walk where we started: at Offenbach Hauptbahnhof. Timeline: 0:00 Kaiserstraße 4:45 Große Marktstraße / City Center 7:30 Geleitstraße 9:20 Frankfurter Straße / City Center 12:00 Northern Offenbach / Büsingpark 17:00 Kaiserstraße and Frankfurter Straße 23:30 Around the Marktplatz 25:00 Wilhelmsplatz 28:30 Easter City Center 31:00 Martin-Luther Park 32:00 Southern City Center 34:00 Back to the train station Filmed in October 2020 Camera: Osmo Pocket in 4K60 Mic: Zoom H1 #poptravel #offenbach #germany
https://wn.com/Walking_In_Offenbach_Germany_🇩🇪_4K_60Fps_(Uhd)
Offenbach, Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps
27:29

Offenbach, Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps

  • Order:
  • Duration: 27:29
  • Uploaded Date: 07 Sep 2023
  • views: 2419
Offenbach Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps Hi everyone, in this episode we will explore and walking through Offenbach am Main. Offenbach am Main is a city in Hesse, Germany, on the left bank of the river Main. It borders Frankfurt and is part of the Frankfurt urban area and the larger Frankfurt Rhein-Main urban area. During the Second World War a third of the city was destroyed by Allied bombing, which claimed 467 lives. With the new district Lauterborn the city was expanded to the south in the 1960s. On the border with Frankfurt, the office district Kaiserlei was built. Offenbach is a so-called ´Sozialer Brennpunkt`(= multiple social problems area) because of unemployment, poverty, gang related crime and migration. Offenbach has a large non-German population. In 2016, foreign nationals made up 37% of the population. The largest communities are, in that order, from Turkey, Greece, Romania, Poland and Italy. According to census data, Offenbach and Duisburg had the highest share of Muslim migrants of all German districts in 2011. Recorded - August 2023 Weather Conditions & Temperature - warm, 23°C Segments: 00:00 - Intro 00:18 - Let's walk! VIDEO THEMES Frankfurt Bahnhofsviertel 2023 // Snow walk 2023 // Frankfurt tour // Frankfurt 2023 // Frankfurt in Germany // Frankfurt walk // Walking in Frankfurt // Central Frankfurt walk // Frankfurt walking video // Frankfurt city walk // Frankfurt walking tour 2023 // Frankfurt street walk // Frankfurt 2023 // Frankfurt walk 4K HDR // Frankfurt binaural sound // Frankfurt walking tour 2023 // Virtual walking tour 4K // best Frankfurt walking tour // Central Frankfurt walking tour // Konstablerwache Frankfurt // Zeil Frankfurt // Bankenviertel Frankfurt // Frankfurt Höchst // Höchst Altstadt // Gallusviertel // Frankfurt Gallus // Frankfurt Hauptbahnhof // Frankfurt Central Station // Frankfurt Main Station #Frankfurt #walkingvideo #WalkingEurope #CommerzbankTower #FrankfurtWalks #MrWalking2go #CityWalks #WalkingTour #VideoWalks #WalkingVideo #Videography #ASMR #iPhone #djiPocket #djiAction Please do not copy, reproduce, distribute or re-upload any of my content.
https://wn.com/Offenbach,_Germany_🇩🇪_|_Walking_Tour_|_August_2023_|_4K_60Fps
Offenbach goes Hollywood | maintower
3:26

Offenbach goes Hollywood | maintower

  • Order:
  • Duration: 3:26
  • Uploaded Date: 15 Jul 2023
  • views: 10539
Manche trauen ihren Augen nicht so ganz. Eigentlich kennt man den Schriftzug Hollywood doch aus Los Angeles. Er sollte damals Werbung für Grundstückskäufe machen, bevor er in Zusammenhang mit der Film- und Traumfabrik gebracht wurde. Offenbach hat nun auch so einen Schriftzug. Nicht zum ersten Mal, aber jetzt noch schöner. Mehr von uns? Lasst ein Abo bei unserem neuen Kanal https://1.ard.de/hessenschau_abo?p=pi ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📺Mehr aktuelle Inhalte des Hessischen Rundfunks findet ihr hier: https://1.ard.de/hr_in_der_ARD_Mediathek?p=yt ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📰Aktuelle Informationen zu Ereignissen in Hessen findet ihr hier: https://1.ard.de/hessenschau_de?p=yt ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📰Aktuelle Informationen zu Ereignissen in Deutschland findet ihr hier: https://1.ard.de/tagesschau_de?p=yt ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 📲Ihr wollt nichts verpassen? Folgt unseren Social Media Kanälen: hessenschau auf Instagram: https://1.ard.de/hessenschau_Instagram?yt=d hrfernsehen auf Instagram: https://1.ard.de/hessischer_rundfunk_instagram?yt=d hessenschau auf Facebook: https://1.ard.de/hessenschau_facebook?yt=d hrfernsehen auf Facebook: https://1.ard.de/hessischerrundfunk_facebook?yt=d ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ #hollywood #offenbach #hollywoodsign
https://wn.com/Offenbach_Goes_Hollywood_|_Maintower
IJG Erlangen Live Service 28.01.2023
1:47:40

IJG Erlangen Live Service 28.01.2023

  • Order:
  • Duration: 1:47:40
  • Uploaded Date: 28 Jan 2024
  • views: 88
Internationale Jesus Gemeinde (Church) Erlangen / Fürth / Nürnberg Metropolitan Region https://www.ijg-erlangen.de/​ Bilingual Services (English / Deutsch) every Sunday @ 10:30 AM Tennenloher Straße 47, 91058 Erlangen Online | https://www.ijg-erlangen.de/live/​ Contact | office(at)ijg-erlangen.de Prayer | gebet(at)ijg-erlangen.de Donations | https://www.ijg-erlangen.de/de/spenden/ Impressum nach dem Telemediengesetz: Internationale Jesus Gemeinde e.V., Langen (Hessen), Rheinstrasse 32 63225 Langen Telefon: 061035095981 E-Mail: office@ijg-langen.de Vertreten durch: Christian Fricke (1. Vorsitzender) Joshua Gilliland (2.Vorsitzender) Florian Leuschner (Schatzmeister) Registereintrag: Eingetragen im Vereinsregister. Registergericht: Offenbach am Main Registernummer: 3325 IJG Zweigstelle Erlangen Tennenloher Strasse 47 91058 Erlangen
https://wn.com/Ijg_Erlangen_Live_Service_28.01.2023
Hartes Pflaster: Sozialer Brennpunkt Offenbach | SPIEGEL TV
20:04

Hartes Pflaster: Sozialer Brennpunkt Offenbach | SPIEGEL TV

  • Order:
  • Duration: 20:04
  • Uploaded Date: 29 Sep 2020
  • views: 2902044
Arbeitslosigkeit, Armut, Kriminalität: schon vor Corona war das hessische Offenbach ein sozialer Brennpunkt. Doch die Pandemie trifft jetzt die Schwächsten der Gesellschaft am Härtesten. Eine SPIEGEL TV-Reportage über Menschen in Not.
https://wn.com/Hartes_Pflaster_Sozialer_Brennpunkt_Offenbach_|_Spiegel_Tv
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Offenbach am Main Tour 2022 Germany - 4K- 60FPS
    18:09
    Offenbach am Main Tour 2022 Germany - 4K- 60FPSremove from playlist
  • Walking around Offenbach am Main [4K]
    25:31
    Walking around Offenbach am Main [4K]remove from playlist
  • Offenbach: How bad is it?
    4:19
    Offenbach: How bad is it?remove from playlist
  • Offenbach am Main, Sehenswürdigkeiten
    8:00
    Offenbach am Main, Sehenswürdigkeitenremove from playlist
  • Walking in OFFENBACH / Germany 🇩🇪- 4K 60fps (UHD)
    37:01
    Walking in OFFENBACH / Germany 🇩🇪- 4K 60fps (UHD)remove from playlist
  • Offenbach, Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps
    27:29
    Offenbach, Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fpsremove from playlist
  • Offenbach goes Hollywood | maintower
    3:26
    Offenbach goes Hollywood | maintowerremove from playlist
  • IJG Erlangen Live Service 28.01.2023
    1:47:40
    IJG Erlangen Live Service 28.01.2023remove from playlist
  • Hartes Pflaster: Sozialer Brennpunkt Offenbach | SPIEGEL TV
    20:04
    Hartes Pflaster: Sozialer Brennpunkt Offenbach | SPIEGEL TVremove from playlist
PLAYLIST TIME:

Offenbach am Main Tour 2022 Germany - 4K- 60FPS

Driving in Offenbach am Main germany enjoy the Ride!! ►Date recorded : 30.01.2022 ►► iphone pro13: 4K/60 FPS/ prores Music: NCS → 📸 Subscribe for more: https://www.youtube.com/channel/UC2lQV_KtoO67en7tX6-jQZg ______________________________________________________________ Offenbach am Main Tour 2022 Germany - 4K- 60FPS All material in this video is original and personally recorded by myself on location. The unauthorized reproduction or distribution of this copyrighted work is illegal. Thanks for watching!❤️ Chatha FoodVlog #OffenbachamMain#Germany#Drivingtrip#2022#City
18:09
Offenbach am Main Tour 2022 Germany - 4K- 60FPS
Driving in Offenbach am Main germany enjoy the Ride!! ►Date recorded : 30.01.2022 ►► ipho...
published: 31 Jan 2022
Play in Full Screen
25:31
Walking around Offenbach am Main [4K]
Hi Walkers, in this episode we will explore and walking around Offenbach am Main. Offenba...
published: 03 Dec 2022
Play in Full Screen
4:19
Offenbach: How bad is it?
A few of my viewers have asked me about Offenbach, a city with a really poor reputation. B...
published: 28 Mar 2019
Play in Full Screen
8:00
Offenbach am Main, Sehenswürdigkeiten
Wir beginnen unseren Rundgang durch Offenbach am Main (Hessen) am Büsingpark. Nachdem wir ...
published: 08 Jan 2018
Play in Full Screen
10:04
Offenbach am Main 4k drone video
Background music via Fesliyan Studios
published: 26 Dec 2020
Play in Full Screen
37:01
Walking in OFFENBACH / Germany 🇩🇪- 4K 60fps (UHD)
Offenbach (Main) is a city in the state Hesse, Germany. Offenbach lies on the left bank of...
published: 07 Jan 2021
Play in Full Screen
27:29
Offenbach, Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps
Offenbach Germany 🇩🇪 | Walking Tour | August 2023 | 4K 60fps Hi everyone, in this episod...
published: 07 Sep 2023
Play in Full Screen
3:26
Offenbach goes Hollywood | maintower
Manche trauen ihren Augen nicht so ganz. Eigentlich kennt man den Schriftzug Hollywood doc...
published: 15 Jul 2023
Play in Full Screen
1:47:40
IJG Erlangen Live Service 28.01.2023
Internationale Jesus Gemeinde (Church) Erlangen / Fürth / Nürnberg Metropolitan Region htt...
published: 28 Jan 2024
Play in Full Screen
20:04
Hartes Pflaster: Sozialer Brennpunkt Offenbach | SPIEGEL TV
Arbeitslosigkeit, Armut, Kriminalität: schon vor Corona war das hessische Offenbach ein so...
published: 29 Sep 2020
Play in Full Screen

Offenbach am Main

Offenbach am Main (German pronunciation: [ˈɔfənbaχ am ˈmaɪ̯n]) is a city in Hesse, Germany, located on the southside of the river Main and part of the Frankfurt Rhein-Main urban area. Offenbach has a population of 126,934.

In the twentieth century the city's economy was dominated by the machine-building and leather industries, and it was also a major centre of the typography and design industries. Other important industries are the automobile and pharmaceutical industries. More than half of the city's population have a non-German background, with Turks, former Yugoslavs, Arabs, Italians, Greeks and Poles as major groups.

History

The first documented reference to a suburb of Offenbach appears in 770. In a document of the Holy Roman Emperor Otto II dating to 977 exists the first mention of the place of Offenbach. During the Middle Ages Offenbach passed through many hands. Only in 1486 could the Count Ludwig of Isenburg finally take control of city for his family, and 1556 Count Reinhard of Isenburg relocated his Residence to Offenbach, building a palace, the Isenburger Schloß (Isenburg Palace), which was completed in 1559. It was destroyed by fire in 1564 and rebuilt in 1578.

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