- published: 19 Jun 2021
- views: 498719
'+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; })); }); -->
Francisco "Chico" Buarque de Hollanda (born June 19, 1944 in Rio de Janeiro, Brazil), popularly known as Chico Buarque (Brazilian Portuguese: [ˈʃiku buˈaʁki]), is a singer, guitarist, composer, dramatist, writer and poet. He is best known for his music, which often includes social, economic and cultural commentary on Brazil and Rio de Janeiro in particular.
Son of the academic Sérgio Buarque de Hollanda, Buarque lived in several locations throughout his childhood, though mostly in Rio de Janeiro, São Paulo and Italy. He wrote and studied literature as a child and came to music through the bossa nova compositions of Tom Jobim and João Gilberto. He performed music throughout the 1960s as well as writing a play that was deemed dangerous by the Brazilian military dictatorship of the time. Buarque, along with several of his fellow musicians, was threatened by the government and eventually left Brazil in 1970. He moved to Italy again. However, he came back to Brazil in 1971, one year before the others, and continued to record albums, perform, and write, though much of his material was not allowed by government censors. He released several more albums in the 1980s and published three novels in the 1990s and 2000s, all of which were acclaimed critically.
Chico Buarque, popularly known as Samambaia, is a 1978 album recorded by the Brazilian singer and composer Chico Buarque. The album includes many hits, like "Cálice", "Pedaço de mim" and "Apesar de você", and counts with the participation of several Brazilian artists, such as Milton Nascimento, Elba Ramalho, Marieta Severo and Zizi Possi.
Chico Buarque is an album by Brazilian composer, singer and musician Chico Buarque released on June 20, 2011.
#ChicoBuarque #OMelhordeChicoBuarque #MPB O melhor de Chico Buarque! 1. Tua Cantiga 00:00 2. Sinhá 04:10 3. Injuriado (Ao Vivo) 08:12 4. Anos Dourados (Ao Vivo) 10:49 5. As Caravanas 14:05 6. Dueto 16:54 7. Teresinha (Ao VIvo) 20:15 8. Subúrbio 23:02 9. Barafunda 26:25 10. Blues Pra Bia 29:12 11. O Meu Amor 32:28 12. As Vitrines (Ao Vivo) 32:35 13. Homenagem ao Malandro (Ao Vivo) 38:19 14. Sabiá (Ao Vivo) 40:36 15. Gota D'Água (Ao Vivo) 43:41 16. Futuros Amantes 46:36 17. Retrato em Branco (Ao Vivo) 18. Paratodos 54:08 19. Desalento (Ao Vivo) 56:58 20. Mil Perdões 59:09 21. Ela é Dançarina 01:02:48 22. Eu Te Amo 01:05:25 23. As Vitrines 01:07:49 24. Sem Compromisso 01:10:45 25. João e Maria 1:13:00
#ChicoBuarque #JoãoeMaria #CariocaAoVivo Vídeo oficial da faixa "João e Maria" (Ao Vivo), do DVD "Carioca ao Vivo". Gravado no Canecão, ‘Carioca' é o primeiro DVD de inéditas de Chico Buarque desde ‘As Cidades’, de 1998, tem direção musical e arranjos de Luiz Cláudio Ramos e produção de Vinícius França. Nesse trabalho, o artista fala de sua cidade com o espírito juvenil. Compre o álbum: http://apple.co/2r0zARH Siga Chico Buarque no Spotify: http://spoti.fi/1VGtLkl Inscreva-se no canal da Biscoito Fino: https://www.youtube.com/user/biscoito... Siga a Biscoito Fino nas redes sociais: https://www.facebook.com/gravadorabis... https://www.instagram.com/biscoito_fino/ JOÃO E MARIA Intérprete: Chico Buarque Autoria: Sivuca / Chico Buarque Letra: Agora eu era o herói E o meu cavalo só fal...
#ChicoBuarque #Carioca #ShowCompleto ‘Carioca’, primeiro DVD de inéditas de Chico Buarque desde ‘As Cidades’, de 1998, tem direção musical e arranjos de Luiz Cláudio Ramos e produção de Vinícius França. No repertório, os fãs conferem o choro-canção ‘Subúrbio’ e ‘Sempre’, faixa composta para o filme ‘O Maior Amor do Mundo’, entre outras. Nesse trabalho, o artista fala de sua cidade com o espírito juvenil típico da idade em que ganhou tal apelido. Compre pelo nosso site e receba em casa! http://bit.ly/carioca-cd-dvd 00:00 - INTRO 00:18 - VOLTEI A CANTAR Intérprete: Chico Buarque Autoria: Lamartine Babo 01:07 - MAMBEMBE Intérprete: Chico Buarque Autoria: Chico Buarque 03:30 - DURA NA QUEDA Intérprete: Chico Buarque Autoria: Chico Buarque 07:15 - O FUTEBOL Intérprete: Chico Buarque Auto...
Álbum/Disco: Chico Buarque de Hollanda (Volume 1) Artista: Chico Buarque Ano: 1966 Nº de Faixas: 12 Brasil Músicas: 00:00 1 - A Banda 02:10 2 - Tem Mais Samba 03:56 3 - A Rita 05:57 4 - Ela e Sua Janela 08:07 5 - Madalena Foi Pro Mar 09:48 6 - Pedro Pedreiro 12:24 7 - Amanhã, Ninguém Sabe 14:24 8 - Você Não Ouviu 17:03 9 - Juca 18:50 10 - Olê Olá 21:54 11 - Meu Refrão 24:34 12 - Sonho De Um Carnaval
Music video by Chico Buarque performing Vai Passar. (C) 2013 Universal Music Ltda http://vevo.ly/kAgnzr
** Ouça também a **PARTE 02** no link abaixo: https://www.youtube.com/watch?v=T5YirRUBRWo ** Para pular as faixas, clique no tempo das músicas abaixo ou nos capítulos (se disponíveis) ** Seleção e edição: E.J. 00:00 - 01 03:00 - 02 05:20 - 03 09:37 - 04 12:23 - 05 14:32 - 06 17:18 - 07 21:46 - 08 25:47 - 09 28:32 - 10 32:24 - 11 34:54 - 12 37:31 - 13 40:59 - 14 44:09 - 15 47:08 - 16 51:03 - 17 54:29 - 18 1:02:51 - 19 1:05:44 - 20 1:07:34 - 21 1:11:56 - 22 1:14:48 - 23 1:17:36 - 24 1:20:02 - 25 1:24:15 - 26 1:27:22 - 27 1:32:49 - 28 1:36:30 - 29 1:41:12 - 30 1:43:51 - 31 1:46:53 - 32 1:50:25 - 33 1:55:28 - 34 1:58:02 - 35 2:02:16 - 36 2:06:27 - 37 2:08:20 - 38 2:10:27 - 39 2:12:56 - 40 [BLOQUEADA] - 41 2:16:29 - 42 [BLOQUEADA] - 43 2:19:01 - 44 2:22:19 - 45 2:26:03 - 46 2:29:24 - 47 2:32:37...
Rejoignez cette chaîne pour bénéficier d'avantages exclusifs : https://www.youtube.com/channel/UC_SrBc4R0s5blRnc8OP20xA/join Apprenez à danser en solo ou duo 💃🏽🕺🏼 Salsa, Bachata & Mambo 12h de cours / semaine Essai GRATUIT👇 Follow @lestudio24 #salsaliege
COVER DE: VINÍCIUS MENEZES https://youtube.com/@viniciusmenezes186 letra: (artista: Chico Buarque música: João e Maria) Agora eu era o herói E o meu cavalo só falava inglês A noiva do cowboy Era você além das outras três Eu enfrentava os batalhões Os alemães e seus canhões Guardava o meu bodoque E ensaiava o rock para as matinês Agora eu era o rei Era o bedel e era também juiz E pela minha lei A gente era obrigado a ser feliz E você era a princesa que eu fiz coroar E era tão linda de se admirar Que andava nua pelo meu país Não, não fuja não Finja que agora eu era o seu brinquedo Eu era o seu pião O seu bicho preferido Vem, me dê a mão, a gente agora já não tinha medo No tempo da maldade acho que a gente nem tinha nascido Agora era fatal Que o faz-de-conta terminasse assim Pra lá des...
#ChicoBuarque #CaravanasAoVivo #ShowCompleto ‘Caravanas Ao Vivo’ traz o registro da última turnê de Chico Buarque. O show ‘Caravanas ao vivo’ traz o registro da última turnê de Chico Buarque, que percorreu 10 cidades brasileiras, além de Lisboa e Porto, e foi vista por quase 200 mil pessoas ao longo de 75 apresentações. O show tinha como base o disco homônimo, apontado pela imprensa como um clássico instantâneo da obra buarqueana e ganhador de dois Grammy Latino. A turnê teve apresentações esgotadas em todas as cidades. O sucesso se explica não só pela expectativa naturalmente criada em torno dos shows de Chico, afastado dos palcos desde 2012, mas pelas críticas unânimes, que enalteceram ‘Caravanas’ como um dos grandes espetáculos da carreira do artista. No repertório de 30 canções e...
Ouçam sem Interrupção as 10 melhores músicas de Chico Buarque em ordem de classificação.
Francisco "Chico" Buarque de Hollanda (born June 19, 1944 in Rio de Janeiro, Brazil), popularly known as Chico Buarque (Brazilian Portuguese: [ˈʃiku buˈaʁki]), is a singer, guitarist, composer, dramatist, writer and poet. He is best known for his music, which often includes social, economic and cultural commentary on Brazil and Rio de Janeiro in particular.
Son of the academic Sérgio Buarque de Hollanda, Buarque lived in several locations throughout his childhood, though mostly in Rio de Janeiro, São Paulo and Italy. He wrote and studied literature as a child and came to music through the bossa nova compositions of Tom Jobim and João Gilberto. He performed music throughout the 1960s as well as writing a play that was deemed dangerous by the Brazilian military dictatorship of the time. Buarque, along with several of his fellow musicians, was threatened by the government and eventually left Brazil in 1970. He moved to Italy again. However, he came back to Brazil in 1971, one year before the others, and continued to record albums, perform, and write, though much of his material was not allowed by government censors. He released several more albums in the 1980s and published three novels in the 1990s and 2000s, all of which were acclaimed critically.
Essa moça tá diferente
Já não me conhece mais
Está pra lá de pra frente
Está me passando pra trás
Essa moça tá decidida
A se supermodernizar
Ela só samba escondida
Que é pra ninguém reparar
Eu cultivo rosas e rimas
Achando que é muito bom
Ela me olha de cima
E vai desiventar o som
Faço-lhe um concerto de flauta
E não lhe desperto emoção
Ela quer ver o astronauta
Descer na televisão
Mas o tempo vai
Mas o tempo vem
Ela me desfaz
Mas o que é que tem
Que ela só me guarda despeito
Que ela só me guarda desdém
Mas o tempo vai
Mas o tempo vem
Ela me desfaz
Mas o que é que tem
Se do lado esquerdo do peito
No fundo, ela ainda me quer bem
Essa moça é a tal da janela
Que eu me cansei de cantar
E agora está só na dela
Botando só pra quebrar