- published: 30 Jul 2015
- views: 433036790
'+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; })); }); -->
Shraddha Kapoor (born 3 March 1989) is an Indian film actress and singer who works in Bollywood films. The daughter of actor Shakti Kapoor, she began her acting career with a brief role in the 2010 heist film Teen Patti, and followed it with her first leading role in the teen drama Luv Ka The End (2011). Kapoor received a Filmfare Award for Best Actress nomination for her breakthrough role in the romantic drama Aashiqui 2 (2013) and portrayed the Ophelia character in Haider (2014), an adaptation of William Shakespeare's tragedy Hamlet. Kapoor's biggest commercial successes are the thriller Ek Villain (2014) and the dance film ABCD 2 (2015).
Kapoor was born and raised in Mumbai into a mixed ethnic family. On her father's side, Kapoor is of Punjabi descent, and on her mother's side, she is of predominantly Marathi ancestry. Like her mother, Kapoor has stated that she is a complete Marathi. She has said that she went through a tomboyish phase as a child. Kapoor's family members, including her father Shakti Kapoor and mother Shivangi Kapoor, her elder brother Siddhanth Kapoor, her two aunts Padmini Kolhapure and Tejaswini Kolhapure are actors in films.
Kapoor is an Indian surname of Punjabi origin. Notable people bearing this name include:
The Chhimba are a Sikh clan. Their traditional occupation in the Samba district of India was dying and hand-printing calico fabric. It was probably some of these people who moved to areas of Himachal Pradesh, where they created a somewhat different style of printing cloth that was much favoured by the Gaddi people of the region.
👉🏻 SUBSCRIBE to Zee Music Company - https://bit.ly/2yPcBkS Catch the full video of Sun Saathiya from Disney's ABCD 2 starring Varun Dhawan & Shraddha Kapoor. Stream it on: Gaana: http://bit.ly/2R6EpWj JioSaavn: http://bit.ly/2DzzcDG itunes: https://apple.co/2R6tdsU Amazon Play: https://amzn.to/2xWNOqS Hungama: http://bit.ly/2Qg51TH There is an altogether new exciting way to experience this song in a game, playing like a musician. A lot of music lovers are enjoying it. Download TAPPI now: Android: https://bit.ly/3p2yO4A iOS: https://apple.co/352O9Kd Title: Sun Saathiya Movie: Disney's ABCD 2 Music Composer: Sachin – Jigar Lyrics: Priya Saraiya Singers: Priya Saraiya, Divya Kumar Director: Remo D’Souza Producer: Siddharth Roy Kapur Production House: Disney To catch all the updates o...
She’s a jhoothi, innit? Shraddha Kapoor gets on the hot seat to take the Lie Detector Challenge! Find out if she can get out of answering these tricky questions just as flawlessly as Tinny gets out of her relationships! #TuJhoothiMainMakkar, now streaming, only on Netflix! 🍿 Playlists ————— Official Trailers ►► https://www.youtube.com/watch?v=qm7zyCRGttc&list=PLkF7RYTIPWdf2KFc7TTkF_WD2me9fSrcV Official Teasers ►► https://www.youtube.com/watch?v=QMgAKOE7YPw&list=PLkF7RYTIPWdchaTB8buoKBFbE9qw-_FP5 Tanmay Reacts ►► https://www.youtube.com/watch?v=D9RweIJeKsk&list=PLkF7RYTIPWddw_jSmocypt1di1i7fg6QK Menu Please ►► https://www.youtube.com/watch?v=xxnC4XCvlJI&list=PLkF7RYTIPWdcnwY640drImE-HiqGOxM4X Netflix For Kids ►► https://www.youtube.com/watch?v=U15sCqscZAk&list=PLkF7RYTIPWdc2Mw1Z...
#RanbirKapoor #ShraddhaKapoor #LuvRanjan Get flirty, get groovy with Maine Pi Rakhi Hai song from the movie Tu Jhoothi Main Makkaar starring Ranbir & Shraddha. Song Out Now! Tu Jhoothi Main Makkaar in cinemas now! #mainepirakhihai #tujhoothimainmakkaar #ranbirkapoor #sharaddhakapoor #luvranjan #pritam #shreyaghoshal #divyakumar #amitabhbhattacharya Song Credits: Song: Maine Pi Rakhi Hai Music: Pritam Lyrics: Amitabh Bhattacharya Singers: Shreya Ghoshal & Divya Kumar Director of Choreography: Bosco Caesar Production Designer: Manini Mishra Music Label: T-Series Movie Credits: Gulshan Kumar, Bhushan Kumar & T-Series Present A Luv Films Production Tu Jhoothi Main Makkaar A Luv Ranjan Film Creative Directors: Anshul Sharma & Rahul Mody Written By: Rahul Mody & Luv Ranjan Produced by: ...
Presenting the first video song "Dus Bahane 2.0" from the upcoming Bollywood movie #Baaghi3, Sung by Vishal & Shekhar, Featuring KK, Shaan & Tulsi Kumar. Get ready to witness the most badass song of the year that will definitely get you grooving. A Sajid Nadiadwala Franchise Directed by Ahmed Khan Produced by Sajid Nadiadwala Presented & Co-produced by Fox Star Studios A Nadiadwala Grandson Entertainment production Baaghi 3 Movie ► Releasing on 6th March 2020. --------------------------------------------------------------- Connect with T-SERIES: 👉 http://bit.ly/TSeriesYouTube ---------------------------------------------------------------- Make your Likee Video Here: https://l.likee.video/m/4FT2Ss https://l.likee.video/m/byafH3 ----------------------------------------------------------...
T-Series presents Cham Cham Full Video Song from Bollywood movie BAAGHI directed by Sabbir Khan, starring Tiger Shroff & Shraddha Kapoor in lead roles. The song Cham Cham is sung by Monali Thakur in the music composition of Meet Bros and lyrics written by Kumaar. ►Click to watch Sab Tera Video Song - https://youtu.be/WRQHV3kDcyo ►Click to Watch Let's Talk About Love Video Song - https://youtu.be/_c5B2I5k7KM SONG- CHAM CHAM MUSIC - MEET BROS SINGERS - MEET BROS FT. MONALI THAKUR LYRICS-KUMAAR RAP WRITTEN & PERFORMED BY - MEET BROS PROGRAMMED BY- SOURAV ROY LIVE PERCUSSIONS - NIKHIL KOPARDE CHIEF MUSIC ASSISTANT - UDDIPAN SHARMA MUSIC ASSISTANT- ROHIT RG SONG RECORDED BY- GAUTAM CHAKRABORTTY AND UDDIPAN SHARMA @MEET BROS RECORDING STUDIO MIXED AND MASTERED BY-ERIC PILLAI (FUTURE SOUND OF ...
Presenting the full video song "Illegal Weapon 2.0" from the bollywood movie StreetDancer3D, The movie features Varun Dhawan, Shraddha Kapoor, Nora Fatehi, and Prabhu Deva in lead roles and directed by Remo D'Souza, produced by Bhushan Kumar, Divya Khosla Kumar, Krishan Kumar & Lizelle D’Souza. Gulshan Kumar And T-Series Present A T-Series Films Production In Association With Remo D’Souza Entertainment Pvt. Ltd. & Dance Film Company Ltd. Uk, Bhushan Kumar’s Street Dancer 3D. #StreetDancer3D 🎬 Releasing► on 24 January 2020 --------------------------------------------------------------- Connect with T-SERIES: 👉 http://bit.ly/TSeriesYouTube ---------------------------------------------------------------- ---------------------------------------------------------------- ♪ Full Song Availabl...
#RanbirKapoor #ShraddhaKapoor #LuvRanjan Get flirty, get groovy with Maine Pi Rakhi Hai song from the movie Tu Jhoothi Main Makkaar starring Ranbir & Shraddha. Song Credits: Song: Maine Pi Rakhi Hai Music: Pritam Lyrics: Amitabh Bhattacharya Singers: Shreya Ghoshal & Divya Kumar Director of Choreography: Bosco Caesar Production Designer: Manini Mishra Music Label: T-Series Movie Credits: Gulshan Kumar, Bhushan Kumar & T-Series Present A Luv Films Production Tu Jhoothi Main Makkaar A Luv Ranjan Film Creative Directors: Anshul Sharma & Rahul Mody Written By: Rahul Mody & Luv Ranjan Produced by: Luv Ranjan & Ankur Garg Story: Luv Ranjan Background Score: Hitesh Sonik Director of Photography: Santhana Krishnan Ravichandran Film Editors: Akiv Ali & Chetan Solanki Production Designer...
T-Series presents Shraddha Kapoor's SAB TERA Video Song from upcoming movie Baaghi, starring Tiger Shroff & Shraddha Kapoor in lead roles, directed by Sabbir Khan & produced by Sajid Nadiawala. The song Sab Tera is beautifully song by Armaan Malik & Shraddha Kapoor in the music composition of Amaal Mallik & lyrics by Sanjiv Chaturvedi. 👉 Click to watch BAAGHI Trailer - https://youtu.be/ZsSP0Qszt-U SONG : SAB TERA SINGERS : ARMAAN MALIK, SHRADDHA KAPOOR MUSIC : AMAAL MALLIK LYRICS : SANJEEV CHATURVEDI Song Programmed by Akshay & Akash. Song Mixed And Mastered By-Eric Pillai (Future Sound Of Bombay). Assit Mix Engineers - Michael Pillai , Lucky MUSIC TEAM : Music Assistants – Yash Narvekar & Zaid Patni. Live Guitars, Dobro & Banjos – Ankur Mukherjee. Backup Vocals – Amaal Mallik. Song Reco...
#RanbirKapoor #ShraddhaKapoor #LuvRanjan Put on your dancing shoes and get ready to groove on Show Me The Thumka song from the movie Tu Jhoothi Main Makkaar starring Ranbir & Shraddha. ♪Full Song Available on♪ JioSaavn: https://bit.ly/3xDYDxb Spotify: https://spoti.fi/3IhsWPd Hungama: https://bit.ly/3km8lkJ Apple Music: https://apple.co/3Kxeo0q Amazon Prime Music: https://amzn.to/3EqrJnH Wynk: https://bit.ly/3kijV0n Resso: https://bit.ly/3kijV0n iTunes: https://apple.co/3Kxeo0q YouTube Music: https://bit.ly/3xEVeOU Song Credits: Song: Show Me The Thumka Music: Pritam Lyrics: Amitabh Bhattacharya Singers: Sunidhi Chauhan & Shashwat Singh Music Arranger and Programmer - AM.AN Additional Music Programmer - Meghdeep Bose & Abhijit Nalani Sound Design - DJ Phukan & Ashwin Kulkarni Mix & ...
About this video: In this video, we will talk about Alia Bhatt & Ranbir Kapoor Business Mail id: [email protected] Our Instagram page: https://www.instagram.com/spillbee/
Lyrics: (Turn on Captions in Player for Lyrics) कर्पूरगौरं करुणावतारं, संसारसारम् भुजगेन्द्रहारम्। (KarpuuraGauram KarunaAvataram, Sansara-Saram BhujagendraHaram) सदावसन्तं हृदयारविन्दे, भवं भवानीसहितं नमामि॥ (SadaVasantam HradayaAravinde, Bhavam BhawaneeSahitam Namami॥) Mangalam Bhagwan Vishnu Mantra मङ्गलम् भगवान विष्णुः, मङ्गलम् गरुणध्वजः। (Mangalam Bhagwan Vishnuh, Mangalam Garunadhwajah। ) मङ्गलम् पुण्डरी काक्षः, मङ्गलाय तनो हरिः॥ (Mangalam Pundari Kakshah, Mangalaya Tano Harih॥) Sarva Mangala Mangalye सर्वमङ्गलमाङ्गल्ये शिवे सर्वार्थसाधिके । (Sarva Manggala Maanggalye Shive Sarvaartha Saadhike |) शरण्ये त्र्यम्बके गौरि नारायणि नमोऽस्तु ते ॥ (Sharannye Tryambake Gauri Naaraayanni Namostu Te ||) ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬ Stay Connected with us! ►Subscribe Our Channel N...
Karpur Gauram || Karunavataram || shlok mp3|| कर्पूरगौरं करुणावतारं || Shruti Trivedi Produce & Present By Maa Radio -Patan Producer Raju Prajapati & Aryan Prajapati Song :Karpur Gauram Karunavataram Singer :Shruti Trivedi Lyrics :Patel Vrund Music :Patel Vrund - Nilesh Patel - Vipul Pate Label : Maa Radio #Karpur_Gauram#karunavtaram#ShrutiTrivedi રોજ નવા અપડૅટ ની માહિતી માટે ૩ ચેનલ ને subcribe કરો. Maa Radio ................Music Label & Copyright : Maa Radio................... ----------------------------------------------------------------------------------------------------------- Youtube Channel Subcribe On:- ----------------------------------------------------------------------------------------------------------- https://www.youtube.com/channel/UCFQCACAikff2_HI6UK1_LLQ?v...
Amar Bangla : News18 Bangla-র খবরে শিলমোহর, ভাড়াটে খুনি দিয়েই খুন Titagarh-এর TMC নেতাকে। Gidhni-তে শ্যামাকালি মন্দিরে বিশেষ পুজো। #amarbangla #titagarh #tmc #news18bangla #banglanews News18 Bangla is an exclusive news channel on YouTube that streams news related to West Bengal, Nation, and the World. The channel also has contemporary topic-based debate and subject special series which are interesting & informative. Our channel aims to update the viewers with the current news. নিউজ 18 বাংলা একটি আঞ্চলিক নিউজ চ্যানেল যেখানে আপনি পশ্চিমবঙ্গের, দেশের এবং বিশ্বের নানা খবর জানতে পারবেন। খবরের সঙ্গে আপনি এই চ্যানেলে সমসাময়িক বিতর্ক ও তথ্যপূর্ণ স্পেশাল সিরিজ দেখতে পারবেন। Follow Us On: YouTube : Subscribe to our channel for the latest news updates: https://tinyurl.com/y2lvq Twitter : http...
What happens when when people meet through dating apps vs matrimony websites. This video includes some anecdotes of both sides of spectrum. HAPPY DATING or HAPPY MARRIAGE :) Whatever suits you. Do share your experiences in the comments. Upcoming Live Shows: DELHI - 4th June - https://in.bookmyshow.com/events/gaurav-kapoor-live/ET00317331?webview=true GURGAON - 10th June - https://in.bookmyshow.com/national-capital-region-ncr/events/gaurav-kapoor-live/ET00313122/bookingStep/tickets?city=Delhi-NCR&date=20230610&time=1730&venueCode=SXOG DELHI (Dwarka) - 18th June - https://in.bookmyshow.com/events/gaurav-kapoor-live/ET00317331?webview=true DELHI (Punjabi Bagh) - https://in.bookmyshow.com/national-capital-region-ncr/events/gaurav-kapoor-live/ET00313122/bookingStep/tickets?city=Delhi-NCR&...
Presenting your favourite dance anthem #NadiyonPaaar to make you groove. #NadiyonPaar #LetTheMusicPlay #Janhvi #Dance Singer - Shamur, Rashmeet Kaur, IP Singh, Sachin- Jigar New Version Composed by - Sachin - Jigar New Lyrics by - IP Singh , Jigar Saraiya Arranged & Programmed - Sachin- Jigar Assistant Programmers - Hrishikesh Gangan & Abhishek Singh Music Production Head - Romil Ved Mix & Mastered - Eric Pillai @ FSOB Studios Assistant Mix Engineer - Michael Edwin Pillai Original Singer - Shamur Original Lyrics and Composition - Emanuele Marascia, Alessandro Murru “Let The Music Play” - Licensed courtesy of Deeperfect a division of Kucs Sound 4 SAS. Song – Nadiyon Paar (Let the Music Play Again) Film - Roohi Featuring: Rajkummar Rao, Janhvi Kapoor, Varun Sharma Directed by: Hardik...
Ranbir Kapoor HATES Alia Bhatt's Lipstick and the internet thinks this is TOXIC. But is it? Or is it normal part of a relationship? Or is the outrage justified? Let's find out! #aliabhatt #ranbirkapoor #opinion #vedantrusty Timestamps: Alia vs Ranbir // 00:00 What is the outrage? // 00:53 Public Court's Judgement // 02:17 Internet's Hypocrisy // 03:05 Parasocial & Projections // 04:02 Fighting with a void // 05:45 Outro // 06:07 __ // Let's Connect If you're the Instagram type, https://instagram.com/vedant.rusty If you're the Twitter type, https://twitter.com/vedantrusty
Watch out for episode 01 of Hum - The Kapoor Girls Use code ALTTPM3271 and Get 20% DISCOUNT on ALTT 2 Months Subscription Pack or Use code ALTT12MS8181 and Get 25% DISCOUNT on ALTT 12 Months Subscription Pack Download our app now - http://bit.ly/ALTBalaji_Download_Now Credits Written By - Vibha Singh Directed By - Partho Mitra. Subscribe to our YouTube channel to get the latest updates on new Videos: https://www.youtube.com/@Altt_Official Twitter - https://twitter.com/altt_in Instagram - https://www.instagram.com/altt.in/ YouTube-https://www.youtube.com/@Altt_Official Facebook - https://www.facebook.com/altt.in About ALTT: ALTT, a subsidiary of Balaji Telefilms Limited, is the Group’s foray into the Digital Entertainment space. After conquering television and making a strong mark...
Series with Dr. Narinder Singh Kapoor l ਬਦਲਾ ਨਾ ਲਓ,ਦੂਜੇ ਨੂੰ ਮਿਹਰਬਾਨੀਆਂ ਨਾਲ ਮਾਰੋ l EP-6 l l Rupinder Kaur Sandhu l B Social #NarinderSinghKapoor #RupinderKaurSandhu #serieswithdrnarindersinghkapoor Youtube Link : https://www.youtube.com/c/BSocialOfficial Facebook Link : https://www.facebook.com/bsocialofficial Instagram Link : https://www.instagram.com/bsocialofficial Guest: Dr Narinder Singh Kapoor Anchor: Rupinder Kaur Sandhu Cameramen: Harmanpreet Singh & Varinder Singh Edit: Jaspal Singh Gill Digital Producer: Gurdeep Kaur Grewal Label: B Social
Listen & Download "Kar Gayi Chull" : https://smi.lnk.to/KarGayiChull Car – Check! Clothes – Check! Ladki Beautiful – Check! 👉 Subscribe To Sony Music India - http://bit.ly/SonyMusic_YouTube The Craziest House Party Song of the Year is here, Kar Gayi Chull featuring the gorgeous Alia Bhatt and the talented Sidharth Malhotra from the upcoming Bollywood film, Kapoor & Sons (Since 1921). The song is composed by Badshah, recreated by Amaal Mallik, written by Badshah & Kumaar and sung in the widely loved voices of Badshah, Fazilpuria, Sukriti Kakar and Neha Kakkar! #KarGayiChull #Chull #badshah Song Name – Kar Gayi Chull Movie – Kapoor & Sons (Since 1921) Singer – Badshah; Fazilpuria; Sukriti Kakar; Neha Kakkar Lyrics – Badshah; Kumaar Original Music Composed by – Badshah Music Compo...
🔴Subscribe Like And Share My Channel If You Like My Video Thanks https://youtu.be/F14kwbdG4Eo Zaton ki Tareekh,109 Years Old Caste, Caste Cheema, Caste Chimba, Caste Dhillon, Asian Cast System Zaton ki Tareekh,109 Years Old Caste History, Caste Dogar, Doom, Domna, Dosali, Interesting Facts About Caste قرآن پاک کی سورۃ الحجرات میں اللہ تعالیٰ فرماتا ہے کہ ہم نے تم کو ایک مرد اور ایک عورت سے پیدا کیا ہے، پھر تمہاری ذاتیں اور برادریاں بنادیں تاکہ تم ایک دوسرے کو پہچانو، درحقیقت اللہ کے نزدیک تم میں سے زیادہ عزت والا وہ ہے جو تمہارے اندر سب سے زیادہ پرہیزگار ہے، اس آیت کے مطالعہ کے بعد میرے اندر قوم اور برادریوں کی حقیقت اور حسب و نسب معلوم کرنے کا تجسس پیدا ہوا، کھوج لگانے پر معلوم ہوا کہ دور حاضر میں پنجاب میں تقریباً اڑھائی ہزار ذاتیں ہیں، ان کو اگر قدیم تاریخ کے تناظر میں دیکھا جائے تو ...
#SahanWich #InMotionPictures In Motion Pictures & Vikas Chaubey presents a new melody song "Sahan Wich" sing by Shivam Chhimba which have a love story from one side in london. New Songs Punjabi 2021 | Sandeep battu & Ditipriya B | New Punjabi Songs 2021 | Latest Punjabi Song 2021 Song- Sahan Wich Singer- Shivam Chhimba Main lead- Sandeep Battu Female lead- Ditipriya B Lyrics & Composition - Maninder Singh Maangat Music- DC-Boss Mixing & Mastering- Amit Joshi Director (India)-Vikas Chaubey Dop (India)-Jahangir Ansari (In Motion Pictures) Director (London)-Sandeep Battu Dop (London)-Prince Hoc Associate Director- Akash Chaubey Video Supervisor- Praveen Sharma Editor- Jahangir Ansari (In Motion Pictures) Media Partner- Meet Promotion Hair & Makeup-The Beauty Bar Camera Attendent-Chandan Ka...
♪Phone Naal Viah (Official Video) Shivam Chhimba ft Naman & Sunaina | latest Punjabi song 2022 TPZ Records presents the very beautiful song Phone Naal Viah in the Voice of very talented Shivam Chhimba. Lyrics are penned by Harjeet Singh, and the music is given by DC Boss. The video is Produced by Gs Sandhu & Pinkeesh Devedaa ( Talent Promoterz ). #phonenaalviah #shivamchhimba #latestpunjabisong Enjoy & Stay connected. 'LIKE' if you ♥ this song. Subscribe To TPZ Records Channel For Amazing Songs. ✅ Subscribe! ➜ https://bit.ly/TPZRECORDS 🔔 Click On The Bell + Turn On Notifications. ————————————————————————————— ♪ Stream / Download Full Song ♪ ♪Spotify: https://spoti.fi/3QRXqKR ♪Apple: https://apple.co/3Tle5YA ♪Amazon Prime Music - https://amzn.to/3wwFjBO ♪ ITunes - https://apple.c...
SHIVAM CHHIMBA MUSIC Presents Track - SWEATER Singer/Lyrics - Shivam Chhimba Male Artist : Sandeep Battu Music - Amit Joshi Mix & MAster - UK Digital Records Violin : Rabin Karki (Kathmandu) Flute : Ratna BK (Kathmandu) Video/Edit/DOP : Director 7vinder Editing - Ink-Stoodio Makeup Artist - Dharmveer Pattaka & Saddab Dream Light Publicity Design - Chhimba Saab Label - Shivam Chhimba Music ♪ Available on ♪ JioSaavn - https://bit.ly/2XF8Oj5 Gaana - https://bit.ly/3sAlENY Wynk - https://bit.ly/35EXt7d Hungama - https://bit.ly/3bG3W5l Apple Music - https://apple.co/38y1Hhb ♪ Callertune Details ♪ Airtel - Dial 5432117597275 Idea - Dial 53712275797 Vodafone - Dial 53712275797 BSNL (E) - sms BT12275797 send to 56700 BSNL (S) - sms BT12275797 send to 56700 Enjoy And Stay Connected With Art...
Song :Vehle Singer : Shivam Chhimba Lyrics :Shivam Chhimba Music Producer-Nitin Arora (98145-55888) Label : Natraj Music www.natrajmusiccompany.com Like * Comment * Share - Don't forget to LIKE the video and write your COMMENT's If You Like The Video Don't Forget To Share With Others & Also Share Your Views.
SHIVAM CHHIMBA MUSIC Presents Track - SAD FACE Singer - Shivam Chhimba Lyrics - Prince Dheen Music - DC-BOSS Director - Sandeep Battu DOP - Parmil Dhillon Editing - Ink-Stoodio Female Artist - Somya Kapil Makeup Artist - Khushboo Thakur Publicity Design - Chhimba Saab Online Promotion - Digital Meet Media Label - Shivam Chhimba Music ♪ Available on ♪ JioSaavn - https://bit.ly/38w7ZxC Gaana - https://bit.ly/3fFBYWV Wynk - https://bit.ly/3gBl3Vv Hungama - https://bit.ly/2D9zhOG Amazon Prime Music- https://amzn.to/3f8pNS2 Spotify - https://spoti.fi/3f5Okag Apple Music - https://apple.co/38y1Hhb ♪ Callertune Details ♪ Airtel - 5432117444366 Idea - 53712044918 Vodafone - 53712044918 BSNL (E) - sms BT12044918 send to 56700 BSNL (S) - sms BT12044918 send to 56700 Enjoy And Stay Connected W...
Subscribe Now:-https://goo.gl/mS6k6x -~-~~-~~~-~~-~- Kachehri is Punjabi Pop Video Song sung By punjabi singer Shivam Chhimba, Music By Dc Boss, lyrics by Prince Gurpal , editing and publicity design by ink studio and produced by Lost Virsa Records(9988989785)
Hi This video is continuation of last video about info of different castes in Sikhs. My contacts: Facebook:https://www.facebook.com/puma.sadhia Instagram:https://www.instagram.com/puma_sadhia Twitter:https://www.twitter.com/pumasadhia E-mail:[email protected] #SikhHistory #JattHistory
Shraddha Kapoor (born 3 March 1989) is an Indian film actress and singer who works in Bollywood films. The daughter of actor Shakti Kapoor, she began her acting career with a brief role in the 2010 heist film Teen Patti, and followed it with her first leading role in the teen drama Luv Ka The End (2011). Kapoor received a Filmfare Award for Best Actress nomination for her breakthrough role in the romantic drama Aashiqui 2 (2013) and portrayed the Ophelia character in Haider (2014), an adaptation of William Shakespeare's tragedy Hamlet. Kapoor's biggest commercial successes are the thriller Ek Villain (2014) and the dance film ABCD 2 (2015).
Kapoor was born and raised in Mumbai into a mixed ethnic family. On her father's side, Kapoor is of Punjabi descent, and on her mother's side, she is of predominantly Marathi ancestry. Like her mother, Kapoor has stated that she is a complete Marathi. She has said that she went through a tomboyish phase as a child. Kapoor's family members, including her father Shakti Kapoor and mother Shivangi Kapoor, her elder brother Siddhanth Kapoor, her two aunts Padmini Kolhapure and Tejaswini Kolhapure are actors in films.