- published: 25 Dec 2023
- views: 51550879
'+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; })); }); -->
The Indian Ocean is the third largest of the world's oceanic divisions, covering approximately 20% of the water on the Earth's surface. It is bounded by Asia on the north, on the west by Africa, on the east by Australia, and on the south by the Southern Ocean or, depending on definition, by Antarctica. It is named after India. The Indian Ocean is known as Ratnākara (Sanskrit: रत्नाकर), "the mine of gems", in ancient Sanskrit literature and as Hind Mahāsāgar (Devanāgarī: हिन्द महासागर) in Hindi.
The borders of the Indian Ocean, as delineated by the International Hydrographic Organization in 1953 included the Southern Ocean but not the marginal seas along the northern rim, but in 2000 the IHO delimited the Southern Ocean separately, which removed waters south of 60°S from the Indian Ocean, but included the northern marginal seas.Meridionally, the Indian Ocean is delimited from the Atlantic Ocean by the 20° east meridian, running south from Cape Agulhas, and from the Pacific Ocean by the meridian of 146°55'E, running south from the southernmost point of Tasmania. The northernmost extent of the Indian Ocean is approximately 30° north in the Persian Gulf.
Indian Ocean is the debut album from Indian Ocean. The band’s first album, recorded in just 10 days at HMV’s Dumdum studio, Calcutta, in December 92. Shaleen Sharma played the drums on this album. This is the only album in which Shaleen Sharma was present, later when Shaleen Sharma left the band he was replaced by Amit Kilam. Released only on cassette. Recording Engineer for this album was Raja Mukherjee. Cover concept was done by Manas Chakrabarti. The Graphic Design work was done by Navin Shiromani. The Durgapal family gave Indian Ocean all their time, patience and space while Indian Ocean prepared for this recording.
Indian Ocean is an Indian rock band formed in New Delhi in 1990, who are widely recognized as the pioneers of the fusion rock genre in India. Susmit Sen, Asheem Chakravarty, Rahul Ram and Amit Kilam were band members till Chakravarty's death on 25 December 2009, after which Tuheen Chakravorty and Himanshu Joshi were officially inducted into the band as replacements. After the departure of Susmit Sen in 2013, Rahul Ram is the only founding member who appeared on the band's debut album Indian Ocean.
The musical style of the band can be at best classified as fusion music. It is an experimental genre, fusing raga (traditional Indian tunes) with rock music, guitars and drums, sometimes using Indian folk songs. It has also been described by some music critics as "Indo-rock fusion with jazz-spiced rhythms that integrates shlokas, sufism, environmentalism, mythology and revolution".
Since 2010, the band has moved against the lines of record labels. They released their latest album 16/330 Khajoor Road online for free. The main reason for this move was the frustration over negotiating contracts with record companies and fighting over copyright issues. They have turned to concerts and sponsorships for generating revenue rather than playing in the hands of record labels. For a brief amount of time they had the sponsorship of Johnnie Walker. They are also a part of the world's first Music Personalisation Initiative named DRP as one of the five Featured Artists. In its 2014 listing of "25 Greatest Indian Rock Songs of the last 25 Years", "Rolling Stone India" featured two songs, Ma Rewa and Kandisa from the album, Kandisa (2000).
The 2012 Indian Ocean earthquakes were magnitude 8.6 and 8.2 Mw undersea earthquakes that struck near the Indonesian province of Aceh on 11 April at 15:38 local time. Initially, authorities feared that the initial earthquake would cause a tsunami and warnings were issued across the Indian Ocean; however, these warnings were subsequently cancelled. The earthquake was the 13th strongest earthquake since 1900, an unusually strong intraplate earthquake, and the largest strike-slip earthquake ever recorded.
The 2012 earthquake's epicenter was located within the Indo-Australian Plate, which is divided into two sub- or proto-plates: the Indian, and Australian. At their boundary, the Indian and Australian Plates converge at 11 mm (0.4 in) per year in a NNW–SSE direction. This convergence is accommodated by a broad zone of diffuse deformation. As part of that intraplate deformation, north–south trending fracture zones have been reactivated from the Ninety East Ridge as far east as 97°E.
#facts #funfacts #countries #geography #geopolitcs #map #mapping #world #whatif #didyouknow #asia #asian #africa #african #australia #india #indian #indianocean #ocean #sea #pakistan #iran #informative #education #gk #generalknowledge #knowledge #geografia #subscribe #subscriber =========================================================================== Video Idea: What If we drained the Indian Ocean? How would it effect the world's politics and Geography? Let's find out... =========================================================================== Hopefully you guys learnt something from this video, your suggestions are highly appreciated. Luv y'all. =========================================================================== My videos are inspired by my favourite creators such as: hap...
#FolkFest #DIFF2015 #IndianOcean #India Indian Ocean, widely considered as the biggest success of the Indian underground music scene, started their journey in the 90s. The blend of shlokas, environmentalism, Sufism, mythology and revolution in a jazzy ambience have led Indian Ocean into the forefront of Indian fusion music. An initiative of Sun Foundation; ‘Dhaka International FolkFest’ is a celebration of sheer musical brilliance where myriads of folk artistes from home and abroad perform on a single platform. ৯০-এর দশকে যাত্রা শুরু করা ইন্ডিয়ান ওশেন ভারতের আন্ডারগ্রাউন্ড মিউজিক ঘরানা থেকে উঠে আসা সবচেয়ে সফল এবং জনপ্রিয় একটি ব্যান্ড। নিজেদের সংগীতে শ্লোক, সুফি সংগীত এবং জ্যাজ এর সংমিশ্রণে করে তারা পাকাপোক্ত জায়গা করে নিয়েছে ভারতের ফিউশন মিউজিকে। সান ফাউন্ডেশনের উদ্যোগে আয়োজিত ‘ঢাকা ই...
#india #history #shorts #trade #economy #oceans #sea #atlanta #atlas #geopolitic #pakistan #pakistanvsindia #bangladesh #nepal #asia #asian #europe #indian #space #news #story #world #earth #map #informative #education =========================================================================== Video Topic: Why does India has an entire ocean named after it? =========================================================================== Hopefully you guys learnt something from this video. Your suggestions are highly appreciated. Luv y'all. =========================================================================== Tags: #facts #funfacts #countries #earth #map #mapping #mapper #world #asia #asiancountries #india #indian #indianfood #indianocean #pacific #atlantic #pakistan #bangladesh #nepal ...
The Indian Ocean is the third-largest of the world's oceanic divisions,the warmest of all the world's oceans, covering 70.56 million square kilometres or 19.8% of the water on Earth's surface with a volume of 264,000,000 cubic kilometers! . . . . . . . . ––––––––––––– Solace by Scott Buckley https://soundcloud.com/scottbuckley Creative Commons — Attribution 3.0 Unported — CC BY 3.0 Free Download / Stream: https://bit.ly/s-b-solace Music promoted by Audio Library https://youtu.be/x8h50E6ekR0 . . . .
--------------------------------------------------- WISH-TV website | https://www.wishtv.com Follow us! https://www.facebook.com/WISHNews8 https://www.instagram.com/WISH8News/ https://www.tiktok.com/@WISHNews8 https://twitter.com/WISHNews8 https://www.threads.net/@wish8news Download the WISH-TV App | https://bit.ly/3vMkd5q Subscribe to the WISH-TV Newsletter | https://www.wishtv.com/email-alerts/ Have a news tip? Email us at [email protected]
Indian ocean Or Bay of Bengal ❤️💯 #viral #indianocean #travel #bayofbengal #shorts #shortsfeed #trending #trendingshorts #ramsetu #rameshwaram
#FolkFest #DIFF2015 #IndianOcean #India Indian Ocean, widely considered as the biggest success of the Indian underground music scene, started their journey in the 90s. The blend of shlokas, environmentalism, Sufism, mythology and revolution in a jazzy ambience have led Indian Ocean into the forefront of Indian fusion music. An initiative of Sun Foundation; ‘Dhaka International FolkFest’ is a celebration of sheer musical brilliance where myriads of folk artistes from home and abroad perform on a single platform. ৯০-এর দশকে যাত্রা শুরু করা ইন্ডিয়ান ওশেন ভারতের আন্ডারগ্রাউন্ড মিউজিক ঘরানা থেকে উঠে আসা সবচেয়ে সফল এবং জনপ্রিয় একটি ব্যান্ড। নিজেদের সংগীতে শ্লোক, সুফি সংগীত এবং জ্যাজ এর সংমিশ্রণে করে তারা পাকাপোক্ত জায়গা করে নিয়েছে ভারতের ফিউশন মিউজিকে। সান ফাউন্ডেশনের উদ্যোগে আয়োজিত ‘ঢাকা ই...
Jaadu Maaya is the first single from Indian Ocean's new album 'Tu Hai' The video is a powerful and heart-rending portrayal of a world falling apart, while we argue about small issues there's a larger threat that we need to be aware of, which is presented as an allegory. Directed by Varun Grover (who doubles up as the writer/lyricist on this song) along with Ankit Kapoor, Jaadu Maaya’s lyrics have layered meanings, mingling despair and hope. Despite the stark realities of climate change and environmental degradation, "Jaadu Maaya" reminds us that there is always a silver lining, and that it's never too late to take meaningful action towards creating a more sustainable future. _______________________________________________________________________ Listen to Jaadu Maya: https://bfan....
Click Here To Subscribe: http://bit.ly/1eHAOSu Track Listing: 1. Kya Maloom: 0:00 - 06:00 2. Ma Rewa: 06:01- 12:40 3. Leaving Home: 12:40 - 19:29 4. Hille Le: 19:29 - 24:45 5. Khajuraho: 24:45 - 33:12 6. Kaun: 33:12 - 43:15 7. Kandisa: 43:15 - 50:56 Kandisa is the second studio album released by Indian fusion band Indian Ocean in March 2000. It went on to become one of the best-loved albums produced in India. Kandisa acquired cult status and propelled Indian Ocean into the status of one of India's most original and creative bands. For more updates: Like us on: www.facebook.com/JungleeTalkies Follow us on: www.twitter.com/JungleeTalkies Join our Circle: www.google.com/+JungleeTalkies
Watch one of Indian Ocean's most unique Live Concert at the telecast of GIFLIF Drive-In Music Fest (World's First) 00:00 Southy 09:36 Akhiyaan Udeek Diyaan 22:22 Tu Kisi Rail Si (Masaan) 28:57 Bandeh 40:51 Jaadu Maaya 48:55 Maa Rewa 1:00:42 Behne Do 1:09:27 Kandisa Only on "GIFLIF Fest" (youtube.com/c/GIFLIFFest) & "Live In Concerts by GIFLIF" (youtube.com/c/LiveInConcerts) YouTube channels. Follow #GIFLIFLive for more. @IndianOceanOfficial Members: Amit Kilam Rahul Ram Himanshu Joshi Nikhil Rao Tuheen Chakravorty Sponsor: @mptourism @mansarovarglobaluniversity @mpstdcofficial @ddxcinema @kartavyasociety @Shareon.in @Dramantram @Red FM India #GIFLIF #GIFLIFFest #GIFLIF2021 #DriveInFest #GIFLIFMoments #indiemusic #indianrockmusic #indianmusicdiaries #musicfest #independ...
The Berklee Indian Ensemble had the honor to collaborate with the inimitable band Indian Ocean, pioneers of the Indian rock fusion scene. Working on this rearrangement of Indian Ocean's popular song “Jhini” was not only a great learning experience for the ensemble students, but an incredible amount of fun. Indian Ocean, formed in the early '90s, has earned a cult following not only in India, but also globally due to their unique blend of rock, classical music, jazz, and fusion, set to themes of sufism, environmentalism, and mythology. About the Berklee Indian Ensemble: Founded in 2011 by faculty member Annette Philip, the Berklee Indian Ensemble is one of largest and most diverse ensembles at Berklee. Apart from performing original compositions and arrangements, the Berklee Indian Ensem...
Indian Ocean Band came into being in 1990. Since then this indie music band has been creating music that constantly evolves, grows and stays with you. 'Tu Hai' is the recently released album, Newsclick spoke to the band members - Rahul Ram, Amit Kilam, Nikhil Rao and Himanshu Joshi about the group, new album, changing music scene and more. #music #indianocean #newsclick Join this channel to get access to perks: https://www.youtube.com/channel/UCOF1iS7lmNRSWVqL8N3L6kQ/join Subscribe to our website: https://support.newsclick.in/ You can follow our work at: Facebook: https://www.facebook.com/newsclickonline Facebook Hindi: https://www.facebook.com/hindinewsclick/ Twitter: https://twitter.com/newsclickin Instagram: https://www.instagram.com/newsclick.in LinkedIn: https://www.linkedin.com...
"Jungle" is a ballad by Indian Ocean that highlights the environment and our place in it. The song draws a parallel between life and a jungle, underscoring the vastness of nature and our own insignificance within it. The track features acclaimed saxophonist George Brooks, a longtime friend and collaborator of the band. Listen to Jungle: https://bfan.link/jungle-8 Listen to Tu Hai, the new album, out on all streaming platforms: https://bfan.link/Tu-Hai Audio Credits: Composers: Amit Kilam, Asheem Chakravorty, George Brooks, Himanshu Joshi, Nikhil Rao, Rahul Ram Lyrics: Arjun Raina Video Credits: Animation & Direction: Deepak Kattar (Standalone Productions) Produced by: Big Bad Wolf Studios & Indian Ocean Producers: Dhruv Jagasia, Amit Kilam, Rahul Ram & Dev Bhatia ___________________...
PLEASE BE AWARE THAT THIS VIDEO CONTAINS GLITCHES (SEE COMMENTS BELOW) Indian Ocean is an Indian rock band formed in New Delhi in 1990, who are widely recognized as the pioneers of the fusion rock genre in India. Susmit Sen, Asheem Chakravarty, Rahul Ram and Amit Kilam were band members till Chakravarty's demise on 25 December 2009, after which Tuheen Chakravorty and Himanshu Joshi were officially inducted into the band as replacements. After the departure of Susmit Sen in 2013, Rahul Ram is the only founding member who appeared on the band's debut album Indian Ocean. Sanjeev Sharma has collaborated with them as lyricist on many Albums.
Watch the lyrical video for 'Ma Rewa', by Indian Ocean from their album Kandisa. Like || Share || Spread || Love Make sure you subscribe and never miss a video: https://www.youtube.com/user/timesmusicindia?sub_confirmation=1 For more updates: Facebook: http://www.facebook.com/timesmusic Instagram: https://www.instagram.com/timesmusichub/ Like us On G+: https://plus.google.com/115942273964853601730 Tweet us your favourite videos on: http://www.twitter.com/timesmusichub Visit Our Website: http://www.timesmusic.com/
Song: Maaya Artist: Mohit Chuhan & Indian Ocean Band
The Indian Ocean is the third largest of the world's oceanic divisions, covering approximately 20% of the water on the Earth's surface. It is bounded by Asia on the north, on the west by Africa, on the east by Australia, and on the south by the Southern Ocean or, depending on definition, by Antarctica. It is named after India. The Indian Ocean is known as Ratnākara (Sanskrit: रत्नाकर), "the mine of gems", in ancient Sanskrit literature and as Hind Mahāsāgar (Devanāgarī: हिन्द महासागर) in Hindi.
The borders of the Indian Ocean, as delineated by the International Hydrographic Organization in 1953 included the Southern Ocean but not the marginal seas along the northern rim, but in 2000 the IHO delimited the Southern Ocean separately, which removed waters south of 60°S from the Indian Ocean, but included the northern marginal seas.Meridionally, the Indian Ocean is delimited from the Atlantic Ocean by the 20° east meridian, running south from Cape Agulhas, and from the Pacific Ocean by the meridian of 146°55'E, running south from the southernmost point of Tasmania. The northernmost extent of the Indian Ocean is approximately 30° north in the Persian Gulf.
Are ruk ja are thum ja
Are ruk ja re bandhe are thum ja re bandhe ki kudrat has padegi ho - 3
Are neendein hai jakhmi
Are sapne hai bhooke
Ki karvat phat padegi ho
Are ruk ja re bandhe are thum ja re bandhe ki kudrat has padegi ho - 2
Are mandir ye chup hai are masjid ye gumsum
Ibadat thak padegi ho
Samay ki lal aandhi kabristan ke raaste
Are latpath chalegi ho
Are ruk ja re bandhe are thum ja re bandhe ki kudrat has padegi ho - 2
Kise kafir kahega kise kayar kahega
Teri kab tak chalegi ho
Kise kafir kahega kise kayar kahega
Teri kab tak chalegi ho
Are ruk ja re bandhe are thum ja re bandhe ki kudrat has padegi ho - 2
Are mandir ye chup hai are masjid hai gumsum
Ibadat thak padegi ho
Samay ki lal aandhi kabristan ye raste
Are latpath chalegi ho
Are ruk ja re bandhe are thum ja re bandhe ki kudrat has padegi ho - 2
Are neendein hai jakhmi are sapne hai bhooke
Ki karvat phat padegi ho
Yeh andhi chot teri Kabhi ki sukh jaati