- published: 27 Oct 2010
- views: 3360971
'+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; })); }); -->
Astrud Gilberto (born March 29, 1940) is a Brazilian samba and bossa nova singer. She is best known for her performance of the song "The Girl from Ipanema".
Astrud Gilberto was born Astrud Evangelina Weinert, the daughter of a Brazilian mother and a German father, in the state of Bahia, Brazil. She was raised in Rio de Janeiro. She married João Gilberto in 1959 and emigrated to the United States in 1963, continuing to reside in the US from that time. Astrud and João divorced in the mid-1960s and she began a relationship with her musical partner, American jazz saxophone player Stan Getz.
She sang on two tracks on the influential 1963 album Getz/Gilberto featuring João Gilberto, Stan Getz, and Antonio Carlos Jobim, despite having never sung professionally before this recording. The 1964 single version of "The Girl from Ipanema", taken from the 1963 album, omitted the Portuguese lyrics sung by Joao Gilberto, and established Astrud Gilberto as a Bossa Nova singer. It sold over one million copies and was awarded a gold disc. In 1964, Gilberto appeared in the films Get Yourself a College Girl and The Hanged Man. Her first solo album was The Astrud Gilberto Album (1965). Upon moving to the United States, she went on tour with Getz. Beginning as a singer of bossa nova and American jazz standards, Gilberto started to record her own compositions in the 1970s. She has recorded songs in Portuguese, English, Spanish, Italian, French, German, and Japanese.
"Água de Beber" ("Drinking-Water" or "Potable Water") is a bossa nova jazz standard composed by Antonio Carlos Jobim and originally recorded in the key of A minor, with lyrics written by Vinicius de Moraes. The English lyrics were written by Norman Gimbel.
I found TV footage of this song, stripped out the crappy sound & put the master stereo version in. Astrud Gilberto (vocal), Antonio Carlos Jobim (guitar, vocal), Joao Donato (piano), Joe Mondragon (bass), Marty Paich (arranger, conductor). Recorded January 27 & 28, 1965
SIDE ONE (Track 02) - written by Antônio Carlos Jobim and Vinícius de Moraes "The Astrud Gilberto Album" is the first album recorded by Astrud Gilberto, hot off the success from guesting on the landmark jazz album "Getz/Gilberto" (1964), a collaborative project between tenor saxophonist and her husband, the famous Brazilian guitarist/bossa nova pioneer João Gilberto. Although, Gilberto had never performed professionally, she was requested by her husband to sing in the English verses written for the album's tracks. One of these cuts was "The Girl from Ipanema", a song that would forever be immortalized by her voice, and a rendition that would be the definitive recording of that song. The single sold over one million copies and helped established her as a bossa nova darling and a pop cultu...
"Agua De Beber (Water To Drink)" official music video by Astrud Gilberto. Subscribe and ring the bell to never miss an update from Verve Records: http://verve.lnk.to/verveyoutubeID Watch the Summer Samba video playlist for more classic Bossa Nova grooves: https://Verve.lnk.to/SummerSambaYouTubeID Subscribe to the official Verve Records YouTube channel: http://verve.lnk.to/verveyoutubeID Subscribe to the official Astrud Gilberto YouTube channel: https://Verve.lnk.to/AstrudGilbertoYTID Stream Astrud Gilberto: https://Verve.lnk.to/AstrudGilbertoStreamID Video credits: Director: Alexis Schuknecht Designer: Ash Thomas Animation by: Dustin Kober Production Company: Pixel Park Executive Producer: Emily Burbacher Commissioner: Liz Hart #AstrudGilberto #SummerSamba #BossaNova #Summer #Jazz
Eu quis amar mas tive medo e quis salvar meu coração Mas o amor sabe um segredo o medo pode matar o seu coração Água de beber, água de beber camará Água de beber, água de beber camará Eu nunca fiz coisa tão certa entrei pra escola do perdão A minha casa vive aberta abre todas as portas do coração Água de beber, água de beber camará Água de beber, água de beber camará
Follow us on /Siga-nos também/ Síganos en: "Bossa Nova Mesmo" www.facebook.com/groups/427323498726773/
Provided to YouTube by Universal Music Group Água De Beber · Astrud Gilberto · Antonio Carlos Jobim The Astrud Gilberto Album With Antonio Carlos Jobim ℗ 1965 Universal Music International Released on: 1965-01-30 Associated Performer, Vocalist: Astrud Gilberto Associated Performer, Vocals, Guitar: Antonio Carlos Jobim Producer: Creed Taylor Composer Lyricist: Antonio Carlos Jobim Composer Lyricist: Vinícius de Moraes Auto-generated by YouTube.
Una canzone emblematica di ciò che è stata la bossa nova, un genere musicale fondato su una perfetta miscela fra il ritmo jazz americano e il samba brasiliano e inventato da un gruppo di intellettuali e musicisti brasiliani alla fine degli anni cinquanta, primo fra tutti Antonio Carlos Jobim che è considerato il vero e proprio padre spirituale di questo genere musicale. Antonio Carlos Jobim ha scritto centinaia di canzoni epiche, la sua creatività musicale unita ai testi firmati dal poeta Vinicius De Moraes hanno rappresentato l'anima più vera e profonda del Brasile, una vera filosofia di vita riassumibile nel termine di "Saudade" che lo scrittore Antonio Tabucchi profondo conoscitore della lingua portoghese ha spiegato come un senso di nostalgia tanto legato al ricordo del passato quanto ...
Provided to YouTube by Lanzadera Music Agua de beber · Astrud Gilberto · Astrud Gilberto The golden album ℗ 2014 Pomelo Records Released on: 2014-11-21 Auto-generated by YouTube.
Video arreglado y colorizado. Audio reemplazado por la versión de estudio y editado para encajar en el video. Mi pagina de Facebook: https://www.facebook.com/historiaencolores Astrud Gilberto (voz), Antonio Carlos Jobim (guitarra, voz), Joao Donato (piano), Joe Mondragon (bajo), Marty Paich (arreglista, conductor). Grabaado en Enero 27 & 28, 1965.
Last tune of this nice concert with Antonio Carlos Jobim's orchestra and the endorable and fragile singing flower Astrud Gilberto
Astrud Gilberto (born March 29, 1940) is a Brazilian samba and bossa nova singer. She is best known for her performance of the song "The Girl from Ipanema".
Astrud Gilberto was born Astrud Evangelina Weinert, the daughter of a Brazilian mother and a German father, in the state of Bahia, Brazil. She was raised in Rio de Janeiro. She married João Gilberto in 1959 and emigrated to the United States in 1963, continuing to reside in the US from that time. Astrud and João divorced in the mid-1960s and she began a relationship with her musical partner, American jazz saxophone player Stan Getz.
She sang on two tracks on the influential 1963 album Getz/Gilberto featuring João Gilberto, Stan Getz, and Antonio Carlos Jobim, despite having never sung professionally before this recording. The 1964 single version of "The Girl from Ipanema", taken from the 1963 album, omitted the Portuguese lyrics sung by Joao Gilberto, and established Astrud Gilberto as a Bossa Nova singer. It sold over one million copies and was awarded a gold disc. In 1964, Gilberto appeared in the films Get Yourself a College Girl and The Hanged Man. Her first solo album was The Astrud Gilberto Album (1965). Upon moving to the United States, she went on tour with Getz. Beginning as a singer of bossa nova and American jazz standards, Gilberto started to record her own compositions in the 1970s. She has recorded songs in Portuguese, English, Spanish, Italian, French, German, and Japanese.
Maybe I should have saved those left over dreams
Funny, but here's that rainy day
Here's that rainy day they told me about
And I laughed at the thought that it might turn out this way
Where is that worn out wish that I threw aside
After it brought my lover near
It's funny how love becomes a cold rainy day
Funny, that rainy day is here
Funny how love becomes a cold rainy day