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

Rijksmuseum

The Rijksmuseum (Dutch pronunciation: [ˈrɛiksmyˌzeːjʏm]; English: Imperial Museum) is a Netherlands national museum dedicated to arts and history in Amsterdam. The museum is located at the Museum Square in the borough Amsterdam South, close to the Van Gogh Museum, the Stedelijk Museum Amsterdam, and the Concertgebouw.

The Rijksmuseum was founded in The Hague in 1800 and moved to Amsterdam in 1808, where it was first located in the Royal Palace and later in the Trippenhuis. The current main building was designed by Pierre Cuypers and first opened its doors in 1885. On 13 April 2013, after a ten-year renovation which cost 375 million, the main building was reopened by Queen Beatrix. In 2013 and 2014, it was the most visited museum in the Netherlands with record numbers of 2.2 million and 2.45 million visitors.

The museum has on display 8,000 objects of art and history, from their total collection of 1 million objects from the years 1200–2000, among which are some masterpieces by Rembrandt, Frans Hals, and Johannes Vermeer. The museum also has a small Asian collection which is on display in the Asian pavilion.

Podcasts:

  • Rijksmuseum Tour: Tips for Visiting this Amazing Museum

    BOOK TICKETS ► https://www.kqzyfj.com/click-9142358-14323490?sid=youtube&url=https%3A%2F%2Fwww.tiqets.com%2Fen%2Famsterdam-attractions-c75061%2Ftickets-for-rijksmuseum-skip-the-ticket-line-p703796%2F The Rijksmuseum is a must-visit when you are in Amsterdam. This museum has a great collection of art by Dutch masters, but it is also a great place to visit for people who are not art aficionados. In this video, we will explain what to expect from this museum and give some tips. Point out some of the most worthwhile things to see, and give some recommendations on how to get the most out of your visit. AMSTERDAM TRAVEL ESSENTIALS Join our FREE travel newsletter: https://viatravelers.com/vt-newsletter Best Places to Stay in Amsterdam: https://www.booking.com/city/nl/amsterdam.html?aid=222730...

    published: 07 Feb 2023
  • Amsterdam's best art museum, the Rijksmuseum

    travel videos & photos at: https://townsofeurope.com/ with text, maps & links. The Rijksmuseum in Amsterdam, the Netherlands is a huge world-famous collection presented in 80 galleries, exhibiting 8,000 objects that tell the story of 800 years of Dutch art and history. This collection focuses primarily on Dutch paintings of the 16th and 17th centuries, rather than trying to present a complete sample of the entire world of art. The museum has a lot to show, thanks especially to the extreme genius of great native painters, Frans Hals, Vermeer, van Ruisdael, Jan Steen, and most-famously, Rembrandt. Don’t miss out on the absolute highlights, like Vermeer’s Milkmaid, Van Gogh’s Self-portrait and a gorgeous collection of Delft Blue pottery ranging from tea sets to vases, The total archive in...

    published: 30 Nov 2019
  • Rijksmuseum – Welkom!

    Vanaf 19 september 2014 is online een nieuwe campagne van het Rijksmuseum gestart met een 1 minuut en 30 seconden durende film die de magie van het Rijksmuseum laat zien. De film zal in een 30 seconden-versie drie weken lang op NPO en RTL te zien zijn en in een 1 minuut versie op CNN Nederland. Productie: SkipIntro Regie: Mattias Schut Muziek: Sietse van Gorkum en Sebastiaan Roestenburg Het ontwikkelen en uitzenden van de commercial is mogelijk gemaakt dankzij de genereuze steun van ING, hoofdsponsor van het Rijksmuseum en Eye Wish Opticiens.

    published: 22 Sep 2014
  • Amsterdam, Netherlands: Rijksmuseum - Rick Steves’ Europe Travel Guide - Travel Bite

    More info about travel to Amsterdam: https://www.ricksteves.com/europe/netherlands/amsterdam The Rijksmuseum in Amsterdam, Netherlands, is one of the artistic highlights of Europe. It was built to showcase the art of the Dutch Golden Age. #ricksteveseurope #netherlands #amsterdam Visit http://www.ricksteves.com for more information about this destination and other destinations in Europe. Check out more Rick Steves’ Europe travel resources: • “Rick Steves’ Europe” public television series: https://www.ricksteves.com/watch-read-listen/video/tv-show • “Travel with Rick Steves” public radio program: https://www.ricksteves.com/watch-read-listen/audio/radio • European Tours: https://www.ricksteves.com/tours • Guidebooks: https://store.ricksteves.com/shop/guidebooks • Travel Gear: https://stor...

    published: 03 Feb 2016
  • The Rijksmuseum presents largest Vermeer exhibition of all time

    Nearly 350 years after his death, Dutch painter Johannes Vermeer is about to attract hundreds of thousands of visitors to a gallery in Amsterdam. Dozens of his paintings have been brought together from around the world for a new exhibition. Al Jazeera’s Step Vaessen reports from Amsterdam, the Netherlands. Subscribe to our channel: http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ #Amsterdam #Rijksmuseum #JohnnesVermeer #VermeerExhibition #Artwork

    published: 07 Feb 2023
  • 1/4 A Night at the Rijksmuseum

    http://www.youtube.com/playlist?list=PLM4S2hGZDSE7K74CcRu6AF-bDIxjXjuPy First broadcast: 18 Apr 2013. Andrew Graham-Dixon goes behind the scenes at the Rijksmuseum as the staff prepare to open the doors following a ten-year renovation, the most significant ever undertaken by a museum. Featuring over 8,000 works of art, Holland's national museum tells the story of 800 years of Dutch history and houses a world-famous collection including masterpieces by artists from Vermeer to Rembrandt. So, as the final paintings are rehung and objects settle into their new home, has the long wait been worth it?

    published: 23 Jul 2013
  • Highlights of Amsterdam's Rijksmuseum | Museum Tour

    Rijksmuseum is the national museum of the Netherlands dedicated to Dutch arts and history and is located in Amsterdam. More than thirty galleries are devoted to the prosperous Dutch Golden Age, when the young merchant republic enjoyed its heyday as a world leader in trade, science and scholarship and the art of war and the fine arts. It is also the largest art museum in the country. The museum has on display 8,000 objects of art and history, from their total collection of 1 million objects from the years 1200–2000, among which are some masterpieces by Rembrandt, Frans Hals, and Johannes Vermeer. The museum also has a small Asian collection, which is on display in the Asian pavilion. #Rijksmuseum #DutchGoldenAge #Amsterdam

    published: 24 Jul 2023
  • Exploring the Rijksmuseum! #Amsterdam Must-Do’s 🇳🇱

    The Rijksmuseum is Netherlands' premiere museum housing works from historic artifacts from famous painting by the Dutch Masters! #netherlands #museum

    published: 04 Sep 2023
  • The Rijksmuseum

    The Rijksmuseum is the museum of the Netherlands. The completely renovated Rijksmuseum tells the story of the Netherlands from the Middle Ages to the 20th century. Including works by Rembrandt, Vermeer, Frans Hals, Van Gogh, and more! Most famous is Rembrandt's masterpiece the Night Watch.

    published: 24 Jan 2025
  • Why are Vincent van Gogh's Fingerprints in the Rijksmuseum?

    Did you know Vincent van Gogh was an admirer of the Rijksmuseum? Three of his paintings are now on view at the museum. And one of these paintings hides a special secret! 🤫 🖼 Vincent van Gogh (1853-1890), View of Amsterdam from Central Station, 1885. On loan from the P. en N. de Boer foundation, 2024 🚨Discover more of our Stories: http://www.rijksmuseum.nl/.../exhibitions/3x-van-gogh/

    published: 03 Jun 2024
Rijksmuseum Tour: Tips for Visiting this Amazing Museum
13:24

Rijksmuseum Tour: Tips for Visiting this Amazing Museum

  • Order:
  • Duration: 13:24
  • Uploaded Date: 07 Feb 2023
  • views: 36007
BOOK TICKETS ► https://www.kqzyfj.com/click-9142358-14323490?sid=youtube&url=https%3A%2F%2Fwww.tiqets.com%2Fen%2Famsterdam-attractions-c75061%2Ftickets-for-rijksmuseum-skip-the-ticket-line-p703796%2F The Rijksmuseum is a must-visit when you are in Amsterdam. This museum has a great collection of art by Dutch masters, but it is also a great place to visit for people who are not art aficionados. In this video, we will explain what to expect from this museum and give some tips. Point out some of the most worthwhile things to see, and give some recommendations on how to get the most out of your visit. AMSTERDAM TRAVEL ESSENTIALS Join our FREE travel newsletter: https://viatravelers.com/vt-newsletter Best Places to Stay in Amsterdam: https://www.booking.com/city/nl/amsterdam.html?aid=2227309&no_rooms=1&group_adults=2&label=youtube Use Going (Formerly Scott's Cheap Flights): https://going.sjv.io/0Jg7bO Best Tours in Rijksmuseum: https://www.getyourguide.com/rijksmuseum-l2696/?partner_id=VDAXC0T&utm_medium=online_publisher&cmp=youtube Search for Cheap Flights to Amsterdam: https://www.momondo.com/in?a=kan_246612_561402&enc_eid=&enc_lid=&enc_cid=youtube&encoder=27_1&enc_pid=deeplinks&url=/flights/amsterdam The Rijksmuseum is a Dutch national museum dedicated to arts and history in Amsterdam. It is located at the Museum Square in Amsterdam South, close to the Van Gogh Museum, the Stedelijk Museum Amsterdam, and the Concertgebouw. It is the national museum of the Netherlands. If you want to visit the museum, you should know that it has three floors with over 8,000 works on display. You can expect to spend about two hours inside this museum, but if you want to see everything, then it might take longer than that, depending on how long you stay in each room or how much time you spend reading about each piece of artwork before viewing it up close for yourself. RELATED TRAVEL GUIDES Watch Best Things to do in Amsterdam, Netherlands [4K UHD]: https://youtu.be/rZ46S7BLb08 Read Fun & Best Things to Do in Amsterdam (From a Local): https://viatravelers.com/best-things-to-do-in-amsterdam/ Best Day Trips from Amsterdam, Netherlands: https://viatravelers.com/day-trips-from-amsterdam/ Travel Tips for Amsterdam: https://viatravelers.com/travel-tips-for-amsterdam/ Best Food Tours in Amsterdam to Book: https://viatravelers.com/food-tours-in-amsterdam/ CONTENTS INCLUDED 0:00 Intro 1:19 Tip 1: Know Where to Go 2:02 Tip 2: Get Your Tickets 2:53 Tip 3: When to Visit the Rijksmuseum 3:33 Tip 4: How to Dodge the Crowds 4:22 Tip 5: Go on the Skip-a-Line Tour! 4:46 Tip 6: Download the Rijksmuseum App! 5:48 Tip 7: Browse the Digital Collection on the Rijksmuseum Website 6:34 Tip 8: Take a Break During Your Visit 7:40 Tip 9: Dine at the RIJKS 8:38 Tip 10: Get a Quick Snack at the Café 9:00 Tip 11: Visit the Rijksmuseum Gift Shop! 9:36 Tip 12: Visiting the Rijksmuseum With Your Family 10:28 Tip 13: Group Trips to the Rijksmuseum 10:54 Tip 14: Become a Friend of the Rijksmuseum 11:35 Tip 15: Join the Rijksmuseum Elite 12:34 Outro Where to reach me Read our latest travel blogs here: https://viatravelers.com/ Follow us on Instagram: https://www.instagram.com/viatravelers/ Like our Facebook page: https://www.facebook.com/viatravelers Buy Travel Prints from Our Experiences: https://www.etsy.com/shop/ViaTravelers #rijksmuseum #amsterdam #netherlands #europe #travel
https://wn.com/Rijksmuseum_Tour_Tips_For_Visiting_This_Amazing_Museum
Amsterdam's best art museum, the Rijksmuseum
20:34

Amsterdam's best art museum, the Rijksmuseum

  • Order:
  • Duration: 20:34
  • Uploaded Date: 30 Nov 2019
  • views: 86356
travel videos & photos at: https://townsofeurope.com/ with text, maps & links. The Rijksmuseum in Amsterdam, the Netherlands is a huge world-famous collection presented in 80 galleries, exhibiting 8,000 objects that tell the story of 800 years of Dutch art and history. This collection focuses primarily on Dutch paintings of the 16th and 17th centuries, rather than trying to present a complete sample of the entire world of art. The museum has a lot to show, thanks especially to the extreme genius of great native painters, Frans Hals, Vermeer, van Ruisdael, Jan Steen, and most-famously, Rembrandt. Don’t miss out on the absolute highlights, like Vermeer’s Milkmaid, Van Gogh’s Self-portrait and a gorgeous collection of Delft Blue pottery ranging from tea sets to vases, The total archive includes 1 million objects from the years 1200–2000, with more than 2,000 paintings from the Dutch Golden Age. Some 30 galleries are dedicated to the glory of the Golden Age, when the young mercantile republic led the world in trade, science, shipping and the arts. Many objects from Dutch history tell the story with Paintings, prints, drawings, photographs, silver, porcelain, delftware, furniture, jewelry, costumes and more. There are also dozens of rooms with medieval arts and later decorative pieces of the 19th century, 17th century miniature house models, along with a sampling of minor Italian Renaissance paintings The building itself is a major work of art, designed in neo-Gothic and Reneissance styles by Pierre Cuypers, who also designed the similar-looking Central Train Station, both completed in the 1880s. The red terra-cotta façade is adorned with many statues, decorative stripes, reliefs and ceramic plaques, using a mix of medieval and 19th century styles.
https://wn.com/Amsterdam's_Best_Art_Museum,_The_Rijksmuseum
Rijksmuseum – Welkom!
1:31

Rijksmuseum – Welkom!

  • Order:
  • Duration: 1:31
  • Uploaded Date: 22 Sep 2014
  • views: 112939
Vanaf 19 september 2014 is online een nieuwe campagne van het Rijksmuseum gestart met een 1 minuut en 30 seconden durende film die de magie van het Rijksmuseum laat zien. De film zal in een 30 seconden-versie drie weken lang op NPO en RTL te zien zijn en in een 1 minuut versie op CNN Nederland. Productie: SkipIntro Regie: Mattias Schut Muziek: Sietse van Gorkum en Sebastiaan Roestenburg Het ontwikkelen en uitzenden van de commercial is mogelijk gemaakt dankzij de genereuze steun van ING, hoofdsponsor van het Rijksmuseum en Eye Wish Opticiens.
https://wn.com/Rijksmuseum_–_Welkom
Amsterdam, Netherlands: Rijksmuseum - Rick Steves’ Europe Travel Guide - Travel Bite
3:33

Amsterdam, Netherlands: Rijksmuseum - Rick Steves’ Europe Travel Guide - Travel Bite

  • Order:
  • Duration: 3:33
  • Uploaded Date: 03 Feb 2016
  • views: 87289
More info about travel to Amsterdam: https://www.ricksteves.com/europe/netherlands/amsterdam The Rijksmuseum in Amsterdam, Netherlands, is one of the artistic highlights of Europe. It was built to showcase the art of the Dutch Golden Age. #ricksteveseurope #netherlands #amsterdam Visit http://www.ricksteves.com for more information about this destination and other destinations in Europe. Check out more Rick Steves’ Europe travel resources: • “Rick Steves’ Europe” public television series: https://www.ricksteves.com/watch-read-listen/video/tv-show • “Travel with Rick Steves” public radio program: https://www.ricksteves.com/watch-read-listen/audio/radio • European Tours: https://www.ricksteves.com/tours • Guidebooks: https://store.ricksteves.com/shop/guidebooks • Travel Gear: https://store.ricksteves.com/shop/ • Travel Classes: https://www.ricksteves.com/watch-read-listen/video/travel-talks • Rick Steves Audio Europe App: https://www.ricksteves.com/watch-read-listen/audio/audio-europe Rick Steves, America's most respected authority on European travel, writes European travel guidebooks, and hosts travel shows on public television and public radio.
https://wn.com/Amsterdam,_Netherlands_Rijksmuseum_Rick_Steves’_Europe_Travel_Guide_Travel_Bite
The Rijksmuseum presents largest Vermeer exhibition of all time
2:38

The Rijksmuseum presents largest Vermeer exhibition of all time

  • Order:
  • Duration: 2:38
  • Uploaded Date: 07 Feb 2023
  • views: 52535
Nearly 350 years after his death, Dutch painter Johannes Vermeer is about to attract hundreds of thousands of visitors to a gallery in Amsterdam. Dozens of his paintings have been brought together from around the world for a new exhibition. Al Jazeera’s Step Vaessen reports from Amsterdam, the Netherlands. Subscribe to our channel: http://bit.ly/AJSubscribe Follow us on Twitter https://twitter.com/AJEnglish Find us on Facebook https://www.facebook.com/aljazeera Check our website: http://www.aljazeera.com/ Check out our Instagram page: https://www.instagram.com/aljazeeraenglish/ #Amsterdam #Rijksmuseum #JohnnesVermeer #VermeerExhibition #Artwork
https://wn.com/The_Rijksmuseum_Presents_Largest_Vermeer_Exhibition_Of_All_Time
1/4 A Night at the Rijksmuseum
15:01

1/4 A Night at the Rijksmuseum

  • Order:
  • Duration: 15:01
  • Uploaded Date: 23 Jul 2013
  • views: 173271
http://www.youtube.com/playlist?list=PLM4S2hGZDSE7K74CcRu6AF-bDIxjXjuPy First broadcast: 18 Apr 2013. Andrew Graham-Dixon goes behind the scenes at the Rijksmuseum as the staff prepare to open the doors following a ten-year renovation, the most significant ever undertaken by a museum. Featuring over 8,000 works of art, Holland's national museum tells the story of 800 years of Dutch history and houses a world-famous collection including masterpieces by artists from Vermeer to Rembrandt. So, as the final paintings are rehung and objects settle into their new home, has the long wait been worth it?
https://wn.com/1_4_A_Night_At_The_Rijksmuseum
Highlights of Amsterdam's Rijksmuseum | Museum Tour
7:52

Highlights of Amsterdam's Rijksmuseum | Museum Tour

  • Order:
  • Duration: 7:52
  • Uploaded Date: 24 Jul 2023
  • views: 7213
Rijksmuseum is the national museum of the Netherlands dedicated to Dutch arts and history and is located in Amsterdam. More than thirty galleries are devoted to the prosperous Dutch Golden Age, when the young merchant republic enjoyed its heyday as a world leader in trade, science and scholarship and the art of war and the fine arts. It is also the largest art museum in the country. The museum has on display 8,000 objects of art and history, from their total collection of 1 million objects from the years 1200–2000, among which are some masterpieces by Rembrandt, Frans Hals, and Johannes Vermeer. The museum also has a small Asian collection, which is on display in the Asian pavilion. #Rijksmuseum #DutchGoldenAge #Amsterdam
https://wn.com/Highlights_Of_Amsterdam's_Rijksmuseum_|_Museum_Tour
Exploring the Rijksmuseum! #Amsterdam Must-Do’s 🇳🇱
0:25

Exploring the Rijksmuseum! #Amsterdam Must-Do’s 🇳🇱

  • Order:
  • Duration: 0:25
  • Uploaded Date: 04 Sep 2023
  • views: 7690
The Rijksmuseum is Netherlands' premiere museum housing works from historic artifacts from famous painting by the Dutch Masters! #netherlands #museum
https://wn.com/Exploring_The_Rijksmuseum_Amsterdam_Must_Do’S_🇳🇱
The Rijksmuseum
37:54

The Rijksmuseum

  • Order:
  • Duration: 37:54
  • Uploaded Date: 24 Jan 2025
  • views: 77
The Rijksmuseum is the museum of the Netherlands. The completely renovated Rijksmuseum tells the story of the Netherlands from the Middle Ages to the 20th century. Including works by Rembrandt, Vermeer, Frans Hals, Van Gogh, and more! Most famous is Rembrandt's masterpiece the Night Watch.
https://wn.com/The_Rijksmuseum
Why are Vincent van Gogh's Fingerprints in the Rijksmuseum?
0:55

Why are Vincent van Gogh's Fingerprints in the Rijksmuseum?

  • Order:
  • Duration: 0:55
  • Uploaded Date: 03 Jun 2024
  • views: 3398
Did you know Vincent van Gogh was an admirer of the Rijksmuseum? Three of his paintings are now on view at the museum. And one of these paintings hides a special secret! 🤫 🖼 Vincent van Gogh (1853-1890), View of Amsterdam from Central Station, 1885. On loan from the P. en N. de Boer foundation, 2024 🚨Discover more of our Stories: http://www.rijksmuseum.nl/.../exhibitions/3x-van-gogh/
https://wn.com/Why_Are_Vincent_Van_Gogh's_Fingerprints_In_The_Rijksmuseum
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Rijksmuseum Tour: Tips for Visiting this Amazing Museum
    13:24
    Rijksmuseum Tour: Tips for Visiting this Amazing Museumremove from playlist
  • Amsterdam's best art museum, the Rijksmuseum
    20:34
    Amsterdam's best art museum, the Rijksmuseumremove from playlist
  • Rijksmuseum – Welkom!
    1:31
    Rijksmuseum – Welkom!remove from playlist
  • Amsterdam, Netherlands: Rijksmuseum - Rick Steves’ Europe Travel Guide - Travel Bite
    3:33
    Amsterdam, Netherlands: Rijksmuseum - Rick Steves’ Europe Travel Guide - Travel Biteremove from playlist
  • The Rijksmuseum presents largest Vermeer exhibition of all time
    2:38
    The Rijksmuseum presents largest Vermeer exhibition of all timeremove from playlist
  • 1/4 A Night at the Rijksmuseum
    15:01
    1/4 A Night at the Rijksmuseumremove from playlist
  • Highlights of Amsterdam's Rijksmuseum | Museum Tour
    7:52
    Highlights of Amsterdam's Rijksmuseum | Museum Tourremove from playlist
  • Exploring the Rijksmuseum! #Amsterdam Must-Do’s 🇳🇱
    0:25
    Exploring the Rijksmuseum! #Amsterdam Must-Do’s 🇳🇱remove from playlist
  • The Rijksmuseum
    37:54
    The Rijksmuseumremove from playlist
  • Why are Vincent van Gogh's Fingerprints in the Rijksmuseum?
    0:55
    Why are Vincent van Gogh's Fingerprints in the Rijksmuseum?remove from playlist
PLAYLIST TIME:

Rijksmuseum Tour: Tips for Visiting this Amazing Museum

BOOK TICKETS ► https://www.kqzyfj.com/click-9142358-14323490?sid=youtube&url=https%3A%2F%2Fwww.tiqets.com%2Fen%2Famsterdam-attractions-c75061%2Ftickets-for-rijksmuseum-skip-the-ticket-line-p703796%2F The Rijksmuseum is a must-visit when you are in Amsterdam. This museum has a great collection of art by Dutch masters, but it is also a great place to visit for people who are not art aficionados. In this video, we will explain what to expect from this museum and give some tips. Point out some of the most worthwhile things to see, and give some recommendations on how to get the most out of your visit. AMSTERDAM TRAVEL ESSENTIALS Join our FREE travel newsletter: https://viatravelers.com/vt-newsletter Best Places to Stay in Amsterdam: https://www.booking.com/city/nl/amsterdam.html?aid=2227309&no_rooms=1&group_adults=2&label=youtube Use Going (Formerly Scott's Cheap Flights): https://going.sjv.io/0Jg7bO Best Tours in Rijksmuseum: https://www.getyourguide.com/rijksmuseum-l2696/?partner_id=VDAXC0T&utm_medium=online_publisher&cmp=youtube Search for Cheap Flights to Amsterdam: https://www.momondo.com/in?a=kan_246612_561402&enc_eid=&enc_lid=&enc_cid=youtube&encoder=27_1&enc_pid=deeplinks&url=/flights/amsterdam The Rijksmuseum is a Dutch national museum dedicated to arts and history in Amsterdam. It is located at the Museum Square in Amsterdam South, close to the Van Gogh Museum, the Stedelijk Museum Amsterdam, and the Concertgebouw. It is the national museum of the Netherlands. If you want to visit the museum, you should know that it has three floors with over 8,000 works on display. You can expect to spend about two hours inside this museum, but if you want to see everything, then it might take longer than that, depending on how long you stay in each room or how much time you spend reading about each piece of artwork before viewing it up close for yourself. RELATED TRAVEL GUIDES Watch Best Things to do in Amsterdam, Netherlands [4K UHD]: https://youtu.be/rZ46S7BLb08 Read Fun & Best Things to Do in Amsterdam (From a Local): https://viatravelers.com/best-things-to-do-in-amsterdam/ Best Day Trips from Amsterdam, Netherlands: https://viatravelers.com/day-trips-from-amsterdam/ Travel Tips for Amsterdam: https://viatravelers.com/travel-tips-for-amsterdam/ Best Food Tours in Amsterdam to Book: https://viatravelers.com/food-tours-in-amsterdam/ CONTENTS INCLUDED 0:00 Intro 1:19 Tip 1: Know Where to Go 2:02 Tip 2: Get Your Tickets 2:53 Tip 3: When to Visit the Rijksmuseum 3:33 Tip 4: How to Dodge the Crowds 4:22 Tip 5: Go on the Skip-a-Line Tour! 4:46 Tip 6: Download the Rijksmuseum App! 5:48 Tip 7: Browse the Digital Collection on the Rijksmuseum Website 6:34 Tip 8: Take a Break During Your Visit 7:40 Tip 9: Dine at the RIJKS 8:38 Tip 10: Get a Quick Snack at the Café 9:00 Tip 11: Visit the Rijksmuseum Gift Shop! 9:36 Tip 12: Visiting the Rijksmuseum With Your Family 10:28 Tip 13: Group Trips to the Rijksmuseum 10:54 Tip 14: Become a Friend of the Rijksmuseum 11:35 Tip 15: Join the Rijksmuseum Elite 12:34 Outro Where to reach me Read our latest travel blogs here: https://viatravelers.com/ Follow us on Instagram: https://www.instagram.com/viatravelers/ Like our Facebook page: https://www.facebook.com/viatravelers Buy Travel Prints from Our Experiences: https://www.etsy.com/shop/ViaTravelers #rijksmuseum #amsterdam #netherlands #europe #travel
13:24
Rijksmuseum Tour: Tips for Visiting this Amazing Museum
BOOK TICKETS ► https://www.kqzyfj.com/click-9142358-14323490?sid=youtube&url=https%3A%2F%2...
published: 07 Feb 2023
Play in Full Screen
20:34
Amsterdam's best art museum, the Rijksmuseum
travel videos & photos at: https://townsofeurope.com/ with text, maps & links. The Rijksmu...
published: 30 Nov 2019
Play in Full Screen
1:31
Rijksmuseum – Welkom!
Vanaf 19 september 2014 is online een nieuwe campagne van het Rijksmuseum gestart met een ...
published: 22 Sep 2014
Play in Full Screen
3:33
Amsterdam, Netherlands: Rijksmuseum - Rick Steves’ Europe Travel Guide - Travel Bite
More info about travel to Amsterdam: https://www.ricksteves.com/europe/netherlands/amsterd...
published: 03 Feb 2016
Play in Full Screen
2:38
The Rijksmuseum presents largest Vermeer exhibition of all time
Nearly 350 years after his death, Dutch painter Johannes Vermeer is about to attract hundr...
published: 07 Feb 2023
Play in Full Screen
15:01
1/4 A Night at the Rijksmuseum
http://www.youtube.com/playlist?list=PLM4S2hGZDSE7K74CcRu6AF-bDIxjXjuPy First broadcast: 1...
published: 23 Jul 2013
Play in Full Screen
7:52
Highlights of Amsterdam's Rijksmuseum | Museum Tour
Rijksmuseum is the national museum of the Netherlands dedicated to Dutch arts and history ...
published: 24 Jul 2023
Play in Full Screen
0:25
Exploring the Rijksmuseum! #Amsterdam Must-Do’s 🇳🇱
The Rijksmuseum is Netherlands' premiere museum housing works from historic artifacts from...
published: 04 Sep 2023
Play in Full Screen
37:54
The Rijksmuseum
The Rijksmuseum is the museum of the Netherlands. The completely renovated Rijksmuseum tel...
published: 24 Jan 2025
Play in Full Screen
0:55
Why are Vincent van Gogh's Fingerprints in the Rijksmuseum?
Did you know Vincent van Gogh was an admirer of the Rijksmuseum? Three of his paintings ar...
published: 03 Jun 2024
Play in Full Screen

Rijksmuseum

The Rijksmuseum (Dutch pronunciation: [ˈrɛiksmyˌzeːjʏm]; English: Imperial Museum) is a Netherlands national museum dedicated to arts and history in Amsterdam. The museum is located at the Museum Square in the borough Amsterdam South, close to the Van Gogh Museum, the Stedelijk Museum Amsterdam, and the Concertgebouw.

The Rijksmuseum was founded in The Hague in 1800 and moved to Amsterdam in 1808, where it was first located in the Royal Palace and later in the Trippenhuis. The current main building was designed by Pierre Cuypers and first opened its doors in 1885. On 13 April 2013, after a ten-year renovation which cost 375 million, the main building was reopened by Queen Beatrix. In 2013 and 2014, it was the most visited museum in the Netherlands with record numbers of 2.2 million and 2.45 million visitors.

The museum has on display 8,000 objects of art and history, from their total collection of 1 million objects from the years 1200–2000, among which are some masterpieces by Rembrandt, Frans Hals, and Johannes Vermeer. The museum also has a small Asian collection which is on display in the Asian pavilion.

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