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

Podcasts:

  • INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness

    Inverness is located on Scotland’s northeast coast and is considered the cultural capital of the Scottish Highlands. It’s a fairly small and compact city with an abundance of places to stay, eat, and shop. In this video, we highlight 9 fun things to do in & around Inverness. 🔗 INVERNESS LINKS, ACTIVITIES, TOURS & MORE INFO ☑️ Waterfront & Ness Islands trail: https://www.alltrails.com/trail/scotland/highlands/ness-walk ☑️ Loch Ness day tour from Inverness: https://www.getyourguide.com/inverness-l1935/from-inverness-the-complete-loch-ness-experience-1-day-tour-t98445/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video ☑️ Loch Ness boat tour from Dochgarroch (13 mins drive from Inverness): https://www.getyourguide.com/urquhart-castle-l89324/loch-ness...

    published: 28 Jan 2023
  • Top 10 Places to Visit in Inverness | Scotland - English

    #InvernessPlaces #PlacesInInverness #InvernessVisitPlaces #BestPlacesInInverness #InvernessScotland #Inverness Inverness is one of the biggest tourist attractions in Scotland having many best places in Inverness. Inverness is a city on Scotland’s northeast coast, where the River Ness meets the Moray Firth. It's the largest city and the cultural capital of the Scottish Highlands. Its Old Town features 19th-century Inverness Cathedral, the mostly 18th-century Old High Church and an indoor Victorian Market selling food, clothing and crafts. The contemporary Inverness Museum and Art Gallery traces local and Highland history. As Inverness famous places has such a long history and covers a lot of ground, it means that there is a huge amount to see and do – but as best places in Inverness is so...

    published: 10 Mar 2022
  • A Guide to Inverness In The Scottish Highlands | BBC The Social

    Grace Nicoll explores various hot spots for young people across Inverness. Click here to subscribe to your BBC Scotland channel: http://bit.ly/BBC-Scotland-Subscribe From retail to food and drink and of course entertainment, the capital of the Highlands has so much to offer! Not to mention its stunning views and access to the North Coast 500. Se more from BBC The Social: https://www.bbc.co.uk/programmes/p039wndg We’re also on other channels too! Twitter: http://www.twitter.com/bbcscotland Facebook: http://www.facebook.com/bbcscotland Instagram: http://instagram.com/bbcscotland

    published: 08 Apr 2022
  • A trip to INVERNESS - the northernmost city in the SCOTTISH HIGHLANDS | Scotland Vlog

    We take a trip to the northernmost city in Scotland, Inverness. The Scottish Highlands are one of the most scenic places in the world and our journey so far has been nothing short of incredible. Inverness is known as the capital of the Scottish Highlands and is the ultimate gateway for exploring the most beautiful parts of Scotland. In this Scotland vlog, we go on a Loch Ness day trip tour and visit must see places in the Scottish Highlands. We begin our journey at the edge of Loch Ness on Dores beach. We then take a trip to the Falls of Foyers and Fort Augustus. Seeing Invermoriston really showcases the wonder of Scotland's natural beauty. We finally get to go on a Loch Ness cruise. The reason I picked this particular tour was because of the focus on Loch Ness, the most famous lake in S...

    published: 11 Apr 2023
  • Inverness: The Gateway to the Highlands || Scotland Travel Vlog

    In the far north of the British Isles is Inverness, the gateway to the Highlands of Scotland. It’s a small, quaint city built around the river Ness and full of church steeples with a castle looming on a hill over the old town. Colorful storefronts, cultured pubs, and winding streets give the city a small town charm, while the rolling hills surrounding the city beg you to explore the highlands further. This was my first stop on my tour through Scotland and here’s how it went… If you like these videos, support my channel by becoming a Patron at www.patreon.com/thetravelingzam Prints available at www.thetravelingzam.com Shop My Camera Kit: Professional Photo and Video (Mirrorless): Canon R6 https://amzn.to/3Kpo5uj Professional Photo and Video (DSLR): Canon 5D Mk IV https://amzn.to/3klPPph ...

    published: 18 Nov 2023
  • Is a Trip to Inverness Worth It? 13 Things to Do in Inverness

    Enjoy a trip to the Capital of the Scottish Highlands! We take you around the Greater Inverness area for our favorite activities. These will also make a good 48-hr itinerary. See below for tour reviews and Scotland planning resources. THINGS TO DO IN INVERNESS, SCOTLAND article (Google Maps links!) https://yourguidesabroad.com/inverness-things-to-do/ FREE Edinburgh Travel Guide: https://yourguidesabroad.com/edinburgh-travel-guide/ SCOTLAND AND EDINBURGH TOURS: Our reviews. Filter for Scottish Highlands and Edinburgh https://yourguidesabroad.com/activities/ Enjoy our FREE 1-Day Itinerary for London! Download, Print, and Go! https://yourguidesabroad.com/London/ Our website is loaded with free resources for traveling to London and other locations: https://yourguidesabroad.com/ FREE 1 DA...

    published: 09 Nov 2024
  • A Fantastic Walking Loop Right In The Heart of Inverness Featuring Ness Islands and The Caley Canal

    Inverness is underrated. Well, it WAS by us. Not anymore. Join us on the morning after the night before for a refreshing walk sandwiched between one of the best breakfasts we've ever had and a hearty pub lunch. Will we feel any better by the end of it? Only one way to find out, enjoy the video... Filmed on Thursday 7th April 2024 Music courtesy of epidemicsound.com Thumbnail designed using Canva This video is not sponsored and all opinions are my own I don’t pretend to be a travel expert, but I love what I do and would be honoured if you came along with me. My channel focusses on the wide-eyed wonder and excitement of finding somewhere new, and my genuine reaction to it. You may not get a history lesson in my videos, but who knows, you might pick up some useful travel tips along the way,...

    published: 18 May 2024
  • Inverness Scotland Travel Guide: 11 BEST Things To Do In Inverness, UK

    How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // This Inverness travel guide shares the best things to do in Inverness, Scotland. ----------------- Recommended Tours in Inverness: Isle of Skye Full Day Tour from Inverness: https://www.viator.com/tours/Inverness/Isle-of-Skye-Full-Day-Tour-from-Inverness/d5051-48092P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-inverness-desc Highlander Loch Ness and Culloden Battlefield Tour from Inverness: https://www.viator.com/tours/Inverness/Highlander-Loch-Ness-Day-Tour-from-Inverness/d5051-48092P2?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-inverness-desc Loch Ness & The Highlands from Inverness: https://www.viator.com/tours/Inverness/Loch-Ness-...

    published: 16 Jul 2023
  • Ness Walk, Inverness, UK | Holidays In Europe

    Ness Walk, Inverness, UK ================================= 🌐 Booking or More Details: https://www.booking.com/hotel/gb/ness-walk.en-gb.html?aid=2106187&no_rooms=1&group_adults=2 ================================= 👉 Star Category: ⭐⭐⭐⭐⭐ ================================= 👉 Property Type: Hotel ================================= About Property: Ness Walk features free WiFi and rooms with air conditioning in Inverness. Boasting a terrace, this hotel is set near attractions such as Inverness Castle. The property has a restaurant. At the hotel, each room includes a desk. Featuring a private bathroom, certain rooms at Ness Walk also boast a patio. All rooms feature a flat-screen TV with satellite channels. A co... ================================= 🏣 Hotel Address: 12 Ness Walk, Inverness, IV3 5SQ...

    published: 29 Jan 2025
  • INVERNESS | 4K Narrated Walking Tour | Let's Walk 2021

    Join me for a walk around the centre of Britain's most northerly city: Inverness! Located just a stone's throw from the shores of Loch Ness, which lends its name to the city, Inverness is the historic capital of Scotland's legendary Highlands, and a treasure trove of history and gorgeous natural scenery in the country's far north. As we walk around Inverness, we pass a number of interesting landmarks, including Inverness Castle, the River Ness, the statue of Flora MacDonald, Tolbooth Steeple, Inverness Town House, Falcon Square, Inverness Mercat Cross, Inverness Station, the Victorian Market, Abertarff House, Dunbar's Hospital, the Old Gaelic Church, the Old High Church, Free North Church, Greig Street Bridge (the 'Bouncy Bridge'), Balnain House, St. Mary's Roman Catholic Church, Ness Bri...

    published: 06 Jul 2022
INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness
9:58

INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness

  • Order:
  • Duration: 9:58
  • Uploaded Date: 28 Jan 2023
  • views: 185081
Inverness is located on Scotland’s northeast coast and is considered the cultural capital of the Scottish Highlands. It’s a fairly small and compact city with an abundance of places to stay, eat, and shop. In this video, we highlight 9 fun things to do in & around Inverness. 🔗 INVERNESS LINKS, ACTIVITIES, TOURS & MORE INFO ☑️ Waterfront & Ness Islands trail: https://www.alltrails.com/trail/scotland/highlands/ness-walk ☑️ Loch Ness day tour from Inverness: https://www.getyourguide.com/inverness-l1935/from-inverness-the-complete-loch-ness-experience-1-day-tour-t98445/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video ☑️ Loch Ness boat tour from Dochgarroch (13 mins drive from Inverness): https://www.getyourguide.com/urquhart-castle-l89324/loch-ness-cruise-t45765/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video ☑️ Culloden, Clava Cairns & Glen Affric Tour from Inverness: https://www.getyourguide.com/inverness-l1935/from-inverness-glen-affric-culloden-clava-cairns-tour-t306873/?partner_id=57UJ5GF&utm_medium=online_publisher&cmp=Inverness_video ☑️ Guided Walking Tour of Inverness with a Local: https://www.getyourguide.com/inverness-l1935/inverness-guided-walking-tour-t275347/?partner_id=57UJ5GF&utm_medium=online_publisher&cmp=Inverness_video ⭐ BONUS: Isle of Skye & Eilean Donan Castle ☑️ Day tour to Eilean Donan & the Isle of Skye: https://www.getyourguide.com/inverness-l1935/isle-of-skye-and-eilean-donan-castle-tour-from-inverness-t190023/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video 😴 WHERE TO STAY IN INVERNESS: - Alban and Abbey House (good budget option - where we stayed): https://www.booking.com/hotel/gb/alban-amp-abbey-house.en.html?aid=7936148&no_rooms=1&group_adults=2 - Roseneath Guest House: https://www.booking.com/hotel/gb/roseneath-guest-house.en.html?aid=7936148&no_rooms=1&group_adults=2 🎥 MORE SCOTLAND VIDEOS - Isle of Skye: https://youtu.be/iGgD0PKaFRw - Scotland Best Places To Visit: https://youtu.be/fd5oorHE3FY - Edinburgh Best Things To Do: https://youtu.be/zXDXBkc7CJ8 - London Best Things To Do: https://youtu.be/IR4gQ0yE6r0 ✍️ GET TRAVEL PLANNER AT 50% OFF: https://worldwildhearts.hopp.to/travel-planner 💰 SAVE MONEY ON YOUR TRIP: - Book cheap flights: https://skyscanner.pxf.io/c/3559813/1027991/13416?associateid=AFF_TRA_19354_00001 - Book cheap accommodations: https://www.booking.com/index.html?aid=7936148 - Book cheap rental cars: https://rentalcars.tp.st/czR4KczE ⬇️ FREE DOWNLOAD: 100 Bucket List Destinations In The World: https://www.worldwildhearts.com/join ✅ SUBSCRIBE: https://www.youtube.com/c/WorldWildHearts 😊 FOLLOW US ON SOCIAL MEDIA: https://www.instagram.com/worldwildhearts/ ✏️ INVERNESS TRAVEL GUIDE: https://www.worldwildhearts.com/post/inverness 🎵 MUSIC CREDITS: The Sovereign State by Daniel Robinson Rejoice In The Morning by The David Roy Collective West Bound by Daniel Robinson Do I Have What It Takes (instrumental version) by Roni Bar Hardas Scottish Highlands by Ben Winwood The Isles by Daniel Robinson 🎥 VIDEO CHAPTERS: 0:00 Intro 1:23 Ness Islands 2:16 Hit The Pub 2:51 Inverness Cathedral 3:37 Leakey’s Bookshop 4:17 Whisky Tasting 5:05 Victorian Market 5:31 Clava Cairns & Culloden Battlefield 6:11 Loch Ness 7:33 Urquhart Castle 8:23 Isle of Skye & Eilean Donan Castle 9:05 Inverness Travel Tips #inverness #scotland #scotlandtravel
https://wn.com/Inverness,_Scotland_(2023)_|_9_Fun_Things_To_Do_In_Around_Inverness_Loch_Ness
Top 10 Places to Visit in Inverness | Scotland - English
3:50

Top 10 Places to Visit in Inverness | Scotland - English

  • Order:
  • Duration: 3:50
  • Uploaded Date: 10 Mar 2022
  • views: 71570
#InvernessPlaces #PlacesInInverness #InvernessVisitPlaces #BestPlacesInInverness #InvernessScotland #Inverness Inverness is one of the biggest tourist attractions in Scotland having many best places in Inverness. Inverness is a city on Scotland’s northeast coast, where the River Ness meets the Moray Firth. It's the largest city and the cultural capital of the Scottish Highlands. Its Old Town features 19th-century Inverness Cathedral, the mostly 18th-century Old High Church and an indoor Victorian Market selling food, clothing and crafts. The contemporary Inverness Museum and Art Gallery traces local and Highland history. As Inverness famous places has such a long history and covers a lot of ground, it means that there is a huge amount to see and do – but as best places in Inverness is so well connected even if you only have one day in this city, because of a layover or a connecting flight, you can really pack in a lot. To help you even more, you can get a Inverness beautiful places 1-Day Ticket. Apricot Wanderer's mission is to promote the beauty of the capitals of the world as well as cities and promote the tourism of those cities. There are many beautiful places in Inverness. Scotland has some of the best places in Inverness. We collected data on the top 10 places to visit in Inverness. There are many famous places in Inverness and some of them are beautiful places in Inverness. People from all over Scotland love these Inverness beautiful places which are also Inverness famous places. In this video, we will show you the beautiful places to visit in Inverness. Please like this video and subscribe to our YouTube channel Apricot Wanderers and press the Bell icon to stay updated for more videos. FOLLOW US: Facebook: https://www.facebook.com/ApricotWanderers Twitter: https://twitter.com/ApricotWanderer Please Visit our Official Website for Tourism Blogs https://www.apricotwanderers.com Credits:- Music: www.bensound.com
https://wn.com/Top_10_Places_To_Visit_In_Inverness_|_Scotland_English
A Guide to Inverness In The Scottish Highlands | BBC The Social
2:37

A Guide to Inverness In The Scottish Highlands | BBC The Social

  • Order:
  • Duration: 2:37
  • Uploaded Date: 08 Apr 2022
  • views: 52143
Grace Nicoll explores various hot spots for young people across Inverness. Click here to subscribe to your BBC Scotland channel: http://bit.ly/BBC-Scotland-Subscribe From retail to food and drink and of course entertainment, the capital of the Highlands has so much to offer! Not to mention its stunning views and access to the North Coast 500. Se more from BBC The Social: https://www.bbc.co.uk/programmes/p039wndg We’re also on other channels too! Twitter: http://www.twitter.com/bbcscotland Facebook: http://www.facebook.com/bbcscotland Instagram: http://instagram.com/bbcscotland
https://wn.com/A_Guide_To_Inverness_In_The_Scottish_Highlands_|_BBC_The_Social
A trip to INVERNESS - the northernmost city in the SCOTTISH HIGHLANDS | Scotland Vlog
10:32

A trip to INVERNESS - the northernmost city in the SCOTTISH HIGHLANDS | Scotland Vlog

  • Order:
  • Duration: 10:32
  • Uploaded Date: 11 Apr 2023
  • views: 23007
We take a trip to the northernmost city in Scotland, Inverness. The Scottish Highlands are one of the most scenic places in the world and our journey so far has been nothing short of incredible. Inverness is known as the capital of the Scottish Highlands and is the ultimate gateway for exploring the most beautiful parts of Scotland. In this Scotland vlog, we go on a Loch Ness day trip tour and visit must see places in the Scottish Highlands. We begin our journey at the edge of Loch Ness on Dores beach. We then take a trip to the Falls of Foyers and Fort Augustus. Seeing Invermoriston really showcases the wonder of Scotland's natural beauty. We finally get to go on a Loch Ness cruise. The reason I picked this particular tour was because of the focus on Loch Ness, the most famous lake in Scotland. To complete our trip we visit Leakey's Book Shop, a MUST DO thing in Inverness. The Scottish Highlands are one of the most beautiful places in the world so I hope you take some inspiration from this on things to do and see in Scotland. The tour we took with Rabbie's is called From Inverness: Loch Ness Day Trip. ABOUT MY CHANNELヽ(♡‿♡)ノ (^ω^) I don’t have a Patreon but if you wish to support me, please buy me a coffee for an energy boost here: https://ko-fi.com/mariannavlogs FIND ME HERE (/^▽^)/ Instagram: mariannavlogs Twitter: mariannavlogsjp TikTok: marianna.jp For business enquiries: marianna.management@googlemail.com I frequently wear clothing from a Japanese fashion brand KIRUMADE. Use code KIRUMARI at checkout and my link to get free worldwide delivery on any 2 purchases! www.kirumade.com/discount/KIRUMARI MUSIC DOMINANT - one of my favourite artists!! If you also enjoy some smooth lo-fi beats, please support his work here: https://soundcloud.com/primaryflow https://dominantmusic.bandcamp.com/ https://www.youtube.com/user/RageQuitt #scotland #scottishhighlands #inverness
https://wn.com/A_Trip_To_Inverness_The_Northernmost_City_In_The_Scottish_Highlands_|_Scotland_Vlog
Inverness: The Gateway to the Highlands || Scotland Travel Vlog
22:46

Inverness: The Gateway to the Highlands || Scotland Travel Vlog

  • Order:
  • Duration: 22:46
  • Uploaded Date: 18 Nov 2023
  • views: 29312
In the far north of the British Isles is Inverness, the gateway to the Highlands of Scotland. It’s a small, quaint city built around the river Ness and full of church steeples with a castle looming on a hill over the old town. Colorful storefronts, cultured pubs, and winding streets give the city a small town charm, while the rolling hills surrounding the city beg you to explore the highlands further. This was my first stop on my tour through Scotland and here’s how it went… If you like these videos, support my channel by becoming a Patron at www.patreon.com/thetravelingzam Prints available at www.thetravelingzam.com Shop My Camera Kit: Professional Photo and Video (Mirrorless): Canon R6 https://amzn.to/3Kpo5uj Professional Photo and Video (DSLR): Canon 5D Mk IV https://amzn.to/3klPPph Stabilized Vlog Camera: DJI Pocket 2 https://amzn.to/3EYejOI Drone: DJI Air 2S https://amzn.to/38tojmV Every Day Travel Lens: Tamron 28-75 mm f/ 2.8 https://amzn.to/3EWySLr Tele Photo Lens: Sigma 70-200 mm f/ 2.8 https://amzn.to/3klrWhq Portrait Lens: Canon 50 mm f/ 1.4 https://amzn.to/3EZy3l5 Wide Fixed Lens: Sigma Art 35 mm f/ 1.4 https://amzn.to/3vnWcP5 Computer: MacBook Pro 14 inch M1https://amzn.to/3rYxy5v Follow Me: Instagram: https://www.instagram.com/the_traveling_zam Patreon: https://www.patreon.com/thetravelingzam TikTok: https://www.tiktok.com/@the_traveling_zam #scotland #inverness #travelvlog #scotlandvlog #visitscotland #scotlandtravelvlog #highlands #scottish #experiencescotland #uk #solotravel #unitedkingdom #nessriver #lochness #europe #isleofskye
https://wn.com/Inverness_The_Gateway_To_The_Highlands_||_Scotland_Travel_Vlog
Is a Trip to Inverness Worth It? 13 Things to Do in Inverness
12:29

Is a Trip to Inverness Worth It? 13 Things to Do in Inverness

  • Order:
  • Duration: 12:29
  • Uploaded Date: 09 Nov 2024
  • views: 3328
Enjoy a trip to the Capital of the Scottish Highlands! We take you around the Greater Inverness area for our favorite activities. These will also make a good 48-hr itinerary. See below for tour reviews and Scotland planning resources. THINGS TO DO IN INVERNESS, SCOTLAND article (Google Maps links!) https://yourguidesabroad.com/inverness-things-to-do/ FREE Edinburgh Travel Guide: https://yourguidesabroad.com/edinburgh-travel-guide/ SCOTLAND AND EDINBURGH TOURS: Our reviews. Filter for Scottish Highlands and Edinburgh https://yourguidesabroad.com/activities/ Enjoy our FREE 1-Day Itinerary for London! Download, Print, and Go! https://yourguidesabroad.com/London/ Our website is loaded with free resources for traveling to London and other locations: https://yourguidesabroad.com/ FREE 1 DAY ITINERARIES: LONDON: https://yourguidesabroad.com/London/ PARIS: https://yourguidesabroad.com/PARIS/ LISBON: https://yourguidesabroad.com/LISBON/ Click Subscribe for more travel guides and tips on traveling to Europe (plus subscribing helps us out!). #inverness #scotland #scottishhighlands —————————————————— Credits: Editing was done by the incredible Iliya Lipkovich. You can find him on Instagram @ilya_lipkovich —————————————————— POPULAR VIDEOS Eurostar: What We Wish We Knew - https://youtu.be/82Sqorz-QaA 17 London Travel Mistakes - https://youtu.be/MpyTQ0eV7BM London Food Guide - https://youtu.be/chtf89Y2c3o ————————————————— Disclaimer. Your use of the information provided in our Content, Itineraries, Site and Services is for your informational purposes only and is subject to our Privacy Policy and Terms of Service. Your use of information described in, your participation in activities presented in, and/or your engagement of any Travel Service Providers presented in our Content, Itineraries, Site and/or Services may carry the risk of illness, bodily injury, disability, death, or property damage. You voluntarily and freely assume all risks and dangers that may occur pursuant to your access, use, purchase or participation in any information, activity, good or service described in our Content, Itineraries, Site and Services or provided by any Travel Service Providers. Terms of Service: https://yourguidesabroad.com/terms-of-service/ Privacy Policy: https://yourguidesabroad.com/privacy-policy/ —————————————————— OUR CAMERA GEAR (keep it simple for your vacation!): Use your smartphone for video but pan slowly or don’t move the camera at all. DJI Pocket 2 for a smooth, small, and easy camera: https://amzn.to/49ZPf8Z Microphone: https://amzn.to/3QZSPav
https://wn.com/Is_A_Trip_To_Inverness_Worth_It_13_Things_To_Do_In_Inverness
A Fantastic Walking Loop Right In The Heart of Inverness Featuring Ness Islands and The Caley Canal
35:49

A Fantastic Walking Loop Right In The Heart of Inverness Featuring Ness Islands and The Caley Canal

  • Order:
  • Duration: 35:49
  • Uploaded Date: 18 May 2024
  • views: 143572
Inverness is underrated. Well, it WAS by us. Not anymore. Join us on the morning after the night before for a refreshing walk sandwiched between one of the best breakfasts we've ever had and a hearty pub lunch. Will we feel any better by the end of it? Only one way to find out, enjoy the video... Filmed on Thursday 7th April 2024 Music courtesy of epidemicsound.com Thumbnail designed using Canva This video is not sponsored and all opinions are my own I don’t pretend to be a travel expert, but I love what I do and would be honoured if you came along with me. My channel focusses on the wide-eyed wonder and excitement of finding somewhere new, and my genuine reaction to it. You may not get a history lesson in my videos, but who knows, you might pick up some useful travel tips along the way, add a few destinations to your bucket list and hopefully be entertained by what you see. Thanks for watching, it means a lot to me :) I do ALL of this myself. Planning, filming, editing, promoting, all with a weekly upload schedule, so please understand not every video will be an epic adventure. But my pledge is to always do my best in any situation and KEEP THE CAMERA ROLLING :) Donate here to future videos: (thank you!) https://www.paypal.com/paypalme/stevemarshyoutube Or why not become a SteveMarsh Supporter? https://www.patreon.com/SteveMarsh FAQs: WHERE ARE YOU FROM? I was born in Glasgow but have lived in Carnoustie, Dalgety Bay, Stonehaven, Edinburgh, Montrose, and further afield (Salamanca, Spain & Devonport, New Zealand) WHEN DO YOU UPLOAD? Saturdays at 10am Scottish time. Occasionally a bonus midweek video will pop up (in which case, likely to be Tuesday at 5pm) WHY IS THERE A DELAY BETWEEN TRIP AND VIDEO APPEARING? This is both my business model and a result of doing everything myself. Editing takes time and I also like to schedule videos a bit in advance in case of any problems/illness/cancellations etc. Keeping my uploads appearing every Saturday is important to me, so I don’t want anything to get in the way of it. Also, I occasionally need some time off to recover from trips! But more than anything else, it's about budgets. I generally need to film a number of videos on each trip to break even. And each one of these take a while to fall into place on a Saturday morning. WHAT EQUIPMENT DO YOU USE? I film with a GoPro11 and my iPhone12. I edit on iMovie and use epidemicsound.com for music. I also use canva.com for thumbnails etc. I also have a DJI Pocket 3 (bigger sensor) for nighttime, although I’m still getting to grips with it. WHY DON'T YOU SPEND LONGER AT DESTINATIONS? The usual suspects I'm afraid - time and money! Hotel prices especially these days make my eyes water like a true Scotsman. Also my weekly upload schedule means I need to keep on the move. WHERE'S ALICJA? Alicja will feature whenever possible, but she has her own life and a proper job so it can take a while for our schedules to match up. Trust me though, I prefer it when She is there too! DO YOU PAY FOR YOUR OWN TRAVEL? Yes I do. I've only ever accepted a complementary ticket as compensation for a previous problem. All my opinions are frank and honest reflections of travel as I experience it. WHY THE ADS? It's my income, I can't do this for free. Notice I don’t have mid-roll ads though! CAN I CONTACT YOU? I used to list my email address but felt bad not having the capacity to respond to everything so took it down (and I got a LOT of spam so missed many genuine messages along the way). HOW CAN I SUPPORT THE CHANNEL? Watching my videos is of course support enough, but if you'd like to support further, I'll pop links in here for Paypal and Patreon. All kind donations are super-appreciated and will go 100% towards future filming trips. DO YOU ACCEPT SPONSORSHIPS? I don't like to upset the flow of my videos, so I don't even include mid-roll ads anymore (at significant loss of income to myself), so I prefer not to include sponsorships either. I'm open to a small slide at the start/end of each video, but I don't want to get into talking about products, it's something I don't like as a viewer myself (especially as a viewer who pays for YouTube Premium). So it's probably a polite no, although all of this goes out the window if you offer me something which can give me the chance to make a video for my audience that would otherwise be impossible. #SteveMarsh #Inverness #Scotland
https://wn.com/A_Fantastic_Walking_Loop_Right_In_The_Heart_Of_Inverness_Featuring_Ness_Islands_And_The_Caley_Canal
Inverness Scotland Travel Guide: 11 BEST Things To Do In Inverness, UK
8:51

Inverness Scotland Travel Guide: 11 BEST Things To Do In Inverness, UK

  • Order:
  • Duration: 8:51
  • Uploaded Date: 16 Jul 2023
  • views: 26436
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // This Inverness travel guide shares the best things to do in Inverness, Scotland. ----------------- Recommended Tours in Inverness: Isle of Skye Full Day Tour from Inverness: https://www.viator.com/tours/Inverness/Isle-of-Skye-Full-Day-Tour-from-Inverness/d5051-48092P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-inverness-desc Highlander Loch Ness and Culloden Battlefield Tour from Inverness: https://www.viator.com/tours/Inverness/Highlander-Loch-Ness-Day-Tour-from-Inverness/d5051-48092P2?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-inverness-desc Loch Ness & The Highlands from Inverness: https://www.viator.com/tours/Inverness/Loch-Ness-and-the-Highlands-tour-from-Inverness/d5051-6898P32?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-inverness-desc John O'Groats, Dunrobin Castle & the Far North from Inverness: https://www.viator.com/tours/Inverness/John-O-Groats-and-the-Far-North/d5051-6898P30?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-inverness-desc ----------------- Embark on a captivating journey to the majestic city of Inverness, Scotland, as we unveil the top things to do and see in this historic and picturesque destination. Explore the iconic Inverness Castle, perched on a hill overlooking the city and the River Ness. Enjoy panoramic views of the surrounding area, learn about the castle's history, and soak in the medieval atmosphere of this imposing fortress. Discover the mystical beauty of Loch Ness, located just a short distance from Inverness. Cruise along the legendary waters, keeping an eye out for the fabled Loch Ness Monster. Marvel at the stunning scenery of the Scottish Highlands and explore the historic ruins of Urquhart Castle. Immerse yourself in the rich history and heritage of Inverness at the Inverness Museum and Art Gallery. Discover the city's fascinating past, from ancient times to the present, and explore its diverse art collections and exhibitions. Indulge in the flavors of Scottish cuisine at local restaurants and pubs. Sample traditional dishes like haggis, smoked salmon, and whisky-infused desserts, and savor the authentic taste of Scotland's culinary delights. Experience the vibrant atmosphere of the city's Victorian Market, where you can explore a variety of stalls selling local crafts, traditional Scottish attire, and delicious food products. Immerse yourself in the lively ambiance and soak in the authentic Scottish culture. Explore the natural beauty of the surrounding area with a visit to the Cairngorms National Park, the largest national park in the UK. Enjoy outdoor activities such as hiking, wildlife spotting, and scenic drives amidst stunning landscapes. Join us as we uncover the hidden gems and must-visit attractions of Inverness, Scotland's Highland gem. Let us transport you to a world of captivating beauty, cultural richness, and unforgettable experiences. Get ready to be captivated by the allure of Inverness in this immersive video experience. So, pack your bags, and let the adventure begin in this remarkable city where history, nature, and Scottish charm come together in perfect harmony! Keep watching to see the top things to do in Inverness, top attractions in Inverness, places to visit in Inverness and UK travel guides. Subscribe for travel inspiration videos and travel guides! Inspired by Touropia, expedia, Wolters World, Beautiful Destinations, MojoTravels & Tourradar. Inspired INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness Inspired by A Guide to Inverness In The Scottish Highlands | BBC The Social Inspired by Top 10 Places to Visit in Inverness | Scotland - English Inspired by Top 15 Best Places To Visit In Inverness | Scotland Inspired by VISITING INVERNESS, SCOTLAND ◆ UK TRAVEL VLOG ◆ Victorian Market, Leakey's, Ness Islands, & More! Also check out: Norwich England Travel Guide: 15 BEST Things To Do In Norwich, UK https://youtu.be/JK_yurTJ8wA Also check out: Stratford Upon Avon Travel Guide: 14 BEST Things To Do In Stratford Upon Avon, England, UK https://youtu.be/mt4nm2_cVIY Also check out: Bristol England Travel Guide: 15 BEST Things To Do In Bristol, UK https://youtu.be/gjyMuhmphTM _______________________________________ Music track: Forbidden Voices by Aylex Source: https://freetouse.com/music Copyright Free Music (Free Download) _______________________________________ (PG Clean, Family Friendly For kids, No Swearing)
https://wn.com/Inverness_Scotland_Travel_Guide_11_Best_Things_To_Do_In_Inverness,_UK
Ness Walk, Inverness, UK | Holidays In Europe
3:42

Ness Walk, Inverness, UK | Holidays In Europe

  • Order:
  • Duration: 3:42
  • Uploaded Date: 29 Jan 2025
  • views: 9
Ness Walk, Inverness, UK ================================= 🌐 Booking or More Details: https://www.booking.com/hotel/gb/ness-walk.en-gb.html?aid=2106187&no_rooms=1&group_adults=2 ================================= 👉 Star Category: ⭐⭐⭐⭐⭐ ================================= 👉 Property Type: Hotel ================================= About Property: Ness Walk features free WiFi and rooms with air conditioning in Inverness. Boasting a terrace, this hotel is set near attractions such as Inverness Castle. The property has a restaurant. At the hotel, each room includes a desk. Featuring a private bathroom, certain rooms at Ness Walk also boast a patio. All rooms feature a flat-screen TV with satellite channels. A co... ================================= 🏣 Hotel Address: 12 Ness Walk, Inverness, IV3 5SQ, United Kingdom ================================= 🤝 Languages Spoken: English, French, Hungarian and Romanian ================================= Hotel Area info: 📢 Northern Meeting Park - 750 m 📢 Northern Meeting Park - 750 m 📢 Ness Islands - 750 m 📢 Inverness Museum and Art Gallery - 1 km 📢 Whin Park Boating - 1.3 km 📢 Inverness Castle - 1.5 km 📢 Walker Park - 2.4 km 📢 Fraser Park - 2.6 km 📢 Culloden Battlefield - 10 km 📢 Abriachan Forest Classroom - 17 km 📢 Inverness Railway Station - 1.7 km 📢 Beauly - 19 km 📢 Inverness Airport - 16 km 📢 RAF Lossiemouth - 65 km 📢 By the River Cafe @ Highland Hospice - 400 m 📢 First Pizza Direct - 650 m 📢 The Angels Share - 750 m ================================= Hotel Facilities: 📌 Shuttle service 📌 Designated smoking area 📌 Air conditioning 📌 Non-smoking throughout 📌 Wake-up service 📌 Heating 📌 Laptop safe 📌 Packed lunches 📌 Carpeted 📌 Lift 📌 Ironing facilities 📌 Facilities for disabled guests 📌 Non-smoking rooms 📌 Iron 📌 Wake up service/Alarm clock 📌 Room service 📌 Golf course (within 3 km) 📌 Socket near the bed 📌 Clothes rack 📌 Toilet paper 📌 Towels 📌 Bath or shower 📌 Slippers 📌 Private bathroom 📌 Toilet 📌 Free toiletries 📌 Bathrobe 📌 Hairdryer 📌 Bath 📌 Shower 📌 Flat-screen TV 📌 Satellite channels 📌 Radio 📌 Telephone 📌 TV 📌 Fruits 📌 Wine/champagne 📌 Kid meals 📌 Special diet menus (on request) 📌 Breakfast in the room 📌 Bar 📌 Minibar 📌 Restaurant 📌 Tea/Coffee maker 📌 Internet services 📌 Coffee machine 📌 Electric kettle 📌 Outdoor furniture 📌 Terrace 📌 Garden 📌 Sofa 📌 Seating Area 📌 Desk 📌 Parking 📌 Linen 📌 Wardrobe or closet 📌 Alarm clock 📌 Emergency cord in bathroom 📌 Lower bathroom sink 📌 Higher level toilet ================================= Hotel Room Type: 🚪🛏️ Superior Twin Room with Patio 🚪🛏️ Deluxe King Room - Upper Floor 🚪🛏️ King Suite with View 🚪🛏️ King Suite - Converts to Twin Beds 🚪🛏️ Executive King Room with River View - Converts to Twin Beds 🚪🛏️ Superior King Room with Private Patio 🚪🛏️ Deluxe Twin Room - Upper Floor 🚪🛏️ Classic King Room - Converts to Twin Beds/Disability Access ================================= Audio Credit: 🎸 Artist: Dan Henig 🔊 Track Title: Subway Dreams 🌐 Website: www.youtube.com ================================= Query For: 🔷 Ness Walk - Inverness 🔷 Ness Walk - Inverness Rooms 🔷 Ness Walk - Inverness Deals 🔷 Ness Walk - Inverness Address 🔷 Ness Walk - Inverness Reviews 🔷 Ness Walk - Inverness Contact number 🔷 Ness Walk - Inverness Offer 🔷 Ness Walk - Inverness Video 🔷 Ness Walk - Inverness Amenities ================================= ***DISCLAIMER *** * This video is not sponsored. * The photos shown in this video are not owned by Holidays In Europe. Copyright issue? Please contact us and for getting more information you can find contact details on the about us page of the channel. ================================= #HolidaysInEurope #NessWalk #NessWalkInverness
https://wn.com/Ness_Walk,_Inverness,_UK_|_Holidays_In_Europe
INVERNESS | 4K Narrated Walking Tour | Let's Walk 2021
31:28

INVERNESS | 4K Narrated Walking Tour | Let's Walk 2021

  • Order:
  • Duration: 31:28
  • Uploaded Date: 06 Jul 2022
  • views: 49286
Join me for a walk around the centre of Britain's most northerly city: Inverness! Located just a stone's throw from the shores of Loch Ness, which lends its name to the city, Inverness is the historic capital of Scotland's legendary Highlands, and a treasure trove of history and gorgeous natural scenery in the country's far north. As we walk around Inverness, we pass a number of interesting landmarks, including Inverness Castle, the River Ness, the statue of Flora MacDonald, Tolbooth Steeple, Inverness Town House, Falcon Square, Inverness Mercat Cross, Inverness Station, the Victorian Market, Abertarff House, Dunbar's Hospital, the Old Gaelic Church, the Old High Church, Free North Church, Greig Street Bridge (the 'Bouncy Bridge'), Balnain House, St. Mary's Roman Catholic Church, Ness Bridge, Columba Hotel, Palace Hotel and Inverness Cathedral. Thank you so much to the following sites which really helped me out in my research of Inverness: https://www.invernessbid.co.uk/wp-content/uploads/City-Heritage-Trail-2014.pdf https://www.explore-inverness.com/what-to-do/outdoors/inverness-historic-trail/ https://www.scottish-places.info/ https://www.ambaile.org.uk/ https://www.historic-uk.com/HistoryUK/HistoryofScotland/Flora-Macdonald/ https://www.highland.gov.uk/highlandar/ https://canmore.org.uk/ https://www.visitscotland.com/about/uniquely-scottish/national-animal-unicorn/ https://academyst.highlandexplore.scot/falcon-square/ https://www.thevictorianmarket.com/history https://www.nts.org.uk/visit/places/abertarff-house https://www.britainexpress.com/scotland/Highlands/churches/old-high-church-inverness.htm 0:00 Inverness Castle 0:22 River Ness 1:03 Inverness Castle 1:14 Statue of Flora MacDonald 1:45 Inverness Castle 2:47 Castle Wynd 3:55 Tolbooth Steeple 4:34 Inverness Town House 5:18 High Street 6:39 Market Brae Steps 6:57 Inglis Street 7:42 Academy Street 7:52 Falcon Square and New Mercat Cross 8:40 Academy Street 9:12 Station Square 9:30 Royal Highland Hotel 9:39 Inverness Station 10:14 Cameron Highlanders Memorial (The Soldier at the Station) 10:43 The Victorian Market 11:30 Academy Street 11:43 Platform 8 Pub 11:54 Academy Street 12:07 Queensgate 13:18 Hootananny 13:32 Abertarff House 14:15 Church Street 14:31 The King's Highway 14:49 Church Street 15:16 Dunbar's Hospital 15:54 Church Street 16:12 Old Gaelic Church 16:42 Old High Church 17:34 Friar's Lane 17:46 Bank Street 18:08 Free North Church 18:44 Greig Street Bridge (the Bouncy Bridge) 20:40 Huntly Street 20:54 Balnain House 21:28 Huntly Street 21:51 View of Inverness across the River Ness 22:24 Huntly Street 22:34 St. Mary's Roman Catholic Church 23:08 Huntly Street 24:57 Ness Bridge 25:52 Inverness Castle 26:13 Ness Bridge 26:34 Ness Walk 27:02 Columba Hotel 27:22 Palace Hotel 27:42 Ness Walk 28:59 Inverness Cathedral 30:55 River Ness 31:14 Thank you for watching! Stats for nerds: Distance walked: 1.4 miles/2.3km Step count: 2800 steps (approx.) Time taken: 30 mins 41 secs Average speed: 2.7mph/4.4kmh Please do not use any footage from this video without my permission.
https://wn.com/Inverness_|_4K_Narrated_Walking_Tour_|_Let's_Walk_2021
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness
    9:58
    INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Nessremove from playlist
  • Top 10 Places to Visit in Inverness | Scotland - English
    3:50
    Top 10 Places to Visit in Inverness | Scotland - Englishremove from playlist
  • A Guide to Inverness In The Scottish Highlands | BBC The Social
    2:37
    A Guide to Inverness In The Scottish Highlands | BBC The Socialremove from playlist
  • A trip to INVERNESS - the northernmost city in the SCOTTISH HIGHLANDS | Scotland Vlog
    10:32
    A trip to INVERNESS - the northernmost city in the SCOTTISH HIGHLANDS | Scotland Vlogremove from playlist
  • Inverness: The Gateway to the Highlands || Scotland Travel Vlog
    22:46
    Inverness: The Gateway to the Highlands || Scotland Travel Vlogremove from playlist
  • Is a Trip to Inverness Worth It? 13 Things to Do in Inverness
    12:29
    Is a Trip to Inverness Worth It? 13 Things to Do in Invernessremove from playlist
  • A Fantastic Walking Loop Right In The Heart of Inverness Featuring Ness Islands and The Caley Canal
    35:49
    A Fantastic Walking Loop Right In The Heart of Inverness Featuring Ness Islands and The Caley Canalremove from playlist
  • Inverness Scotland Travel Guide: 11 BEST Things To Do In Inverness, UK
    8:51
    Inverness Scotland Travel Guide: 11 BEST Things To Do In Inverness, UKremove from playlist
  • Ness Walk, Inverness, UK | Holidays In Europe
    3:42
    Ness Walk, Inverness, UK | Holidays In Europeremove from playlist
  • INVERNESS | 4K Narrated Walking Tour | Let's Walk 2021
    31:28
    INVERNESS | 4K Narrated Walking Tour | Let's Walk 2021remove from playlist
PLAYLIST TIME: 0:00 / 2:22:02

INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness

Inverness is located on Scotland’s northeast coast and is considered the cultural capital of the Scottish Highlands. It’s a fairly small and compact city with an abundance of places to stay, eat, and shop. In this video, we highlight 9 fun things to do in & around Inverness. 🔗 INVERNESS LINKS, ACTIVITIES, TOURS & MORE INFO ☑️ Waterfront & Ness Islands trail: https://www.alltrails.com/trail/scotland/highlands/ness-walk ☑️ Loch Ness day tour from Inverness: https://www.getyourguide.com/inverness-l1935/from-inverness-the-complete-loch-ness-experience-1-day-tour-t98445/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video ☑️ Loch Ness boat tour from Dochgarroch (13 mins drive from Inverness): https://www.getyourguide.com/urquhart-castle-l89324/loch-ness-cruise-t45765/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video ☑️ Culloden, Clava Cairns & Glen Affric Tour from Inverness: https://www.getyourguide.com/inverness-l1935/from-inverness-glen-affric-culloden-clava-cairns-tour-t306873/?partner_id=57UJ5GF&utm_medium=online_publisher&cmp=Inverness_video ☑️ Guided Walking Tour of Inverness with a Local: https://www.getyourguide.com/inverness-l1935/inverness-guided-walking-tour-t275347/?partner_id=57UJ5GF&utm_medium=online_publisher&cmp=Inverness_video ⭐ BONUS: Isle of Skye & Eilean Donan Castle ☑️ Day tour to Eilean Donan & the Isle of Skye: https://www.getyourguide.com/inverness-l1935/isle-of-skye-and-eilean-donan-castle-tour-from-inverness-t190023/?partner_id=57UJ5GF&utm_medium=online_publisher&placement=content-middle&cmp=Inverness_video 😴 WHERE TO STAY IN INVERNESS: - Alban and Abbey House (good budget option - where we stayed): https://www.booking.com/hotel/gb/alban-amp-abbey-house.en.html?aid=7936148&no_rooms=1&group_adults=2 - Roseneath Guest House: https://www.booking.com/hotel/gb/roseneath-guest-house.en.html?aid=7936148&no_rooms=1&group_adults=2 🎥 MORE SCOTLAND VIDEOS - Isle of Skye: https://youtu.be/iGgD0PKaFRw - Scotland Best Places To Visit: https://youtu.be/fd5oorHE3FY - Edinburgh Best Things To Do: https://youtu.be/zXDXBkc7CJ8 - London Best Things To Do: https://youtu.be/IR4gQ0yE6r0 ✍️ GET TRAVEL PLANNER AT 50% OFF: https://worldwildhearts.hopp.to/travel-planner 💰 SAVE MONEY ON YOUR TRIP: - Book cheap flights: https://skyscanner.pxf.io/c/3559813/1027991/13416?associateid=AFF_TRA_19354_00001 - Book cheap accommodations: https://www.booking.com/index.html?aid=7936148 - Book cheap rental cars: https://rentalcars.tp.st/czR4KczE ⬇️ FREE DOWNLOAD: 100 Bucket List Destinations In The World: https://www.worldwildhearts.com/join ✅ SUBSCRIBE: https://www.youtube.com/c/WorldWildHearts 😊 FOLLOW US ON SOCIAL MEDIA: https://www.instagram.com/worldwildhearts/ ✏️ INVERNESS TRAVEL GUIDE: https://www.worldwildhearts.com/post/inverness 🎵 MUSIC CREDITS: The Sovereign State by Daniel Robinson Rejoice In The Morning by The David Roy Collective West Bound by Daniel Robinson Do I Have What It Takes (instrumental version) by Roni Bar Hardas Scottish Highlands by Ben Winwood The Isles by Daniel Robinson 🎥 VIDEO CHAPTERS: 0:00 Intro 1:23 Ness Islands 2:16 Hit The Pub 2:51 Inverness Cathedral 3:37 Leakey’s Bookshop 4:17 Whisky Tasting 5:05 Victorian Market 5:31 Clava Cairns & Culloden Battlefield 6:11 Loch Ness 7:33 Urquhart Castle 8:23 Isle of Skye & Eilean Donan Castle 9:05 Inverness Travel Tips #inverness #scotland #scotlandtravel
9:58
INVERNESS, SCOTLAND (2023) | 9 Fun Things To Do In & Around Inverness & Loch Ness
Inverness is located on Scotland’s northeast coast and is considered the cultural capital ...
published: 28 Jan 2023
Play in Full Screen
3:50
Top 10 Places to Visit in Inverness | Scotland - English
#InvernessPlaces #PlacesInInverness #InvernessVisitPlaces #BestPlacesInInverness #Invernes...
published: 10 Mar 2022
Play in Full Screen
2:37
A Guide to Inverness In The Scottish Highlands | BBC The Social
Grace Nicoll explores various hot spots for young people across Inverness. Click here to ...
published: 08 Apr 2022
Play in Full Screen
10:32
A trip to INVERNESS - the northernmost city in the SCOTTISH HIGHLANDS | Scotland Vlog
We take a trip to the northernmost city in Scotland, Inverness. The Scottish Highlands are...
published: 11 Apr 2023
Play in Full Screen
22:46
Inverness: The Gateway to the Highlands || Scotland Travel Vlog
In the far north of the British Isles is Inverness, the gateway to the Highlands of Scotla...
published: 18 Nov 2023
Play in Full Screen
12:29
Is a Trip to Inverness Worth It? 13 Things to Do in Inverness
Enjoy a trip to the Capital of the Scottish Highlands! We take you around the Greater Inve...
published: 09 Nov 2024
Play in Full Screen
35:49
A Fantastic Walking Loop Right In The Heart of Inverness Featuring Ness Islands and The Caley Canal
Inverness is underrated. Well, it WAS by us. Not anymore. Join us on the morning after the...
published: 18 May 2024
Play in Full Screen
8:51
Inverness Scotland Travel Guide: 11 BEST Things To Do In Inverness, UK
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo...
published: 16 Jul 2023
Play in Full Screen
3:42
Ness Walk, Inverness, UK | Holidays In Europe
Ness Walk, Inverness, UK ================================= 🌐 Booking or More Details: http...
published: 29 Jan 2025
Play in Full Screen
31:28
INVERNESS | 4K Narrated Walking Tour | Let's Walk 2021
Join me for a walk around the centre of Britain's most northerly city: Inverness! Located ...
published: 06 Jul 2022
Play in Full Screen
'); } 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: inverness

Edit

Doctor paralysed in Inverness bike crash wins £4.5m settlement

BBC News 07 May 2025
Dr Daniel Gordon has been left dependent on a wheelchair following the smash in Inverness in 2020. .
Edit

Travel-Inverness-Scotland

Decatur Daily 07 May 2025
Garry Coutts and his wife, Jane Cumming appear outside of their guest house and restaurant, Downright Gabbler, in Beauly, Scotland, on March 31. [Albert Stumm via AP] ... .
Edit

Advance notification of improvement works to Grant Street, Inverness (Highland Council)

Public Technologies 07 May 2025
) The Highland Council is preparing to carry out road improvement works on Grant Street in Inverness that will include the junctions of Lower ...
Edit

Planning permission sought for final stage of Inverness Campus

BBC News 06 May 2025
Proposals include commercial floorspace, a hotel and an academic space. .
Edit

Inverness commemorates VE Day 80th anniversary (Highland Council)

Public Technologies 06 May 2025
On 8 May at 11.30 there will be a service and laying of wreaths at Cavell Gardens War Memorial, Inverness led by the Inverness Branch of Royal British Legion, ...
Edit

Livestock worrying: Lamb killed and three others missing after livestock 'chased into sea' in Highlands

The Scotsman 06 May 2025
Police are appealing to the public for information after an attack left one lamb dead and others missing in Sutherland ....
Edit

Man, 34, charged over Inverness business park fire

BBC News 05 May 2025
Police Scotland said officers had arrested and charged a man over the blaze in March. .
Edit

Inverness fire: Police appeal for information after flat door set on fire

The Scotsman 05 May 2025
Police Scotland are appealing for information following a fire in Inverness on Saturday ....
Edit

Solar Steel and Inver collaborate for solar project

Steel Radar 05 May 2025
Solar Steel and Inver Renewable Management partner to supply 6,800 tracking systems for the 472 MWp CSF Illa Solar Park. Solar Steel has signed an agreement with Inver Renewable Management to supply ...
Edit

Whisky, history and the Loch Ness monster: Inverness is the gateway to the Scottish Highlands

Yahoo Daily News 03 May 2025
Inverness is a small but thriving city, one of the fastest-growing in the United Kingdom.View on euronews ....
Edit

Inverness City Council to discuss youth event, liens, long-term capital priorities

Citrus County Chronicle 03 May 2025
The Inverness City Council on Tuesday will hear details on a new youth event planned for May 29 ... .
Edit

Inverness Teen's Night Out

Citrus County Chronicle 02 May 2025
Maegan Haganey, 16, has a big smile as she enjoys a game of cornhole, during the city of Inverness's first Teen Night at Liberty Park in June 2021 ... .
×