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

Podcasts:

  • Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh

    Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh by 8 wickets. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

    published: 31 Jan 2025
  • 🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January

    Watch Windward Volcanoes vs Jamaica Scorpions in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

    published: 31 Jan 2025
  • Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A

    Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral

    published: 27 Jan 2025
  • Koffee - West Indies (Official Video)

    Put your headphones on for a simulated 360 Reality Audio experience 🎧 Koffee – West Indies Listen/Download: https://koffee.lnk.to/west-indies Follow Koffee: Official Site: http://originalkoffee.com Facebook: https://www.facebook.com/originalkoffee Twitter: https://twitter.com/originalkoffee Instagram: http://instagram.com/originalkoffee “West Indies” was mixed with an immersive #360RA experience in mind, use headphones for the full effect. Stream “West Indies” in full 360 Reality Audio, now available on Tidal, Amazon and Deezer. Register at the link below to redeem your 3-month free trial! Visit: https://smarturl.it/ffoarq?IQid=youtube *Quantities are limited, while supplies last --

    published: 07 Oct 2021
  • 🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January

    Watch Guyana Harpy Eagles v Barbados Prides in the West Indies Championship 2025. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

    published: 31 Jan 2025
  • Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I

    Watch highlights of the 1st T20 between West Indies Women and Bangladesh, during the T20I Series at Warner Park, Basseterre. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

    published: 28 Jan 2025
  • W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A

    W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/Subscrib...

    published: 27 Jan 2025
  • 🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January

    Watch West Indies Academy vs Leeward Island Hurricanes in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

    published: 31 Jan 2025
  • West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live

    Live Cricket Match Today - West Indies Women v Bangladesh Women | WIW v BANW | BANW vs WIW | West Indies Women vs Bangladesh Women | 31st January 2025 | 3rd T20 International Match of Bangladesh Women Cricket Team tour of West Indies 2025 | WIW v BANW | WI W vs BAN W Live | Cricket Live Scorecard Hindi Commentary and Updates | 3rd T20I (N), Basseterre, January 31, 2025, Bangladesh Women tour of West Indies 2025 | Urdu Cricket Commentary | Match Scorecard, Gupshup and Fan Reactions | Imran Sherazi Cricket Info in Hindi Become a member of this channel to get access to perks: https://www.youtube.com/channel/UCLqkzlKQ4w2FLWppM6Gh-qQ/join My Other YouTube Channel Links: Cricket Live ► https://bit.ly/3pnQmtz Imran Sherazi Voice ► https://bit.ly/3slYY5P Cricket Captain ► https://bit.ly/3hmJPe...

    published: 01 Feb 2025
  • Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A

    Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A #PAKvWI | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral

    published: 25 Jan 2025
Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh
13:14

Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh

  • Order:
  • Duration: 13:14
  • Uploaded Date: 31 Jan 2025
  • views: 25405
Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh by 8 wickets. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
https://wn.com/Captains_Performance_💪_|_Matthews_Hits_Unbeaten_60_Off_54_Balls_|_West_Indies_Women_V_Bangladesh
🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January
7:42:05

🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January

  • Order:
  • Duration: 7:42:05
  • Uploaded Date: 31 Jan 2025
  • views: 58273
Watch Windward Volcanoes vs Jamaica Scorpions in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
https://wn.com/🔴_Live_Windward_Vs_Jamaica_Day_3_|_West_Indies_Championship_2025_|_31St_January
Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A
8:57

Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A

  • Order:
  • Duration: 8:57
  • Uploaded Date: 27 Jan 2025
  • views: 783199
Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
https://wn.com/Full_Highlights_|_Pakistan_Vs_West_Indies_|_2Nd_Test_Day_3_|_Pcb_|_M2I1A
Koffee - West Indies (Official Video)
4:20

Koffee - West Indies (Official Video)

  • Order:
  • Duration: 4:20
  • Uploaded Date: 07 Oct 2021
  • views: 18067124
Put your headphones on for a simulated 360 Reality Audio experience 🎧 Koffee – West Indies Listen/Download: https://koffee.lnk.to/west-indies Follow Koffee: Official Site: http://originalkoffee.com Facebook: https://www.facebook.com/originalkoffee Twitter: https://twitter.com/originalkoffee Instagram: http://instagram.com/originalkoffee “West Indies” was mixed with an immersive #360RA experience in mind, use headphones for the full effect. Stream “West Indies” in full 360 Reality Audio, now available on Tidal, Amazon and Deezer. Register at the link below to redeem your 3-month free trial! Visit: https://smarturl.it/ffoarq?IQid=youtube *Quantities are limited, while supplies last --
https://wn.com/Koffee_West_Indies_(Official_Video)
🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January
7:32:43

🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January

  • Order:
  • Duration: 7:32:43
  • Uploaded Date: 31 Jan 2025
  • views: 80657
Watch Guyana Harpy Eagles v Barbados Prides in the West Indies Championship 2025. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
https://wn.com/🔴_Live_Guyana_Vs_Barbados_Day_3_|_West_Indies_Championship_2025_|_31St_January
Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I
8:04

Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I

  • Order:
  • Duration: 8:04
  • Uploaded Date: 28 Jan 2025
  • views: 63126
Watch highlights of the 1st T20 between West Indies Women and Bangladesh, during the T20I Series at Warner Park, Basseterre. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
https://wn.com/Matthews_And_Dottin_Hit_Half_Centuries_|_Highlights_|_West_Indies_Women_V_Bangladesh_1St_T20I
W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A
1:54

W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A

  • Order:
  • Duration: 1:54
  • Uploaded Date: 27 Jan 2025
  • views: 879726
W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
https://wn.com/W_W_W_W_W_History_Has_Been_Made_Pakistan_Lost_|_Pakistan_Vs_West_Indies_|_Pcb_|_M2I1A
🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January
6:11:28

🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January

  • Order:
  • Duration: 6:11:28
  • Uploaded Date: 31 Jan 2025
  • views: 17785
Watch West Indies Academy vs Leeward Island Hurricanes in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
https://wn.com/🔴_Live_Wi_Academy_Vs_Leeward_Island_Day_3_|_West_Indies_Championship_2025_|_31St_January
West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live
3:19:22

West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live

  • Order:
  • Duration: 3:19:22
  • Uploaded Date: 01 Feb 2025
  • views: 12617
Live Cricket Match Today - West Indies Women v Bangladesh Women | WIW v BANW | BANW vs WIW | West Indies Women vs Bangladesh Women | 31st January 2025 | 3rd T20 International Match of Bangladesh Women Cricket Team tour of West Indies 2025 | WIW v BANW | WI W vs BAN W Live | Cricket Live Scorecard Hindi Commentary and Updates | 3rd T20I (N), Basseterre, January 31, 2025, Bangladesh Women tour of West Indies 2025 | Urdu Cricket Commentary | Match Scorecard, Gupshup and Fan Reactions | Imran Sherazi Cricket Info in Hindi Become a member of this channel to get access to perks: https://www.youtube.com/channel/UCLqkzlKQ4w2FLWppM6Gh-qQ/join My Other YouTube Channel Links: Cricket Live ► https://bit.ly/3pnQmtz Imran Sherazi Voice ► https://bit.ly/3slYY5P Cricket Captain ► https://bit.ly/3hmJPes Shan e Imamat ► https://bit.ly/3pmv0g1 Social Media Links: ► My Facebook: https://bit.ly/3Ajhazg ► My Twitter: https://bit.ly/3FHJkW1 ► My Facebook Page: https://bit.ly/3fLsIC1 ► My Instagram: https://bit.ly/3GLDZhA ► My TikTok: https://bit.ly/3xe9FKJ #BANvsWI #WIvsBAN #BANWvsWIW #WIWvsBANW #BangladeshvsWestIndies #WestIndiesvsBangladesh #BDvsWI #WIvsBD #CricketInfo #ImranSherazi ​
https://wn.com/West_Indies_Women_Vs_Bangladesh_Women_Live_|_Wiw_Vs_Banw_Live_|_3Rd_T20I_Of_Wi_W_Vs_Ban_W_Live
Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A
27:36

Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A

  • Order:
  • Duration: 27:36
  • Uploaded Date: 25 Jan 2025
  • views: 714250
Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A #PAKvWI | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
https://wn.com/Full_Highlights_|_Pakistan_Vs_West_Indies_|_2Nd_Test_Day_1_|_Pcb_|_M2I1A
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 25:49:43

Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh

Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh by 8 wickets. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
13:14
Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh
Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh b...
published: 31 Jan 2025
Play in Full Screen
7:42:05
🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January
Watch Windward Volcanoes vs Jamaica Scorpions in the West Indies Championship 2025. Sub...
published: 31 Jan 2025
Play in Full Screen
8:57
Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A
Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBa...
published: 27 Jan 2025
Play in Full Screen
4:20
Koffee - West Indies (Official Video)
Put your headphones on for a simulated 360 Reality Audio experience 🎧 Koffee – West Indie...
published: 07 Oct 2021
Play in Full Screen
7:32:43
🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January
Watch Guyana Harpy Eagles v Barbados Prides in the West Indies Championship 2025. This is...
published: 31 Jan 2025
Play in Full Screen
8:04
Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I
Watch highlights of the 1st T20 between West Indies Women and Bangladesh, during the T20I ...
published: 28 Jan 2025
Play in Full Screen
1:54
W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A
W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | 2nd ...
published: 27 Jan 2025
Play in Full Screen
6:11:28
🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January
Watch West Indies Academy vs Leeward Island Hurricanes in the West Indies Championship 202...
published: 31 Jan 2025
Play in Full Screen
3:19:22
West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live
Live Cricket Match Today - West Indies Women v Bangladesh Women | WIW v BANW | BANW vs WIW...
published: 01 Feb 2025
Play in Full Screen
27:36
Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A
Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A #PAKvWI | #Sport...
published: 25 Jan 2025
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: west indies

Edit

CWI monitoring safety of West Indians - As stand-off between India, Pakistan intensifies

Jamaica Star 09 May 2025
With several West Indies players currently participating in the Indian Premier League and Pakistan Super League, Cricket West Indies (CWI) is paying close attention to the ongoing stand-off between India and Pakistan.
Edit

Jamaica’s John Campbell in the running for WI Test captaincy - Chase, Da Silva among ...

Jamaica Star 09 May 2025
Da Silva has played in 33 Tests and had been the West Indies' first choice wicketkeeper in recent years, until he was dropped in place of Imlach on the West Indies tour of Pakistan in January.
Edit

PSL to be held in Dubai as tensions escalate

Dawn 09 May 2025
Cricket West Indies (CWI) also said that it was in touch with their players in the PSL and IPL and has engaged West Indies Players’ Association (WIPA) “to coordinate and ensure the safety, security, ...
Edit

India suspends IPL for a week, Pakistan moves T20 league amid conflict

Al Jazeera 09 May 2025
This year it featured 65 international cricketers from Australia, New Zealand, South Africa, Sri Lanka, West Indies, England and Afghanistan ... West Indies, South Africa and England were due to compete.
Edit

India suspends its top cricket tournament, the IPL, for a week amid military tensions with Pakistan

Newsday 09 May 2025
This year it has featured 65 international cricketers from Australia, New Zealand, South Africa, Sri Lanka, West Indies, England and Afghanistan.Sign up for our daily sports newsletter.
Edit

Pakistan moves its T20 cricket tournament to Dubai because of concerns over India conflict

Wtop 09 May 2025
On Thursday, an Indian drone fell inside the complex of the Rawalpindi Cricket Stadium hours before the start of PSL game in which several foreign cricketers from New Zealand, Australia, West Indies, South Africa and England were due to compete ... ___.
Edit

Pakistan Super League shifted to UAE amid India-Pakistan conflict

Gulf News 09 May 2025
Dubai ... Also Read. PSL. Mohammad Amir’s fiery celebrations return after dismissing Babar Azam ... Thirty-seven foreign players from Australia, New Zealand, South Africa, the West Indies, Bangladesh, Sri Lanka and Afghanistan are involved in the league ... .
Edit

'One of the best captains I've played under': Shubman Gill thanks retiring 'cap' Rohit Sharma

The Times of India 09 May 2025
Thank you Cap!'Go Beyond The Boundary with our YouTube channel ... His highest score of 212 came against South Africa in 2019 during a home series.His Test journey began with an impressive 177 against the West Indies at Eden Gardens, Kolkata in 2013 ... .
Edit

Mother’s Day heartbreak - Mom left with empty arms and broken heart

Jamaica Star 09 May 2025
The occasion is usually a very memorable one for the Kingston woman, but in March, Webley's only child, Cornell Hall, passed away at the University Hospital of the West Indies following surgery ... We would just do something ... - S.M.L. .
Edit

PSL's remaining matches relocated to UAE, confirms PCB

The News International 09 May 2025
The image shows the logos of the Pakistan Super League (PSL) and its franchises ... Thirty-seven foreign players, including from Australia, New Zealand, South Africa, the West Indies, Bangladesh, Sri Lanka and Afghanistan, are taking part in the PSL ... .
Edit

IPL franchises disband with players and support staff, overseas stars moving out with next available ...

Hindustan Times 09 May 2025
Royal Challengers Bengaluru's Virat Kohli interacts with Delhi Capitals players(ANI) ... All parties unanimously agreed to postpone the IPL ... Cricket West Indies, whose players are also involved in the IPL and the PSL, issued a similar statement. Bcci Ipl.
Edit

‘I’m always fighting myself’: Mohammad Abbas on Notts, Pakistan and Guardiola’s hotel room

Yahoo Daily News 09 May 2025
After a three-year hiatus, Abbas returned to play the two Tests in South Africa that followed, nipping out 10 wickets with the Kookaburra ball and showing remarkable endurance, only to be overlooked at home to West Indies three weeks later ... .
Edit

The 20 best period dramas

Harpers Bazaar 09 May 2025
Emma (2020) ... Loosely based on the true story of Dido Elizabeth Belle—a mixed-race British gentlewoman who was born into slavery in the West Indies—Belle is a moving film about the limits of love when faced against class, society, and racial prejudice.
Edit

Cricket West Indies says ‘monitoring’ players' safety in IPL, PSL amid India-Pakistan tensions

Live Mint 08 May 2025
Cricket West Indies says ‘monitoring’ players' safety in IPL, PSL amid India-Pakistan tensions ....
Edit

'Great player for India but ... ': Sourav Ganguly makes honest admission on Rohit Sharma's Test retirement

The Times of India 08 May 2025
The 38-year-old cricketer shared this news on Instagram, expressing appreciation to supporters whilst reflecting on his time in Test cricket.— ANI (@ANI) Rohit's Test career began against the West Indies in November 2013, spanning 67 matches.
×