'+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; })); }); -->

Shanti

Shanti, Santhi or Shanthi (from Sanskrit शान्तिः śāntiḥ; √ शम śam: ‘be calm’) means peace, rest, calmness, tranquility, or bliss.

The poet T. S. Eliot, in his poem The Waste Land (where he spelled it Shantih) translated it as "The Peace which passeth understanding"

In Sanskrit

  • Inner peace, a state of being mentally and spiritually at peace, with enough knowledge and understanding to keep oneself strong in the face of discord or stress.
  • Ksanti, one of the paramitas of Buddhism.
  • People

  • Shanti Devi (1926–1987), Indian woman at the center of a case of supposed reincarnation
  • Shanti Roney (born 1970), Swedish actor
  • Shanti Snyder (born 1981), Japanese/English lyricist, singer, songwriter, and music TV host
  • Oliver Shanti (born 1948), New Age musician
  • Shanti Wintergate, musician/actress/writer
  • Shanthi Krishna, Tamil and Malayalam movie actress
  • Shanthi Lekha or Rita Irene Quyn (1929–2009), Sri Lankan actress
  • Santhi Soundarajan or Santhi Soundararajan (born 1981), Indian athlete
  • Music

  • "Shanti" (song), a 2002 single by Hitomi Shimatani
  • Shanti (film)

    Shanti (Kannada: ಶಾಂತಿ, English: Peace) is a film in the Kannada language directed by renowned Kannada writer and director Baraguru Ramachandrappa. The film features only a single actor and hence has found an entry in the Guinness World Records in the category Fewest actors in a narrative film.Bhavana (Not to be confused with the Malayalam actress of the same name) is the only actress in this film and there are no other actors.

    Theme

    Baraguru Ramachandrappa decided to direct this film to portray different faces of peace by juxtaposing symbolism and monologues. The main theme of the film is to explore the various ways to fight terrorism without any compromise with the human values promoted by the United Nations. The UN was used as a vital aspect in the film since Baragur feels that it is a world body that has created two contradicting influences of war and peace. Baragur indicates that though this was sort of an experiment, experimentation was not the main motivation for producing this film. Rather than the concept, more focus has been given on the creative aspects of the theme. A female character was chosen as the sole actress in the film since peace is generally considered feminine whereas war is more masculine. The film does not end with a moral, something uncommon among Indian movies. This is because Baraguru wanted the audience to start off a discussion to weigh the pros and cons of war against peace.

    Shanti (TV series)

    Shanti - Ek Aurat Ki Kahani is an Indian television series that aired on DD National in 1994, and was later shown on Indian television channel STAR Plus. The series stars Mandira Bedi as Shanti in the main lead. The show is one of the first Indian television drama series, has received a considerable cult status and is considered a classic.

    Synopsis

    The story begins with two friends of the biggest Bollywood production house in the country. Two friends - Kamesh Mahadevan and Raj G.J. Singh writer, directors and producers live in the lavish Shanti Mansion. Behind the walls of Shanti Mansion lie dark secrets of the past lives of both the friends.

    Plot

    Every character has a past and has something hidden, it all gets revealed when Shanti, an aspiring journalist hoping to write the biographies of Kamesh and Raj, arrives. The duo they only approve of a movie when it is appreciated by the servants of the house and tell of how they went from rags to riches.

    Then are shown the family members, Kamesh's eldest son Ramesh is mentally challenged. Younger son Somesh is a failing director struggling over the script which gets rejected even by his own father. His wife Ayesha is the daughter of a film producer whose career was ruined by the duo. His adopted daughter Nidhi was revealed to be the illegitimate daughter of Kamesh. Raj's wife took to Ashrams and Sadhus, while his youngest son Nihal returns with an American white friend Michelle, who accidentally revealed that she is his wife. His elder daughter Maya is drawn to depression by her mother's absence, while his womanizer elder son Rohan is forced to marry a model Sasha after she threatens to come out to the press.

    Saregama

    Saregama India Ltd. is an Indian music label and content producer for Indian television.

    Its music catalogue consists of more than 117,000 songs in 14 languages, built over a period of more than 100 years. It has daily and weekly TV shows currently on air with television networks in India.

    Saregama’s head office is located in Mumbai, with other offices in Kolkata, Delhi & Chennai. It is listed on the NSE and BSE.

    The company was founded in 1901. It produced the first song recorded in India,, and later moved into the production of cinema and television content, digital retailing, aggregation, radio programming and events.

    History

    EMI

    In 1901, operations started as the first overseas branch of Electrical & Musical Industries Limited, EMI London.

    The company was incorporated on 13 August 1946 with the name of ‘The Gramophone Co. (India) Limited’. The name of the Company was subsequently changed to ‘The Gramophone Co. of India Limited’ effective 1 April 1956. It was converted into a public company on 28 October 1968 and consequently the name of the company was changed to ‘The Gramophone Company of India Limited’.

    Saregama (disambiguation)

    Saregama may refer to:

  • Sa Re Ga Ma, an Indian musical reality TV game show
  • Sa Re Ga Ma Pa Challenge 2007, a musical program
  • Saregama Ltd, an Indian music label and content producer for Indian television
  • Podcasts:

    • シャンティ(SHANTI) / 魁星 Cover

      「こっちに付いてきな」 ■original:wotaku 様  https://www.youtube.com/watch?v=POy0RvJeaqM ■illust:REO 様  https://twitter.com/SRiokorr ■mix:Yuki Ito 様  https://twitter.com/itouyuki1224 ■movie:有栖永真 様  https://twitter.com/alice_eishin ※未成年者の視聴者の方々は、下記リンク先の注意事項もご覧ください。 https://www.anycolor.co.jp/notice-for-minors #にじさんじ #魁星 #シャンティ

      published: 15 Mar 2024
    • シャンティ(SHANTI) / wotaku feat. KAITO

      『シャンティ』小説が出ます! →https://ga.sbcr.jp/special/shanti/ オフボーカル→https://commons.nicovideo.jp/material/nc252222 ダウンロード&サブスク(Download and subscription)→https://karent.jp/album/2978 よう うな垂れてるその兄ちゃん 何か辛い事あったんか? 俺で良けりゃ話してくんない? 力になるぜ 一体どんなことがあった? そりゃ酷え話だ兄弟 これをやるから元気出しな 金ならまた今度でいいさ Shanti Shanti Shanti Shanti Shanti Happy Candy Happy Happy Happy Candy Many Many Money 眠らない夜のチャイナタウン その全てが縄張り 老若男女問わずお客 使い終わったら捨てりゃいい 今夜も来たのかい お気に召したかい 代金はこれくらい え? え? え? 払えないのかい ならばしょうがない 君にぴったりの仕事があるからこっちに付いてきな 焼かれた酒場か剥がれた女  しゃがれた看板掲げたオーナー たかだかナイフで刺されたようじゃ 端からアイツの思惑通りだ 気 狂ってる目 散歩中 血 売るってお前 納得 提灯と竜胆咲かせた果て 盲信の真を奏でたまへ 黙れ 座れ 黙れ 殴れ 殴れ 殴れ 縛れ 縛れ 縛れ バラせ バラせ バラせ バラせ バラせ バラせ バラせ バラせ バラせ 今夜のはどうだい? お気に召したかい? 代金はこれくらい 生きてればお客 死んでれば商材 卒なく 無駄なく 転がすビジネス どっちを向いてんだ やあ うな垂れてるその嬢ちゃん 俺で良けりゃ話してくんない? 「シャンティ」 作詞 / 作編曲 wotaku ( ht...

      published: 17 Sep 2021
    • [FULL VER] シャンティ (Shanti) - Vivid BAD SQUAD × KAITO | Color Coded Lyrics - Project Sekai

      #ProjectSekai #VBS #Shanti #シャンティ #VIVIDBADSQUAD #ビビバス #プロセカ Title: シャンティ (Shanti) Vocal: Vivid BAD SQUAD × KAITO Composer: wotaku Lyricist: wotaku English Translation: meeema Virtual Singer Ver: https://youtu.be/POy0RvJeaqM?si=3Qxh8CtJ2fNsjXve (C) SEGA (C) Colorful Palette Inc. (C) Crypton Future Media, INC. www.piapro.net DISCLAIMER: I do not own anything except the video/lyric editing. All music and translation belongs to the original creator.

      published: 04 Mar 2024
    • シャンティ Cover / Gero

      Shanti Happy Candy 本家様⇒https://www.youtube.com/watch?v=POy0RvJeaqM 〇Mix/Mastering:藤浪潤一郎 https://twitter.com/2273xxx 〇Illustration:片桐いくみ https://twitter.com/iku_mi193 〇Movie:SaiA/再映 https://twitter.com/Shomijokun 〇Vocal:Gero _____________________________________ オフィシャルHP http://gero-official.jp/ Twitter  https://twitter.com/Gero2525 OFFICIAL CHANNEL https://www.youtube.com/channel/UCFuugQScqDfJcsOEWbL1_tg 肉チョモランマ https://www.youtube.com/channel/UCfleuaM45FPQOfVK8XSheDA #Gero #シャンティ #歌ってみた

      published: 21 Dec 2022
    • シャンティ (SHANTI) - Romeo Kyoran (Meloco Kyoran) Cover

      hey, don't get surprised like that 【 ┈ * Credits ┈ *】 ♱ Original / wotaku https://youtu.be/POy0RvJeaqM ♱ Mix / ピースパンク https://twitter.com/PEACEPUNK1 ♱ Illust / 初めまして。 https://twitter.com/nicetomeet0308 ♱ Video / riguruma https://twitter.com/riguruma ♱ Vocal / Romeo Kyoran (Meloco Kyoran) April fool huh ┈ * ┈ ┈ ┈ ┈ ┈ * ┈ ┈ ┈ ┈ ┈ ┈ * ♱ ANYCOLOR Official Website: https://www.anycolor.co.jp/ ♱ Guidance for Minors: https://www.anycolor.co.jp/notice-for... #MelocoKyoran #NIJISANJI_EN #にじさんじ #NIJISANJI #XOLEIL

      published: 01 Apr 2023
    • Shanti Official Video | Feat. Millind Gaba & Nikki Tamboli |Asli Gold |Satti Dhillon | Bhushan Kumar

      Gulshan Kumar & T-Series presents Bhushan Kumar's "Shanti " in the voice of Millind Gaba, music by Millind Gaba and the lyrics are also written by Millind Gaba, Rap by Asli Gold. The song features Millind Gaba & Nikki Tamboli. The video is directed by Satti Dhillon. Hit 'LIKE' if you ♥ this song. --------------------------------------------------------------- Connect with T-SERIES: 👉 http://bit.ly/TSeriesYouTube ---------------------------------------------------------------- ♪♪Full Song Available on♪ JioSaavn: https://bit.ly/Shanti-JioSaavn Spotify: https://bit.ly/Shanti--Spotify Hungama: https://bit.ly/Shanti-Hungama Apple Music: https://bit.ly/Shanti-AppleMusic Amazon Prime Music: https://bit.ly/Shanti-AmazonPrimeMusic Wynk: https://bit.ly/Shanti-Wynk Resso: https://bit.ly/Shanti-Re...

      published: 22 Jun 2021
    • SHANTI (Animecio & Kunlo Remix) ft. Miori Celesta

      Pre-save for streaming services here: https://distrokid.com/hyperfollow/mioricelesta1/shanti-animecio--kunlo-remix-2 This was delayed for so long, but glad to finally release it! Thank you Animecio for approaching me to sing for this awesome remix of wotaku's SHANTI! It was super fun :DD Vocals + Tuning + Timing: Miori Celesta (Here!) Vocal Mix + Remix + Mastering: Animecio & Kunlo (https://twitter.com/animecio) Art: GGZ (https://twitter.com/Gguzal_95) MV: AAING シャンティ(SHANTI) originally by wotaku https://youtu.be/POy0RvJeaqM Vocal direction was heavily inspired by Chogakusei's cover: https://youtu.be/1XIvScrEirk #vtuber #envtuber #vsinger

      published: 31 May 2023
    • 【超学生】シャンティ @歌ってみた

      没入感の研究です サブスク配信 → lnk.to/Shanti_Cover ▋Original  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ・原曲(wotaku さん) ・https://youtu.be/POy0RvJeaqM ▋Vocal / Mix / Movie  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ・超学生 ・Twitter: https://twitter.com/tyougakusei ・再生リスト: https://www.youtube.com/playlist?list=PL5ohYb4e_1y2lLN6PCfXaENvVZNju2QX9  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ 歌詞翻訳やタイトル、概要欄の翻訳を提供頂ける際には ・該当動画のURL ・翻訳先の言語 ・(歌詞の場合)元の歌詞のどこに一致するか 例:Hello(こんにちは) ・最後に表示する翻訳担当者のハンドルネーム or 匿名希望 をメッセージ内に記載いただき、 他者やサイトの著作物でないことをご確認の上、 chogakusei.info@gmail.com までご送信ください。 ※お早く送っていただいた方のモノを優先的に掲載させていただきます。ご了承ください #wotaku #超学生 #歌ってみた

      published: 14 Oct 2021
    • Chhattisgarh Kirandul Shanti Hari Mandir Mahotsav | Dalbaran | Danka Kirtan | Maha Naam

      ছত্রিশগড় কিরণ্ডুল শান্তি হরি মন্দিরের মহোৎসব অনুষ্ঠান | দল বরন | ডঙ্কা কীর্তন | মহা নাম | Ami Matua YouTube channel | আমি মতুয়া চ্যানেল | ছত্রিশগড় কিরণ্ডুল মহোৎসব অনুষ্ঠান @Amimatua কিরণ্ডুল শান্তি হরি মন্দিরের মহোৎসব অনুষ্ঠান Date-20/04/2024 to 21/04/2024 ভারত ছত্রিশগড় কিরণ্ডুল _________________________ Channel: Ami Matua Administrator & Editing: SUNIL SARKAR Ami Matua Team Contact number/WhatsApp +919178415460 বিশেষ অনুরোধ একান্ত প্রয়োজনে যোগাযোগ করবে

      published: 22 Apr 2024
    • ශාන්ති ( Shanthi ) - Fill T Ft. Smokio

      Produced by - Fill T Video Director - Fill T Lyrics - Fill T Music - Goa ILL Noize Records 2016

      published: 17 Dec 2016
    シャンティ(SHANTI) / 魁星 Cover
    2:51

    シャンティ(SHANTI) / 魁星 Cover

    • Order:
    • Duration: 2:51
    • Uploaded Date: 15 Mar 2024
    • views: 2444088
    「こっちに付いてきな」 ■original:wotaku 様  https://www.youtube.com/watch?v=POy0RvJeaqM ■illust:REO 様  https://twitter.com/SRiokorr ■mix:Yuki Ito 様  https://twitter.com/itouyuki1224 ■movie:有栖永真 様  https://twitter.com/alice_eishin ※未成年者の視聴者の方々は、下記リンク先の注意事項もご覧ください。 https://www.anycolor.co.jp/notice-for-minors #にじさんじ #魁星 #シャンティ
    https://wn.com/シャンティ(Shanti)_魁星_Cover
    シャンティ(SHANTI) / wotaku feat. KAITO
    2:46

    シャンティ(SHANTI) / wotaku feat. KAITO

    • Order:
    • Duration: 2:46
    • Uploaded Date: 17 Sep 2021
    • views: 13113870
    『シャンティ』小説が出ます! →https://ga.sbcr.jp/special/shanti/ オフボーカル→https://commons.nicovideo.jp/material/nc252222 ダウンロード&サブスク(Download and subscription)→https://karent.jp/album/2978 よう うな垂れてるその兄ちゃん 何か辛い事あったんか? 俺で良けりゃ話してくんない? 力になるぜ 一体どんなことがあった? そりゃ酷え話だ兄弟 これをやるから元気出しな 金ならまた今度でいいさ Shanti Shanti Shanti Shanti Shanti Happy Candy Happy Happy Happy Candy Many Many Money 眠らない夜のチャイナタウン その全てが縄張り 老若男女問わずお客 使い終わったら捨てりゃいい 今夜も来たのかい お気に召したかい 代金はこれくらい え? え? え? 払えないのかい ならばしょうがない 君にぴったりの仕事があるからこっちに付いてきな 焼かれた酒場か剥がれた女  しゃがれた看板掲げたオーナー たかだかナイフで刺されたようじゃ 端からアイツの思惑通りだ 気 狂ってる目 散歩中 血 売るってお前 納得 提灯と竜胆咲かせた果て 盲信の真を奏でたまへ 黙れ 座れ 黙れ 殴れ 殴れ 殴れ 縛れ 縛れ 縛れ バラせ バラせ バラせ バラせ バラせ バラせ バラせ バラせ バラせ 今夜のはどうだい? お気に召したかい? 代金はこれくらい 生きてればお客 死んでれば商材 卒なく 無駄なく 転がすビジネス どっちを向いてんだ やあ うな垂れてるその嬢ちゃん 俺で良けりゃ話してくんない? 「シャンティ」 作詞 / 作編曲 wotaku ( https://twitter.com/wotaku_aaa ) ボーカル KAITO マスタリング 田中龍一(MIXER'S LAB) イラスト 亞門弐形 ( https://twitter.com/ammon_mk2 ) メール wotakuwotaku@gmail.com 公式サイト https://wotakuwotaku.wixsite.com/wotaku
    https://wn.com/シャンティ(Shanti)_Wotaku_Feat._Kaito
    [FULL VER] シャンティ (Shanti) - Vivid BAD SQUAD × KAITO | Color Coded Lyrics - Project Sekai
    2:47

    [FULL VER] シャンティ (Shanti) - Vivid BAD SQUAD × KAITO | Color Coded Lyrics - Project Sekai

    • Order:
    • Duration: 2:47
    • Uploaded Date: 04 Mar 2024
    • views: 101041
    #ProjectSekai #VBS #Shanti #シャンティ #VIVIDBADSQUAD #ビビバス #プロセカ Title: シャンティ (Shanti) Vocal: Vivid BAD SQUAD × KAITO Composer: wotaku Lyricist: wotaku English Translation: meeema Virtual Singer Ver: https://youtu.be/POy0RvJeaqM?si=3Qxh8CtJ2fNsjXve (C) SEGA (C) Colorful Palette Inc. (C) Crypton Future Media, INC. www.piapro.net DISCLAIMER: I do not own anything except the video/lyric editing. All music and translation belongs to the original creator.
    https://wn.com/Full_Ver_シャンティ_(Shanti)_Vivid_Bad_Squad_×_Kaito_|_Color_Coded_Lyrics_Project_Sekai
    シャンティ Cover / Gero
    2:47

    シャンティ Cover / Gero

    • Order:
    • Duration: 2:47
    • Uploaded Date: 21 Dec 2022
    • views: 8151496
    Shanti Happy Candy 本家様⇒https://www.youtube.com/watch?v=POy0RvJeaqM 〇Mix/Mastering:藤浪潤一郎 https://twitter.com/2273xxx 〇Illustration:片桐いくみ https://twitter.com/iku_mi193 〇Movie:SaiA/再映 https://twitter.com/Shomijokun 〇Vocal:Gero _____________________________________ オフィシャルHP http://gero-official.jp/ Twitter  https://twitter.com/Gero2525 OFFICIAL CHANNEL https://www.youtube.com/channel/UCFuugQScqDfJcsOEWbL1_tg 肉チョモランマ https://www.youtube.com/channel/UCfleuaM45FPQOfVK8XSheDA #Gero #シャンティ #歌ってみた
    https://wn.com/シャンティ_Cover_Gero
    シャンティ (SHANTI) - Romeo Kyoran (Meloco Kyoran) Cover
    2:46

    シャンティ (SHANTI) - Romeo Kyoran (Meloco Kyoran) Cover

    • Order:
    • Duration: 2:46
    • Uploaded Date: 01 Apr 2023
    • views: 1623950
    hey, don't get surprised like that 【 ┈ * Credits ┈ *】 ♱ Original / wotaku https://youtu.be/POy0RvJeaqM ♱ Mix / ピースパンク https://twitter.com/PEACEPUNK1 ♱ Illust / 初めまして。 https://twitter.com/nicetomeet0308 ♱ Video / riguruma https://twitter.com/riguruma ♱ Vocal / Romeo Kyoran (Meloco Kyoran) April fool huh ┈ * ┈ ┈ ┈ ┈ ┈ * ┈ ┈ ┈ ┈ ┈ ┈ * ♱ ANYCOLOR Official Website: https://www.anycolor.co.jp/ ♱ Guidance for Minors: https://www.anycolor.co.jp/notice-for... #MelocoKyoran #NIJISANJI_EN #にじさんじ #NIJISANJI #XOLEIL
    https://wn.com/シャンティ_(Shanti)_Romeo_Kyoran_(Meloco_Kyoran)_Cover
    Shanti Official Video | Feat. Millind Gaba & Nikki Tamboli |Asli Gold |Satti Dhillon | Bhushan Kumar
    2:53

    Shanti Official Video | Feat. Millind Gaba & Nikki Tamboli |Asli Gold |Satti Dhillon | Bhushan Kumar

    • Order:
    • Duration: 2:53
    • Uploaded Date: 22 Jun 2021
    • views: 62736367
    Gulshan Kumar & T-Series presents Bhushan Kumar's "Shanti " in the voice of Millind Gaba, music by Millind Gaba and the lyrics are also written by Millind Gaba, Rap by Asli Gold. The song features Millind Gaba & Nikki Tamboli. The video is directed by Satti Dhillon. Hit 'LIKE' if you ♥ this song. --------------------------------------------------------------- Connect with T-SERIES: 👉 http://bit.ly/TSeriesYouTube ---------------------------------------------------------------- ♪♪Full Song Available on♪ JioSaavn: https://bit.ly/Shanti-JioSaavn Spotify: https://bit.ly/Shanti--Spotify Hungama: https://bit.ly/Shanti-Hungama Apple Music: https://bit.ly/Shanti-AppleMusic Amazon Prime Music: https://bit.ly/Shanti-AmazonPrimeMusic Wynk: https://bit.ly/Shanti-Wynk Resso: https://bit.ly/Shanti-Resso iTunes: https://bit.ly/Shanti--iTunes YouTube Music: https://bit.ly/Shanti-YouTubeMusic _______________________________________ For Caller Tunes : Shanti https://bit.ly/36jrCIZ Shanti - Sushil Sundar https://bit.ly/2TKs4gL Shanti - Teri Kasam https://bit.ly/3wnj6U1 Shanti - Pichle Saal https://bit.ly/3xrmjmJ Set as Caller Tune: Set "Shanti" as your caller tune - sms SANTI1 To 54646 Set "Shanti - Sushil Sundar" as your caller tune - sms SANTI2 To 54646 Set "Shanti - Teri Kasam" as your caller tune - sms SANTI3 To 54646 Set "Shanti - Pichle Saal" as your caller tune -sms SANTI4 To 54646 ________________________________________ ________________________________________ Song: Shanti Singer: Millind Gaba Music & Lyrics: Millind Gaba #MusicMG Rap Lyrics: Millind Gaba, Asli Gold Ft - Millind Gaba & Nikki Tamboli Mixed and Mastered - Eric Pillai Asst. Mix Engineer - Michael Edwin Pillai . Video Director - Satti Dhillon Dop Shinda Singh Editor Adele Pereira Choreographer Sahaj Singh & Shreoshi Kumar Steady Cam: Amaninder Singh Assistant Choreographer: Paranjal Dutta & Priyanka Mitra Assistant Director: Sumit Kumar & Prince Mundi Colorist: Ercan Kucuk Art Director: Mr. Blacc Hairstylist: Ali khan Stylist: Style by Outro Makeup: Prabh Makeover Jib Operator: Manish Arora Line Producer: RS films and Production VFX Credits : Vfx by Inside Motion Pictures VFX compositing : InsideAKY & Gaurav Manku CGI TV: Chirag Vfx Team : Navi Joshi, Parmeet Birdi, Ravi Dehru, Maninder Singh Team Coordinator: Himanshu Dhar ________________________________________ Operator Codes: 1.Shanti Vodafone Subscribers Dial 53712531982 Idea Subscribers Dial 53712531982 Tata DoCoMo Subscribers dial 54321112531982 BSNL (South / East) Subscribers sms BT 12531982 To 56700 Virgin Subscribers sms TT 12531982 To 58475 MTNL Subscribers sms PT 12531982 To 56789 2.Shanti - Sushil Sundar Vodafone Subscribers Dial 53712531983 Idea Subscribers Dial 53712531983 Tata DoCoMo Subscribers dial 54321112531983 BSNL (South / East) Subscribers sms BT 12531983 To 56700 Virgin Subscribers sms TT 12531983 To 58475 MTNL Subscribers sms PT 12531983 To 56789 3.Shanti - Teri Kasam Vodafone Subscribers Dial 53712531942 Idea Subscribers Dial 53712531942 Tata DoCoMo Subscribers dial 54321112531942 BSNL (South / East) Subscribers sms BT 12531942 To 56700 Virgin Subscribers sms TT 12531942 To 58475 MTNL Subscribers sms PT 12531942 To 56789 4.Shanti - Pichle Saal Vodafone Subscribers Dial 53712531961 Idea Subscribers Dial 53712531961 Tata DoCoMo Subscribers dial 54321112531961 BSNL (South / East) Subscribers sms BT 12531961 To 56700 Virgin Subscribers sms TT 12531961 To 58475 MTNL Subscribers sms PT 12531961 To 56789 ___________________________________ Enjoy & stay connected with us! 👉 Subscribe to T-Series: http://bit.ly/TSeriesYouTube 👉 Like us on Facebook: https://www.facebook.com/tseriesmusic 👉 Follow us on Twitter: https://twitter.com/tseries 👉 Follow us on Instagram: http://bit.ly/InstagramTseries
    https://wn.com/Shanti_Official_Video_|_Feat._Millind_Gaba_Nikki_Tamboli_|Asli_Gold_|Satti_Dhillon_|_Bhushan_Kumar
    SHANTI (Animecio & Kunlo Remix) ft. Miori Celesta
    2:19

    SHANTI (Animecio & Kunlo Remix) ft. Miori Celesta

    • Order:
    • Duration: 2:19
    • Uploaded Date: 31 May 2023
    • views: 243091
    Pre-save for streaming services here: https://distrokid.com/hyperfollow/mioricelesta1/shanti-animecio--kunlo-remix-2 This was delayed for so long, but glad to finally release it! Thank you Animecio for approaching me to sing for this awesome remix of wotaku's SHANTI! It was super fun :DD Vocals + Tuning + Timing: Miori Celesta (Here!) Vocal Mix + Remix + Mastering: Animecio & Kunlo (https://twitter.com/animecio) Art: GGZ (https://twitter.com/Gguzal_95) MV: AAING シャンティ(SHANTI) originally by wotaku https://youtu.be/POy0RvJeaqM Vocal direction was heavily inspired by Chogakusei's cover: https://youtu.be/1XIvScrEirk #vtuber #envtuber #vsinger
    https://wn.com/Shanti_(Animecio_Kunlo_Remix)_Ft._Miori_Celesta
    【超学生】シャンティ @歌ってみた
    2:53

    【超学生】シャンティ @歌ってみた

    • Order:
    • Duration: 2:53
    • Uploaded Date: 14 Oct 2021
    • views: 6252058
    没入感の研究です サブスク配信 → lnk.to/Shanti_Cover ▋Original  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ・原曲(wotaku さん) ・https://youtu.be/POy0RvJeaqM ▋Vocal / Mix / Movie  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ・超学生 ・Twitter: https://twitter.com/tyougakusei ・再生リスト: https://www.youtube.com/playlist?list=PL5ohYb4e_1y2lLN6PCfXaENvVZNju2QX9  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ 歌詞翻訳やタイトル、概要欄の翻訳を提供頂ける際には ・該当動画のURL ・翻訳先の言語 ・(歌詞の場合)元の歌詞のどこに一致するか 例:Hello(こんにちは) ・最後に表示する翻訳担当者のハンドルネーム or 匿名希望 をメッセージ内に記載いただき、 他者やサイトの著作物でないことをご確認の上、 chogakusei.info@gmail.com までご送信ください。 ※お早く送っていただいた方のモノを優先的に掲載させていただきます。ご了承ください #wotaku #超学生 #歌ってみた
    https://wn.com/【超学生】シャンティ_歌ってみた
    Chhattisgarh Kirandul Shanti Hari Mandir Mahotsav | Dalbaran | Danka Kirtan | Maha Naam
    32:57

    Chhattisgarh Kirandul Shanti Hari Mandir Mahotsav | Dalbaran | Danka Kirtan | Maha Naam

    • Order:
    • Duration: 32:57
    • Uploaded Date: 22 Apr 2024
    • views: 191
    ছত্রিশগড় কিরণ্ডুল শান্তি হরি মন্দিরের মহোৎসব অনুষ্ঠান | দল বরন | ডঙ্কা কীর্তন | মহা নাম | Ami Matua YouTube channel | আমি মতুয়া চ্যানেল | ছত্রিশগড় কিরণ্ডুল মহোৎসব অনুষ্ঠান @Amimatua কিরণ্ডুল শান্তি হরি মন্দিরের মহোৎসব অনুষ্ঠান Date-20/04/2024 to 21/04/2024 ভারত ছত্রিশগড় কিরণ্ডুল _________________________ Channel: Ami Matua Administrator & Editing: SUNIL SARKAR Ami Matua Team Contact number/WhatsApp +919178415460 বিশেষ অনুরোধ একান্ত প্রয়োজনে যোগাযোগ করবে
    https://wn.com/Chhattisgarh_Kirandul_Shanti_Hari_Mandir_Mahotsav_|_Dalbaran_|_Danka_Kirtan_|_Maha_Naam
    ශාන්ති ( Shanthi ) - Fill T Ft. Smokio
    3:40

    ශාන්ති ( Shanthi ) - Fill T Ft. Smokio

    • Order:
    • Duration: 3:40
    • Uploaded Date: 17 Dec 2016
    • views: 9302584
    Produced by - Fill T Video Director - Fill T Lyrics - Fill T Music - Goa ILL Noize Records 2016
    https://wn.com/ශාන්ති_(_Shanthi_)_Fill_T_Ft._Smokio
    • Shanti TV Serial Opening Theme Song | Composed by Ehsaan Noorani | Shanti | 1994 | DD National

      Shanti TV Serial Opening Theme Song Composed by Ehsaan Noorani in 1994 | DD National Please Like , Share And Subscribe My Channel And Motivate Me ..... Thankyou Guys🙏🙏🙏

      published: 27 Dec 2020
    • Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia News

      Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia News Hello Dosto..mandira bedi serial 1994 मे आयी shanti tv serial शांति धारावाहिक तो आपको याद होगा, उन सभी किरदार जिसमें मुख्य किरदार मंदिरा बेदी का था आज 28 साल बाद कैसे दिखते हैं ये सभी कलाकार full video watch and support my channel. shanti mandira bedi serial shanti dharavahik shanti old tv serial episodes bollywood actress gym outfit hot shanti serial episode 1 shanti dd serial #Mandira_Bedi #Shanti_Serial_1994 #Prakash_Das_Manikpuri #mandira #shanti_mandira_bedi_serial #Filmia_News -----------------Disclaimer--------------------- Copyright Disclaimer Under Section 107 of Copyright Act 1976, allowance is made for "fair use" for purposes such as criticisms, comment, news reporting, teaching, sc...

      published: 24 May 2022
    • SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarshanserials

      SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarshanserials #90stimetravels #oldads #doordarshan Shanti - Ek Aurat Ki Kahani is an Indian television series that aired on DD National in 1994. The series stars Mandira Bedi as Shanti.

      published: 05 Feb 2023
    • Shanti TV Serial - Doordarshan DD National (DD1)

      published: 30 Oct 2020
    • Shanthi Nivasa- Promo | 21 Dec 2024 | Udaya TV Serial | Kannada Serial

      Watch the Promo of the Popular Kannada Serial #ShanthiNivasa that airs on Udaya TV. Watch all Udaya TV serials immediately after the TV telecast on Sun NXT app. *Free for Indian Users only Download here: Android - http://bit.ly/SunNxtAdroid iOS: India - http://bit.ly/sunNXT Watch on the web - https://www.sunnxt.com/ #ShanthiNivasaserial #ShanthiNivasaPromo #UdayaTV #KannadaSerial Warm-hearted & devoted housewife Shanthi has always been looked down upon by her husband & family. But a twist of fate puts Shanthi in a position to take on her nemesis, Manthra, to salvage her marriage and family. Urged by her father, Shanthi Nivasais always a high achiever. But her marriage into a patriarchal family dashes her dream of a career. Thus begins Janani's arduous journey toward...

      published: 21 Dec 2024
    • Shanti Ek Aurat Ki Kahani | Title Theme | Soundtrack | Instrumental | Indian TV Serial | 1994

      This is the Soundtrack of Title Theme “Shanti Ek Aurat Ki Kahani” an Indian TV Serial in 1994, which was always in my imaginations. I have just reproduced it and tried to compose the scores as it were. Many of you have their Childhood memory with this serial. I haven't planned it to reproduce this Soundtrack. As I searched around for this Soundtrack in internet, I was shocked that there is no sign about Shanti Serial. It was one of my favourite Indian Drama Serial and the beautiful memory related to this Soundtrack, what I now share with you all. Shanti Cast: Shanti - Ek Aurat Ki Kahani is an Indian television series that aired on DD National in 1994, and was later shown on Indian television channel STAR Plus. The series stars Mandira Bedi as Shanti. Wikipedia Number of episodes: 780 N...

      published: 29 Apr 2020
    • Shanthi Nivasa - Best Scenes | 20 Dec 2024 | Kannada Serial | Udaya TV

      Watch the Best Scene of the Popular Kannada Serial #ShanthiNivasa that airs on Udaya TV. Watch all Udaya TV Serials Immediately after the TV telecast ONLY on SUN NXT App. FREE for Indian Users only Download here: Android - http://bit.ly/SunNxtAdroid iOS: India - http://bit.ly/sunNXT Watch on the web - https://www.sunnxt.com/ Warm-hearted & devoted housewife Shanthi has always been looked down upon by her husband & family. But a twist of fate puts Shanthi in a position to take on her nemesis, Manthra, to salvage her marriage and family. #ShanthiNivasaSerial #ShanthiNivasaBestScene #UdayaTV Don't forget to SUBSCRIBE to Udaya TV YouTube channel - http://bit.ly/2XSQXD1 __Click the BELL ICON to get alerts for every release__ --------------------------------------------------------...

      published: 23 Dec 2024
    • Shanti old doordarshan serial clip

      Shanti old doordarshan serial clip Remember this Mandira Bedi shanti doordarshan serial //Doordarshan childhood Memories of 90's and 80's// CLICK SUBSCRIBE THIS CHANNEL FOR MORE VIDEOS Like on Facebook https://www.facebook.com/DoordarshanChildhoodMemories.com

      published: 20 Nov 2017
    • Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu

      Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu Watch:For More Latest Political/Movie Updates: RED TV Telugu is a leading News/Media Web Channel giving the latest news on Telugu Topics. We Provide Exclusive updates of audio releases, press meets, success parties, exclusive interviews, motion posters, first looks, teasers, trailers & latest movie promos etc,, For all political breaking News & Latest Updates on Tollywood Movie, Tollywood Gossips, please subscribe to our Youtube Channel RED TV Telugu. Do LIKE- SHARE- COMMENT to help us to bring you more stuff... #vijayasaireddy #shanthi #redtvtelugu

      published: 21 Dec 2024
    • Shanti serial intro

      This is title track of popular indian serial Shanti featuring Mandira bedi.Original uploader is Mr. Siddhesh B (please check out this link for original source https://youtu.be/poj5mvoATqw ) It's cassette recorded sound so quality is little poor .kindly bear Contact DD channel for serial uploads #Shanti serial #Mandira_bedi #DD #Doordarshan_old_serials #Amit_behl

      published: 02 Aug 2020
    Shanti TV Serial Opening Theme Song | Composed by Ehsaan Noorani | Shanti | 1994 | DD National
    1:21

    Shanti TV Serial Opening Theme Song | Composed by Ehsaan Noorani | Shanti | 1994 | DD National

    • Order:
    • Duration: 1:21
    • Uploaded Date: 27 Dec 2020
    • views: 308483
    Shanti TV Serial Opening Theme Song Composed by Ehsaan Noorani in 1994 | DD National Please Like , Share And Subscribe My Channel And Motivate Me ..... Thankyou Guys🙏🙏🙏
    https://wn.com/Shanti_Tv_Serial_Opening_Theme_Song_|_Composed_By_Ehsaan_Noorani_|_Shanti_|_1994_|_Dd_National
    Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia News
    1:32

    Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia News

    • Order:
    • Duration: 1:32
    • Uploaded Date: 24 May 2022
    • views: 44868
    Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia News Hello Dosto..mandira bedi serial 1994 मे आयी shanti tv serial शांति धारावाहिक तो आपको याद होगा, उन सभी किरदार जिसमें मुख्य किरदार मंदिरा बेदी का था आज 28 साल बाद कैसे दिखते हैं ये सभी कलाकार full video watch and support my channel. shanti mandira bedi serial shanti dharavahik shanti old tv serial episodes bollywood actress gym outfit hot shanti serial episode 1 shanti dd serial #Mandira_Bedi #Shanti_Serial_1994 #Prakash_Das_Manikpuri #mandira #shanti_mandira_bedi_serial #Filmia_News -----------------Disclaimer--------------------- Copyright Disclaimer Under Section 107 of Copyright Act 1976, allowance is made for "fair use" for purposes such as criticisms, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
    https://wn.com/Shanti_Serial_Cast_Then_And_Now_|_Mandira_Bedi_|_Anup_Soni_|_Shanti_Tv_Serial_|_Filmia_News
    SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarshanserials
    0:58

    SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarshanserials

    • Order:
    • Duration: 0:58
    • Uploaded Date: 05 Feb 2023
    • views: 33625
    SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarshanserials #90stimetravels #oldads #doordarshan Shanti - Ek Aurat Ki Kahani is an Indian television series that aired on DD National in 1994. The series stars Mandira Bedi as Shanti.
    https://wn.com/Shanti_1994_|_Shanti_Title_Theme_|_Shanti_Old_Doordarshan_Serial_Title_Theme_Doordarshanserials
    Shanti TV Serial - Doordarshan DD National (DD1)
    1:29

    Shanti TV Serial - Doordarshan DD National (DD1)

    • Order:
    • Duration: 1:29
    • Uploaded Date: 30 Oct 2020
    • views: 32336
    https://wn.com/Shanti_Tv_Serial_Doordarshan_Dd_National_(Dd1)
    Shanthi Nivasa- Promo | 21 Dec 2024 | Udaya TV Serial | Kannada Serial
    0:31

    Shanthi Nivasa- Promo | 21 Dec 2024 | Udaya TV Serial | Kannada Serial

    • Order:
    • Duration: 0:31
    • Uploaded Date: 21 Dec 2024
    • views: 55162
    Watch the Promo of the Popular Kannada Serial #ShanthiNivasa that airs on Udaya TV. Watch all Udaya TV serials immediately after the TV telecast on Sun NXT app. *Free for Indian Users only Download here: Android - http://bit.ly/SunNxtAdroid iOS: India - http://bit.ly/sunNXT Watch on the web - https://www.sunnxt.com/ #ShanthiNivasaserial #ShanthiNivasaPromo #UdayaTV #KannadaSerial Warm-hearted & devoted housewife Shanthi has always been looked down upon by her husband & family. But a twist of fate puts Shanthi in a position to take on her nemesis, Manthra, to salvage her marriage and family. Urged by her father, Shanthi Nivasais always a high achiever. But her marriage into a patriarchal family dashes her dream of a career. Thus begins Janani's arduous journey towards empowering her family's oppressed women to unleash their power. Don't forget to SUBSCRIBE to Udaya TV YouTube channel - http://bit.ly/2XSQXD1 Don't forget to SUBSCRIBE to Udaya TV YouTube channel - http://bit.ly/2XSQXD1 __Click the BELL ICON to get alerts for every release__ --------------------------------------------------------------------------------- Download SunNXT here: Android: http://bit.ly/SunNxtAdroid iOS: India - http://bit.ly/sunNXT iOS Rest of the World - http://bit.ly/ussunnxt Watch on the web - https://www.sunnxt.com/ --------------------------------------------------------------------------------- Follow Us for More Latest Updates: Facebook: https://www.facebook.com/UdayaTelevision Twitter: https://twitter.com/UdayaTV Instagram: https://www.instagram.com/udayatv ---------------------------------------------------------------------------------- #UdayaTVSerial #SunNXT #UdayaTV #UdayaTVProgram #UdayaTVPromo
    https://wn.com/Shanthi_Nivasa_Promo_|_21_Dec_2024_|_Udaya_Tv_Serial_|_Kannada_Serial
    Shanti Ek Aurat Ki Kahani | Title Theme | Soundtrack | Instrumental | Indian TV Serial | 1994
    3:22

    Shanti Ek Aurat Ki Kahani | Title Theme | Soundtrack | Instrumental | Indian TV Serial | 1994

    • Order:
    • Duration: 3:22
    • Uploaded Date: 29 Apr 2020
    • views: 68504
    This is the Soundtrack of Title Theme “Shanti Ek Aurat Ki Kahani” an Indian TV Serial in 1994, which was always in my imaginations. I have just reproduced it and tried to compose the scores as it were. Many of you have their Childhood memory with this serial. I haven't planned it to reproduce this Soundtrack. As I searched around for this Soundtrack in internet, I was shocked that there is no sign about Shanti Serial. It was one of my favourite Indian Drama Serial and the beautiful memory related to this Soundtrack, what I now share with you all. Shanti Cast: Shanti - Ek Aurat Ki Kahani is an Indian television series that aired on DD National in 1994, and was later shown on Indian television channel STAR Plus. The series stars Mandira Bedi as Shanti. Wikipedia Number of episodes: 780 Network: DD National Language: Hindi Genre: Serial Number of seasons: 1 Composer: Ehsaan Noorani Music Production: Ehsan Latif Shanti Story: The story begins with two friends of the biggest Bollywood production house in the country. Two friends - Kamesh Mahadevan and Rajesh Singh writer, directors and producers live in the lavish Shanti sMansion. Behind the walls of Shanti Mansion lie dark secrets of the past lives of both the friends. Link: https://en.wikipedia.org/wiki/Shanti_... #Shanti #ShantiEkAuratKiKahani #Studio3Sixty #DurDarshanTV
    https://wn.com/Shanti_Ek_Aurat_Ki_Kahani_|_Title_Theme_|_Soundtrack_|_Instrumental_|_Indian_Tv_Serial_|_1994
    Shanthi Nivasa - Best Scenes | 20 Dec 2024 | Kannada Serial | Udaya TV
    8:29

    Shanthi Nivasa - Best Scenes | 20 Dec 2024 | Kannada Serial | Udaya TV

    • Order:
    • Duration: 8:29
    • Uploaded Date: 23 Dec 2024
    • views: 2822
    Watch the Best Scene of the Popular Kannada Serial #ShanthiNivasa that airs on Udaya TV. Watch all Udaya TV Serials Immediately after the TV telecast ONLY on SUN NXT App. FREE for Indian Users only Download here: Android - http://bit.ly/SunNxtAdroid iOS: India - http://bit.ly/sunNXT Watch on the web - https://www.sunnxt.com/ Warm-hearted & devoted housewife Shanthi has always been looked down upon by her husband & family. But a twist of fate puts Shanthi in a position to take on her nemesis, Manthra, to salvage her marriage and family. #ShanthiNivasaSerial #ShanthiNivasaBestScene #UdayaTV Don't forget to SUBSCRIBE to Udaya TV YouTube channel - http://bit.ly/2XSQXD1 __Click the BELL ICON to get alerts for every release__ --------------------------------------------------------------------------------- Follow Us for More Latest Updates: Facebook: https://www.facebook.com/UdayaTelevision Twitter: https://twitter.com/UdayaTV Instagram: https://www.instagram.com/udayatv ---------------------------------------------------------------------------------- #UdayaTVSerial #SunNXT #UdayaTV #UdayaTVProgram #UdayaTVPromo #UdayaTVOfficial
    https://wn.com/Shanthi_Nivasa_Best_Scenes_|_20_Dec_2024_|_Kannada_Serial_|_Udaya_Tv
    Shanti old doordarshan serial clip
    1:20

    Shanti old doordarshan serial clip

    • Order:
    • Duration: 1:20
    • Uploaded Date: 20 Nov 2017
    • views: 149055
    Shanti old doordarshan serial clip Remember this Mandira Bedi shanti doordarshan serial //Doordarshan childhood Memories of 90's and 80's// CLICK SUBSCRIBE THIS CHANNEL FOR MORE VIDEOS Like on Facebook https://www.facebook.com/DoordarshanChildhoodMemories.com
    https://wn.com/Shanti_Old_Doordarshan_Serial_Clip
    Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu
    11:04

    Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu

    • Order:
    • Duration: 11:04
    • Uploaded Date: 21 Dec 2024
    • views: 154
    Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu Watch:For More Latest Political/Movie Updates: RED TV Telugu is a leading News/Media Web Channel giving the latest news on Telugu Topics. We Provide Exclusive updates of audio releases, press meets, success parties, exclusive interviews, motion posters, first looks, teasers, trailers & latest movie promos etc,, For all political breaking News & Latest Updates on Tollywood Movie, Tollywood Gossips, please subscribe to our Youtube Channel RED TV Telugu. Do LIKE- SHARE- COMMENT to help us to bring you more stuff... #vijayasaireddy #shanthi #redtvtelugu
    https://wn.com/Vijyasai_Reddy_Shanti_Latest_Updates_|_Senior_Journalist_Kiran_Poludasu_|_Red_Tv_Telugu
    Shanti serial intro
    1:22

    Shanti serial intro

    • Order:
    • Duration: 1:22
    • Uploaded Date: 02 Aug 2020
    • views: 12084
    This is title track of popular indian serial Shanti featuring Mandira bedi.Original uploader is Mr. Siddhesh B (please check out this link for original source https://youtu.be/poj5mvoATqw ) It's cassette recorded sound so quality is little poor .kindly bear Contact DD channel for serial uploads #Shanti serial #Mandira_bedi #DD #Doordarshan_old_serials #Amit_behl
    https://wn.com/Shanti_Serial_Intro
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • シャンティ(SHANTI) / 魁星 Cover
      2:51
      シャンティ(SHANTI) / 魁星 Coverremove from playlist
    • シャンティ(SHANTI) / wotaku feat. KAITO
      2:46
      シャンティ(SHANTI) / wotaku feat. KAITOremove from playlist
    • [FULL VER] シャンティ (Shanti) - Vivid BAD SQUAD × KAITO | Color Coded Lyrics - Project Sekai
      2:47
      [FULL VER] シャンティ (Shanti) - Vivid BAD SQUAD × KAITO | Color Coded Lyrics - Project Sekairemove from playlist
    • シャンティ Cover / Gero
      2:47
      シャンティ Cover / Geroremove from playlist
    • シャンティ (SHANTI) - Romeo Kyoran (Meloco Kyoran) Cover
      2:46
      シャンティ (SHANTI) - Romeo Kyoran (Meloco Kyoran) Coverremove from playlist
    • Shanti Official Video | Feat. Millind Gaba & Nikki Tamboli |Asli Gold |Satti Dhillon | Bhushan Kumar
      2:53
      Shanti Official Video | Feat. Millind Gaba & Nikki Tamboli |Asli Gold |Satti Dhillon | Bhushan Kumarremove from playlist
    • SHANTI (Animecio & Kunlo Remix) ft. Miori Celesta
      2:19
      SHANTI (Animecio & Kunlo Remix) ft. Miori Celestaremove from playlist
    • 【超学生】シャンティ @歌ってみた
      2:53
      【超学生】シャンティ @歌ってみたremove from playlist
    • Chhattisgarh Kirandul Shanti Hari Mandir Mahotsav | Dalbaran | Danka Kirtan | Maha Naam
      32:57
      Chhattisgarh Kirandul Shanti Hari Mandir Mahotsav | Dalbaran | Danka Kirtan | Maha Naamremove from playlist
    • ශාන්ති ( Shanthi ) - Fill T Ft. Smokio
      3:40
      ශාන්ති ( Shanthi ) - Fill T Ft. Smokioremove from playlist
    PLAYLIST TIME: 0:00 / 58:39

    シャンティ(SHANTI) / 魁星 Cover

    「こっちに付いてきな」 ■original:wotaku 様  https://www.youtube.com/watch?v=POy0RvJeaqM ■illust:REO 様  https://twitter.com/SRiokorr ■mix:Yuki Ito 様  https://twitter.com/itouyuki1224 ■movie:有栖永真 様  https://twitter.com/alice_eishin ※未成年者の視聴者の方々は、下記リンク先の注意事項もご覧ください。 https://www.anycolor.co.jp/notice-for-minors #にじさんじ #魁星 #シャンティ
    2:51
    シャンティ(SHANTI) / 魁星 Cover
    「こっちに付いてきな」 ■original:wotaku 様  https://www.youtube.com/watch?v=POy0RvJeaqM ■illust:REO ...
    published: 15 Mar 2024
    Play in Full Screen
    2:46
    シャンティ(SHANTI) / wotaku feat. KAITO
    『シャンティ』小説が出ます! →https://ga.sbcr.jp/special/shanti/ オフボーカル→https://commons.nicovideo.jp/ma...
    published: 17 Sep 2021
    Play in Full Screen
    2:47
    [FULL VER] シャンティ (Shanti) - Vivid BAD SQUAD × KAITO | Color Coded Lyrics - Project Sekai
    #ProjectSekai #VBS #Shanti #シャンティ #VIVIDBADSQUAD #ビビバス #プロセカ Title: シャンティ (Shanti) Vocal...
    published: 04 Mar 2024
    Play in Full Screen
    2:47
    シャンティ Cover / Gero
    Shanti Happy Candy 本家様⇒https://www.youtube.com/watch?v=POy0RvJeaqM 〇Mix/Mastering:藤浪潤一郎 ...
    published: 21 Dec 2022
    Play in Full Screen
    2:46
    シャンティ (SHANTI) - Romeo Kyoran (Meloco Kyoran) Cover
    hey, don't get surprised like that 【 ┈ * Credits ┈ *】 ♱ Original / wotaku https://youtu....
    published: 01 Apr 2023
    Play in Full Screen
    2:53
    Shanti Official Video | Feat. Millind Gaba & Nikki Tamboli |Asli Gold |Satti Dhillon | Bhushan Kumar
    Gulshan Kumar & T-Series presents Bhushan Kumar's "Shanti " in the voice of Millind Gaba, ...
    published: 22 Jun 2021
    Play in Full Screen
    2:19
    SHANTI (Animecio & Kunlo Remix) ft. Miori Celesta
    Pre-save for streaming services here: https://distrokid.com/hyperfollow/mioricelesta1/shan...
    published: 31 May 2023
    Play in Full Screen
    2:53
    【超学生】シャンティ @歌ってみた
    没入感の研究です サブスク配信 → lnk.to/Shanti_Cover ▋Original  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ・原曲(wotaku さん) ・ht...
    published: 14 Oct 2021
    Play in Full Screen
    32:57
    Chhattisgarh Kirandul Shanti Hari Mandir Mahotsav | Dalbaran | Danka Kirtan | Maha Naam
    ছত্রিশগড় কিরণ্ডুল শান্তি হরি মন্দিরের মহোৎসব অনুষ্ঠান | দল বরন | ডঙ্কা কীর্তন | মহা নাম |...
    published: 22 Apr 2024
    Play in Full Screen
    3:40
    ශාන්ති ( Shanthi ) - Fill T Ft. Smokio
    Produced by - Fill T Video Director - Fill T Lyrics - Fill T Music - Goa ILL Noize Reco...
    published: 17 Dec 2016
    Play in Full Screen

    Shanti

    Shanti, Santhi or Shanthi (from Sanskrit शान्तिः śāntiḥ; √ शम śam: ‘be calm’) means peace, rest, calmness, tranquility, or bliss.

    The poet T. S. Eliot, in his poem The Waste Land (where he spelled it Shantih) translated it as "The Peace which passeth understanding"

    In Sanskrit

  • Inner peace, a state of being mentally and spiritually at peace, with enough knowledge and understanding to keep oneself strong in the face of discord or stress.
  • Ksanti, one of the paramitas of Buddhism.
  • People

  • Shanti Devi (1926–1987), Indian woman at the center of a case of supposed reincarnation
  • Shanti Roney (born 1970), Swedish actor
  • Shanti Snyder (born 1981), Japanese/English lyricist, singer, songwriter, and music TV host
  • Oliver Shanti (born 1948), New Age musician
  • Shanti Wintergate, musician/actress/writer
  • Shanthi Krishna, Tamil and Malayalam movie actress
  • Shanthi Lekha or Rita Irene Quyn (1929–2009), Sri Lankan actress
  • Santhi Soundarajan or Santhi Soundararajan (born 1981), Indian athlete
  • Music

  • "Shanti" (song), a 2002 single by Hitomi Shimatani
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 31:28

    Shanti TV Serial Opening Theme Song | Composed by Ehsaan Noorani | Shanti | 1994 | DD National

    Shanti TV Serial Opening Theme Song Composed by Ehsaan Noorani in 1994 | DD National Please Like , Share And Subscribe My Channel And Motivate Me ..... Thankyou Guys🙏🙏🙏
    1:21
    Shanti TV Serial Opening Theme Song | Composed by Ehsaan Noorani | Shanti | 1994 | DD National
    Shanti TV Serial Opening Theme Song Composed by Ehsaan Noorani in 1994 | DD National Plea...
    published: 27 Dec 2020
    Play in Full Screen
    1:32
    Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia News
    Shanti serial Cast Then and Now | Mandira Bedi | Anup Soni | shanti tv serial | Filmia New...
    published: 24 May 2022
    Play in Full Screen
    0:58
    SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarshanserials
    SHANTI -1994 | Shanti- title theme | Shanti old doordarshan serial title theme #doordarsha...
    published: 05 Feb 2023
    Play in Full Screen
    1:29
    Shanti TV Serial - Doordarshan DD National (DD1)
    published: 30 Oct 2020
    Play in Full Screen
    0:31
    Shanthi Nivasa- Promo | 21 Dec 2024 | Udaya TV Serial | Kannada Serial
    Watch the Promo of the Popular Kannada Serial #ShanthiNivasa that airs on Udaya TV. Wa...
    published: 21 Dec 2024
    Play in Full Screen
    3:22
    Shanti Ek Aurat Ki Kahani | Title Theme | Soundtrack | Instrumental | Indian TV Serial | 1994
    This is the Soundtrack of Title Theme “Shanti Ek Aurat Ki Kahani” an Indian TV Serial in 1...
    published: 29 Apr 2020
    Play in Full Screen
    8:29
    Shanthi Nivasa - Best Scenes | 20 Dec 2024 | Kannada Serial | Udaya TV
    Watch the Best Scene of the Popular Kannada Serial #ShanthiNivasa that airs on Udaya TV. ...
    published: 23 Dec 2024
    Play in Full Screen
    1:20
    Shanti old doordarshan serial clip
    Shanti old doordarshan serial clip Remember this Mandira Bedi shanti doordarshan serial //...
    published: 20 Nov 2017
    Play in Full Screen
    11:04
    Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu
    Vijyasai Reddy - Shanti Latest Updates | Senior Journalist Kiran Poludasu | Red Tv Telugu ...
    published: 21 Dec 2024
    Play in Full Screen
    1:22
    Shanti serial intro
    This is title track of popular indian serial Shanti featuring Mandira bedi.Original uplo...
    published: 02 Aug 2020
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×