- published: 15 May 2020
- views: 3487514
'+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; })); }); -->
Adriano Celentano (Italian pronunciation: [adriˈaːno tʃelenˈtaːno]; born 6 January 1938) is an Italian singer, composer, producer, comedian, actor, film director and TV host.
He is dubbed as the Molleggiato because of his dancing. Throughout his career Celentano has sold over 150 million albums, also abroad, making him one of the Italian musical artists with the most sales.
Very often also the author of the music and songs (sometimes co-author of music and lyrics, even though, according to his wife Claudia Mori accredited to others), due to his career and his great successes, not only in Italy but also in the rest of the world, he is considered one of the pillars of Italian music. His character has meant that Celentano has built a persona who became a symbol and an icon for many Italians after World War II.
He is recognized for having realized that something in the music business (and costume) was changing, and then to have introduced in Italy, influenced by the new stars of rock and roll from the United States, a new type of music, unbridled and with great appeal especially to young people of that time.
Don Backy, real name — Aldo Caponi, (born 21 August 1939 in Santa Croce sull'Arno) is an Italian singer and author. He collaborated with Sofia Rotaru for "Grey Bird" - Ukrainian version of Italian song "L'immensità".
Adriano Celentano Greatest Hits Collection 2018 - The Best of Adriano Celentano Full Album Adriano Celentano Greatest Hits Collection 2018 - The Best of Adriano Celentano Full Album Adriano Celentano Greatest Hits Collection 2018 - The Best of Adriano Celentano Full Album
Rare, Complete!
Mio fratello era forte ribelle e più bello di me Avevamo una donna in comune e una macchina in tre Mi faceva conoscere gente che poi malediva Mi parlava di stati sovrani e di nuove famiglie Mio fratello rubava le sedie per stare più su Mi diceva che tanta fortuna sarebbe arrivata In un piccolo pezzo di terra mio padre pregava Lo guardava negli occhi e temeva di averlo capito Salvo l'uomo che bussa alla mia porta Salvo l'uomo che canta alla finestra Salvo l'uomo che scrive Salvo l'uomo che ride Salvo l'uomo e sarà un giorno di festa Mai più mai più mai più mai più dolor Mio fratello un bel giorno è sparito E non ha ringraziato C'è mia madre che ancora lo aspetta per l'ora di cena Lui non era cattivo ma aveva un destino scolpito Non lo cerco perché se lo trovo lo ammazzo da me Salvo l'uo...
#Adrianocelentano #Celentano
ISCRIVITI AL CANALE CLICCANDO QUI: http://goo.gl/EfGd8z Il Ragazzo della Via Gluck - Live a Berlino 1994 Lyrics: (coro) là dove c'era l'erba ora c'e una città. Questa e' la storia di uno di noi anche lui nato per caso in via Gluck in una casa fuori città gente tranquilla che lavorava. Là dove c'era l'erba ora c'e una città e quella casa in mezzo al verde ormai dove sarà questo ragazzo della via Gluck si divertiva a giocare con me ma un giorno disse: "vado in città" e lo diceva mentre piangeva io gli domando: "amico non sei contento? vai finalmente a stare in città là troverai le cose che non hai avuto qui. Potrai lavarti in casa senza andar giù nel cortile". "Mio caro amico" disse "qui sono nato e in questa strada ora lascio il mio cuore ma come fai a non capire che e' una fortuna per vo...
Io non so parlar d'amore l'emozione non ha voce E mi manca un po' il respiro se ci sei c'è troppa luce La mia anima si spande come musica d'estate poi la voglia sai mi prende e mi accende con i baci tuoi Io con te sarò sincero resterò quel che sono disonesto mai lo giuro ma se tradisci non perdono Ti sarò per sempre amico pur geloso come sai io lo so mi contraddico ma preziosa sei tu per me Tra le mie braccia dormirai serena..mente ed è importante questo sai per sentirci pienamente noi Un'altra vita mi darai che io non conosco la mia compagna tu sarai fino a quando so che lo vorrai Due caratteri diversi prendon fuoco facilmente ma divisi siamo persi ci sentiamo quasi niente Siamo due legati dentro da un amore che ci dà l...
"ALEX NIKITENKO" YouTube CHANNEL IS NOT A COMMERCIAL ! ALL MATERIALS published solely for informational purposes and are NOT SUBJECT TO MONETIZATION ! All proceeds from the views and advertising distributed among COPYRIGHT HOLDERS ! THE HUGE REQUEST NOT TO DISTURB PROPOSALS TO THE COMMERCIAL COOPERATION ! THANK YOU !
ISCRIVITI AL CANALE CLICCANDO QUI: http://goo.gl/EfGd8z Adriano Celentano - Il ragazzo della Via Gluck (1966) LYRICS/TESTO: Questa è la storia di uno di noi, anche lui nato per caso in via Gluck, in una casa, fuori città, gente tranquilla, che lavorava. Là dove c'era l'erba ora c'è una città, e quella casa in mezzo al verde ormai, dove sarà? Questo ragazzo della via Gluck, si divertiva a giocare con me, ma un giorno disse, vado in città, e lo diceva mentre piangeva, io gli domando amico, non sei contento? Vai finalmente a stare in città. Là troverai le cose che non hai avuto qui, potrai lavarti in casa senza andar giù nel cortile! Mio caro amico, disse, qui sono nato, in questa strada ora lascio il mio cuore. Ma come fai a non capire, è una fortuna, per voi che restate a piedi nudi a ...
Canzone è un brano musicale composto da Don Backy e Detto Mariano, terzo classificato al Festival di Sanremo 1968 nell'interpretazione di Milva ed Adriano Celentano. Elaborazione yourlifewithart.com by Stefano Mecenero © 2016
Don Backy - Poesia Io che non ho che non ho mai creduto nell'amore e a niente che facesse batter forte forte il cuore adesso che anch'io ho provato un poco di dolore mi accorgo che la vita è poesia se c'è l'amor. Io credo che nel buio più profondo una candela brillerà e vivi perché voglio bene al mondo e a tutto quello che mi dà al vento che muove le foglie al pianto di un bimbo alla poesia che canta il mare io credo all'amore per te all'amore per te. Io credo che di sopra all'uragano un'ombra bianca ci sarà e il sole faccia splendere ogni giorno per la mia felicità al vento che bacia le spiagge al chiaro di luna adesso credo, mentre in me è nato l'amore per te l'amore per te.
Le canzoni più belle. Musica per sognare.
L'Immensità è una canzone di Don Backy, presentata al Festival Di Sanremo 1967 dall'autore in coppia con Johnny Dorelli. La canzone si classificò soltanto nona, ma i 45 Giri di Dorelli e Don Backy entrarono e rimasero in classifica per tutto l'anno. Qui vediamo Don Backy, durante la finale del Festival Di Sanremo 1967 (presentato da Mike Bongiorno e Renata Mauro), che canta questa bellissima canzone: L'Immensità. Il Video era stato perduto, e ritrovato giorni fa (anche se incompleto).
chi è più matto?
Don Backy - Sognando He starts singing at 01:21 Comincia a cantare a 01:21
Don Backy: Del Mio Meglio... Etichetta:Joker – CD 22128 Formato: CD, Album Paese: Italy Uscita: 1996 Genere: Pop 01 [00:00]Poesia 02 [03:21]Canzone 03 [06:29]Ho Rimasto 04 [09:19]L' Immensità 05 [12:20 ]Casa Bianca 06 [14:38]L' Amore Forte 07 [18:34]Serenata 08 [21:26]Sogno 09 [23:52]Samba 10 [26:23]Un Sorriso 11 [29:49]Bianchi Cristalli Sereni 12 [33:51]Amico ℗ SAAR s.r.l. Iscriviti | Subscribe 👉https://saar.lnk.to/zfLePID Seguici | Follow us: Facebook👉 www.facebook.com/SaarRecords/ Instagram👉 www.instagram.com/saar_records/ Website 👉 www.saarrecords.it #saarrecords #DonBacky #saarmusicaitaliana Thank you for watching us | Grazie per la visione SAAR Records Music For Your Life
La canzone italiana - samalways
Provided to YouTube by The Orchard Enterprises L'Immensita · Don Backy I Grandi Successi 1962-1967 ℗ 1996 Duck Records Released on: 2006-01-17 Auto-generated by YouTube.
Montaggio di Luca Lombardo detto (Lucky)
Adriano Celentano (Italian pronunciation: [adriˈaːno tʃelenˈtaːno]; born 6 January 1938) is an Italian singer, composer, producer, comedian, actor, film director and TV host.
He is dubbed as the Molleggiato because of his dancing. Throughout his career Celentano has sold over 150 million albums, also abroad, making him one of the Italian musical artists with the most sales.
Very often also the author of the music and songs (sometimes co-author of music and lyrics, even though, according to his wife Claudia Mori accredited to others), due to his career and his great successes, not only in Italy but also in the rest of the world, he is considered one of the pillars of Italian music. His character has meant that Celentano has built a persona who became a symbol and an icon for many Italians after World War II.
He is recognized for having realized that something in the music business (and costume) was changing, and then to have introduced in Italy, influenced by the new stars of rock and roll from the United States, a new type of music, unbridled and with great appeal especially to young people of that time.
Azzurro
Cerco l'estate tutto l'anno e all'improvviso eccola qua.
Lei è partita per le spiagge e sono solo quassù in città
sento fischiare sopra i tetti un aeroplano che se ne va.
Azzurro, il pomeriggio è troppo azzurro e lungo per me
mi accorgo di non avere più risorse senza di te
e allora io quasi quasi prendo il treno e vengo, vengo a te.
Il treno dei desideri nei miei pensieri all'incontrario và.
Sembra quand'ero all'oratorio, con tanto sole, tanti anni fa.
Quelle domeniche da solo in un cortile, a passeggiar
ora mi annoio più di allora, neanche un prete per chiacchierar.
Azzurro, il pomeriggio è troppo azzurro e lungo per me
mi accorgo di non avere più risorse senza di te
e allora io quasi quasi prendo il treno e vengo, vengo a te.
Il treno dei desideri nei miei pensieri all'incontrario và.
Cerco un pò d'Africa in giardino, tra l'oleandro e il baobab
come facevo da bambino, ma qui c'è gente, non si può più.
Stanno innaffiando le tue rose, non c'è il leone, chissà dov'è.
Azzurro, il pomeriggio è troppo azzurro e lungo per me
mi accorgo di non avere più risorse senza di te
e allora io quasi quasi prendo il treno e vengo, vengo a te.