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

Comme ci, comme ça

"Comme ci, comme ça" (English translation: "Like This, Like That" or "So-So") was the Cypriot entry in the Eurovision Song Contest 2007, performed in French by Evridiki. The song was composed by Dimitris Korgialas and written by Poseidonas Giannopoulos. This was the first Cypriot entry to feature lyrics in a language other than Greek, Italian or English, as well as the first entry from a non-Francophone country to be performed entirely in French. Evridiki's decision to sing this her third Eurovision entry in French was not entirely unexpected; she had previously recorded both 1992's "Teriazoume" and 1994's "Eimai Anthropos Ki Ego" in French, as "Le feu c'est nous" and "Fenêtre sur cour" respectively, as well as in English.

"Comme ci, comme ça" is a moderately up-tempo number, with influences both from rock and techno. Evridiki addresses herself to her lover, telling him that she finds it difficult to live with him. She complains that every Monday he finishes work too late to enjoy her, falling asleep "just as my heart wakes up". He also promises that they will see a movie every Tuesday, but is unable to keep this promise. Following these criticisms, she explains that the unexciting routine of their relationship is too much for her and that she is no longer in love with him. As the chorus continues, it becomes apparent that she intends to leave him.

Zazà

Zazà Italian pronunciation: [dzadˈdza] is an opera by Ruggero Leoncavallo, with the libretto by the composer. Its première at the Teatro Lirico di Milano on 10 November 1900, starring Rosina Storchio as Zazà, Edoardo Garbin as Milio, Mario Sammarco as Cascart and Clorinda Pini-Corsi as Anaïde, and conducted by Arturo Toscanini, began its triumphant run of performances in opera houses around the world.

Over the next twenty years it received over fifty new productions from Palermo to Paris, Buenos Aires to Moscow, Cairo to San Francisco, arriving at The Metropolitan Opera on 16 January 1920 in a production directed by David Belasco and conducted by Roberto Moranzoni, starring Geraldine Farrar, Giulio Crimi and Pasquale Amato, and later Giovanni Martinelli and Giuseppe De Luca. La bohème and Zazà are the operas of Leoncavallo's which most nearly matched the success of Pagliacci.

The story of the opera concerns the French music hall singer, Zazà and her affair and subsequent decision to leave her lover, Milio, when she discovers that he is married. The score is rich with the colorful details of the French music halls where Leoncavallo had spent his early years as a composer.

Zaz

Zaz may refer to:

Places

  • İzbırak, Midyat, or Zaz, a village in Turkey
  • Zaz-e Gharbi Rural District, an administrative subdivision of Iran
  • Zaz-e Sharqi Rural District, an administrative subdivision of Iran
  • ZAZ, the IATA airport code for Zaragoza Airport in Spain
  • Zaragoza (ZAZ is often used as an abbreviation)
  • Music

  • Zaz (singer), stage name of French singer-songwriter Isabelle Geffroy
  • "Zaz Turned Blue," a song from the 1983 Was (Not Was) album Born to Laugh at Tornadoes
  • Others

  • ZAZ, a Ukrainian automobile manufacturer
  • Zucker, Abrahams and Zucker, an American comedy film-making trio
  • ZAZ (TV channel), a defunct children-oriented cable channel from Mexico
  • Zaz, a former Brazilian Internet service provider now part of Terra Networks
  • Zaz (computer game), Zaz ain't Z is an arcade action think-fast game
  • See also

  • Zazz
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Zaz

    Zaz (singer)

    Isabelle Geffroy (born 1 May 1980 in Tours, France), better known by the nickname Zaz, is a French singer-songwriter who mixes jazzy styles, French variety, soul and acoustic. She is famous for her hit "Je veux", from her first album, Zaz, released on 10 May 2010.

    Early life

    Her mother was a Spanish teacher, and her father worked for an electric company. In 1985, she entered the Conservatoire de Tours with her sister and her brother, attending courses from the ages of five to eleven. She studied music theory, specifically the violin, piano, guitar, and choral singing. In 1994, she moved to Bordeaux. In 1995, she took singing lessons and played sports for a year in Bordeaux, all while studying kung fu with a professional coach. In 2000, she won a scholarship from the regional council, which allowed her to join a school of modern music, the CIAM (Centre for Musical Activities and Information) of Bordeaux. Her musical influences included 'Four Seasons' by Vivaldi, jazz singers such as Ella Fitzgerald, and other singers such as Enrico Macias, Bobby McFerrin, and Richard Bona, as well as African, Latin, and Cuban rhythms. In 2006, she moved to Paris.

    Clip

    Clip or CLIP may refer to:

  • Calling line identification presentation, a Caller ID technology
  • Clip (ammunition), a device for storing multiple rounds together as a unit before inserting into a magazine or cylinder
  • Clip (compiler), a multi-platform compiler for the Clipper programming language
  • Confirmed line item performance, a measure of the reliability of supply chain delivery
  • Continuous Liquid Interface Production, a form of additive manufacturing that uses photo polymerization
  • Cupertino Language Immersion Program, a K-8 program in the Cupertino Union School District, California
  • CLIPS, a software tool for building expert systems, including the programming language COOL
  • Clips, a nickname for the Los Angeles Clippers basketball team
  • Fasteners

  • Hair clip, a device used to hold hair together or attahcing materials such as caps to the hair
  • Binder clip, a device used for holding thicker materials (such as large volumes of paper) together
  • Bulldog clip, a common binder clip
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Clip

    Clip (firearms)

    A clip is a device that is used to store multiple rounds of ammunition together as a unit, ready for insertion into the magazine or cylinder of a firearm. This speeds up the process of loading and reloading the firearm as several rounds can be loaded at once, rather than one round being loaded at a time. Several different types of clips exist, most of which are made of inexpensive metal stampings that are designed to be disposable, though they are often re-used.

    The defining difference between clips and magazines is the presence of a feed mechanism in a magazine, typically a spring-loaded follower, which a clip lacks.

    Types

    Stripper

    A stripper clip or charger is a speed-loader that holds several cartridges together in a single unit for easier loading of a firearm's magazine. A stripper clip is used only for loading the magazine and is not necessary for the firearm to function. It is called a 'stripper' clip because, after the bolt is opened and the stripper clip is placed in position (generally by placing it in a slot on either the receiver or bolt), the cartridges are pressed down, thereby 'stripping' them off the stripper clip and into the magazine.

    Clip (film)

    Clip (Serbian: Klip, Клип) is a 2012 Serbian drama film directed by Maja Miloš and tells the story about young teenager girl Jasna who is obsessed with sex. The film became controversial for its depiction of some explicit scenes, supposedly performed by then fourteen years old actress Isidora Simjonović. However, the authenticity of those scenes is still debatable.

    The director said in her interviews that Simjonović had been exposed to some degree of explicitness, however Miloš didn't tell how much of it nor to what kind of sexual acts. Also, Miloš said that prosthetic, dildos, special visual effects, body doubles had also been used, as well as the film had had long post production period but actually, she said nothing about unsimulated sex. However, due to the both film's hyper-realism and the use of minors as the main actors, film was banned in Russia as being a child pornography.

    The film was released in Serbia on April 12, 2012 at Belgrade's Sava Center. It won KNF Award and Tiger Award at the 2012 Rotterdam International Film Festival.

    Podcasts:

    • Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסה

      ניהול אישי וייצוג בלעדי: מיכאל סמו 0502088067 הזמנת הופעות פרטיות: אופיר-0508499347 הזמנת הופעות: גאגא בוקינג בע"מ 036056511 Manager: Michael Semo- 0502088067 0508499347 -Booking for private shows: Ofir Booking: Gaga booking- 036056511 הורדת שיר בהמתנה בהוט מובייל: https://bit.ly/2tV2On0 הורדת שיר בהמתנה בפלאפון: https://bit.ly/2KDTCe2 הורדת שיר בהמתנה בפרטנר: https://bit.ly/2tMQki1 הורדת שיר בהמתנה בסלקום: https://bit.ly/2z3EkxS שמיעת השיר בספוטיפיי: https://spoti.fi/2Kndm9v הורדת השיר באייטיונס: https://apple.co/2tUQi7W שמיעת השיר באפל מיוזיק: https://apple.co/2KCE7Hq סטפן Instagram https://www.instagram.com/stephane.le.gar/ סטפן פייסבוק https://www.facebook.com/1stephane.le.gar/ יחסי ציבור סטפן: שיר פינטו- 0544690510 מילים ולחן: סטפן לגר, דולב רם ופן חזות עיבוד והפקה מוזיקלית: דו...

      published: 01 Jul 2018
    • Comme ci, comme ça

      Provided to YouTube by Universal Music Group Comme ci, comme ça · Kurdo KRISTALL ℗ Distributed by URBAN; ℗ 2024 Almaz GmbH Released on: 2024-01-11 Producer: The Cratez Producer: Stoopid Lou Producer: Neal & Alex Producer: FGY Beats Studio Personnel, Mixer, Mastering Engineer: Jan Magdevski Author: Kurdo Composer: The Cratez Composer: Stoopid Lou Composer: Neal & Alex Composer: FGY Beats Auto-generated by YouTube.

      published: 11 Jan 2024
    • Basim - Comme Ci Comme Ça ft. Gilli

      Comme Ci Comme Ça: https://basim.lnk.to/feat_Gilli Basim på social: https://www.instagram.com/basim https://www.facebook.com/BasimMusic Credits: Instruktør: Ian N. Tomkins Instruktør ass.: Azuz DoP: Ian N. Tomkins - http://tomkins.dk Idé/manus: Basim/Azuz/Tomkins/Mårtensson Producent: Thomas Mårtensson / BAM! Productions Klipper/grading: Malte Greis Steadicam: Kim Jensen B-Foto: Lars Nørlund Lysmester: Niels Dose Makeup: Sara Sofia Kasper Drone: Jan Winther Pyro: Danni Madsen Music video by Basim performing Comme Ci Comme Ça. (C) 2017 Universal Music (Denmark) A/S, Universal Music (Denmark) A/S http://vevo.ly/rijitV

      published: 21 Sep 2017
    • French Affair - Comme ci comme ca ( Official Video )

      The official video for Comme c comme ca by French Affair. Listen on Spotify: https://open.spotify.com/intl-de/album/0ZUU0rETCIdO13CCmQnKfr?si=W4bs_cHiSji8E3WbSsR9rQ Listen on Apple Music: https://music.apple.com/de/album/belle-epoque/285309981 Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart   Sometimes when you're away All my life turns grey I think of you all day Wish you come back and stay   Sometimes when you're with me It is real love I see Or do you play with me I need to know what you feel I need to know what you feel I need to know what you feel   But then I lo...

      published: 21 Jun 2023
    • ZAZ - Comme ci comme ça (Clip officiel)

      Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - Nouvel album « Effet miroir » disponible en précommande : https://zaz.lnk.to/EffetMiroir Titre extrait de l'album "Recto verso (Deluxe)" en écoute sur Spotify : http://spoti.fi/2iIfvMk Deezer : http://bit.ly/2yK3j8L - Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com

      published: 23 Jun 2014
    • Evridiki - Comme Ci, Comme ça (Cyprus) Live 2007 Eurovision Song Contest

      Evridiki represented Cyprus at the 2007 Eurovision Song Contest in Helsinki with the song Comme Ci, Comme ça

      published: 20 Sep 2016
    • Ευρυδίκη | Euridiki - Comme ci comme ca - Official Video Clip

      Subscribe: https://www.youtube.com/@greek_songs Ευρυδίκη | Euridiki - Comme ci comme ca - Official Video Clip Ξεπερνώντας τα 50 χρόνια ελληνικής μουσικής ιστορίας, στο κανάλι Ελληνικό Τραγούδι βρίσκονται σημαντικές στιγμές του ελληνικού τραγουδιού από τα '60s έως και σήμερα, με συμπράξεις σπουδαίων τραγουδιστών, συνθετών και στιχουργών που άφησαν εποχή. Στο κανάλι Ελληνικό Τραγούδι θα βρείτε συγκεντρωμένο έναν από τους σπουδαιότερους και πιο πολυποίκιλους καταλόγους της ελληνικής μουσικής σκηνής. Στίχοι: Ποσειδώνας Γιαννόπουλος Μουσική: Δημήτρης Κοργιαλάς Στίχοι Tous les lundis, tu finis le travail trop tard Et puis la télé et sommeil, quand mon cœur se réveille Et tous les mardis, tu me dis le matin – et tu l'oublies "On ira au ciné", et le soir – "désolé" Comme ci, comme ça, la v...

      published: 08 Mar 2017
    • Tour 2 Garde - Comme ci comme ça (Clip officiel) ft. Aya Nakamura

      Découvre le clip officiel "Comme ci comme ça " de Tour 2 Garde feat Aya Nakamura " Comme ci comme ça " maintenant disponible en téléchargement et streaming : https://sonymusicCIV.lnk.to/_T2G_komsi -- Abonne-toi dès maintenant à la CHAINE OFFICIELLE de TOUR 2 GARDE : https://www.youtube.com/user/tour2gardetv?sub_confirmation=1 Réécoute la playlist en intégralité : https://www.youtube.com/playlist?list=PLDz5j74WhIZ5lj3k_JLIPXrxuVd072z6Y -- Retrouve Tour 2 Garde sur : Facebook : https://www.facebook.com/Tour2GardeOfficial Twitter : https://twitter.com/tour_2_garde Instagram : https://www.instagram.com/tour_2_garde -- Paroles : aya nakamura tour 2 garde comme ci comme ci comme ca ouuh yeah comme ci comme ca oooh cherie, je ne veux que toi t’as le secret qui me met dans la joie tu es ch...

      published: 29 Jun 2018
    • French Affair - Comme ci comme ça [ VAYTOX Remix ] ( Official Video )

      The official video for Comme c comme ca [ VAYTOX Remix ] by French Affair. Listen on Spotify: https://open.spotify.com/intl-de/album/6bGBWEtGj1GKLcAb3AzWje?si=Hllrd6x3ToOrhg7vX_5FKA Listen on Apple Music: https://music.apple.com/de/album/comme-ci-comme-%C3%A7a-vaytox-remix-single/1677504410 Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart   Sometimes when you're away All my life turns grey I think of you all day Wish you come back and stay   Sometimes when you're with me It is real love I see Or do you play with me I need to know what you feel I need to know what you f...

      published: 09 Apr 2023
    • VITAA & SLIMANE - Fais comme ça avec KENDJI GIRAC (Audio Officiel)

      "VersuS - Chapitre II", maintenant disponible : https://versus.lnk.to/chapitre2 Après le succès de leur album événement « VersuS », Vitaa & Slimane ont annoncé la suite de l’aventure avec la sortie de « VersuS - Chapitre II » comprenant 10 titres inédits dont le single « Ça ira ». ---------------------------------------------------------------------- VITAA & SLIMANE en concert à travers toute la France, la Belgique et la Suisse (dates reportées) A l'AccorHotels Arena (Paris) le 22 Octobre 2021 Au Stade Pierre-Mauroy (Lille) le 25 Juin 2022 Billetterie disponible : https://smarturl.it/VersusTour ---------------------------------------------------------------------- Suivre Vitaa : https://www.facebook.com/VitaaOfficiel https://instagram.com/Vitaa https://twitter.com/Vitaa Snapchat : Vita...

      published: 22 Aug 2019
    developed with YouTube
    Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסה
    2:51

    Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסה

    • Order:
    • Duration: 2:51
    • Uploaded Date: 01 Jul 2018
    • views: 51192215
    ניהול אישי וייצוג בלעדי: מיכאל סמו 0502088067 הזמנת הופעות פרטיות: אופיר-0508499347 הזמנת הופעות: גאגא בוקינג בע"מ 036056511 Manager: Michael Semo- 0502088067 0508499347 -Booking for private shows: Ofir Booking: Gaga booking- 036056511 הורדת שיר בהמתנה בהוט מובייל: https://bit.ly/2tV2On0 הורדת שיר בהמתנה בפלאפון: https://bit.ly/2KDTCe2 הורדת שיר בהמתנה בפרטנר: https://bit.ly/2tMQki1 הורדת שיר בהמתנה בסלקום: https://bit.ly/2z3EkxS שמיעת השיר בספוטיפיי: https://spoti.fi/2Kndm9v הורדת השיר באייטיונס: https://apple.co/2tUQi7W שמיעת השיר באפל מיוזיק: https://apple.co/2KCE7Hq סטפן Instagram https://www.instagram.com/stephane.le.gar/ סטפן פייסבוק https://www.facebook.com/1stephane.le.gar/ יחסי ציבור סטפן: שיר פינטו- 0544690510 מילים ולחן: סטפן לגר, דולב רם ופן חזות עיבוד והפקה מוזיקלית: דולב רם ופן חזות קלידים ותכנותים : דולב רם ופן חזות גיטרות: שמעון יחיא קלידים נוספים: אור חיים כהן, מאיר עמר קולות: סטפן לגר, דולב רם ופן חזות מיקס: מאיר עמר, דולב רם ופן חזות מאסטרינג: איציק פיליבה קונספט קריאייטיב: סיגל עבודי,מל כספי,גידי שמיר למקאן תל אביב קליפ: במאי - שחר סגל צלם - טובי הוכשטיין עורך - אפלברג\ Appelberg ניהול אומנותי: דניאל תייר הפקה- POV - נטע קרני , הדר אלבראנס , ליאת להבי , נועה לויסון. סטיילינג: מזל חסון רקדנים: יואב סנבטה, זוהר פיזיצקי, מור נחום, דקל שבת, צנואה פרנקלין, רון וינשטיין ,ווין באיס ,בן קראודר ,שגיא אקשוטי כוריאוגרפיה: סטפן גאגבה ---------------------------------------------------------------------------------------- Manager: Michael Semo Booking for private show: 0502088067 Booking: Gaga Booking - 036056511 Stéphane Instagram:https://www.instagram.com/stephane.le.gar/ Stéphane Facebook: https://www.facebook.com/1stephane.le.gar/ Lyrics & Musical Composition - Stephane Gagba, Dolev Ram & Penn Hazut Produced by Dolev Ram & Penn Hazut Guitar: Shimon Yihye Keys: Dolev Ram, Penn Hazut, Or Haim Cohen, Meir Amar Back Vocals: Stephane Gagba, Dolev Ram & Penn Hazut Mixed by Meir Amar, Dolev Ram & Penn Hazut Mastering by: Itzik Filiba Video: Director: Shahar Segal Filming: Tobias hochstein Editing: Appelberg Art Managar: Daniel Taiar Producion: POV-Neta Karni, Hadar Albaranes, Noa Levison Styling By: Mazal Hason Dancers: Mor Adelle Nahum, Franklin Tsnooah, Ron Weinstein, Ben Crowder, Sagi Akshuti, Dekel shabat, Zohar Fizitski, Yoav Sanbata Choreography: Stephane Legar Lyrics: Israël est magnifique mais un peu problématique Chez nous on dit ze maspik Comme ci comme ça ze ha trick Par example sur Tel Aviv il y’a tout de tout sans deconner Mais c’est toujours pas parfait (Attends jvais tout t’expliquer ( Eeeeeyy Pkakim Be Yom rishon Comme Ci Comme ça Vacances au ski sur le hermon Comme Ci Comme ça LES MADMOISELLES EN ISRAËL SONT OULALA AVAL Ha NIMOUSSIM COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME ÇA Les gens stressés, ça travail toujours Tous occupés ca déborde de partout Tous s’ eparpie et tout se sali Même les avocats ici sont endormis J’marche dans la rue tout l’monde est different Les gens qui s’disputent comme des petit enfants Ils veulent tous la paix mais il y’a même pas le temps La total chic shel hagvarim Comme Ci Comme ça Hasahkanim bamigrashim Comme Ci Comme ça Les MADMOISELLES en Israël sont oulala COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME ÇA Tout le monde à gauche, à droite J’ai dit à gauche maintenant à droite! La politic comme ci comme ça, La parnasa comme ci comme ça Les pirsomot comme Ci Comme ça הכל קומקסיקומקסה Education comme ci comme ça Imformation comme ci comme ça Précision comme ci comme ça COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME ÇA
    https://wn.com/Stephane_Legar_Comme_Ci_Comme_Ça_(Music_Video)_|_סטפן_לגר_קומסי_קומסה
    Comme ci, comme ça
    3:12

    Comme ci, comme ça

    • Order:
    • Duration: 3:12
    • Uploaded Date: 11 Jan 2024
    • views: 30379
    Provided to YouTube by Universal Music Group Comme ci, comme ça · Kurdo KRISTALL ℗ Distributed by URBAN; ℗ 2024 Almaz GmbH Released on: 2024-01-11 Producer: The Cratez Producer: Stoopid Lou Producer: Neal & Alex Producer: FGY Beats Studio Personnel, Mixer, Mastering Engineer: Jan Magdevski Author: Kurdo Composer: The Cratez Composer: Stoopid Lou Composer: Neal & Alex Composer: FGY Beats Auto-generated by YouTube.
    https://wn.com/Comme_Ci,_Comme_Ça
    Basim - Comme Ci Comme Ça ft. Gilli
    3:13

    Basim - Comme Ci Comme Ça ft. Gilli

    • Order:
    • Duration: 3:13
    • Uploaded Date: 21 Sep 2017
    • views: 8876736
    Comme Ci Comme Ça: https://basim.lnk.to/feat_Gilli Basim på social: https://www.instagram.com/basim https://www.facebook.com/BasimMusic Credits: Instruktør: Ian N. Tomkins Instruktør ass.: Azuz DoP: Ian N. Tomkins - http://tomkins.dk Idé/manus: Basim/Azuz/Tomkins/Mårtensson Producent: Thomas Mårtensson / BAM! Productions Klipper/grading: Malte Greis Steadicam: Kim Jensen B-Foto: Lars Nørlund Lysmester: Niels Dose Makeup: Sara Sofia Kasper Drone: Jan Winther Pyro: Danni Madsen Music video by Basim performing Comme Ci Comme Ça. (C) 2017 Universal Music (Denmark) A/S, Universal Music (Denmark) A/S http://vevo.ly/rijitV
    https://wn.com/Basim_Comme_Ci_Comme_Ça_Ft._Gilli
    French Affair - Comme ci comme ca ( Official Video )
    3:32

    French Affair - Comme ci comme ca ( Official Video )

    • Order:
    • Duration: 3:32
    • Uploaded Date: 21 Jun 2023
    • views: 623698
    The official video for Comme c comme ca by French Affair. Listen on Spotify: https://open.spotify.com/intl-de/album/0ZUU0rETCIdO13CCmQnKfr?si=W4bs_cHiSji8E3WbSsR9rQ Listen on Apple Music: https://music.apple.com/de/album/belle-epoque/285309981 Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart   Sometimes when you're away All my life turns grey I think of you all day Wish you come back and stay   Sometimes when you're with me It is real love I see Or do you play with me I need to know what you feel I need to know what you feel I need to know what you feel   But then I look in your eyes And then oh baby you smile I can't resist you and you turn me upside down And when I feel your sweet kiss Oh no that's what I miss I get so high, oh I know I never wanna come down   Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart   Sometimes when love comes in It takes you for a spin But when it drifts away You cry all night all day Sometimes it's yeah yeah yeah Sometimes it's no no no That's just the way love goes I need to know what you feel I need to know what you feel I need to know what you feel   But then I look in your eyes And then oh baby you smile I can't resist you and you turn me upside down And when I feel your sweet kiss Oh nothat's what I miss I get so high, oh Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart Comme ci, comme ci, comme ça uhu Please don't break my heart Comme ci, comme ci, comme ça uhu Please don't break my heart
    https://wn.com/French_Affair_Comme_Ci_Comme_Ca_(_Official_Video_)
    ZAZ - Comme ci comme ça (Clip officiel)
    2:46

    ZAZ - Comme ci comme ça (Clip officiel)

    • Order:
    • Duration: 2:46
    • Uploaded Date: 23 Jun 2014
    • views: 3766286
    Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - Nouvel album « Effet miroir » disponible en précommande : https://zaz.lnk.to/EffetMiroir Titre extrait de l'album "Recto verso (Deluxe)" en écoute sur Spotify : http://spoti.fi/2iIfvMk Deezer : http://bit.ly/2yK3j8L - Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com
    https://wn.com/Zaz_Comme_Ci_Comme_Ça_(Clip_Officiel)
    Evridiki - Comme Ci, Comme ça (Cyprus) Live 2007 Eurovision Song Contest
    3:12

    Evridiki - Comme Ci, Comme ça (Cyprus) Live 2007 Eurovision Song Contest

    • Order:
    • Duration: 3:12
    • Uploaded Date: 20 Sep 2016
    • views: 564574
    Evridiki represented Cyprus at the 2007 Eurovision Song Contest in Helsinki with the song Comme Ci, Comme ça
    https://wn.com/Evridiki_Comme_Ci,_Comme_Ça_(Cyprus)_Live_2007_Eurovision_Song_Contest
    Ευρυδίκη | Euridiki - Comme ci comme ca  - Official Video Clip
    3:09

    Ευρυδίκη | Euridiki - Comme ci comme ca - Official Video Clip

    • Order:
    • Duration: 3:09
    • Uploaded Date: 08 Mar 2017
    • views: 397821
    Subscribe: https://www.youtube.com/@greek_songs Ευρυδίκη | Euridiki - Comme ci comme ca - Official Video Clip Ξεπερνώντας τα 50 χρόνια ελληνικής μουσικής ιστορίας, στο κανάλι Ελληνικό Τραγούδι βρίσκονται σημαντικές στιγμές του ελληνικού τραγουδιού από τα '60s έως και σήμερα, με συμπράξεις σπουδαίων τραγουδιστών, συνθετών και στιχουργών που άφησαν εποχή. Στο κανάλι Ελληνικό Τραγούδι θα βρείτε συγκεντρωμένο έναν από τους σπουδαιότερους και πιο πολυποίκιλους καταλόγους της ελληνικής μουσικής σκηνής. Στίχοι: Ποσειδώνας Γιαννόπουλος Μουσική: Δημήτρης Κοργιαλάς Στίχοι Tous les lundis, tu finis le travail trop tard Et puis la télé et sommeil, quand mon cœur se réveille Et tous les mardis, tu me dis le matin – et tu l'oublies "On ira au ciné", et le soir – "désolé" Comme ci, comme ça, la vie passe Et les bons moments nous dépassent Comme ci, comme ça, l'amour casse Routine et paresse nous menacent Comme ci, comme ça, je n'en peux plus Je suis déçue, tu m'as perdue Je reste pas là, comme ci, comme ça La fin voilà, comme ci, comme ça Même les samedis à minuit, tu me dis déjà bonne nuit Tu t'endors quand je sors en te chantant très fort: Comme ci, comme ça, la vie passe Et les bons moments nous dépassent Comme ci, comme ça, l'amour casse Routine et paresse nous menacent Comme ci, comme ça, je n'en peux plus Je suis déçue, tu m'as perdue Je reste pas là, comme ci, comme ça La fin voilà, comme ci, comme ça Comme ci, comme ça, la vie passe Et les bons moments nous dépassent Comme ci comme ça, l'amour casse Routine et paresse nous menacent Comme ci, comme ça, je n'en peux plus Je suis déçue, tu m'as perdue Je reste pas là, comme ci, comme ça La fin voilà, comme ci, comme ça Je reste pas là, comme ci, comme ça La fin voilà, comme ci, comme ça Je reste pas là, comme ci, comme ça La fin voilà
    https://wn.com/Ευρυδίκη_|_Euridiki_Comme_Ci_Comme_Ca_Official_Video_Clip
    Tour 2 Garde - Comme ci comme ça (Clip officiel) ft. Aya Nakamura
    3:31

    Tour 2 Garde - Comme ci comme ça (Clip officiel) ft. Aya Nakamura

    • Order:
    • Duration: 3:31
    • Uploaded Date: 29 Jun 2018
    • views: 2144236
    Découvre le clip officiel "Comme ci comme ça " de Tour 2 Garde feat Aya Nakamura " Comme ci comme ça " maintenant disponible en téléchargement et streaming : https://sonymusicCIV.lnk.to/_T2G_komsi -- Abonne-toi dès maintenant à la CHAINE OFFICIELLE de TOUR 2 GARDE : https://www.youtube.com/user/tour2gardetv?sub_confirmation=1 Réécoute la playlist en intégralité : https://www.youtube.com/playlist?list=PLDz5j74WhIZ5lj3k_JLIPXrxuVd072z6Y -- Retrouve Tour 2 Garde sur : Facebook : https://www.facebook.com/Tour2GardeOfficial Twitter : https://twitter.com/tour_2_garde Instagram : https://www.instagram.com/tour_2_garde -- Paroles : aya nakamura tour 2 garde comme ci comme ci comme ca ouuh yeah comme ci comme ca oooh cherie, je ne veux que toi t’as le secret qui me met dans la joie tu es chaude, oh ya ya ya je m’abandonne a toi, j’ai pas le choix tu sais que le monde est a nous bebe je m’occupe de tout je t’ai dit de croire en nous doudou je ne te vends pas du flou je le veux comme ci, comme ca hann comme ci, comme ca (x8) tu connais le temperament a l’ecoute evidemment j’suis pas mefiante mais doucement ton pied mon pied on va calmer, doser le jeu j’ai des doutes mais je veux tout savoir, tout avoir il va ou, avec qui bebe le monde est a nous tu me dis de croire en nous donne moi juste de l’amour et on ira jusqu’au bout je le veux comme ci, comme ca hann comme ci, comme ca (x8) prend ma main laisse toi faire bebe dis moi tout ce qui ne vas pas tu m’enjailles tu l’sais bien mais souvent tes foutaises la gatent mon ker faut pas t’inquieter c’est toi qui m’fait kiffer pour toi j’ai laissé mes kpocles haan bebe hann ca c’est pas les krikata krikata mon bebe j’suis fan de toi c’est pas les krikata krikata moi j’suis pret pour toi eeh je le veux comme ci, comme ca hann comme ci, comme ca (x8) haan hann faut pas me compliquer on est collé serré faut pas me fatiguer haan hann faut pas me compliquer tu sais bien que c’est toi et moi (quoi ?) on va se laisser je le veux comme ci, comme ca hann comme ci, comme ca (x8)
    https://wn.com/Tour_2_Garde_Comme_Ci_Comme_Ça_(Clip_Officiel)_Ft._Aya_Nakamura
    French Affair - Comme ci comme ça  [ VAYTOX Remix ] ( Official Video )
    3:01

    French Affair - Comme ci comme ça [ VAYTOX Remix ] ( Official Video )

    • Order:
    • Duration: 3:01
    • Uploaded Date: 09 Apr 2023
    • views: 144475
    The official video for Comme c comme ca [ VAYTOX Remix ] by French Affair. Listen on Spotify: https://open.spotify.com/intl-de/album/6bGBWEtGj1GKLcAb3AzWje?si=Hllrd6x3ToOrhg7vX_5FKA Listen on Apple Music: https://music.apple.com/de/album/comme-ci-comme-%C3%A7a-vaytox-remix-single/1677504410 Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart   Sometimes when you're away All my life turns grey I think of you all day Wish you come back and stay   Sometimes when you're with me It is real love I see Or do you play with me I need to know what you feel I need to know what you feel I need to know what you feel Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Uh la la, la la la la la la Je suis folle de toi Please don't break my heart   Next day I wanna cry singing Uh la la But then I look in your eyes And then oh baby you smile I can't resist you and you turn me upside down And when I feel your sweet kiss Oh no that's what I miss I get so high, oh I know I never wanna come down I need to know what you feel I need to know what you feel   Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la Comme ci, comme ci, comme ça One day I feel it's love Next day it's not enough It goes Un, deux, trois Comme ci, comme ci, comme ça One day I feel so high Next day I wanna cry singing Uh la la, la la la la la la Je suis folle de toi Please don't break my heart
    https://wn.com/French_Affair_Comme_Ci_Comme_Ça_Vaytox_Remix_(_Official_Video_)
    VITAA & SLIMANE - Fais comme ça avec KENDJI GIRAC (Audio Officiel)
    3:21

    VITAA & SLIMANE - Fais comme ça avec KENDJI GIRAC (Audio Officiel)

    • Order:
    • Duration: 3:21
    • Uploaded Date: 22 Aug 2019
    • views: 13124661
    "VersuS - Chapitre II", maintenant disponible : https://versus.lnk.to/chapitre2 Après le succès de leur album événement « VersuS », Vitaa & Slimane ont annoncé la suite de l’aventure avec la sortie de « VersuS - Chapitre II » comprenant 10 titres inédits dont le single « Ça ira ». ---------------------------------------------------------------------- VITAA & SLIMANE en concert à travers toute la France, la Belgique et la Suisse (dates reportées) A l'AccorHotels Arena (Paris) le 22 Octobre 2021 Au Stade Pierre-Mauroy (Lille) le 25 Juin 2022 Billetterie disponible : https://smarturl.it/VersusTour ---------------------------------------------------------------------- Suivre Vitaa : https://www.facebook.com/VitaaOfficiel https://instagram.com/Vitaa https://twitter.com/Vitaa Snapchat : VitaaOfficiel ---------------------------------------------------------------------- Suivre Slimane : https://www.facebook.com/slimaneoff https://www.instagram.com/slimane https://twitter.com/Slimaneoff Snapchat : Slimanesnap ---------------------------------------------------------------------- INDIFFERENCE PROD : https://www.instagram.com/indifferenceprod https://www.facebook.com/IndifferenceProd
    https://wn.com/Vitaa_Slimane_Fais_Comme_Ça_Avec_Kendji_Girac_(Audio_Officiel)
    • ZAZ - Je veux (Clip officiel)

      Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cIA "Je veux", extrait de l'album "Zaz" Ecoutez le Best Of de Zaz ici : https://lnk.to/bestofzaz Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com

      published: 05 Jul 2018
    • ZAZ – Qué vendrá (Clip officiel)

      Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY Qué vendrá , extrait de l'album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - Après 4 millions d’albums vendus, plus de 500 dates de concerts dans le monde entier devant plus d’1 million de spectateurs, ZAZ est de retour dans un album de chansons originales ! After 4 Million records sold in the world, over 500 dates internationally for +1 Million persons, ZAZ is back with a new studio album of original songs ! Boite de production / Production : Europicture Réalisateurs / Directors : Hobo & Mojo ___________________ En tournée mondiale dès février 2019 ! Retrouvez toutes les dates sur le site o...

      published: 12 Oct 2018
    • ZAZ - Je veux (Live)

      Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - CD / DVD "Sur la route" disponible ici : http://apple.co/2AuA86S En écoute sur Spotify : http://spoti.fi/2zvIknu Et sur Deezer : http://bit.ly/2iHIaRD - Avec le film « Sur la route », ZAZ nous fait découvrir les coulisses de cette tournée mondiale triomphale. La caméra l’accompagne sur scène pour nous faire vivre au plus près ses titres phares et nous offre aussi un portrait surprenant et touchant d’une artiste phénomène comme on ne l’a jamais vue auparavant. - Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com

      published: 05 Sep 2014
    • ZAZ - Si jamais j'oublie (Clip officiel)

      Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY En écoute sur Spotify : http://spoti.fi/2zvIknu Et sur Deezer : http://bit.ly/2iHIaRD - Avec le film « Sur la route », ZAZ nous fait découvrir les coulisses de cette tournée mondiale triomphale. La caméra l’accompagne sur scène pour nous faire vivre au plus près ses titres phares et nous offre aussi un portrait surprenant et touchant d’une artiste phénomène comme on ne l’a jamais vue auparavant. - Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com "Si jamais j’oublie" Rappelle-moi le jour et l’année Rappelle-moi le te...

      published: 07 Sep 2015
    • Zaz - Je veux (Studio version, HD)

      Album: Zaz (2010)

      published: 07 Dec 2010
    • Zaz à Montmartre Les passants

      published: 03 Mar 2014
    • ZAZ - Eblouie par la nuit (Clip officiel)

      Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY ---------------------------------------- Retrouve Zaz sur : Site officiel : https://www.zazofficial.com Facebook : https://www.facebook.com/zazofficiel Twitter : https://twitter.com/Zaz_Official Instagram : https://www.instagram.com/zaz_off Deezer : http://www.deezer.com/artist/71069 Spotify : https://open.spotify.com/artist/1mbgj8ERPs8lWi7t5cYrdy

      published: 17 Nov 2011
    • ZAZ - On ira (Clip officiel)

      Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - Zaz "On Ira", single disponible : http://bit.ly/zaz_onira Premier extrait de l'album « Recto Verso » Retrouvez ZAZ sur ses réseaux sociaux : - facebook : https://www.facebook.com/zazofficial/ - twitter : https://twitter.com/zaz_official - instagram : https://www.instagram.com/zaz_off/?hl=fr Et sur le site web officiel : https://zazofficial.com/ Titre écrit par Kerredine Soltani / Olivier Volovitch / Louise Becue et composé par Kerredine Soltani & Tryss Music video by Zaz performing On ira. (P) 2013 Play On

      published: 27 Mar 2013
    developed with YouTube
    ZAZ - Je veux (Clip officiel)
    3:37

    ZAZ - Je veux (Clip officiel)

    • Order:
    • Duration: 3:37
    • Uploaded Date: 05 Jul 2018
    • views: 91396206
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cIA "Je veux", extrait de l'album "Zaz" Ecoutez le Best Of de Zaz ici : https://lnk.to/bestofzaz Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com
    https://wn.com/Zaz_Je_Veux_(Clip_Officiel)
    ZAZ – Qué vendrá (Clip officiel)
    3:02

    ZAZ – Qué vendrá (Clip officiel)

    • Order:
    • Duration: 3:02
    • Uploaded Date: 12 Oct 2018
    • views: 104020963
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY Qué vendrá , extrait de l'album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - Après 4 millions d’albums vendus, plus de 500 dates de concerts dans le monde entier devant plus d’1 million de spectateurs, ZAZ est de retour dans un album de chansons originales ! After 4 Million records sold in the world, over 500 dates internationally for +1 Million persons, ZAZ is back with a new studio album of original songs ! Boite de production / Production : Europicture Réalisateurs / Directors : Hobo & Mojo ___________________ En tournée mondiale dès février 2019 ! Retrouvez toutes les dates sur le site officiel : www.zazofficial.com On international tour from February 2019! All the dates on www.zazofficial.com ___________________ Retrouvez ZAZ sur ses réseaux sociaux : - facebook : https://www.facebook.com/zazofficial/ - twitter : https://twitter.com/zaz_official - instagram : https://www.instagram.com/zaz_off/?hl=fr Et sur le site web officiel : https://zazofficial.com/ Paroles : Qu'importe là où je vais Tant que j’ai l’audace De tenir la main de l’autre Pour aimer le temps qui passe Dans tout ce que je fais La rage et l’amour s’embrassent Qu’elle soit mienne ou qu’elle soit votre La vie nous dépasse Qué vendrá qué vendrá Yo escribo mi camino Sin pensar sin pensar Dónde acabará Dans mes joies, dans mes peines, dans mes choix, dans mes larmes Je laisse aller mes sentiments Au mieux on écrit son chemin comme on se soigne Pour aimer indifféremment Sur les sables mouvants d’un passé qui s’effondre Je me raccroche à ceux que j’aime Prenant soin de chaque seconde Les heures prendront soin d’elles-mêmes Qué vendrá qué vendrá Yo escribo mi camino Sin pensar sin pensar Dónde acabará Qué vendrá qué vendrá Yo escribo mi camino Si me pierdo es que ya me he encontrado Y sé que debo continuar Puisque nous sommes ici sans savoir Ce qui nous attend un peu plus tard Laisser parler mon instinct me guérit Puisque tout cela est bien trop court J’aimerai jusqu’à mon dernier jour Jusqu’à mon dernier souffle de vie Qué vendrá qué vendrá Jusqu’où j’irai j’en sais rien Sin pensar sin pensar Sans penser à demain Qué vendrá qué vendrá Yo escribo mi camino Si me pierdo es que ya me he encontrado Y sé que debo continuar Qué vendrá qué vendrá Yo escribo mi camino Si me pierdo es que ya me he encontrado Y sé que debo continuar Si me pierdo es que ya me he encontrado Y sé que debo continuar
    https://wn.com/Zaz_–_Qué_Vendrá_(Clip_Officiel)
    ZAZ - Je veux (Live)
    2:59

    ZAZ - Je veux (Live)

    • Order:
    • Duration: 2:59
    • Uploaded Date: 05 Sep 2014
    • views: 23446309
    Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - CD / DVD "Sur la route" disponible ici : http://apple.co/2AuA86S En écoute sur Spotify : http://spoti.fi/2zvIknu Et sur Deezer : http://bit.ly/2iHIaRD - Avec le film « Sur la route », ZAZ nous fait découvrir les coulisses de cette tournée mondiale triomphale. La caméra l’accompagne sur scène pour nous faire vivre au plus près ses titres phares et nous offre aussi un portrait surprenant et touchant d’une artiste phénomène comme on ne l’a jamais vue auparavant. - Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com
    https://wn.com/Zaz_Je_Veux_(Live)
    ZAZ - Si jamais j'oublie (Clip officiel)
    3:27

    ZAZ - Si jamais j'oublie (Clip officiel)

    • Order:
    • Duration: 3:27
    • Uploaded Date: 07 Sep 2015
    • views: 114393140
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY En écoute sur Spotify : http://spoti.fi/2zvIknu Et sur Deezer : http://bit.ly/2iHIaRD - Avec le film « Sur la route », ZAZ nous fait découvrir les coulisses de cette tournée mondiale triomphale. La caméra l’accompagne sur scène pour nous faire vivre au plus près ses titres phares et nous offre aussi un portrait surprenant et touchant d’une artiste phénomène comme on ne l’a jamais vue auparavant. - Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com "Si jamais j’oublie" Rappelle-moi le jour et l’année Rappelle-moi le temps qu’il faisait Et si j’ai oublié Tu peux me secouer Et s’il me prend l’envie de m’en aller Enferme-moi et jette la clé En piqure de rappel Dis comment je m’appelle Si jamais j’oublie Les nuits que j’ai passé Les guitares et les cris Rappelle moi qui je suis Pourquoi je suis en vie Si jamais j’oublie Les jambes à mon cou Si un jour je fuis Rappelle-moi qui je suis Ce que je m’étais promis Rappelle-moi mes rêves les plus fous Rappelle-moi ces larmes sur mes joues Et si j’ai oublié Combien j’aimais chanter Si jamais j’oublie Les nuits que j’ai passées Les guitares et les cris Rappelle moi qui je suis Pourquoi je suis en vie Si jamais j’oublie Les jambes à mon cou Si un jour je fuis Rappelle-moi qui je suis Ce que je m’étais promis Si jamais j’oublie Les jambes à mon cou Si un jour je fuis Rappelle-moi qui je suis Ce que je m’étais promis Si jamais j’oublie Les nuits que j’ai passées Les guitares et les cris Rappelle moi qui je suis Pourquoi je suis en vie Rappelle-moi le jour et l’année
    https://wn.com/Zaz_Si_Jamais_J'Oublie_(Clip_Officiel)
    Zaz - Je veux (Studio version, HD)
    3:40

    Zaz - Je veux (Studio version, HD)

    • Order:
    • Duration: 3:40
    • Uploaded Date: 07 Dec 2010
    • views: 47426666
    Album: Zaz (2010)
    https://wn.com/Zaz_Je_Veux_(Studio_Version,_Hd)
    Zaz à Montmartre   Les passants
    4:21

    Zaz à Montmartre Les passants

    • Order:
    • Duration: 4:21
    • Uploaded Date: 03 Mar 2014
    • views: 722200
    https://wn.com/Zaz_À_Montmartre_Les_Passants
    ZAZ - Eblouie par la nuit (Clip officiel)
    2:54

    ZAZ - Eblouie par la nuit (Clip officiel)

    • Order:
    • Duration: 2:54
    • Uploaded Date: 17 Nov 2011
    • views: 62142012
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY ---------------------------------------- Retrouve Zaz sur : Site officiel : https://www.zazofficial.com Facebook : https://www.facebook.com/zazofficiel Twitter : https://twitter.com/Zaz_Official Instagram : https://www.instagram.com/zaz_off Deezer : http://www.deezer.com/artist/71069 Spotify : https://open.spotify.com/artist/1mbgj8ERPs8lWi7t5cYrdy
    https://wn.com/Zaz_Eblouie_Par_La_Nuit_(Clip_Officiel)
    ZAZ - On ira (Clip officiel)
    3:03

    ZAZ - On ira (Clip officiel)

    • Order:
    • Duration: 3:03
    • Uploaded Date: 27 Mar 2013
    • views: 98749931
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cAY Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - Zaz "On Ira", single disponible : http://bit.ly/zaz_onira Premier extrait de l'album « Recto Verso » Retrouvez ZAZ sur ses réseaux sociaux : - facebook : https://www.facebook.com/zazofficial/ - twitter : https://twitter.com/zaz_official - instagram : https://www.instagram.com/zaz_off/?hl=fr Et sur le site web officiel : https://zazofficial.com/ Titre écrit par Kerredine Soltani / Olivier Volovitch / Louise Becue et composé par Kerredine Soltani & Tryss Music video by Zaz performing On ira. (P) 2013 Play On
    https://wn.com/Zaz_On_Ira_(Clip_Officiel)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסה
      2:51
      Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסהremove from playlist
    • Comme ci, comme ça
      3:12
      Comme ci, comme çaremove from playlist
    • Basim - Comme Ci Comme Ça ft. Gilli
      3:13
      Basim - Comme Ci Comme Ça ft. Gilliremove from playlist
    • French Affair - Comme ci comme ca ( Official Video )
      3:32
      French Affair - Comme ci comme ca ( Official Video )remove from playlist
    • ZAZ - Comme ci comme ça (Clip officiel)
      2:46
      ZAZ - Comme ci comme ça (Clip officiel)remove from playlist
    • Ευρυδίκη | Euridiki - Comme ci comme ca  - Official Video Clip
      3:09
      Ευρυδίκη | Euridiki - Comme ci comme ca - Official Video Clipremove from playlist
    • Tour 2 Garde - Comme ci comme ça (Clip officiel) ft. Aya Nakamura
      3:31
      Tour 2 Garde - Comme ci comme ça (Clip officiel) ft. Aya Nakamuraremove from playlist
    • French Affair - Comme ci comme ça  [ VAYTOX Remix ] ( Official Video )
      3:01
      French Affair - Comme ci comme ça [ VAYTOX Remix ] ( Official Video )remove from playlist
    • VITAA & SLIMANE - Fais comme ça avec KENDJI GIRAC (Audio Officiel)
      3:21
      VITAA & SLIMANE - Fais comme ça avec KENDJI GIRAC (Audio Officiel)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסה

    ניהול אישי וייצוג בלעדי: מיכאל סמו 0502088067 הזמנת הופעות פרטיות: אופיר-0508499347 הזמנת הופעות: גאגא בוקינג בע"מ 036056511 Manager: Michael Semo- 0502088067 0508499347 -Booking for private shows: Ofir Booking: Gaga booking- 036056511 הורדת שיר בהמתנה בהוט מובייל: https://bit.ly/2tV2On0 הורדת שיר בהמתנה בפלאפון: https://bit.ly/2KDTCe2 הורדת שיר בהמתנה בפרטנר: https://bit.ly/2tMQki1 הורדת שיר בהמתנה בסלקום: https://bit.ly/2z3EkxS שמיעת השיר בספוטיפיי: https://spoti.fi/2Kndm9v הורדת השיר באייטיונס: https://apple.co/2tUQi7W שמיעת השיר באפל מיוזיק: https://apple.co/2KCE7Hq סטפן Instagram https://www.instagram.com/stephane.le.gar/ סטפן פייסבוק https://www.facebook.com/1stephane.le.gar/ יחסי ציבור סטפן: שיר פינטו- 0544690510 מילים ולחן: סטפן לגר, דולב רם ופן חזות עיבוד והפקה מוזיקלית: דולב רם ופן חזות קלידים ותכנותים : דולב רם ופן חזות גיטרות: שמעון יחיא קלידים נוספים: אור חיים כהן, מאיר עמר קולות: סטפן לגר, דולב רם ופן חזות מיקס: מאיר עמר, דולב רם ופן חזות מאסטרינג: איציק פיליבה קונספט קריאייטיב: סיגל עבודי,מל כספי,גידי שמיר למקאן תל אביב קליפ: במאי - שחר סגל צלם - טובי הוכשטיין עורך - אפלברג\ Appelberg ניהול אומנותי: דניאל תייר הפקה- POV - נטע קרני , הדר אלבראנס , ליאת להבי , נועה לויסון. סטיילינג: מזל חסון רקדנים: יואב סנבטה, זוהר פיזיצקי, מור נחום, דקל שבת, צנואה פרנקלין, רון וינשטיין ,ווין באיס ,בן קראודר ,שגיא אקשוטי כוריאוגרפיה: סטפן גאגבה ---------------------------------------------------------------------------------------- Manager: Michael Semo Booking for private show: 0502088067 Booking: Gaga Booking - 036056511 Stéphane Instagram:https://www.instagram.com/stephane.le.gar/ Stéphane Facebook: https://www.facebook.com/1stephane.le.gar/ Lyrics & Musical Composition - Stephane Gagba, Dolev Ram & Penn Hazut Produced by Dolev Ram & Penn Hazut Guitar: Shimon Yihye Keys: Dolev Ram, Penn Hazut, Or Haim Cohen, Meir Amar Back Vocals: Stephane Gagba, Dolev Ram & Penn Hazut Mixed by Meir Amar, Dolev Ram & Penn Hazut Mastering by: Itzik Filiba Video: Director: Shahar Segal Filming: Tobias hochstein Editing: Appelberg Art Managar: Daniel Taiar Producion: POV-Neta Karni, Hadar Albaranes, Noa Levison Styling By: Mazal Hason Dancers: Mor Adelle Nahum, Franklin Tsnooah, Ron Weinstein, Ben Crowder, Sagi Akshuti, Dekel shabat, Zohar Fizitski, Yoav Sanbata Choreography: Stephane Legar Lyrics: Israël est magnifique mais un peu problématique Chez nous on dit ze maspik Comme ci comme ça ze ha trick Par example sur Tel Aviv il y’a tout de tout sans deconner Mais c’est toujours pas parfait (Attends jvais tout t’expliquer ( Eeeeeyy Pkakim Be Yom rishon Comme Ci Comme ça Vacances au ski sur le hermon Comme Ci Comme ça LES MADMOISELLES EN ISRAËL SONT OULALA AVAL Ha NIMOUSSIM COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME ÇA Les gens stressés, ça travail toujours Tous occupés ca déborde de partout Tous s’ eparpie et tout se sali Même les avocats ici sont endormis J’marche dans la rue tout l’monde est different Les gens qui s’disputent comme des petit enfants Ils veulent tous la paix mais il y’a même pas le temps La total chic shel hagvarim Comme Ci Comme ça Hasahkanim bamigrashim Comme Ci Comme ça Les MADMOISELLES en Israël sont oulala COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME ÇA Tout le monde à gauche, à droite J’ai dit à gauche maintenant à droite! La politic comme ci comme ça, La parnasa comme ci comme ça Les pirsomot comme Ci Comme ça הכל קומקסיקומקסה Education comme ci comme ça Imformation comme ci comme ça Précision comme ci comme ça COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME CI COMME ÇA COMME CI COMME ÇA COMME CI COMME ÇA
    2:51
    Stephane Legar - Comme Ci Comme ça (Music Video) | סטפן לגר - קומסי קומסה
    ניהול אישי וייצוג בלעדי: מיכאל סמו 0502088067 הזמנת הופעות פרטיות: אופיר-0508499347 הזמנת...
    published: 01 Jul 2018
    Play in Full Screen
    3:12
    Comme ci, comme ça
    Provided to YouTube by Universal Music Group Comme ci, comme ça · Kurdo KRISTALL ℗ Dist...
    published: 11 Jan 2024
    Play in Full Screen
    3:13
    Basim - Comme Ci Comme Ça ft. Gilli
    Comme Ci Comme Ça: https://basim.lnk.to/feat_Gilli Basim på social: https://www.instagram...
    published: 21 Sep 2017
    Play in Full Screen
    3:32
    French Affair - Comme ci comme ca ( Official Video )
    The official video for Comme c comme ca by French Affair. Listen on Spotify: https://open...
    published: 21 Jun 2023
    Play in Full Screen
    2:46
    ZAZ - Comme ci comme ça (Clip officiel)
    Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - N...
    published: 23 Jun 2014
    Play in Full Screen
    3:12
    Evridiki - Comme Ci, Comme ça (Cyprus) Live 2007 Eurovision Song Contest
    Evridiki represented Cyprus at the 2007 Eurovision Song Contest in Helsinki with the song ...
    published: 20 Sep 2016
    Play in Full Screen
    3:09
    Ευρυδίκη | Euridiki - Comme ci comme ca - Official Video Clip
    Subscribe: https://www.youtube.com/@greek_songs Ευρυδίκη | Euridiki - Comme ci comme ca ...
    published: 08 Mar 2017
    Play in Full Screen
    3:31
    Tour 2 Garde - Comme ci comme ça (Clip officiel) ft. Aya Nakamura
    Découvre le clip officiel "Comme ci comme ça " de Tour 2 Garde feat Aya Nakamura " Comme ...
    published: 29 Jun 2018
    Play in Full Screen
    3:01
    French Affair - Comme ci comme ça [ VAYTOX Remix ] ( Official Video )
    The official video for Comme c comme ca [ VAYTOX Remix ] by French Affair. Listen on Spo...
    published: 09 Apr 2023
    Play in Full Screen
    3:21
    VITAA & SLIMANE - Fais comme ça avec KENDJI GIRAC (Audio Officiel)
    "VersuS - Chapitre II", maintenant disponible : https://versus.lnk.to/chapitre2 Après le...
    published: 22 Aug 2019
    Play in Full Screen

    Comme ci, comme ça

    "Comme ci, comme ça" (English translation: "Like This, Like That" or "So-So") was the Cypriot entry in the Eurovision Song Contest 2007, performed in French by Evridiki. The song was composed by Dimitris Korgialas and written by Poseidonas Giannopoulos. This was the first Cypriot entry to feature lyrics in a language other than Greek, Italian or English, as well as the first entry from a non-Francophone country to be performed entirely in French. Evridiki's decision to sing this her third Eurovision entry in French was not entirely unexpected; she had previously recorded both 1992's "Teriazoume" and 1994's "Eimai Anthropos Ki Ego" in French, as "Le feu c'est nous" and "Fenêtre sur cour" respectively, as well as in English.

    "Comme ci, comme ça" is a moderately up-tempo number, with influences both from rock and techno. Evridiki addresses herself to her lover, telling him that she finds it difficult to live with him. She complains that every Monday he finishes work too late to enjoy her, falling asleep "just as my heart wakes up". He also promises that they will see a movie every Tuesday, but is unable to keep this promise. Following these criticisms, she explains that the unexciting routine of their relationship is too much for her and that she is no longer in love with him. As the chorus continues, it becomes apparent that she intends to leave him.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • ZAZ - Je veux (Clip officiel)
      3:37
      ZAZ - Je veux (Clip officiel)remove from playlist
    • ZAZ – Qué vendrá (Clip officiel)
      3:02
      ZAZ – Qué vendrá (Clip officiel)remove from playlist
    • ZAZ - Je veux (Live)
      2:59
      ZAZ - Je veux (Live)remove from playlist
    • ZAZ - Si jamais j'oublie (Clip officiel)
      3:27
      ZAZ - Si jamais j'oublie (Clip officiel)remove from playlist
    • ZAZ - Eblouie par la nuit (Clip officiel)
      2:54
      ZAZ - Eblouie par la nuit (Clip officiel)remove from playlist
    • ZAZ - On ira (Clip officiel)
      3:03
      ZAZ - On ira (Clip officiel)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    ZAZ - Je veux (Clip officiel)

    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numérotée 2CD avec une reproduction en tirage limité : https://zaz.lnk.to/isad2cIA "Je veux", extrait de l'album "Zaz" Ecoutez le Best Of de Zaz ici : https://lnk.to/bestofzaz Retrouvez ZAZ sur ses réseaux sociaux : Facebook : https://www.facebook.com/zazofficiel Twitter: https://twitter.com/Zaz_Official http://www.zazofficial.com
    3:37
    ZAZ - Je veux (Clip officiel)
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numéroté...
    published: 05 Jul 2018
    Play in Full Screen
    3:02
    ZAZ – Qué vendrá (Clip officiel)
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numéroté...
    published: 12 Oct 2018
    Play in Full Screen
    2:59
    ZAZ - Je veux (Live)
    Nouvel album « EFFET MIROIR » maintenant disponible : https://zaz.lnk.to/EffetMiroiraY - C...
    published: 05 Sep 2014
    Play in Full Screen
    3:27
    ZAZ - Si jamais j'oublie (Clip officiel)
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numéroté...
    published: 07 Sep 2015
    Play in Full Screen
    3:40
    Zaz - Je veux (Studio version, HD)
    Album: Zaz (2010)
    published: 07 Dec 2010
    Play in Full Screen
    4:21
    Zaz à Montmartre Les passants
    published: 03 Mar 2014
    Play in Full Screen
    2:54
    ZAZ - Eblouie par la nuit (Clip officiel)
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numéroté...
    published: 17 Nov 2011
    Play in Full Screen
    3:03
    ZAZ - On ira (Clip officiel)
    Le nouvel album "Isa" est disponible : https://zaz.lnk.to/isaAY Édition collector numéroté...
    published: 27 Mar 2013
    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)); } }); }); }); // -->
    ×