'+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;
}));
});
-->
Sports Team - The Drop
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by A.T.Mann
Sports Team:
Alex Rice (lead vocals), Rob Knaggs (guitar and vocals), Al Greenwood (drums), Henry Young (guitar), Oli Dewdney (bass guitar), Ben Mack (keyboard)
and starring Stella Ray Mann as Baby
Production - Zomdic Films
Producers - Rosie Ford and Jack Hartley
Commisioner - David Knight
Creative - A.T.Mann and Mor Pozniak
Assistant Director - Etienne Newton
Editor - Ornit Levy
VFX and Post - Tal Baltuch
DOP - ...
published: 03 Aug 2022
Sports Team - Here's The Thing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Listen to ‘Here’s The Thing’: https://SportsTeam.lnk.to/HeresTheThingID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Lyrics:
[Here’s the thing]
If you smile enough
then everybody smiles
if you just work a little harder you’ll get by
You can trust a man
Who wears a suit and tie
It’s all just lies, [lies, lies, lies]
[Here’s the thing]
If you parents worked
To earn it then it’s yours
And If you’re barely getting by
Then it’s your fault
Everything in life is fair and that’s the rules
It’s all just [lies lies lies]
If you just close your eyes then everything’s alright
I...
published: 17 Feb 2020
Sports Team - Dig (Official Lyric Video)
Listen to Dig: https://SportsTeam.lnk.to/DigID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
published: 02 Sep 2022
Sports Team - The Game (Official Video)
Welcome to The Game: https://SportsTeam.lnk.to/TheGameID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Running home
Past the empty office space
In the half filled business park
That’s where you first saw the place
When the lights went down
And the lights went down
And the night was rustling
Like an empty bag of crisps
(And the salt still on your lips)
Like a song on a radio
Like a song on a radio
Let it all go, now
Ah yeah
That’s the game
Life’s hard but I can’t complain
Ah yeah that’s the game
Don’t crow
To that death mentality
To that look but never see
To that old monotony
Ah the knives are out
Ah the smiles are out
And life just muscles in
And you keep your eyes apart
And you feel yourself dr...
published: 17 May 2022
Sports Team - Fishing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Listen to 'Fishing': https://SportsTeam.lnk.to/FishingID
Directed by Kris Rimmer - https://www.krisrfilms.com
I can’t make any sense
Of all the letters you write
It’s like your pen doesn’t work
You’re so much better in type
We used to talk all the time
But now we don’t anymore
I guess we don’t have the time
It doesn’t work any more
If the band doesn’t work
just get a regular job
The pressure’s starting to melt
through your shirt it’s a lot
Is there something we're missing?
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation pleas...
published: 26 Sep 2019
Sports Team - The Drop (Live)
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by Sully
Production - EM Films
Producer - Rowan Mackintosh
--------------------------------------
Music video by Sports Team performing The Drop (Live). An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/IISopM
published: 23 Aug 2022
Sports Team - Camel Crew
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Directors: Sports Team & Ben Unwin
Producer: Phil Tidy @ Squire
Makeup consultant: Natasha Lawes
Editor: Ben Unwin
Stock footage: Videezy.com and Videvo.net.
VFX & Grade: Miland Suman
Commissioner: David Knight
Music video by Sports Team performing Camel Crew. © 2020 Universal Music Operations Limited
http://vevo.ly/c8n4hi
published: 08 Jun 2020
Sports Team - Happy (God's Own Country)
‘Happy (God’s Own Country)’ by Sports Team.
Listen now: https://SportsTeam.lnk.to/HappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Official Store: https://SportsTeam.lnk.to/StoreID
published: 21 Apr 2021
New professional sports team coming to Mass.
One of the American Flag Football League's four inaugural pro teams is going to be in Boston.
Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ
Get more Boston news: http://www.wcvb.com
Like us: https://www.facebook.com/wcvb5
Follow us: https://twitter.com/WCVB
Instagram: https://www.instagram.com/wcvb5/
published: 18 Aug 2023
Sports Team - Here's The Thing (Mercury Prize 2020: Album of the Year)
Guidance: Contains flashing images.
Indie outfit Sports Team perform Here's The Thing at Bush Hall in London as part of the Mercury Prize 2020: Album of the Year.
Watch more on iPlayer: bbc.co.uk/iplayer
published: 23 Sep 2020
3:06
Sports Team - The Drop
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: http...
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by A.T.Mann
Sports Team:
Alex Rice (lead vocals), Rob Knaggs (guitar and vocals), Al Greenwood (drums), Henry Young (guitar), Oli Dewdney (bass guitar), Ben Mack (keyboard)
and starring Stella Ray Mann as Baby
Production - Zomdic Films
Producers - Rosie Ford and Jack Hartley
Commisioner - David Knight
Creative - A.T.Mann and Mor Pozniak
Assistant Director - Etienne Newton
Editor - Ornit Levy
VFX and Post - Tal Baltuch
DOP - Rik Burnell
1st AC - Sam James
2nd AC - Dan Mccaffrey
Drone Pilot - Adam Cook
Gaffer - Chris Sarginson
Spark - Harry Cohn
Art Director - Nicola Bell
Art Dept Assistant - Ellis Tudor
HMU Artist - Lou Hood
Stylist - Ailsa Chaplin
Stylist Assistant - Lois Jenner
VFX Set Supervisor - Aaron Dunleavy
Floor Runner - Lydia Shenton
Special Thanks to:
Promotion
Drop City
Carlton Towers
Mick
Gali and Roi Pozniak
INSTA @a_t_mann
FB @a.t.mann
TikTok @AsafTMann
--------------------------------------
Music video by Sports Team performing The Drop. An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/nHLoGm
https://wn.com/Sports_Team_The_Drop
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by A.T.Mann
Sports Team:
Alex Rice (lead vocals), Rob Knaggs (guitar and vocals), Al Greenwood (drums), Henry Young (guitar), Oli Dewdney (bass guitar), Ben Mack (keyboard)
and starring Stella Ray Mann as Baby
Production - Zomdic Films
Producers - Rosie Ford and Jack Hartley
Commisioner - David Knight
Creative - A.T.Mann and Mor Pozniak
Assistant Director - Etienne Newton
Editor - Ornit Levy
VFX and Post - Tal Baltuch
DOP - Rik Burnell
1st AC - Sam James
2nd AC - Dan Mccaffrey
Drone Pilot - Adam Cook
Gaffer - Chris Sarginson
Spark - Harry Cohn
Art Director - Nicola Bell
Art Dept Assistant - Ellis Tudor
HMU Artist - Lou Hood
Stylist - Ailsa Chaplin
Stylist Assistant - Lois Jenner
VFX Set Supervisor - Aaron Dunleavy
Floor Runner - Lydia Shenton
Special Thanks to:
Promotion
Drop City
Carlton Towers
Mick
Gali and Roi Pozniak
INSTA @a_t_mann
FB @a.t.mann
TikTok @AsafTMann
--------------------------------------
Music video by Sports Team performing The Drop. An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/nHLoGm
published: 03 Aug 2022
views: 234951
3:31
Sports Team - Here's The Thing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
O...
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Listen to ‘Here’s The Thing’: https://SportsTeam.lnk.to/HeresTheThingID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Lyrics:
[Here’s the thing]
If you smile enough
then everybody smiles
if you just work a little harder you’ll get by
You can trust a man
Who wears a suit and tie
It’s all just lies, [lies, lies, lies]
[Here’s the thing]
If you parents worked
To earn it then it’s yours
And If you’re barely getting by
Then it’s your fault
Everything in life is fair and that’s the rules
It’s all just [lies lies lies]
If you just close your eyes then everything’s alright
If you just close your eyes then everything’s alright
[Hey ma’ I wrote a song now everything’s alright]
It’s all just…
You're worth as much as all the luxury you buy
The world will be ok if we
Stop taking flights
If you just change the way you eat you’ll never die
It’s all just [lies lies lies lies]
[Here’s the thing]
Companies care for the people they employ
Discrimination doesn’t happens any more
Working hard you know it’s better for your soul
It’s all just [lies lies lies lies]
If you just close your eyes then everything’s alright
If you just close your eyes then everything’s alright
[Hey ma’ I wrote a song now everything’s alright]
It’s all just…
Try a little harder little bird
If you’re in bed then someone else is catching worms
and if you break your little wing, oh you deserve it
all just
Jesus loves you, and the footballs coming home
It's just a joke you know
You'll get it when you're grown
So rule brittania and you'll never walk alone
Hand me not this fiery sword dear lord and growing bored of patriotic chit chat
Bows not burning gold (it's guilt) our father father's built the mills in which we suffer
Here’s the thing
Music video by Sports Team performing Here's The Thing. © 2020 Universal Music Operations Limited
http://vevo.ly/sXAgiT
https://wn.com/Sports_Team_Here's_The_Thing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Listen to ‘Here’s The Thing’: https://SportsTeam.lnk.to/HeresTheThingID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Lyrics:
[Here’s the thing]
If you smile enough
then everybody smiles
if you just work a little harder you’ll get by
You can trust a man
Who wears a suit and tie
It’s all just lies, [lies, lies, lies]
[Here’s the thing]
If you parents worked
To earn it then it’s yours
And If you’re barely getting by
Then it’s your fault
Everything in life is fair and that’s the rules
It’s all just [lies lies lies]
If you just close your eyes then everything’s alright
If you just close your eyes then everything’s alright
[Hey ma’ I wrote a song now everything’s alright]
It’s all just…
You're worth as much as all the luxury you buy
The world will be ok if we
Stop taking flights
If you just change the way you eat you’ll never die
It’s all just [lies lies lies lies]
[Here’s the thing]
Companies care for the people they employ
Discrimination doesn’t happens any more
Working hard you know it’s better for your soul
It’s all just [lies lies lies lies]
If you just close your eyes then everything’s alright
If you just close your eyes then everything’s alright
[Hey ma’ I wrote a song now everything’s alright]
It’s all just…
Try a little harder little bird
If you’re in bed then someone else is catching worms
and if you break your little wing, oh you deserve it
all just
Jesus loves you, and the footballs coming home
It's just a joke you know
You'll get it when you're grown
So rule brittania and you'll never walk alone
Hand me not this fiery sword dear lord and growing bored of patriotic chit chat
Bows not burning gold (it's guilt) our father father's built the mills in which we suffer
Here’s the thing
Music video by Sports Team performing Here's The Thing. © 2020 Universal Music Operations Limited
http://vevo.ly/sXAgiT
published: 17 Feb 2020
views: 852982
2:39
Sports Team - Dig (Official Lyric Video)
Listen to Dig: https://SportsTeam.lnk.to/DigID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sport...
Listen to Dig: https://SportsTeam.lnk.to/DigID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
https://wn.com/Sports_Team_Dig_(Official_Lyric_Video)
Listen to Dig: https://SportsTeam.lnk.to/DigID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
published: 02 Sep 2022
views: 15340
3:03
Sports Team - The Game (Official Video)
Welcome to The Game: https://SportsTeam.lnk.to/TheGameID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: htt...
Welcome to The Game: https://SportsTeam.lnk.to/TheGameID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Running home
Past the empty office space
In the half filled business park
That’s where you first saw the place
When the lights went down
And the lights went down
And the night was rustling
Like an empty bag of crisps
(And the salt still on your lips)
Like a song on a radio
Like a song on a radio
Let it all go, now
Ah yeah
That’s the game
Life’s hard but I can’t complain
Ah yeah that’s the game
Don’t crow
To that death mentality
To that look but never see
To that old monotony
Ah the knives are out
Ah the smiles are out
And life just muscles in
And you keep your eyes apart
And you feel yourself drift past
Like a song from a radio
Like a song from a radio
When did it all go
Ah yeah
That’s the game
Life’s hard but i can’t complain
Ah yeah
That’s the game
Featuring @john.otway
Dancers @nevenastojkov @ellieharulow @juliannichols_ @ha_ka_ma @movementbypierre @giuntaelettra @roseaida @joshua.i.yates
Director @charlesagall
Production Company @blend.films
Label @islandrecordsuk
Producer @liamwallacecook
DOP @jed_dop
Art Director @studio.bibi
1st AD @drk_waters
Gaffer @jorge_higgins
Choreography @elllieandisabellla
Styling @ailsachaplin
Makeup @oliviacochranemakeup
Grade @olliethompsoncolour @etc.colour
2nd AD @Jennifer.simms.x
Art Assistant @robert_winstanley_
Art Assistant @bianca_trombi
Graphic Design @abesmegachurch
Styling Assist @andcordeliadid
Styling Assist @loisthestylist
Styling Assist @larahargrave
Makeup Assist @meaganlouisemakeup
Focus Puller @dariuswalks
Loader @misspatrycjac
DIT @elliotino
Spark @alexanderdavidedward
Spark @tomascanelas
Sound Recordist @conorfensom
VFX @justin.du_pre
PA @milojamestucker
Runner @phoebemulvihill
Snake Handler @andromedacircus
Kit @cinehouserental
Location @eastlondonstudios
Catering @theredhotboxcompany
Music video by Sports Team performing The Game. An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/UNf7TU
https://wn.com/Sports_Team_The_Game_(Official_Video)
Welcome to The Game: https://SportsTeam.lnk.to/TheGameID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Running home
Past the empty office space
In the half filled business park
That’s where you first saw the place
When the lights went down
And the lights went down
And the night was rustling
Like an empty bag of crisps
(And the salt still on your lips)
Like a song on a radio
Like a song on a radio
Let it all go, now
Ah yeah
That’s the game
Life’s hard but I can’t complain
Ah yeah that’s the game
Don’t crow
To that death mentality
To that look but never see
To that old monotony
Ah the knives are out
Ah the smiles are out
And life just muscles in
And you keep your eyes apart
And you feel yourself drift past
Like a song from a radio
Like a song from a radio
When did it all go
Ah yeah
That’s the game
Life’s hard but i can’t complain
Ah yeah
That’s the game
Featuring @john.otway
Dancers @nevenastojkov @ellieharulow @juliannichols_ @ha_ka_ma @movementbypierre @giuntaelettra @roseaida @joshua.i.yates
Director @charlesagall
Production Company @blend.films
Label @islandrecordsuk
Producer @liamwallacecook
DOP @jed_dop
Art Director @studio.bibi
1st AD @drk_waters
Gaffer @jorge_higgins
Choreography @elllieandisabellla
Styling @ailsachaplin
Makeup @oliviacochranemakeup
Grade @olliethompsoncolour @etc.colour
2nd AD @Jennifer.simms.x
Art Assistant @robert_winstanley_
Art Assistant @bianca_trombi
Graphic Design @abesmegachurch
Styling Assist @andcordeliadid
Styling Assist @loisthestylist
Styling Assist @larahargrave
Makeup Assist @meaganlouisemakeup
Focus Puller @dariuswalks
Loader @misspatrycjac
DIT @elliotino
Spark @alexanderdavidedward
Spark @tomascanelas
Sound Recordist @conorfensom
VFX @justin.du_pre
PA @milojamestucker
Runner @phoebemulvihill
Snake Handler @andromedacircus
Kit @cinehouserental
Location @eastlondonstudios
Catering @theredhotboxcompany
Music video by Sports Team performing The Game. An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/UNf7TU
published: 17 May 2022
views: 136857
3:28
Sports Team - Fishing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
F...
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Listen to 'Fishing': https://SportsTeam.lnk.to/FishingID
Directed by Kris Rimmer - https://www.krisrfilms.com
I can’t make any sense
Of all the letters you write
It’s like your pen doesn’t work
You’re so much better in type
We used to talk all the time
But now we don’t anymore
I guess we don’t have the time
It doesn’t work any more
If the band doesn’t work
just get a regular job
The pressure’s starting to melt
through your shirt it’s a lot
Is there something we're missing?
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation please
We don’t die any more
cause we don’t smoke any more
but we don’t laugh any more
cause we don’t joke any more
Buy a coat and a car
Buy a boat and a chain
Buy a house with a moat
By a beautiful stream
Buy a phone with a plan
Buy a villa abroad
By the portugese coast
Or the cote d’azure
...And we can go swimming
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation please
Oh the songs that they’re singing
They’re just the kind that we like
You’re brushing dust from your knuckles
But i’m too pretty to fight
I’ve been reeling the line in
I’ve been playing for days
If the joke isn’t landing
I’d be happy to wait
We go out
With our friends
And we sit
By the Thames
It's so clear now
All those happy smiling faces
I don’t need no conversation please
You don't love me
And I don't mind
Well just sit
And watch
The tide
Music video by Sports Team performing Fishing (Official Video). © 2019 Universal Music Operations Limited
http://vevo.ly/199IEZ
https://wn.com/Sports_Team_Fishing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Listen to 'Fishing': https://SportsTeam.lnk.to/FishingID
Directed by Kris Rimmer - https://www.krisrfilms.com
I can’t make any sense
Of all the letters you write
It’s like your pen doesn’t work
You’re so much better in type
We used to talk all the time
But now we don’t anymore
I guess we don’t have the time
It doesn’t work any more
If the band doesn’t work
just get a regular job
The pressure’s starting to melt
through your shirt it’s a lot
Is there something we're missing?
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation please
We don’t die any more
cause we don’t smoke any more
but we don’t laugh any more
cause we don’t joke any more
Buy a coat and a car
Buy a boat and a chain
Buy a house with a moat
By a beautiful stream
Buy a phone with a plan
Buy a villa abroad
By the portugese coast
Or the cote d’azure
...And we can go swimming
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation please
Oh the songs that they’re singing
They’re just the kind that we like
You’re brushing dust from your knuckles
But i’m too pretty to fight
I’ve been reeling the line in
I’ve been playing for days
If the joke isn’t landing
I’d be happy to wait
We go out
With our friends
And we sit
By the Thames
It's so clear now
All those happy smiling faces
I don’t need no conversation please
You don't love me
And I don't mind
Well just sit
And watch
The tide
Music video by Sports Team performing Fishing (Official Video). © 2019 Universal Music Operations Limited
http://vevo.ly/199IEZ
published: 26 Sep 2019
views: 445450
3:01
Sports Team - The Drop (Live)
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: http...
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by Sully
Production - EM Films
Producer - Rowan Mackintosh
--------------------------------------
Music video by Sports Team performing The Drop (Live). An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/IISopM
https://wn.com/Sports_Team_The_Drop_(Live)
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by Sully
Production - EM Films
Producer - Rowan Mackintosh
--------------------------------------
Music video by Sports Team performing The Drop (Live). An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/IISopM
published: 23 Aug 2022
views: 25449
3:55
Sports Team - Camel Crew
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
O...
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Directors: Sports Team & Ben Unwin
Producer: Phil Tidy @ Squire
Makeup consultant: Natasha Lawes
Editor: Ben Unwin
Stock footage: Videezy.com and Videvo.net.
VFX & Grade: Miland Suman
Commissioner: David Knight
Music video by Sports Team performing Camel Crew. © 2020 Universal Music Operations Limited
http://vevo.ly/c8n4hi
https://wn.com/Sports_Team_Camel_Crew
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Directors: Sports Team & Ben Unwin
Producer: Phil Tidy @ Squire
Makeup consultant: Natasha Lawes
Editor: Ben Unwin
Stock footage: Videezy.com and Videvo.net.
VFX & Grade: Miland Suman
Commissioner: David Knight
Music video by Sports Team performing Camel Crew. © 2020 Universal Music Operations Limited
http://vevo.ly/c8n4hi
published: 08 Jun 2020
views: 503955
2:49
Sports Team - Happy (God's Own Country)
‘Happy (God’s Own Country)’ by Sports Team.
Listen now: https://SportsTeam.lnk.to/HappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Officia...
‘Happy (God’s Own Country)’ by Sports Team.
Listen now: https://SportsTeam.lnk.to/HappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Official Store: https://SportsTeam.lnk.to/StoreID
https://wn.com/Sports_Team_Happy_(God's_Own_Country)
‘Happy (God’s Own Country)’ by Sports Team.
Listen now: https://SportsTeam.lnk.to/HappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Official Store: https://SportsTeam.lnk.to/StoreID
published: 21 Apr 2021
views: 209553
1:25
New professional sports team coming to Mass.
One of the American Flag Football League's four inaugural pro teams is going to be in Boston.
Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ
...
One of the American Flag Football League's four inaugural pro teams is going to be in Boston.
Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ
Get more Boston news: http://www.wcvb.com
Like us: https://www.facebook.com/wcvb5
Follow us: https://twitter.com/WCVB
Instagram: https://www.instagram.com/wcvb5/
https://wn.com/New_Professional_Sports_Team_Coming_To_Mass.
One of the American Flag Football League's four inaugural pro teams is going to be in Boston.
Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ
Get more Boston news: http://www.wcvb.com
Like us: https://www.facebook.com/wcvb5
Follow us: https://twitter.com/WCVB
Instagram: https://www.instagram.com/wcvb5/
published: 18 Aug 2023
views: 332
2:56
Sports Team - Here's The Thing (Mercury Prize 2020: Album of the Year)
Guidance: Contains flashing images.
Indie outfit Sports Team perform Here's The Thing at Bush Hall in London as part of the Mercury Prize 2020: Album of the ...
Guidance: Contains flashing images.
Indie outfit Sports Team perform Here's The Thing at Bush Hall in London as part of the Mercury Prize 2020: Album of the Year.
Watch more on iPlayer: bbc.co.uk/iplayer
https://wn.com/Sports_Team_Here's_The_Thing_(Mercury_Prize_2020_Album_Of_The_Year)
Guidance: Contains flashing images.
Indie outfit Sports Team perform Here's The Thing at Bush Hall in London as part of the Mercury Prize 2020: Album of the Year.
Watch more on iPlayer: bbc.co.uk/iplayer
published: 23 Sep 2020
views: 41472
3:06
Sports Team - The Drop
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "G...
Play in Full Screen
Sports Team - The Drop
Sports Team - The Drop
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by A.T.Mann
Sports Team:
Alex Rice (lead vocals), Rob Knaggs (guitar and vocals), Al Greenwood (drums), Henry Young (guitar), Oli Dewdney (bass guitar), Ben Mack (keyboard)
and starring Stella Ray Mann as Baby
Production - Zomdic Films
Producers - Rosie Ford and Jack Hartley
Commisioner - David Knight
Creative - A.T.Mann and Mor Pozniak
Assistant Director - Etienne Newton
Editor - Ornit Levy
VFX and Post - Tal Baltuch
DOP - Rik Burnell
1st AC - Sam James
2nd AC - Dan Mccaffrey
Drone Pilot - Adam Cook
Gaffer - Chris Sarginson
Spark - Harry Cohn
Art Director - Nicola Bell
Art Dept Assistant - Ellis Tudor
HMU Artist - Lou Hood
Stylist - Ailsa Chaplin
Stylist Assistant - Lois Jenner
VFX Set Supervisor - Aaron Dunleavy
Floor Runner - Lydia Shenton
Special Thanks to:
Promotion
Drop City
Carlton Towers
Mick
Gali and Roi Pozniak
INSTA @a_t_mann
FB @a.t.mann
TikTok @AsafTMann
--------------------------------------
Music video by Sports Team performing The Drop. An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/nHLoGm
3:31
Sports Team - Here's The Thing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'D...
Play in Full Screen
Sports Team - Here's The Thing
Sports Team - Here's The Thing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Listen to ‘Here’s The Thing’: https://SportsTeam.lnk.to/HeresTheThingID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Lyrics:
[Here’s the thing]
If you smile enough
then everybody smiles
if you just work a little harder you’ll get by
You can trust a man
Who wears a suit and tie
It’s all just lies, [lies, lies, lies]
[Here’s the thing]
If you parents worked
To earn it then it’s yours
And If you’re barely getting by
Then it’s your fault
Everything in life is fair and that’s the rules
It’s all just [lies lies lies]
If you just close your eyes then everything’s alright
If you just close your eyes then everything’s alright
[Hey ma’ I wrote a song now everything’s alright]
It’s all just…
You're worth as much as all the luxury you buy
The world will be ok if we
Stop taking flights
If you just change the way you eat you’ll never die
It’s all just [lies lies lies lies]
[Here’s the thing]
Companies care for the people they employ
Discrimination doesn’t happens any more
Working hard you know it’s better for your soul
It’s all just [lies lies lies lies]
If you just close your eyes then everything’s alright
If you just close your eyes then everything’s alright
[Hey ma’ I wrote a song now everything’s alright]
It’s all just…
Try a little harder little bird
If you’re in bed then someone else is catching worms
and if you break your little wing, oh you deserve it
all just
Jesus loves you, and the footballs coming home
It's just a joke you know
You'll get it when you're grown
So rule brittania and you'll never walk alone
Hand me not this fiery sword dear lord and growing bored of patriotic chit chat
Bows not burning gold (it's guilt) our father father's built the mills in which we suffer
Here’s the thing
Music video by Sports Team performing Here's The Thing. © 2020 Universal Music Operations Limited
http://vevo.ly/sXAgiT
2:39
Sports Team - Dig (Official Lyric Video)
Listen to Dig: https://SportsTeam.lnk.to/DigID
Pre-order our sophomore effort "Gulp!" her...
Play in Full Screen
Sports Team - Dig (Official Lyric Video)
Sports Team - Dig (Official Lyric Video)
Listen to Dig: https://SportsTeam.lnk.to/DigID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
3:03
Sports Team - The Game (Official Video)
Welcome to The Game: https://SportsTeam.lnk.to/TheGameID
Pre-order our sophomore effort "...
Play in Full Screen
Sports Team - The Game (Official Video)
Sports Team - The Game (Official Video)
Welcome to The Game: https://SportsTeam.lnk.to/TheGameID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Running home
Past the empty office space
In the half filled business park
That’s where you first saw the place
When the lights went down
And the lights went down
And the night was rustling
Like an empty bag of crisps
(And the salt still on your lips)
Like a song on a radio
Like a song on a radio
Let it all go, now
Ah yeah
That’s the game
Life’s hard but I can’t complain
Ah yeah that’s the game
Don’t crow
To that death mentality
To that look but never see
To that old monotony
Ah the knives are out
Ah the smiles are out
And life just muscles in
And you keep your eyes apart
And you feel yourself drift past
Like a song from a radio
Like a song from a radio
When did it all go
Ah yeah
That’s the game
Life’s hard but i can’t complain
Ah yeah
That’s the game
Featuring @john.otway
Dancers @nevenastojkov @ellieharulow @juliannichols_ @ha_ka_ma @movementbypierre @giuntaelettra @roseaida @joshua.i.yates
Director @charlesagall
Production Company @blend.films
Label @islandrecordsuk
Producer @liamwallacecook
DOP @jed_dop
Art Director @studio.bibi
1st AD @drk_waters
Gaffer @jorge_higgins
Choreography @elllieandisabellla
Styling @ailsachaplin
Makeup @oliviacochranemakeup
Grade @olliethompsoncolour @etc.colour
2nd AD @Jennifer.simms.x
Art Assistant @robert_winstanley_
Art Assistant @bianca_trombi
Graphic Design @abesmegachurch
Styling Assist @andcordeliadid
Styling Assist @loisthestylist
Styling Assist @larahargrave
Makeup Assist @meaganlouisemakeup
Focus Puller @dariuswalks
Loader @misspatrycjac
DIT @elliotino
Spark @alexanderdavidedward
Spark @tomascanelas
Sound Recordist @conorfensom
VFX @justin.du_pre
PA @milojamestucker
Runner @phoebemulvihill
Snake Handler @andromedacircus
Kit @cinehouserental
Location @eastlondonstudios
Catering @theredhotboxcompany
Music video by Sports Team performing The Game. An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/UNf7TU
3:28
Sports Team - Fishing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'D...
Play in Full Screen
Sports Team - Fishing
Sports Team - Fishing
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Listen to 'Fishing': https://SportsTeam.lnk.to/FishingID
Directed by Kris Rimmer - https://www.krisrfilms.com
I can’t make any sense
Of all the letters you write
It’s like your pen doesn’t work
You’re so much better in type
We used to talk all the time
But now we don’t anymore
I guess we don’t have the time
It doesn’t work any more
If the band doesn’t work
just get a regular job
The pressure’s starting to melt
through your shirt it’s a lot
Is there something we're missing?
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation please
We don’t die any more
cause we don’t smoke any more
but we don’t laugh any more
cause we don’t joke any more
Buy a coat and a car
Buy a boat and a chain
Buy a house with a moat
By a beautiful stream
Buy a phone with a plan
Buy a villa abroad
By the portugese coast
Or the cote d’azure
...And we can go swimming
We go out
With our friends
And we sit
By the Thames
Going fishing
I don’t need no conversation please
Oh the songs that they’re singing
They’re just the kind that we like
You’re brushing dust from your knuckles
But i’m too pretty to fight
I’ve been reeling the line in
I’ve been playing for days
If the joke isn’t landing
I’d be happy to wait
We go out
With our friends
And we sit
By the Thames
It's so clear now
All those happy smiling faces
I don’t need no conversation please
You don't love me
And I don't mind
Well just sit
And watch
The tide
Music video by Sports Team performing Fishing (Official Video). © 2019 Universal Music Operations Limited
http://vevo.ly/199IEZ
3:01
Sports Team - The Drop (Live)
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "G...
Play in Full Screen
Sports Team - The Drop (Live)
Sports Team - The Drop (Live)
Listen to The Drop: https://SportsTeam.lnk.to/TheDropID
Pre-order our sophomore effort "Gulp!" here: https://sportsteam.lnk.to/gulpID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
--------------------------------------
Song and Lyrics written by Rob Knaggs, Henry Young, Ben Mack, Dave McCracken, Alex Rice, Al Greenwood, Oli Dewdney
Video directed by Sully
Production - EM Films
Producer - Rowan Mackintosh
--------------------------------------
Music video by Sports Team performing The Drop (Live). An Island Records video; © 2022 Universal Music Operations Limited
http://vevo.ly/IISopM
3:55
Sports Team - Camel Crew
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'D...
Play in Full Screen
Sports Team - Camel Crew
Sports Team - Camel Crew
‘Happy (God’s Own Country)’ out now: https://SportsTeam.lnk.to/HappyID
The debut album 'Deep Down Happy' out now: https://SportsTeam.lnk.to/DeepDownHappyID
Official Store: https://SportsTeam.lnk.to/StoreID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Directors: Sports Team & Ben Unwin
Producer: Phil Tidy @ Squire
Makeup consultant: Natasha Lawes
Editor: Ben Unwin
Stock footage: Videezy.com and Videvo.net.
VFX & Grade: Miland Suman
Commissioner: David Knight
Music video by Sports Team performing Camel Crew. © 2020 Universal Music Operations Limited
http://vevo.ly/c8n4hi
2:49
Sports Team - Happy (God's Own Country)
‘Happy (God’s Own Country)’ by Sports Team.
Listen now: https://SportsTeam.lnk.to/Happy...
Play in Full Screen
Sports Team - Happy (God's Own Country)
Sports Team - Happy (God's Own Country)
‘Happy (God’s Own Country)’ by Sports Team.
Listen now: https://SportsTeam.lnk.to/HappyID
Follow Sports Team: https://sportsteam.lnk.to/SocialsID
Official Store: https://SportsTeam.lnk.to/StoreID
1:25
New professional sports team coming to Mass.
One of the American Flag Football League's four inaugural pro teams is going to be in Bost...
Play in Full Screen
New professional sports team coming to Mass.
New professional sports team coming to Mass.
One of the American Flag Football League's four inaugural pro teams is going to be in Boston.
Subscribe to WCVB on YouTube now for more: http://bit.ly/1e8lAMZ
Get more Boston news: http://www.wcvb.com
Like us: https://www.facebook.com/wcvb5
Follow us: https://twitter.com/WCVB
Instagram: https://www.instagram.com/wcvb5/
2:56
Sports Team - Here's The Thing (Mercury Prize 2020: Album of the Year)
Guidance: Contains flashing images.
Indie outfit Sports Team perform Here's The Thing a...
Play in Full Screen
Sports Team - Here's The Thing (Mercury Prize 2020: Album of the Year)
Sports Team - Here's The Thing (Mercury Prize 2020: Album of the Year)
Guidance: Contains flashing images.
Indie outfit Sports Team perform Here's The Thing at Bush Hall in London as part of the Mercury Prize 2020: Album of the Year.
Watch more on iPlayer: bbc.co.uk/iplayer
');
} 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));
}
});
});
});
// -->
Latest News for: sports team
Edit
The Peninsula
29 Dec 2024
As the top destination for sports ... This program ensures athletes receive high-quality care, from medical teams to advanced facilities, supporting athletes in international competitions and local sports.
Edit
The National
29 Dec 2024
Dr A’s team is not the biggest nor the richest in the UAE , but he is known locally as a connoisseur of the sport, and well connected among the more elite players of this increasingly popular game.
Edit
Hindustan Times
29 Dec 2024
Forest teams in Rehmankheda ... Forest teams are locating the wild animal in two locations ... The teams that have been trying to locate the leopard in and around the sports college have not got any sighting since past two days.
Edit
RTE
29 Dec 2024
If embarrassment was an Olympic sport, Ireland would have won gold in Rio - easily ... Ireland sent its biggest ever Olympic team competing in 15 different sports ... The future looks bright for Team Ireland in the City of Angels and beyond.
Edit
This Day
29 Dec 2024
Sport ... The star match of the day is the encounter between the Lagos   ;State U-13 Team and the Ajegunle United U-13 Team ... The hundreds of children participating in the event will also be fed by the organizing team.
Edit
The Oregonian
29 Dec 2024
The games pit some of the state’s top teams against each other and showcased some national teams ... Here are the results from Saturday’s games.More Oregon high school sports.
Edit
Michigan Live
29 Dec 2024
BAY CITY , MI – A look at the high school sports scene in the Bay City area for Dec ... And now Team 60 is doing its part in program history ... “One of the seniors said ‘It’s kind of cool that our team gets to do that.’ And, yes, it is cool.
Edit
Potter Leader-Enterprise
29 Dec 2024
Matches are a massive occasion for the whole school as student cheering squads wave flags, bang drums and roar on their teams in a spectacle of noise and colour ... League youth teams, and Ohzu High School were crowned this year's champions.