'+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;
}));
});
-->
BREAKING | US Election Results | Donald Trump speaks after winning the 2024 Presidential Election
BREAKING | US Election Results | Donald Trump elected 47th president | USA Election News | Harris | JD Vance
#donaldtrump #victory #winningspeech #live #usaelections #america #kamalaharris
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: ...
published: 06 Nov 2024
USA Election Result LIVE updates |Donald trump’s victory speech |Trump vs Harris| USA Election News
USA Election Result LIVE updates |Donald trump’s victory speech | Trump vs Harris | USA Election News
#donaldtrump #uselections2024 #live #uselection #kamalaharris #trump
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.c...
published: 06 Nov 2024
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
#brampton #canada #protest #hindu #hindutemple #khalistan #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.faceb...
published: 05 Nov 2024
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
#jammukashmirassembly #article370 #live #jammukashmir #omarabdullah #bjp #congress #pdp
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/A...
published: 06 Nov 2024
“Deeply concerning, unacceptable…” EAM Jaishankar condemns hateful attack on Hindu Temple in Canada
India’s EAM S Jaishankar on November 04 condemned the violent attack on Hindus at a temple in Canada’s Brampton. He said its deeply concerning and unacceptable. He said, “I think what happened yesterday at the Hindu Temple in Canada was obviously deeply concerning and you would have seen the statement first by our official spokesperson and also the expression of concern by our Prime Minister yesterday. So that should I think convey to you how deeply we feel about it.” “One, Canada has developed a pattern of making allegations without providing specifics. Secondly, when we look at Canada for us the fact that they are putting our diplomats under surveillance is something which is unacceptable.”
#jaishankar #indiacanada #khalistan
Join ANI's YouTube membership to get access to perks:
https...
published: 05 Nov 2024
“India can chew gum & walk at same time…” EAM Jaishankar explains how India navigates different ties
Speaking at the inaugural session of ‘Raisina Down Under’ in Canberra, Australia on November 05, External Affairs Minister S Jaishankar explained how India navigates different relationships with countries.
#SJaishankar #RaisinaDownUnder #Canberra
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official websit...
published: 05 Nov 2024
EAM S Jaishankar LIVE | ‘Raisina Down Under 2024 ’ | Penny Wong | Winston Peters | India | Australia
EAM Jaishankar, New Zealand Deputy Prime Minister, Foreign Minister Winston Peters, Australian Foreign Minister Penny Wong's engaging conversation at ‘Raisina Down Under’ | CANBERRA, AUSTRALIA
#sjaishankar #jaishankar #raisinalive #india #australia
[Source- MEA YT]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit...
published: 06 Nov 2024
EP-234 | Exile in Banaras, Battle with Cancer, Bollywood Journey & Nepali Politics | Manisha Koirala
Manisha Koirala is a renowned Nepali-Indian actress known for her exceptional talent and versatility in Hindi, Nepali, and South Indian cinema. Born in Kathmandu, she comes from a prominent Nepali political family. Manisha has delivered some powerful performances in iconic films like Bombay, 1942: A Love Story, Dil Se, and Khamoshi: The Musical. Known for her skill in portraying deep and complex characters, she returned to the spotlight with the OTT series Heeramandi, earning significant critical acclaim.
In this episode of the ANI Podcast with Smita Prakash, veteran actress Manisha Koirala opens up about her journey in Bollywood, sharing behind-the-scenes stories from her acclaimed films such as 1942: A Love Story, Khamoshi, Dil Se, Bombay, and Heeramandi. She reflects on her experiences...
published: 05 Nov 2024
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
#jaishreeram #jammukashmirassembly #article370 #omarabdullah #bjp #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https:...
published: 06 Nov 2024
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
#uselections2024 #results #donaldtrump #kamalaharris
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/AN...
published: 06 Nov 2024
0:00
BREAKING | US Election Results | Donald Trump speaks after winning the 2024 Presidential Election
BREAKING | US Election Results | Donald Trump elected 47th president | USA Election News | Harris | JD Vance
#donaldtrump #victory #winningspeech #live #usaele...
BREAKING | US Election Results | Donald Trump elected 47th president | USA Election News | Harris | JD Vance
#donaldtrump #victory #winningspeech #live #usaelections #america #kamalaharris
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/Breaking_|_US_Election_Results_|_Donald_Trump_Speaks_After_Winning_The_2024_Presidential_Election
BREAKING | US Election Results | Donald Trump elected 47th president | USA Election News | Harris | JD Vance
#donaldtrump #victory #winningspeech #live #usaelections #america #kamalaharris
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 06 Nov 2024
views: 26515
0:00
USA Election Result LIVE updates |Donald trump’s victory speech |Trump vs Harris| USA Election News
USA Election Result LIVE updates |Donald trump’s victory speech | Trump vs Harris | USA Election News
#donaldtrump #uselections2024 #live #uselection #kamalah...
USA Election Result LIVE updates |Donald trump’s victory speech | Trump vs Harris | USA Election News
#donaldtrump #uselections2024 #live #uselection #kamalaharris #trump
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/USA_Election_Result_Live_Updates_|Donald_Trump’S_Victory_Speech_|Trump_Vs_Harris|_USA_Election_News
USA Election Result LIVE updates |Donald trump’s victory speech | Trump vs Harris | USA Election News
#donaldtrump #uselections2024 #live #uselection #kamalaharris #trump
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 06 Nov 2024
views: 69826
11:24:55
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
#brampton #canada #protest #hindu #hindutemple #khalistan #live
Jo...
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
#brampton #canada #protest #hindu #hindutemple #khalistan #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/Thousands_Take_Out_Solidarity_Rally_In_Brampton_Against_Attacks_On_Hindu_Temples_In_Canada
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
#brampton #canada #protest #hindu #hindutemple #khalistan #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 05 Nov 2024
views: 173302
0:00
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
#jammukashmirassembly #article370 #live #jammukashmir #omara...
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
#jammukashmirassembly #article370 #live #jammukashmir #omarabdullah #bjp #congress #pdp
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/J_K_Assembly_Session_Day_3_Live_Updates_|_Srinagar_|_Cm_Omar_Abdullah_|_Nc_|_Pdp_|_Bjp_|_Congress
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
#jammukashmirassembly #article370 #live #jammukashmir #omarabdullah #bjp #congress #pdp
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 06 Nov 2024
views: 48500
5:12
“Deeply concerning, unacceptable…” EAM Jaishankar condemns hateful attack on Hindu Temple in Canada
India’s EAM S Jaishankar on November 04 condemned the violent attack on Hindus at a temple in Canada’s Brampton. He said its deeply concerning and unacceptable....
India’s EAM S Jaishankar on November 04 condemned the violent attack on Hindus at a temple in Canada’s Brampton. He said its deeply concerning and unacceptable. He said, “I think what happened yesterday at the Hindu Temple in Canada was obviously deeply concerning and you would have seen the statement first by our official spokesperson and also the expression of concern by our Prime Minister yesterday. So that should I think convey to you how deeply we feel about it.” “One, Canada has developed a pattern of making allegations without providing specifics. Secondly, when we look at Canada for us the fact that they are putting our diplomats under surveillance is something which is unacceptable.”
#jaishankar #indiacanada #khalistan
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/“Deeply_Concerning,_Unacceptable…”_Eam_Jaishankar_Condemns_Hateful_Attack_On_Hindu_Temple_In_Canada
India’s EAM S Jaishankar on November 04 condemned the violent attack on Hindus at a temple in Canada’s Brampton. He said its deeply concerning and unacceptable. He said, “I think what happened yesterday at the Hindu Temple in Canada was obviously deeply concerning and you would have seen the statement first by our official spokesperson and also the expression of concern by our Prime Minister yesterday. So that should I think convey to you how deeply we feel about it.” “One, Canada has developed a pattern of making allegations without providing specifics. Secondly, when we look at Canada for us the fact that they are putting our diplomats under surveillance is something which is unacceptable.”
#jaishankar #indiacanada #khalistan
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 05 Nov 2024
views: 99344
5:13
“India can chew gum & walk at same time…” EAM Jaishankar explains how India navigates different ties
Speaking at the inaugural session of ‘Raisina Down Under’ in Canberra, Australia on November 05, External Affairs Minister S Jaishankar explained how India navi...
Speaking at the inaugural session of ‘Raisina Down Under’ in Canberra, Australia on November 05, External Affairs Minister S Jaishankar explained how India navigates different relationships with countries.
#SJaishankar #RaisinaDownUnder #Canberra
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/“India_Can_Chew_Gum_Walk_At_Same_Time…”_Eam_Jaishankar_Explains_How_India_Navigates_Different_Ties
Speaking at the inaugural session of ‘Raisina Down Under’ in Canberra, Australia on November 05, External Affairs Minister S Jaishankar explained how India navigates different relationships with countries.
#SJaishankar #RaisinaDownUnder #Canberra
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 05 Nov 2024
views: 51928
2:22:11
EAM S Jaishankar LIVE | ‘Raisina Down Under 2024 ’ | Penny Wong | Winston Peters | India | Australia
EAM Jaishankar, New Zealand Deputy Prime Minister, Foreign Minister Winston Peters, Australian Foreign Minister Penny Wong's engaging conversation at ‘Raisina D...
EAM Jaishankar, New Zealand Deputy Prime Minister, Foreign Minister Winston Peters, Australian Foreign Minister Penny Wong's engaging conversation at ‘Raisina Down Under’ | CANBERRA, AUSTRALIA
#sjaishankar #jaishankar #raisinalive #india #australia
[Source- MEA YT]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/Eam_S_Jaishankar_Live_|_‘Raisina_Down_Under_2024_’_|_Penny_Wong_|_Winston_Peters_|_India_|_Australia
EAM Jaishankar, New Zealand Deputy Prime Minister, Foreign Minister Winston Peters, Australian Foreign Minister Penny Wong's engaging conversation at ‘Raisina Down Under’ | CANBERRA, AUSTRALIA
#sjaishankar #jaishankar #raisinalive #india #australia
[Source- MEA YT]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 06 Nov 2024
views: 2881
1:19:09
EP-234 | Exile in Banaras, Battle with Cancer, Bollywood Journey & Nepali Politics | Manisha Koirala
Manisha Koirala is a renowned Nepali-Indian actress known for her exceptional talent and versatility in Hindi, Nepali, and South Indian cinema. Born in Kathmand...
Manisha Koirala is a renowned Nepali-Indian actress known for her exceptional talent and versatility in Hindi, Nepali, and South Indian cinema. Born in Kathmandu, she comes from a prominent Nepali political family. Manisha has delivered some powerful performances in iconic films like Bombay, 1942: A Love Story, Dil Se, and Khamoshi: The Musical. Known for her skill in portraying deep and complex characters, she returned to the spotlight with the OTT series Heeramandi, earning significant critical acclaim.
In this episode of the ANI Podcast with Smita Prakash, veteran actress Manisha Koirala opens up about her journey in Bollywood, sharing behind-the-scenes stories from her acclaimed films such as 1942: A Love Story, Khamoshi, Dil Se, Bombay, and Heeramandi. She reflects on her experiences within the industry, discussing the ways Bollywood has evolved over the years.
A cancer survivor, Manisha speaks on her advocacy for cancer awareness, emphasizing the importance of timely treatment. She also shares her thoughts on spirituality and the central role of family in her life.
#anipodcastwithsmitaprakash #manishakoirala #podcast
Timestamps:
0:00 - Coming Up
1:30 - Introduction
2:10 - The Cult of '1942: A Love Story'
6:55 - The Story Behind 'Khamoshi'
9:05 - Behind the Scenes of 'Heeramandi'
12:20 - How Bollywood Changed Over the Years
17:48 - The 'Bombay' Controversy
20:57 - The Original 'Dil Se' Plot
26:10 - The Making of 'Heeramandi'
31:30 - Battling with Cancer
38:42 - The Legacy of Koirala Family
46:40 - Navigating Through Bollywood
50:55 - Friendships & Relationships
53:03 - A Director's Actor
55:13 - Political Volatility in Nepal
59:52 - The Massacre of Nepal’s Royal Family
1:02:08 - Role of Spirituality
1:03:11 - Raising Cancer Awareness
1:06:47 - The Importance of Therapy
1:08:30 - Speaking Up on Women's Issues
1:11:08 - Nepal's Human Trafficking Crisis
1:12:20 - Mantra & Goals
1:13:16 - The Importance of Family
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/Ep_234_|_Exile_In_Banaras,_Battle_With_Cancer,_Bollywood_Journey_Nepali_Politics_|_Manisha_Koirala
Manisha Koirala is a renowned Nepali-Indian actress known for her exceptional talent and versatility in Hindi, Nepali, and South Indian cinema. Born in Kathmandu, she comes from a prominent Nepali political family. Manisha has delivered some powerful performances in iconic films like Bombay, 1942: A Love Story, Dil Se, and Khamoshi: The Musical. Known for her skill in portraying deep and complex characters, she returned to the spotlight with the OTT series Heeramandi, earning significant critical acclaim.
In this episode of the ANI Podcast with Smita Prakash, veteran actress Manisha Koirala opens up about her journey in Bollywood, sharing behind-the-scenes stories from her acclaimed films such as 1942: A Love Story, Khamoshi, Dil Se, Bombay, and Heeramandi. She reflects on her experiences within the industry, discussing the ways Bollywood has evolved over the years.
A cancer survivor, Manisha speaks on her advocacy for cancer awareness, emphasizing the importance of timely treatment. She also shares her thoughts on spirituality and the central role of family in her life.
#anipodcastwithsmitaprakash #manishakoirala #podcast
Timestamps:
0:00 - Coming Up
1:30 - Introduction
2:10 - The Cult of '1942: A Love Story'
6:55 - The Story Behind 'Khamoshi'
9:05 - Behind the Scenes of 'Heeramandi'
12:20 - How Bollywood Changed Over the Years
17:48 - The 'Bombay' Controversy
20:57 - The Original 'Dil Se' Plot
26:10 - The Making of 'Heeramandi'
31:30 - Battling with Cancer
38:42 - The Legacy of Koirala Family
46:40 - Navigating Through Bollywood
50:55 - Friendships & Relationships
53:03 - A Director's Actor
55:13 - Political Volatility in Nepal
59:52 - The Massacre of Nepal’s Royal Family
1:02:08 - Role of Spirituality
1:03:11 - Raising Cancer Awareness
1:06:47 - The Importance of Therapy
1:08:30 - Speaking Up on Women's Issues
1:11:08 - Nepal's Human Trafficking Crisis
1:12:20 - Mantra & Goals
1:13:16 - The Importance of Family
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 05 Nov 2024
views: 16648
2:28:01
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
#jaishreeram #jammukashmirassembly #article370 #omarabdullah #bjp...
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
#jaishreeram #jammukashmirassembly #article370 #omarabdullah #bjp #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/Live_Scuffle_Inside_J_K_Assembly_|_Jai_Shree_Ram_Slogan_|Srinagar_|_Pdp_|_Nc_|Congress_|_Bjp
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
#jaishreeram #jammukashmirassembly #article370 #omarabdullah #bjp #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 06 Nov 2024
views: 27733
2:36:10
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
#uselections2024 #results #donaldtrump #kamalaharris
Join ANI's Y...
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
#uselections2024 #results #donaldtrump #kamalaharris
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
https://wn.com/Live_US_Presidential_Election_|_Donald_Trump_Vs_Kamala_Harris_|_Americans_Take_On_Results
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
#uselections2024 #results #donaldtrump #kamalaharris
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
published: 06 Nov 2024
views: 7142
0:00
BREAKING | US Election Results | Donald Trump speaks after winning the 2024 Presidential Election
BREAKING | US Election Results | Donald Trump elected 47th president | USA Election News |...
Play in Full Screen
BREAKING | US Election Results | Donald Trump speaks after winning the 2024 Presidential Election
BREAKING | US Election Results | Donald Trump speaks after winning the 2024 Presidential Election
BREAKING | US Election Results | Donald Trump elected 47th president | USA Election News | Harris | JD Vance
#donaldtrump #victory #winningspeech #live #usaelections #america #kamalaharris
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
0:00
USA Election Result LIVE updates |Donald trump’s victory speech |Trump vs Harris| USA Election News
USA Election Result LIVE updates |Donald trump’s victory speech | Trump vs Harris | USA El...
Play in Full Screen
USA Election Result LIVE updates |Donald trump’s victory speech |Trump vs Harris| USA Election News
USA Election Result LIVE updates |Donald trump’s victory speech |Trump vs Harris| USA Election News
USA Election Result LIVE updates |Donald trump’s victory speech | Trump vs Harris | USA Election News
#donaldtrump #uselections2024 #live #uselection #kamalaharris #trump
[Source- Reuters]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
11:24:55
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada...
Play in Full Screen
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
Thousands take out solidarity rally in Brampton against attacks on Hindu temples in Canada
#brampton #canada #protest #hindu #hindutemple #khalistan #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
0:00
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | ...
Play in Full Screen
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
J&K Assembly session day 3 LIVE Updates | Srinagar | CM Omar Abdullah | NC | PDP | BJP | Congress
#jammukashmirassembly #article370 #live #jammukashmir #omarabdullah #bjp #congress #pdp
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
5:12
“Deeply concerning, unacceptable…” EAM Jaishankar condemns hateful attack on Hindu Temple in Canada
India’s EAM S Jaishankar on November 04 condemned the violent attack on Hindus at a temple...
Play in Full Screen
“Deeply concerning, unacceptable…” EAM Jaishankar condemns hateful attack on Hindu Temple in Canada
“Deeply concerning, unacceptable…” EAM Jaishankar condemns hateful attack on Hindu Temple in Canada
India’s EAM S Jaishankar on November 04 condemned the violent attack on Hindus at a temple in Canada’s Brampton. He said its deeply concerning and unacceptable. He said, “I think what happened yesterday at the Hindu Temple in Canada was obviously deeply concerning and you would have seen the statement first by our official spokesperson and also the expression of concern by our Prime Minister yesterday. So that should I think convey to you how deeply we feel about it.” “One, Canada has developed a pattern of making allegations without providing specifics. Secondly, when we look at Canada for us the fact that they are putting our diplomats under surveillance is something which is unacceptable.”
#jaishankar #indiacanada #khalistan
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
5:13
“India can chew gum & walk at same time…” EAM Jaishankar explains how India navigates different ties
Speaking at the inaugural session of ‘Raisina Down Under’ in Canberra, Australia on Novemb...
Play in Full Screen
“India can chew gum & walk at same time…” EAM Jaishankar explains how India navigates different ties
“India can chew gum & walk at same time…” EAM Jaishankar explains how India navigates different ties
Speaking at the inaugural session of ‘Raisina Down Under’ in Canberra, Australia on November 05, External Affairs Minister S Jaishankar explained how India navigates different relationships with countries.
#SJaishankar #RaisinaDownUnder #Canberra
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
2:22:11
EAM S Jaishankar LIVE | ‘Raisina Down Under 2024 ’ | Penny Wong | Winston Peters | India | Australia
EAM Jaishankar, New Zealand Deputy Prime Minister, Foreign Minister Winston Peters, Austra...
Play in Full Screen
EAM S Jaishankar LIVE | ‘Raisina Down Under 2024 ’ | Penny Wong | Winston Peters | India | Australia
EAM S Jaishankar LIVE | ‘Raisina Down Under 2024 ’ | Penny Wong | Winston Peters | India | Australia
EAM Jaishankar, New Zealand Deputy Prime Minister, Foreign Minister Winston Peters, Australian Foreign Minister Penny Wong's engaging conversation at ‘Raisina Down Under’ | CANBERRA, AUSTRALIA
#sjaishankar #jaishankar #raisinalive #india #australia
[Source- MEA YT]
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
1:19:09
EP-234 | Exile in Banaras, Battle with Cancer, Bollywood Journey & Nepali Politics | Manisha Koirala
Manisha Koirala is a renowned Nepali-Indian actress known for her exceptional talent and v...
Play in Full Screen
EP-234 | Exile in Banaras, Battle with Cancer, Bollywood Journey & Nepali Politics | Manisha Koirala
EP-234 | Exile in Banaras, Battle with Cancer, Bollywood Journey & Nepali Politics | Manisha Koirala
Manisha Koirala is a renowned Nepali-Indian actress known for her exceptional talent and versatility in Hindi, Nepali, and South Indian cinema. Born in Kathmandu, she comes from a prominent Nepali political family. Manisha has delivered some powerful performances in iconic films like Bombay, 1942: A Love Story, Dil Se, and Khamoshi: The Musical. Known for her skill in portraying deep and complex characters, she returned to the spotlight with the OTT series Heeramandi, earning significant critical acclaim.
In this episode of the ANI Podcast with Smita Prakash, veteran actress Manisha Koirala opens up about her journey in Bollywood, sharing behind-the-scenes stories from her acclaimed films such as 1942: A Love Story, Khamoshi, Dil Se, Bombay, and Heeramandi. She reflects on her experiences within the industry, discussing the ways Bollywood has evolved over the years.
A cancer survivor, Manisha speaks on her advocacy for cancer awareness, emphasizing the importance of timely treatment. She also shares her thoughts on spirituality and the central role of family in her life.
#anipodcastwithsmitaprakash #manishakoirala #podcast
Timestamps:
0:00 - Coming Up
1:30 - Introduction
2:10 - The Cult of '1942: A Love Story'
6:55 - The Story Behind 'Khamoshi'
9:05 - Behind the Scenes of 'Heeramandi'
12:20 - How Bollywood Changed Over the Years
17:48 - The 'Bombay' Controversy
20:57 - The Original 'Dil Se' Plot
26:10 - The Making of 'Heeramandi'
31:30 - Battling with Cancer
38:42 - The Legacy of Koirala Family
46:40 - Navigating Through Bollywood
50:55 - Friendships & Relationships
53:03 - A Director's Actor
55:13 - Political Volatility in Nepal
59:52 - The Massacre of Nepal’s Royal Family
1:02:08 - Role of Spirituality
1:03:11 - Raising Cancer Awareness
1:06:47 - The Importance of Therapy
1:08:30 - Speaking Up on Women's Issues
1:11:08 - Nepal's Human Trafficking Crisis
1:12:20 - Mantra & Goals
1:13:16 - The Importance of Family
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
2:28:01
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | ...
Play in Full Screen
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
LIVE: Scuffle inside J&K assembly | Jai shree ram Slogan |Srinagar | PDP | NC |Congress | BJP
#jaishreeram #jammukashmirassembly #article370 #omarabdullah #bjp #live
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
2:36:10
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results...
Play in Full Screen
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
LIVE: US Presidential Election | Donald Trump vs Kamala Harris | Americans take on results
#uselections2024 #results #donaldtrump #kamalaharris
Join ANI's YouTube membership to get access to perks:
https://www.youtube.com/channel/UCtFQDgA8J8_iiwc5-KoAQlg/join
Subscribe now and press the bell icon 🔔 to get new video updates: https://bit.ly/2UV4ygi
--------------------------------------
ANI is South Asia's leading Multimedia News Agency providing content for every information platform, including TV, Internet, broadband, newspapers, and mobiles.
Subscribe now! Enjoy and stay connected with us!!
☛ Subscribe to ANI News YouTube channel: https://bit.ly/2UV4ygi
☛ Visit our Official website: https://www.aninews.in/
☛ Follow ANI: https://twitter.com/ANI
☛ Like us: https://www.facebook.com/ANINEWS.IN
☛ Email to:
[email protected] ,
[email protected]
☛ Copyrights © All Rights Reserved ANI Media Pvt Ltd.
');
} 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('
VIDEO
');
}
}
});
}
}
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));
}
});
});
});
// -->
by Blood On The Dance Floor
Love Is The Message
by:
Cappadonna
Remind me Tuesday I gotta go handle my business Know what I'm saying? Straight up (Love is love) Yo, don't play with them shits up in here Them shits is dangerous Hey yo, hey yo, hits Sally Timbaland grand finale Damn imagine bringing back Alam Skin Bally's Glass of this, leather dick down status That's crabbage, can't see the real so you average Drip cammo Who carry Van Damme ammo? Nike Airs Uptown put the Benz van yo Chilling with niggaz who real Who respect real Big us get your wig touched crib rushed Record and command Slam jams for my mans Puff trees, tuck these ruggers in your lands Cemented, bent out of shape mend it Represent spin been through it God Hold the Mac splendid Time Balotti rap version of the black Gotti Rob me God'll act ungodly What never been done before It's real son you gum it out Run it in the gun store Everyday all day Fat like Bob Rockaway Dipped in the latest spot me right away Wu Tang executive new Donna Jay Darts in your area that's how I play Nobody else shouldn't really have a say When it come down to this Shaolin, U.S.A. Represent fully give me your air space Razor Sharp label keep coming out the face Make room as I step up to the plate RZA create sounds of earthquakes Make no mistake kid y'all just faking Cross-over cats that love to eat bacon WTC rush like Regan Crush your little song while you on your knees begging Who that nigga right there? Son he trust me, watch this shit right here We see y'all niggaz in the back all tread out Throw the heat out Ready to stop all beef out Play me, maybe you will catch more gravy kid We ill in the back feeling on your ladies We see y'all niggaz in the back all treed out Throw the heat out Ready to stop all beef out Play me, maybe you will catch more gravy kid We ill in the back feeling on your ladies Dripped out dip promoter Dead arm that nigga trying to get up over Thinking he clever but he rolled up Fronting on the God yo Acting like that cheese ain't right Aight that night dunn rolled on the mic Jumping out the Lex door suede lugz on Looking like he worth ten thousand on the arms Cuban connect I had it smashed This is Godville kid we real Staring at his steel dunn ask Jewels that he rocking Bone bracelet had laced kid Screaming on his neck Lex rocking Nigga had a fat lab Hundred bag, tools you had Ohh, little wifey had it all with a fat ass What you wanna eat boo? The rent's due Niggaz wanna get you You need to put a laser on your shit boo Sat there bluffing, saying nothing Looking at bird pop shit Acting like she bugging 18 karat gold and fresh boots Me and my team regulate to the roots Big pockets, blow mics out the sockets Condominium, Karl Kani denim Where the honey's at? We be getting up in them A whole lot of dollars and real scholars The Wu got knowledge Represent 5 percent, or 100 percent Pay attention to the stretch Lincoln Drinking Evian Don-Don Stay calm under pressure Break the sound barrier Big Wu Tang trucks roll in your area Wallabees for life, we too hype One ring with the ice Don't stress it What, love is the message 18 points on my brand new record Dart clapper, ran like a snapper Watch out for Cappa Make way Y'all cats ain't ready for me and the DJ We see y'all niggaz in the back all treed out Throw the heat out Ready to stop all beef out Play me, maybe you will catch more gravy kid We ill in the back feeling on your ladies We see y'all niggaz in the back all treed out Throw the heat out Ready to stop all beef out Play me, maybe you will catch more gravy kid We ill in the back feeling on your ladies Du-du, number one Dance hall storm