- published: 30 Apr 2017
- views: 2898477
'+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; })); }); -->
HIDDEN ERROR: Usage of "relatives" is not recognized
Ravi Shankar (IPA: [ˈrɔbi ˈʃɔŋkɔr]; 7 April 1920 – 11 December 2012), born Robindro Shaunkor Chowdhury, his name often preceded by the title Pandit, was an Indian musician and composer who was one of the best-known exponents of the sitar in the second half of the 20th century as a composer of Hindustani classical music.
Shankar was born to a Bengali family in Benares, British India, and spent his youth touring India and Europe with the dance group of his brother Uday Shankar. He gave up dancing in 1938 to study sitar playing under court musician Allauddin Khan. After finishing his studies in 1944, Shankar worked as a composer, creating the music for the Apu Trilogy by Satyajit Ray, and was music director of All India Radio, New Delhi, from 1949 to 1956.
In 1956 he began to tour Europe and the Americas playing Indian classical music and increased its popularity there in the 1960s through teaching, performance, and his association with violinist Yehudi Menuhin and Beatles guitarist George Harrison. His influence on the latter helped popularize the use of Indian instruments in pop music throughout the 1960s. Shankar engaged Western music by writing compositions for sitar and orchestra, and toured the world in the 1970s and 1980s. From 1986 to 1992, he served as a nominated member of Rajya Sabha, the upper chamber of the Parliament of India. He continued to perform up until the end of his life. In 1999, Shankar was awarded India's highest civilian honour, the Bharat Ratna.
Ravi Shankar may refer to:
Ravi Shankar Etteth, professionally known by his full name, or as Ravi Shankar is an Indian author and cartoonist.
He was born in Palakkad, Kerala and is a nephew of the cartoonist and author O. V. Vijayan.
His first cartoon appeared in Link. He worked for Indian Express on a contract basis, and as the staff cartoonist of India Today. He became the deputy editor of India Today. He was also art director of the magazine, as well as the satellite television station owned by the magazine.
In 1996, Etteth published his first book of short stories The Scream of the Dragonflies. By 2002, Etteth claimed he had retired from political cartooning for all practical purposes, and chose to describe himself as a writer and art director.
He is now a columnist and the Executive Editor of The New Indian Express, based in New Delhi.
Ravi Shankar, commonly known as Sri Sri Ravi Shankar, was born on 13 May 1956 in Tamil Nadu, India. He is also frequently referred to simply as "Sri Sri" (honorific) or as Guruji or Gurudev. He is a spiritual leader and founder of the Art of Living Foundation created in 1981, which aims to relieve individual stress, societal problems, and violence. In 1997, he established a Geneva-based charity, the International Association for Human Values, an NGO that engages in relief work and rural development and aims to foster shared global values. For his service, he has received some of the highest awards of several countries including India, Peru, Colombia, Paraguay, etc. In January 2016, he was awarded the "Padma Vibhushan" by the Government of India.
Ravi Shankar was born in Papanasam, Tamil Nadu to Visalakshi Ratnam and R. S. Venkat Ratnam. He was named "Ravi" (a common Indian name meaning "sun") because his birth was on a Sunday, and "Shankar" after the eighth-century Hindu saint, Adi Shankara, because it was also Shankara's birthday. Ravi Shankar's first teacher was Sudhakar Chaturvedi, an Indian Vedic Scholar and a close associate of Mahatma Gandhi. He holds a Bachelor of Science degree from Bangalore University (St. Joseph's College). After graduation, Shankar travelled with Maharishi Mahesh Yogi giving talks and arranging conferences on Vedic science, and setting up meditation and Ayurveda centres.
Ravi Shankar (born 1975) is an Indian American poet, translator, convicted criminal and former literature professor at Central Connecticut State University and City University of Hong Kong. He is the founding editor and Executive Director of the international online journal of the arts, Drunken Boat, one of the world's oldest online journals of the arts (founded in 1999).
He has published and edited a total of ten books of poetry, including 'Deepening Groove' for which he won the 2010 National Poetry Review Prize and a collection of translations of Andal, the 8th century Tamil poet/saint, published by Zubaan Books in India in 2015 and distributed by University of Chicago Press in the US Market. He has won a Pushcart Prize, been nominated for a Poets' Prize and served as a judge for numerous poetry related competitions..
He has also appeared on NPR, the BBC, the Jim Lehrer News Hour and in the New York Times, the San Francisco Chronicle, the Chronicle of Higher Education and the Financial Times. He has been called "one of America's finest younger poets" by Connecticut poet laureate Dick Allen. He also co-edited W.W. Norton's "Language for a New Century: Contemporary Poetry from Asia, the Middle East & Beyond" called "a beautiful achievement for world literature" by Nobel laureate Nadine Gordimer. He is featured on the Poetry Foundation, and the Academy of American Poets website where you can find and read poems of his.
India (Syriac: Beth Hindaye) was an ecclesiastical province of the Church of the East, from the seventh to the sixteenth century. The Malabar Coast of India had long been home to a thriving East Syrian (Nestorian) Christian community, known as the St. Thomas Christians. The community traces its origins to the evangelical activity of Thomas the Apostle in the 1st century. The Indian Christian community were initially part of the metropolitan province of Fars, but were detached from that province in the 7th century, and again in the 8th, and given their own metropolitan bishop.
Due to the distance between India and the seat of the Patriarch of the Church of the East, communication with the church's heartland was often spotty, and the province was frequently without a bishop. As such, the Indian church was largely autonomous in operation, though the authority of the Patriarch was always respected. In the 16th century, the Portuguese arrived in India and tried to bring the community under the authority of the Latin Rite of the Catholic Church. The Portuguese ascendancy was formalised at the Synod of Diamper in 1599, which effectively abolished the historic Nestorian metropolitan province of India. Angamaly, the former seat of the Nestorian metropolitans, was downgraded to a suffragan diocese of the Latin Archdiocese of Goa.
India is the first studio album by Spanish singer Vega, released on November 7, 2003 on Vale Music Spain.
This album represents her success after having sold more than 200.000 copies of her first single "Quiero Ser Tú" (Spanish for "I Want to Be You"), which was a task to be accomplished before being entitled to a recording contract. The album itself sold more than 110.000 copies in Spain alone.
The country, India, has always been an inspiration to Vega, and that is why she decided to name her album after it. All but two songs on the album, "That's Life" (Frank Sinatra cover) and "Believe" (K's Choice cover), were written by Vega. The eighth track, "Olor A Azahar", is dedicated to the city she was born in.
The first single from India was "Grita!", which became the best-selling single of 2003 in Spain. After the success of the first single, "La Verdad (ft. Elena Gadel)" and "Directo Al Sol" followed. Elena Gadel, a member of the girl-group Lunae, whom Vega had met during the time they were part of Operación Triunfo, also helped with the background vocals for "Grita!".
From the album Three Ragas
A clip from "Ravi Shankar - Tenth Decade in Concert," available on DVD from Ravi's own East Meets West Music (www.eastmeetswestmusic.com). * * * Cinematographer and director Alan Kozlowski presents an intimate look at a 91-year-old Ravi Shankar performing in southern California in October 2011. Kozlowski offers a uniquely personal perspective on Ravi Shankar. The filmmaker has studied music with Ravi since 1978, and has produced a documentary honoring Ravi called "Sangeet Ratna" and co-produced with George Harrison a collection of Ravi's work called "In Celebration." The love of subject is clear in the film, but it's Ravi's raw and powerful performance that leaves the most lasting impression. Though Ravi has curtailed his busy touring schedule, his playing continues to draw intense prais...
The Beatles visited Rishikesh in India in February 1968 to attend an advanced Transcendental Meditation (TM) training session at the ashram of Maharishi Mahesh Yogi. Amidst widespread media attention, their stay at the ashram was one of the band's most productive periods. Their adoption of the Maharishi as their guru is credited by some as changing attitudes in the West about Indian spirituality, and encouraging the study of Transcendental Meditation. The Beatles first met the Maharishi in London in August 1967 and then attended a seminar in Bangor, Wales. Although this seminar in Wales was planned to be a 10-day session, their stay was cut short by the death of their manager, Brian Epstein. Wanting to learn more, they kept in contact with the Maharishi and planned to attend his ashram in ...
Ravi Shankar - Three Ragas (Remastered) (Full Album) --------------------------------- Tip: click on the time and listen your favorite song Track list: --------------------------------- 1 | 00:00 | Ravi Shankar - Raga Jog 2 | 28:21 | Ravi Shankar - Raga Ahir Bhairav 3 | 43:58 | Ravi Shankar - Raga Simhendra Madhyamam --------------------------------- Playlist Ravi Shankar: --------------------------------- Subscribe Channel Begarmundi records: https://www.youtube.com/channel/UChu6I4fYWUAiQdWr-3YIb5w Subscribe for free to stay connected to our channel and easily access our video updates! YouTube: https://www.youtube.com/c/Begarmundirecords Facebook: https://www.facebook.com/Begarmundi/ Google+ https://goo.gl/V2Adba --------------------------------- ® 2013 Begarmundi records
●☆●☆●☆●☆●☆● Ravi Shankar Woodstock 1969 Evening Raga ●☆●☆●☆●☆●☆● [From Wikipedia, the free encyclopedia] Ravi Shankar, (Bengali: রবি শংকর, IPA: [ˈrɔbi ˈʃɔŋkɔr]; 7 April 1920 -- 11 December 2012), his name often preceded by the title Pandit, was an Indian musician who was one of the best-known exponents of the sitar in the second half of the 20th century as well as a composer of Hindustani classical music. Shankar was born in Varanasi and spent his youth touring Europe and India with the dance group of his brother Uday Shankar. He gave up dancing in 1938 to study sitar playing under court musician Allauddin Khan. After finishing his studies in 1944, Shankar worked as a composer, creating the music for the Apu Trilogy by Satyajit Ray, and was music director of All India Radio, New Delhi, ...
Ravi Shankar - Music of India (Remastered) (Full Album) --------------------------------- Tip: click on the time and listen your favorite song Track list: --------------------------------- 1 | 00:00 | Ravi Shankar - Raga Hamsaohwani (Evening Raga) 2 | 09:17 | Ravi Shankar - Dhun Kafi (Spring Season) 3 | 21:54 | Ravi Shankar - Raga Ramkali (Morning Raga) --------------------------------- Playlist Ravi Shankar: --------------------------------- Subscribe Channel Begarmundi records: https://www.youtube.com/channel/UChu6I4fYWUAiQdWr-3YIb5w Subscribe for free to stay connected to our channel and easily access our video updates! YouTube: https://www.youtube.com/c/Begarmundirecords Facebook: https://www.facebook.com/Begarmundi/ Google+ https://goo.gl/V2Adba --------------------------------- ® ...
Join this channel to get access to perks: https://www.youtube.com/channel/UCcL4qzQoYLPz4EDD8gaAzZg/join **Description:** Experience the divine moments of Rudra Puja with Sri Sri Ravi Shankar ji. This powerful Vedic ritual, filled with sacred chants and serene energy, brings peace, positivity, and spiritual upliftment. Join Gurudev and devotees in this soulful journey of devotion and inner transformation. A mesmerizing experience to cherish! **Hashtags:** #SriSriRaviShankar #RudraPuja #TheArtOfLiving #Gurudev #SpiritualMoments #DivineEnergy #SacredChants #Meditation #InnerPeace #Pranithar #artofliving
Marian Foster chats to Indian sitar virtuoso Ravi Shankar, perhaps the most famous sitar player of all time. How is a sitar made, how much practice does it take, and what are the fundamentals of good sitar music? This clip is from Ravi Shankar: Maestro and Guru, originally broadcast 10 June, 1985. You have now entered the BBC Archive, an audiovisual time machine that will transport you back to the golden age of TV to educate, entertain and enlighten you with classic clips from the BBC vaults. Make sure you subscribe so that you never miss a single stop on our amazing journey through the BBC Archive - https://www.youtube.com/c/BBCArchive?sub_confirmation=1
HIDDEN ERROR: Usage of "relatives" is not recognized
Ravi Shankar (IPA: [ˈrɔbi ˈʃɔŋkɔr]; 7 April 1920 – 11 December 2012), born Robindro Shaunkor Chowdhury, his name often preceded by the title Pandit, was an Indian musician and composer who was one of the best-known exponents of the sitar in the second half of the 20th century as a composer of Hindustani classical music.
Shankar was born to a Bengali family in Benares, British India, and spent his youth touring India and Europe with the dance group of his brother Uday Shankar. He gave up dancing in 1938 to study sitar playing under court musician Allauddin Khan. After finishing his studies in 1944, Shankar worked as a composer, creating the music for the Apu Trilogy by Satyajit Ray, and was music director of All India Radio, New Delhi, from 1949 to 1956.
In 1956 he began to tour Europe and the Americas playing Indian classical music and increased its popularity there in the 1960s through teaching, performance, and his association with violinist Yehudi Menuhin and Beatles guitarist George Harrison. His influence on the latter helped popularize the use of Indian instruments in pop music throughout the 1960s. Shankar engaged Western music by writing compositions for sitar and orchestra, and toured the world in the 1970s and 1980s. From 1986 to 1992, he served as a nominated member of Rajya Sabha, the upper chamber of the Parliament of India. He continued to perform up until the end of his life. In 1999, Shankar was awarded India's highest civilian honour, the Bharat Ratna.