- published: 03 Oct 2006
- views: 710938
'+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; })); }); -->
Louis Charles Auguste Claude Trenet, known as Charles Trenet (French: [ʃaʁl tʁəne]; 18 May 1913 – 19 February 2001), was a French singer and songwriter. He was most famous for his recordings from the late 1930s until the mid-1950s, though his career continued through the 1990s. In an era in which it was unusual for singers to write their own material, Trenet wrote prolifically and declined to record any but his own songs.
Trenet's best-known songs include "Boum!", "La Mer", "Y'a d'la joie", "Que reste-t-il de nos amours?", "Ménilmontant" and "Douce France". His catalogue of songs is enormous, numbering close to a thousand. While many of his songs mined relatively conventional topics such as love, Paris, and nostalgia for his younger days, what set Trenet's songs apart were their personal, poetic, sometimes quite eccentric qualities, often infused with a warm wit. Some of his songs had unconventional subject matter, with whimsical imagery bordering on the surreal. "Y'a d'la joie" evokes joy through a series of disconnected images, including that of a subway car shooting out of its tunnel into the air, the Eiffel Tower crossing the street and a baker making excellent bread. The lovers engaged in a minuet in "Polka du Roi" reveal themselves at length to be "no longer human": they are made of wax and trapped in the Musée Grévin. Many of his hits from the 1930s and 1940s effectively combine the melodic and verbal nuances of French song with American swing rhythms.
The Maritimes, also called the Maritime provinces or the Canadian Maritimes, is a region of Eastern Canada consisting of three provinces: New Brunswick, Nova Scotia, and Prince Edward Island. The Maritimes had a population of 1,813,102 in 2011.
The Maritimes, along with a fourth province; Canada's easternmost province, Newfoundland and Labrador, make up Atlantic Canada.
Located along the Atlantic coast, various aquatic sub-basins are located in the Maritimes, such as the Gulf of Maine and Gulf of St. Lawrence. The region is located northeast of New England, southeast of Quebec's Gaspé Peninsula, and southwest of the island of Newfoundland.
The notion of a Maritime Union has been proposed at various times in Canada's history; the first discussions in 1864 at the Charlottetown Conference contributed to Canadian Confederation which instead formed the larger Dominion of Canada.
The Mi'kmaq, Maliseet and Passamaquoddy people are indigenous to the Maritimes, while Acadian and British settlements date to the seventeenth century.
2014 S/S is the debut album of South Korean group WINNER. It was released on August 12, 2014 by the group's record label, YG Entertainment. The members were credited for writing the lyrics and composing the majority of the album's songs.
Upon release, 2014 S/S proved to be a success, topping both local and international charts. The title track "Empty" received an instant "all-kill" by topping the ten major real-time Korean music charts.
"Empty" and "Color Ring" became hits in South Korea, topping the Gaon Chart and Billboard's K-Pop Hot 100 chart. All of the tracks charted on digital charts while the lead single, Empty, retained its number one position for more than a week on various charts. Internationally, 2014 S/S took the top spot in Billboard's World Album Chartand landed the top spot on iTunes "Top Album Charts" for Hong Kong, Indonesia, Singapore, and Taiwan.
The members produced the majority of the music for this album themselves, with the help of other producers such as Choice 37, Airplay, and others.
65 TV Themes! From the 50's and 60's is the first volume of the Television's Greatest Hits series of compilation albums by TVT Records. From the 50's and 60's was a double LP that featured 65 themes from television shows ranging from the mid-1950s until the late 1960s.
The album catalog was later acquired by The Bicycle Music Company. In September 2011, Los Angeles-based Oglio Records announced they were releasing the Television's Greatest Hits song catalog after entering into an arrangement The Bicycle Music Company. A series of 9 initial "6-packs" including some of the songs from the album has been announced for 2011.
Don Pardo "hosted" the original LP and cassette versions from 1985. Five tracks are exclusive to the original 1985 releases...
5S may refer to:
A great animated video of Classified's for the song "Maritimes."
Start exploring Nova Scotia, New Brunswick & Prince Edward Island with Lonely Planet’s video guide to getting around, when to go and the top things to do while you're there. For more travel tips, head to https://www.lonelyplanet.com/canada/nova-scotia-new-brunswick-prince-edward-island #LonelyPlanet #Canada #NovaScotia #NewBrunskwick #PrinceEdwardIsland
Come join us for an epic Canada Road Trip as we hop in a vehicle with Togo and Audrey's parents traveling out east to visit the Maritimes Provinces. After a highly successful road trip in Canada last fall to visit British Columbia and Alberta to see the Canadian Rockies, we decided to reunite the travel squad of Audrey's Mom and Dad and Togo the German Shepherd to see Atlantic Canada. The first day we packed all of our suitcases in the rental vehicle, a spacious Ford Flex, pulling out of Brampton, Ontario early in the morning. The first day we drove a bit further than Montreal crossing provinces from Ontario to Quebec. We made time to visit Audrey's Uncle who lives in Montreal before arriving in our cabin for the evening. Unfortunately, the mosquitos were so bad that we spent our initial...
Hello everyone....this video is the title song from Jim' MacFarlane's new CD called "In the Maritimes" This song & 13 other originals are now available on Jim's debut CD...send him a message at [email protected] to get one. Or you can get a digital download here...https://jimmacfarlane.bandcamp.com/album/in-the-maritimes
The Canadian Maritime provinces are the smallest in the country, both economically and by population. To acquire power for the region, or to save costs for the rest of the country, every decade or two the idea of a Maritime Union between Nova Scotia, New Brunswick and Prince Edward Island pops up in the provinces or in Ottawa. There are even some politicians who are looking to unite all of Atlantic Canada, forming an Atlantic Union with Newfoundland and Labrador. is it realistic that the Maritimes might want to unite? And would this be beneficial to them, or to Canada as a whole? Check out this video for answers to these questions and more! Thanks for watching! For more videos like this, don't forget to subscribe! Song Credits • All That - Bensound Photo Credits: • Thumbnail Image – Wik...
Matt invites /DRIVE CLEAN host, world-renowed auto-detailer, and Impala SS owner Larry Kosilla out to LA to help review the 2014 Chevrolet SS. Can an LS3 engine, rear-wheel drive, and great build quality overcome bland styling? Follow us! T: @thesmokingtire @zackklapman IG: @thesmokingtire @fakezackklapman Check out our PODCAST! Over 100,000 listeners and counting! YouTube: https://www.youtube.com/thesmokingtirepodcast Spotify: https://open.spotify.com/show/4nl2RnapQB8ChnkuPMfjnu Apple podcasts: https://podcasts.apple.com/us/podcast/the-smoking-tire/id496797178 Google Podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS9jMlJ6VEd0YQ?sa=X&ved=0CA0QrrcFahcKEwiQ5Oeno4ruAhUAAAAAHQAAAAAQAQ
Hello and welcome to Saabkyle04! YouTube's largest collection of automotive variety! In today's video, we'll take an up close and personal, in depth look at the 2014 Chevrolet SS. MSRP pricing for the SS, before options, begins at: Standard: $43,475 +Full size spare tire and sunroof: $47,170 During this presentation, we will take a 1st person look at what the vehicle is all about beginning with the start up, performance data, fuel economy, the occasional track data, and build quality. Also, I will teach you how to use most of the interior and exterior features in a detailed fashion, that before, you could only get from going to a dealership yourself! Throughout the video, I will highlight key styling and unique differences about the vehicle, any available options, and of course it would...
Subscribe http://www.youtube.com/subscription_center?add_user=AutoGuideVideo YouTube - http://www.youtube.com/user/AutoguideVideo Facebook - http://facebook.com/AutoGuide Twitter - http://twitter.com/AutoGuide Google+ - http://goo.gl/LBxsP Web - http://www.AutoGuide.com AutoGuide reviews the latest new cars with test drives, car comparisons and shootouts plus coverage of breaking auto industry news, auto shows, rumors and spy photos. Help shop for your new car with informative car buying tips and car recall news, and be entertained with feature stories, Top 10s and car review videos.
Today we’re getting up close and personal with Chevrolet’s performance sedan, the SS. From a fundamental standpoint, the SS shares much its mechanicals with the gone but not forgotten Pontiac G8 GXP, a car which itself was largely derived from the Holden Commodore. Back in 2009 the G8 was heralded by many as “the poor man’s M5”, so considering the close lineage, the SS brings with it some high expectations. Power comes from a 6.2-liter naturally aspirated V8 that makes 415 horsepower and 415 pound-feet of torque and sounds great while doing it. For 2014 a six-speed automatic gearbox is the only transmission available, though a Chevrolet rep has told us to expect an optional six-speed manual gearbox to be on the option list for 2015, along with the GM’s excellent Magnetic Ride Control sus...
We tear up the desert in the new 2014 Chevrolet SS. Ben Davis hit the mountain roads of Palm Springs, California to get a feel for some rear-wheel drive awesomeness from down under.
I review the 2014 Chevrolet SS Sedan with the automatic transmission and a few light modifications to see what Chevy's RWD V8 sleeper was like to drive. What do you think about these? Intro song is 'Blank' by Disfigure and can be heard in it's entirety here: http://youtu.be/p7ZsBPK656s Follow Disfigure: http://www.facebook.com/DisfigureOffi... http://www.soundcloud.com/disfigureof... http://www.youtube.com/user/Disfigure... Opening sequence song is 'Recession' by Main Reaktor and can be heard in it's entirety here: http://youtu.be/3iinD7mJmM0 Main Reaktor: ➞ SoundCloud https://soundcloud.com/mainreaktormusic ➞ Facebook https://www.facebook.com/mainreaktorm... ➞ Twitter https://twitter.com/mainreaktorse ➞ YouTube http://www.youtube.com/mainreaktormusic You can follow me on Twitter @Subar...
It's been 18 years since Chevrolet has offered a rear-wheel-drive sport sedan in their line-up. But it's not like GM was out of the game entirely, they just left such drivetrains to Cadillac and Pontiac, not to mention their Australian Holden brand, which is where the 2014 Chevrolet SS comes from. Well after a brief fact finding mission, here's our scoop on the General's new "rear" admiral.
all racing done in mexico https://www.instagram.com/blacklist__racing/
The Chevrolet SS has a spacious and comfortable cabin along with good acceleration and handling, but it's a gas guzzler.
CHECK OUT CARS & BIDS http://carsandbids.com The Chevrolet SS looked great on paper -- but it was a total flop. Today I'm reviewing the Chevy SS to see why the Chevy SS was a failure, and whether the SS is worth a look. FOLLOW ME! Facebook - http://www.facebook.com/ddemuro Twitter - http://www.twitter.com/dougdemuro Instagram - http://www.instagram.com/dougdemuro DOUGSCORE CHART: https://docs.google.com/spreadsheets/d/1KTArYwDWrn52fnc7B12KvjRb6nmcEaU6gXYehWfsZSo
Louis Charles Auguste Claude Trenet, known as Charles Trenet (French: [ʃaʁl tʁəne]; 18 May 1913 – 19 February 2001), was a French singer and songwriter. He was most famous for his recordings from the late 1930s until the mid-1950s, though his career continued through the 1990s. In an era in which it was unusual for singers to write their own material, Trenet wrote prolifically and declined to record any but his own songs.
Trenet's best-known songs include "Boum!", "La Mer", "Y'a d'la joie", "Que reste-t-il de nos amours?", "Ménilmontant" and "Douce France". His catalogue of songs is enormous, numbering close to a thousand. While many of his songs mined relatively conventional topics such as love, Paris, and nostalgia for his younger days, what set Trenet's songs apart were their personal, poetic, sometimes quite eccentric qualities, often infused with a warm wit. Some of his songs had unconventional subject matter, with whimsical imagery bordering on the surreal. "Y'a d'la joie" evokes joy through a series of disconnected images, including that of a subway car shooting out of its tunnel into the air, the Eiffel Tower crossing the street and a baker making excellent bread. The lovers engaged in a minuet in "Polka du Roi" reveal themselves at length to be "no longer human": they are made of wax and trapped in the Musée Grévin. Many of his hits from the 1930s and 1940s effectively combine the melodic and verbal nuances of French song with American swing rhythms.
Moi j'aime le music-hall
Ses jongleurs, ses danseuses légères
Et le public qui rigole
Quand il voit des petits chiens blancs portant faux col
Moi, j'aime tous les samedis
Quand Paris allume ses lumières
Prendre vers huit heures et demie
Un billet pour être assis
Au troisième rang pas trop loin
Et déjà voilà le rideau rouge
Qui bouge, qui bouge, bouge
L'orchestre attaque un air ancien du temps de Mayol
Bravo c'est drôle, c'est très drôle
Ça c'est du bon souvenir
Du muguet qui ne meure pas, cousine
Ah ! comme elles poussaient des soupirs
Les jeunes fillettes d'antan
Du monde ou d'l'usine
Qui sont devenues à présent
De vieilles grand-mamans
Ce fut vraiment Félix Mayol
Le bourreau des cœurs de leur music-hall
Mais depuis mille neuf cent
Si les jongleurs n'ont pas changé
Si les petits toutous frémissants
Sont restés bien sages sans bouger
Debout dans une pose peu commode
Les chansons ont connu d'autres modes.
Et s'il y a toujours Maurice Chevalier,
Édith Piaf, Tino Rossi et Charles Trenet
Il y a aussi et Dieu merci,
Patachou, Brassens, Léo Ferré.
Moi, j'aime le music-hall
C'est le refuge des chanteurs poètes
Ceux qui se montent pas du col
Et qui restent pour ça de grandes gentilles vedettes
Moi j'aime Juliette Gréco
Mouloudji, Ulmer, les Frère Jacques
J'aime à tous les échos
Charles Aznavour, Gilbert Bécaud
J'aime les boulevards de Paris
Quand Yves Montand qui sourit
Les chante et ça m'enchante
J'adore aussi ces grands garçons
De la chanson,
Les Compagnons
Ding, ding, dong
Ça c'est du music-hall
On dira tout c'qu'on peut en dire
Mais ça restera toujours toujours l'école
Où l'on apprend à mieux voir,
Entendre, applaudir, à s'émouvoir
En s'fendant de larmes ou de rire.
Voilà pourquoi, la, do, mi, sol,
J'aim'rai toujours le music-hall
J'aim'rai toujours, toujours, toujours,
Toujours, toujours, le music-hall.