'+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:

  • The Languedoc in six bottles

    Buyer Marcel Orford-Williams introduces his pick of red wines from the Languedoc region

    published: 12 Oct 2021
  • Wine-O-Pedia: The Languedoc & Roussillon Pt.1

    Welcome to Wine-O-Pedia! Kyle Meyer, Wine Buyer for BestWinesOnline.com, teaches us about the wines of the The Languedoc - Roussillon.

    published: 19 Jun 2014
  • What is wine in Languedoc Roussillon, France like?

    This wine region is not very popular and historically made France's worst wine. We're here because it's not famous, but there are a handful of producers that make great wine that you can't normally get in the United States. It's our mission to find the hidden gems. :) WEB PAGE https://www.blisswineimports.com NATURAL WINE CLUB https://www.blisswineimports.com/naturalwineclub INSTAGRAM https://www.instagram.com/blisswineimports FACEBOOK https://www.facebook.com/BlissWineClub Come join the movement for organically farmed, pure, clean, natural, dry farmed, and biodynamic wines!

    published: 03 Nov 2020
  • What sort of wine region is the Languedoc-Roussillon?

    The Languedoc-Roussillon, located in the south of France along the Mediterranean coast is one of the world's largest winemaking regions. Winemaker Emmanuel Pageot of Domaine Turner Pageot gives a 10,000 ft overview of the region and some of the climates where wine grapes grow. Ask a Winemaker talked with Emmanuel in Chicago at Red and White Wines and on location in Gabian, France. Watch more with Emmanuel Pageot: http://www.youtube.com/playlist?list=PLddUmDhg4G_LQ4gG-QfR7c0ENnhrVQoJg Like Ask a Winemaker on Facebook: https://www.facebook.com/askawinemaker?ref=hl Follow Ask a Winemaker on Twitter: https://twitter.com/askawinemaker @askawinemaker. www.askawinemaker.com

    published: 04 Oct 2013
  • Searching for GREAT French RED WINE in the Languedoc

    The Languedoc is the largest wine region in France. It used to be known for bulk wine but now there are some great red wines to be found. Join @CreativeFabien and I on a journey to discover some great, lesser-known French wine. You'll have a lot of fun and learn about French food in the process. 🍷 Rovsya Wine Glasses: https://amzn.to/3oGdOSn 🍷 Gabriel Glas Standart edition (the gold edition is often sold out) https://amzn.to/3qeZXmQ Wineries featured in this episode: Château Capitoul Château Vaugelas Domaine de Cambis Domaine de Ferrusac Mas de Daumas Gassac Champagne Chaleroux Ghys Marie de Lazeda Château Viranel Mas d’Albo Domaine les Eminades Domaine la Bosque 00:00 Intro 00:26 Luxury Living at Chateau Capitoul 02:28 French food at Asado Restaurant 04:20 Red wine harvest at ...

    published: 26 Jul 2022
  • WSET Level 4 Diploma D3 - The Climate and History of Languedoc

    In this video, I will introduce you to the region of Languedoc - find out about its rich history and unique climate. This is a perfect study resource for those studying the WSET Diploma or for those with an interest in the wines of the South of France. This is one of many videos about the South of France that I have made. This one is free for you on YouTube. There are many more available on my E-learning portal. Make sure you SUBSCRIBE to the channel for two updates per week! https://www.youtube.com/c/winewithjimmy?sub_confirmation=1 We have many more study resources available on Jimmy Smith's ONLINE WINE COURSE REVISION PORTAL 'E-Learning Wine' - are you after access? Click here to sign up to Jimmy Smith's exclusive WSET course revision portal: https://winewithjimmy.com/ @winewith...

    published: 26 Apr 2022
  • Paul Mas: Languedoc, France

    This past October, we visited the Languedoc wine region. Visitors interested in visiting France for its sights and its wines, often overlook the region, and head instead to higher profile destinations further east or north. It's a miss on both fronts and our visit with winemaker Jean-Claude Mas, who grew up in the area and who this year celebrates 20 years since he launched his global wine company Les Domaines Paul Mas, tells Anthony Gismondi why. The Languedoc has a long history of making uninteresting, mass-market wines. Mas realized that in order to sell the idea that the Languedoc could make fine wine, he had to sell the place. He conceived of and built Côté Mas, a destination restaurant, with a tasting room and a luxury two bedroom villa. Along with it, he developed the concept of L...

    published: 23 Jan 2020
  • One-Minute Wine: Languedoc Roussillon

    The Roussillon, in South-West France may lack the glamour of Bordeaux or the prestige of the Côte d'Or but it has built a reputation as France's answer to the New World. Will Lyons singles out one of its most intriguing wines from the Agly Valley. Subscribe to the WSJ channel here: http://bit.ly/14Q81Xy Visit the WSJ channel for more video: https://www.youtube.com/wsjdigitalnetwork More from the Wall Street Journal: Visit WSJ.com: http://online.wsj.com/home-page Follow WSJ on Facebok: http://www.facebook.com/wsjlive Follow WSJ on Google+: https://plus.google.com/+wsj/posts Follow WSJ on Twitter: https://twitter.com/WSJLive Follow WSJ on Instagram: http://instagram.com/wsj Follow WSJ on Pinterest: http://www.pinterest.com/wsj/ Follow WSJ on Tumblr: http://www.tumblr.com/tagged/wall-stre...

    published: 06 Mar 2014
The Languedoc in six bottles
11:31

The Languedoc in six bottles

  • Order:
  • Duration: 11:31
  • Uploaded Date: 12 Oct 2021
  • views: 3105
Buyer Marcel Orford-Williams introduces his pick of red wines from the Languedoc region
https://wn.com/The_Languedoc_In_Six_Bottles
Wine-O-Pedia: The Languedoc & Roussillon Pt.1
10:12

Wine-O-Pedia: The Languedoc & Roussillon Pt.1

  • Order:
  • Duration: 10:12
  • Uploaded Date: 19 Jun 2014
  • views: 24363
Welcome to Wine-O-Pedia! Kyle Meyer, Wine Buyer for BestWinesOnline.com, teaches us about the wines of the The Languedoc - Roussillon.
https://wn.com/Wine_O_Pedia_The_Languedoc_Roussillon_Pt.1
What is wine in Languedoc Roussillon, France like?
2:53

What is wine in Languedoc Roussillon, France like?

  • Order:
  • Duration: 2:53
  • Uploaded Date: 03 Nov 2020
  • views: 2024
This wine region is not very popular and historically made France's worst wine. We're here because it's not famous, but there are a handful of producers that make great wine that you can't normally get in the United States. It's our mission to find the hidden gems. :) WEB PAGE https://www.blisswineimports.com NATURAL WINE CLUB https://www.blisswineimports.com/naturalwineclub INSTAGRAM https://www.instagram.com/blisswineimports FACEBOOK https://www.facebook.com/BlissWineClub Come join the movement for organically farmed, pure, clean, natural, dry farmed, and biodynamic wines!
https://wn.com/What_Is_Wine_In_Languedoc_Roussillon,_France_Like
What sort of wine region is the Languedoc-Roussillon?
2:14

What sort of wine region is the Languedoc-Roussillon?

  • Order:
  • Duration: 2:14
  • Uploaded Date: 04 Oct 2013
  • views: 5066
The Languedoc-Roussillon, located in the south of France along the Mediterranean coast is one of the world's largest winemaking regions. Winemaker Emmanuel Pageot of Domaine Turner Pageot gives a 10,000 ft overview of the region and some of the climates where wine grapes grow. Ask a Winemaker talked with Emmanuel in Chicago at Red and White Wines and on location in Gabian, France. Watch more with Emmanuel Pageot: http://www.youtube.com/playlist?list=PLddUmDhg4G_LQ4gG-QfR7c0ENnhrVQoJg Like Ask a Winemaker on Facebook: https://www.facebook.com/askawinemaker?ref=hl Follow Ask a Winemaker on Twitter: https://twitter.com/askawinemaker @askawinemaker. www.askawinemaker.com
https://wn.com/What_Sort_Of_Wine_Region_Is_The_Languedoc_Roussillon
Searching for GREAT French RED WINE in the Languedoc
22:43

Searching for GREAT French RED WINE in the Languedoc

  • Order:
  • Duration: 22:43
  • Uploaded Date: 26 Jul 2022
  • views: 4730
The Languedoc is the largest wine region in France. It used to be known for bulk wine but now there are some great red wines to be found. Join @CreativeFabien and I on a journey to discover some great, lesser-known French wine. You'll have a lot of fun and learn about French food in the process. 🍷 Rovsya Wine Glasses: https://amzn.to/3oGdOSn 🍷 Gabriel Glas Standart edition (the gold edition is often sold out) https://amzn.to/3qeZXmQ Wineries featured in this episode: Château Capitoul Château Vaugelas Domaine de Cambis Domaine de Ferrusac Mas de Daumas Gassac Champagne Chaleroux Ghys Marie de Lazeda Château Viranel Mas d’Albo Domaine les Eminades Domaine la Bosque 00:00 Intro 00:26 Luxury Living at Chateau Capitoul 02:28 French food at Asado Restaurant 04:20 Red wine harvest at Chateau Vaugelas 05:14 How red wine is made 05:42 Beef and red wine 06:59 Surprising red wine from Saint Chinian 08:19 Red wine with a view at Domaine de Cambis 11:17 French Charcuterie 12:31 Dynamic Red wine producer 14:43 French steak tasting 17:07 Great RED WINE from Mas de Daumas Gassac 22:10 Final thoughts on red wine in the Languedoc 🎉 Get your Coravin system: https://share.exoticwinetravel.com/coravin-model-six ✍ Related Article: #redwine #frenchwine #frenchfood ▬▬▬ 👋 Join the Exotic Wine Travel community on Patreon: https://www.patreon.com/exoticwinetravel ▬▬▬ ✌SUBSCRIBE FOR MORE WINE VIDEOS https://www.youtube.com/c/exoticwinetravel?sub_confirmation=1 📽YOUTUBE TOOLS I USE: TubeBuddy: https://www.tubebuddy.com/exoticwinetravel ▬▬▬ 📸 MY ESSENTIAL EQUIPMENT Music: https://www.epidemicsound.com/referral/48c8ra/ Canon M50: https://amzn.to/3qYRx2O Canon G7X Mark III: https://amzn.to/3JL2VrC Deity D4 Duo Mic: https://amzn.to/34qgfRX Canon 22mm lens: https://amzn.to/3n0cCbO Sigma 16mm lens: https://amzn.to/3387AD6 Zoom H4N: https://amzn.to/3JOflPd Manfrotto Mini-Tripod: https://amzn.to/335xaZg Wine Necklace Holder: https://amzn.to/34jYXWt ▬▬▬ 🤗 LET'S CONNECT Facebook: https://www.facebook.com/exowinetravel Instagram: https://www.instagram.com/exoticwinetravel LinkedIn: https://www.linkedin.com/company/exoticwinetravel Twitter: https://www.twitter.com/exowinetravel Vivino: https://www.vivino.com/users/matt.hork Website: https://exoticwinetravel.com ▬▬▬ 📢 DISCLOSURE Some of these product links are set up through affiliate programs, which means Exotic Wine Travel gets referral credits if you choose to purchase these items via the links we provide. Affiliate links help us to continue to bring you great content and independent, impartial wine reviews. So thank you for contributing to the Exotic Wine Travel community and keeping us going!
https://wn.com/Searching_For_Great_French_Red_Wine_In_The_Languedoc
WSET Level 4 Diploma D3 - The Climate and History of Languedoc
20:44

WSET Level 4 Diploma D3 - The Climate and History of Languedoc

  • Order:
  • Duration: 20:44
  • Uploaded Date: 26 Apr 2022
  • views: 1661
In this video, I will introduce you to the region of Languedoc - find out about its rich history and unique climate. This is a perfect study resource for those studying the WSET Diploma or for those with an interest in the wines of the South of France. This is one of many videos about the South of France that I have made. This one is free for you on YouTube. There are many more available on my E-learning portal. Make sure you SUBSCRIBE to the channel for two updates per week! https://www.youtube.com/c/winewithjimmy?sub_confirmation=1 We have many more study resources available on Jimmy Smith's ONLINE WINE COURSE REVISION PORTAL 'E-Learning Wine' - are you after access? Click here to sign up to Jimmy Smith's exclusive WSET course revision portal: https://winewithjimmy.com/ @winewithjimmy @westlondonwine @south_london_wine @streathamwinehouse Jimmy Smith is based in the United Kingdom and is the founder and co-owner of West London Wine School, co-owner of South London Wine School and founder and co-owner of London’s coolest wine bar, Streatham Wine House. Visit www.www.winewithjimmy.com for all of Jimmy Smith's services Visit www.westlondonwineschool.com for more ONLINE tastings and courses Visit www.southlondonwineschool.com for more ONLINE tastings and courses Visit www.streathamwinehouse.com to order wines from London's coolest wine bar #Languedoc #History #Climate #WSET #WSETLevel4 #WSETDiploma #winewithjimmy #JimmySmithwine West London Wine School
https://wn.com/Wset_Level_4_Diploma_D3_The_Climate_And_History_Of_Languedoc
Paul Mas: Languedoc, France
6:42

Paul Mas: Languedoc, France

  • Order:
  • Duration: 6:42
  • Uploaded Date: 23 Jan 2020
  • views: 2002
This past October, we visited the Languedoc wine region. Visitors interested in visiting France for its sights and its wines, often overlook the region, and head instead to higher profile destinations further east or north. It's a miss on both fronts and our visit with winemaker Jean-Claude Mas, who grew up in the area and who this year celebrates 20 years since he launched his global wine company Les Domaines Paul Mas, tells Anthony Gismondi why. The Languedoc has a long history of making uninteresting, mass-market wines. Mas realized that in order to sell the idea that the Languedoc could make fine wine, he had to sell the place. He conceived of and built Côté Mas, a destination restaurant, with a tasting room and a luxury two bedroom villa. Along with it, he developed the concept of Luxe Rural. “Luxe Rural, it is an everyday luxury, and it sums up our culture and philosophy,” says Mas. We checked out the wine shop and tasting room and experienced the fantastic restaurant. The style is relaxed, but refined, as promised. The menu changes seasonally, with ingredients grown locally in and around the nearby village of Montagnac. We hope you enjoy our interview with Mas, a knowledgeable marketer who knows his region well. We sat on his veranda at Clos Astelia, his latest project that points to his next twenty years in the busines. For the full story, visit https://gismondionwine.com/blog/les-domaines-paul-mas/ Visit our website for more stories about wine, the people who make them and where they are made, plus, access 30,000+ tasting notes, which we update daily: https://gismondionwine.com/ Join our free, monthly newsletter: https://gismondionwine.com/subscribe/ Follow us on social media: Instagram: @Gismondionwine and @anthony.gismondi Facebook: /Gismondionwine and /AnthonyGismondi Twitter: @Gismondionwine and @TheSpitter
https://wn.com/Paul_Mas_Languedoc,_France
One-Minute Wine: Languedoc Roussillon
1:10

One-Minute Wine: Languedoc Roussillon

  • Order:
  • Duration: 1:10
  • Uploaded Date: 06 Mar 2014
  • views: 3667
The Roussillon, in South-West France may lack the glamour of Bordeaux or the prestige of the Côte d'Or but it has built a reputation as France's answer to the New World. Will Lyons singles out one of its most intriguing wines from the Agly Valley. Subscribe to the WSJ channel here: http://bit.ly/14Q81Xy Visit the WSJ channel for more video: https://www.youtube.com/wsjdigitalnetwork More from the Wall Street Journal: Visit WSJ.com: http://online.wsj.com/home-page Follow WSJ on Facebok: http://www.facebook.com/wsjlive Follow WSJ on Google+: https://plus.google.com/+wsj/posts Follow WSJ on Twitter: https://twitter.com/WSJLive Follow WSJ on Instagram: http://instagram.com/wsj Follow WSJ on Pinterest: http://www.pinterest.com/wsj/ Follow WSJ on Tumblr: http://www.tumblr.com/tagged/wall-street-journal Don’t miss a WSJ video, subscribe here: http://bit.ly/14Q81Xy More from the Wall Street Journal: Visit WSJ.com: http://www.wsj.com Visit the WSJ Video Center: https://wsj.com/video On Facebook: https://www.facebook.com/pg/wsj/videos/ On Twitter: https://twitter.com/WSJ On Snapchat: https://on.wsj.com/2ratjSM
https://wn.com/One_Minute_Wine_Languedoc_Roussillon
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Languedoc in six bottles
    11:31
    The Languedoc in six bottlesremove from playlist
  • Wine-O-Pedia: The Languedoc & Roussillon Pt.1
    10:12
    Wine-O-Pedia: The Languedoc & Roussillon Pt.1remove from playlist
  • What is wine in Languedoc Roussillon, France like?
    2:53
    What is wine in Languedoc Roussillon, France like?remove from playlist
  • What sort of wine region is the Languedoc-Roussillon?
    2:14
    What sort of wine region is the Languedoc-Roussillon?remove from playlist
  • Searching for GREAT French RED WINE in the Languedoc
    22:43
    Searching for GREAT French RED WINE in the Languedocremove from playlist
  • WSET Level 4 Diploma D3 - The Climate and History of Languedoc
    20:44
    WSET Level 4 Diploma D3 - The Climate and History of Languedocremove from playlist
  • Paul Mas: Languedoc, France
    6:42
    Paul Mas: Languedoc, Franceremove from playlist
  • One-Minute Wine: Languedoc Roussillon
    1:10
    One-Minute Wine: Languedoc Roussillonremove from playlist
PLAYLIST TIME:

The Languedoc in six bottles

Buyer Marcel Orford-Williams introduces his pick of red wines from the Languedoc region
11:31
The Languedoc in six bottles
Buyer Marcel Orford-Williams introduces his pick of red wines from the Languedoc region
published: 12 Oct 2021
Play in Full Screen
10:12
Wine-O-Pedia: The Languedoc & Roussillon Pt.1
Welcome to Wine-O-Pedia! Kyle Meyer, Wine Buyer for BestWinesOnline.com, teaches us about ...
published: 19 Jun 2014
Play in Full Screen
2:53
What is wine in Languedoc Roussillon, France like?
This wine region is not very popular and historically made France's worst wine. We're here...
published: 03 Nov 2020
Play in Full Screen
2:14
What sort of wine region is the Languedoc-Roussillon?
The Languedoc-Roussillon, located in the south of France along the Mediterranean coast is ...
published: 04 Oct 2013
Play in Full Screen
22:43
Searching for GREAT French RED WINE in the Languedoc
The Languedoc is the largest wine region in France. It used to be known for bulk wine but ...
published: 26 Jul 2022
Play in Full Screen
20:44
WSET Level 4 Diploma D3 - The Climate and History of Languedoc
In this video, I will introduce you to the region of Languedoc - find out about its rich h...
published: 26 Apr 2022
Play in Full Screen
6:42
Paul Mas: Languedoc, France
This past October, we visited the Languedoc wine region. Visitors interested in visiting F...
published: 23 Jan 2020
Play in Full Screen
1:10
One-Minute Wine: Languedoc Roussillon
The Roussillon, in South-West France may lack the glamour of Bordeaux or the prestige of t...
published: 06 Mar 2014
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: languedoc wine

Edit

Two light wines for chilled summer bites

The Irish Times 09 May 2025
Two lighter, summery wines from SuperValu this week. Villa Maria is part of one of the largest producers in New Zealand, making consistently good wines at every price level, including the Marlborough Sauvignon.
Edit

Castel Châteaux & Grands Crus Announces the Best Young Sommelier Competition – Asia Edition 2025 to showcase the talent of aspiring sommeliers across 10 regions in Asia

Vietnam News 09 May 2025
Dedicated to nurturing the next generation of wine professionals, the competition provides a platform for young sommeliers aged 18 to 30 to demonstrate their expertise and passion ... the Loire, the Languedoc and Provence.
Edit

These two light, refreshing wines are great value at €8

The Irish Times 02 May 2025
In the spirit of summer, here are two light refreshing wines from Aldi, including a well-priced rosé ... The Verdi part of the name refers to the pale green colour sometimes found in the wine. The wines ...
  • 1
×