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

Flo Rida

Tramar Lacel Dillard (born September 16, 1979), better known by his stage name Flo Rida (pronounced /fl ˈrdə/,) is an American hip hop recording artist from Carol City, Florida. He is known for releasing a string of hits, such as his 2008 breakout single "Low", which was number one for 10 weeks in the United States and broke the record for digital download sales at the time of its release. "Low" was followed by the Top 40 hits, "Elevator" and "In the Ayer".

As of 2016, Flo Rida has released four studio albums. His first album, 2008's Mail on Sunday, debuted at number four in the US. The album was succeeded by R.O.O.T.S., the next year. His subsequent albums, 2010's Only One Flo (Part 1) and 2012's Wild Ones, also charted on the US Billboard 200 chart.

Flo Rida has sold over 80 million records worldwide. His catalog includes the international hit singles "Right Round", "Club Can't Handle Me", "Good Feeling", "Wild Ones", "Whistle", "I Cry" and "G.D.F.R.", among others.

Life and career

Podcasts:

Flo Rida

ALBUMS

  • Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)

    The official video for "Low" by Flo Rida featuring T-Pain from 'Step Up 2 The Streets O.S.T. / Mail On Sunday'. Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Flo Rida https://facebook.com/officialflo https://twitter.com/official_flo https://youtube.com/user/officialflo http://instagram.com/official_flo http://officialflo.com/ Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top ...

    published: 27 Oct 2009
  • Flo Rida - Whistle [Official Video]

    © 2012 WMG. Get an exclusive behind-the-scenes look at the making of the Flo Rida "Whistle" music video only on http://imgstrongarmworld.com The official music video for Flo Rida's "Whistle" from his WILD ONES album, available here: http://bit.ly/LEDcRZ Directed by Marc Klasfeld. Shot in Acapulco, Mexico. Special Thanks to the Tourism Board of Mexico & Leisure Opportunities | http://www.visitmexico.com Download "Whistle" on iTunes: http://bit.ly/whistleonitunes

    published: 24 May 2012
  • Flo Rida - Club Can't Handle Me ft. David Guetta [Official Music Video] - Step Up 3D

    Off the new album ONLY ONE FLO (PART 1) - available everywhere NOW! Download the album on iTunes at http://atlr.ec/ftImIE and at Flo's Online Store at http://atlr.ec/dPJ4wj Visit http://www.officialflo.com and follow Flo Rida's official twitter at http://www.twitter.com/official_flo for album news first!

    published: 15 Jul 2010
  • Flo Rida - Wild Ones ft. Sia [Official Video]

    © 2012 WMG. "Wild Ones" ft. Sia is off of Flo Rida's new album WILD ONES, available in stores & online now! Download on iTunes: http://smarturl.it/wildones If you've bought the singles off the new album on US iTunes ("Let It Roll", "Good Feeling", "Wild Ones" ft. Sia, "Whistle") complete your album now: http://smarturl.it/wildones Other countries get WILD ONES here: http://smarturl.it/wildones Directed by: Erik White Follow Flo Rida on Twitter @official_flo http://www.officialflo.com http://clubflo.com http://imgstrongarm.com http://www.twitter.com/official_flo http://www.facebook.com/officialflo

    published: 09 Feb 2012
  • Flo Rida - Good Feeling [Official Video]

    © 2011 WMG | Flo Rida's new album WILD ONES is available in stores & online now! Download on iTunes: http://smarturl.it/wildones If you've bought the singles off the new album on US iTunes ("Let It Roll", "Good Feeling", "Wild Ones" ft. Sia, "Whistle") complete your album now: http://smarturl.it/wildones Other Countries get WILD ONES here: http://smarturl.it/wildones Directed by Erik White Follow Flo Rida on Twitter: http://twitter.com/official_flo http://www.officialflo.com http://clubflo.com http://imgstrongarm.com http://www.instagram.com/official_flo http://www.twitter.com/official_flo http://www.facebook.com/officialflo

    published: 21 Oct 2011
  • Flo Rida - Right Round (feat. Ke$ha) (Official Video) [HD]

    The official HD video for "Right Round" by Flo Rida featuring Ke$ha from the album 'R.O.O.T.S. (Route Of Overcoming The Struggle)' celebrating its 15th Anniversary this year! Listen now: https://florida.lnk.to/R.O.O.T.S Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Flo Rida https://facebook.com/officialflo https://twitter.com/official_flo https://youtube.com/user/officialflo http://instagram.com/official_flo http://officialflo.com/ Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 ...

    published: 12 Dec 2009
  • Flo Rida - My House [Official Video]

    Flo Rida's new EP "My House" is available now! Download here: http://smarturl.it/MyHouseEP Stream here: http://smarturl.it/MyHouseSpotify Listen to other tracks from “My House” here: https://www.youtube.com/playlist?list=PLbo88FM1ETaVMxQheq24X-HTwfcIpnCLP Stream “My House“ on Spotify: http://smarturl.it/MyHouseSpotify "My House" EP Available Now! Flo Rida - My House [Official Video] Directed by: Alex Acosta Follow Flo Rida: http://officialflo.com http://clubflo.com http://imgstrongarm.com http://twitter.com/official_flo http://instagram.com/official_flo http://facebook.com/officialflo

    published: 24 Sep 2015
  • Flo Rida - Sugar (Official Video) [HD]

    The official HD video for "Sugar" by Flo Rida from the album 'R.O.O.T.S. (Route Of Overcoming The Struggle)' celebrating its 15th Anniversary this year! Listen now: https://florida.lnk.to/R.O.O.T.S Flo Rida - Sugar [Official Video] Subscribe for more official content from Flo Rida: https://FloRida.lnk.to/FRsubscribe Visit Flo Rida online: http://instagram.com/official_flo http://twitter.com/official_flo http://facebook.com/officialflo http://clubflo.com The official YouTube channel of Atlantic Records artist Flo Rida. Subscribe for the latest music videos, performances, and more. #FloRida #Sugar #ROOTS

    published: 16 May 2019
  • Day Two of Celebrate Erie Features Flo Rida

    Local residents celebrated day two of Celebrate Erie by enjoying the art, food and culture of the area and also got a chance to hear headliner Flo Rida.

    published: 20 Aug 2023
  • Flo Rida - I Cry [Official Video]

    The official music video for Flo Rida "I Cry" from his album, WILD ONES ©2012 WMG Download Flo Rida's WILD ONES album on iTunes: ‪http://smarturl.it/wildones‬ Directed by Marc Klasfeld http://officialflo.com http://twitter.com/official_flo http://facebook.com/officialflo

    published: 29 Sep 2012
Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)
3:51

Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)

  • Order:
  • Duration: 3:51
  • Uploaded Date: 27 Oct 2009
  • views: 442738094
The official video for "Low" by Flo Rida featuring T-Pain from 'Step Up 2 The Streets O.S.T. / Mail On Sunday'. Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Flo Rida https://facebook.com/officialflo https://twitter.com/official_flo https://youtube.com/user/officialflo http://instagram.com/official_flo http://officialflo.com/ Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top 40 hitmakers like Wiz Khalifa, Sean Paul, Trey Songz, Bruno Mars, Charlie Puth, Janelle Monáe, and B.o.B. Atlantic Records prides itself for working on Motion Picture Soundtracks, such as “The Greatest Showman”, “Suicide Squad” and “The Fate of the Furious.” As well as Musical Soundtracks including “Dear Evan Hansen,” and Grammy and Tony Award Winning “Hamilton”. It is home to world-renowned record labels representing music from every genre, including Asylum, Big Beat, Canvasback, Elektra, Fueled By Ramen, Rhino, Roadrunner, and Sire. Subscribe for the latest official music videos, official audio videos, performances, bts and more from our artists and projects. https://Atlantic.lnk.to/Subscribe #FloRida #Low #TPain #StepUp2 #TheStreets #OST #MailOnSunday #OfficialVideo #AtlanticRecords #Atlantic Sing Along At Home with Your Favorite The Greatest Showman Soundtracks ➤ https://bit.ly/AtlanticSing Best Sing Along Songs at Home from Atlantic Records ➤ https://bit.ly/AtlanticSingAlong Home Workout Music from Atlantic Records ➤ https://bit.ly/AtlanticWorkOut Romantic Music To Listen To At Home from Atlantic Records ➤ https://bit.ly/AtlanticRomantic Work From Home Music from Atlantic Records ➤ https://bit.ly/AtlanticWork
https://wn.com/Flo_Rida_Low_(Feat._T_Pain)_From_Step_Up_2_The_Streets_O.S.T._Mail_On_Sunday_(Official_Video)
Flo Rida - Whistle [Official Video]
3:55

Flo Rida - Whistle [Official Video]

  • Order:
  • Duration: 3:55
  • Uploaded Date: 24 May 2012
  • views: 538360155
© 2012 WMG. Get an exclusive behind-the-scenes look at the making of the Flo Rida "Whistle" music video only on http://imgstrongarmworld.com The official music video for Flo Rida's "Whistle" from his WILD ONES album, available here: http://bit.ly/LEDcRZ Directed by Marc Klasfeld. Shot in Acapulco, Mexico. Special Thanks to the Tourism Board of Mexico & Leisure Opportunities | http://www.visitmexico.com Download "Whistle" on iTunes: http://bit.ly/whistleonitunes
https://wn.com/Flo_Rida_Whistle_Official_Video
Flo Rida - Club Can't Handle Me ft. David Guetta [Official Music Video] - Step Up 3D
4:06

Flo Rida - Club Can't Handle Me ft. David Guetta [Official Music Video] - Step Up 3D

  • Order:
  • Duration: 4:06
  • Uploaded Date: 15 Jul 2010
  • views: 526789391
Off the new album ONLY ONE FLO (PART 1) - available everywhere NOW! Download the album on iTunes at http://atlr.ec/ftImIE and at Flo's Online Store at http://atlr.ec/dPJ4wj Visit http://www.officialflo.com and follow Flo Rida's official twitter at http://www.twitter.com/official_flo for album news first!
https://wn.com/Flo_Rida_Club_Can't_Handle_Me_Ft._David_Guetta_Official_Music_Video_Step_Up_3D
Flo Rida - Wild Ones ft. Sia [Official Video]
3:55

Flo Rida - Wild Ones ft. Sia [Official Video]

  • Order:
  • Duration: 3:55
  • Uploaded Date: 09 Feb 2012
  • views: 663677817
© 2012 WMG. "Wild Ones" ft. Sia is off of Flo Rida's new album WILD ONES, available in stores & online now! Download on iTunes: http://smarturl.it/wildones If you've bought the singles off the new album on US iTunes ("Let It Roll", "Good Feeling", "Wild Ones" ft. Sia, "Whistle") complete your album now: http://smarturl.it/wildones Other countries get WILD ONES here: http://smarturl.it/wildones Directed by: Erik White Follow Flo Rida on Twitter @official_flo http://www.officialflo.com http://clubflo.com http://imgstrongarm.com http://www.twitter.com/official_flo http://www.facebook.com/officialflo
https://wn.com/Flo_Rida_Wild_Ones_Ft._Sia_Official_Video
Flo Rida - Good Feeling [Official Video]
4:31

Flo Rida - Good Feeling [Official Video]

  • Order:
  • Duration: 4:31
  • Uploaded Date: 21 Oct 2011
  • views: 654878015
© 2011 WMG | Flo Rida's new album WILD ONES is available in stores & online now! Download on iTunes: http://smarturl.it/wildones If you've bought the singles off the new album on US iTunes ("Let It Roll", "Good Feeling", "Wild Ones" ft. Sia, "Whistle") complete your album now: http://smarturl.it/wildones Other Countries get WILD ONES here: http://smarturl.it/wildones Directed by Erik White Follow Flo Rida on Twitter: http://twitter.com/official_flo http://www.officialflo.com http://clubflo.com http://imgstrongarm.com http://www.instagram.com/official_flo http://www.twitter.com/official_flo http://www.facebook.com/officialflo
https://wn.com/Flo_Rida_Good_Feeling_Official_Video
Flo Rida - Right Round (feat. Ke$ha) (Official Video) [HD]
3:27

Flo Rida - Right Round (feat. Ke$ha) (Official Video) [HD]

  • Order:
  • Duration: 3:27
  • Uploaded Date: 12 Dec 2009
  • views: 277972805
The official HD video for "Right Round" by Flo Rida featuring Ke$ha from the album 'R.O.O.T.S. (Route Of Overcoming The Struggle)' celebrating its 15th Anniversary this year! Listen now: https://florida.lnk.to/R.O.O.T.S Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Flo Rida https://facebook.com/officialflo https://twitter.com/official_flo https://youtube.com/user/officialflo http://instagram.com/official_flo http://officialflo.com/ Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top 40 hitmakers like Wiz Khalifa, Sean Paul, Trey Songz, Bruno Mars, Charlie Puth, Janelle Monáe, and B.o.B. Atlantic Records prides itself for working on Motion Picture Soundtracks, such as “The Greatest Showman”, “Suicide Squad” and “The Fate of the Furious.” As well as Musical Soundtracks including “Dear Evan Hansen,” and Grammy and Tony Award Winning “Hamilton”. It is home to world-renowned record labels representing music from every genre, including Asylum, Big Beat, Canvasback, Elektra, Fueled By Ramen, Rhino, Roadrunner, and Sire. Subscribe for the latest official music videos, official audio videos, performances, bts and more from our artists and projects. https://Atlantic.lnk.to/Subscribe #FloRida #RightRound #Kesha #ROOTS #RouteOfOvercomingTheStruggle #OfficialVideo #AtlanticRecords #Atlantic
https://wn.com/Flo_Rida_Right_Round_(Feat._Ke_Ha)_(Official_Video)_Hd
Flo Rida - My House [Official Video]
3:17

Flo Rida - My House [Official Video]

  • Order:
  • Duration: 3:17
  • Uploaded Date: 24 Sep 2015
  • views: 353622857
Flo Rida's new EP "My House" is available now! Download here: http://smarturl.it/MyHouseEP Stream here: http://smarturl.it/MyHouseSpotify Listen to other tracks from “My House” here: https://www.youtube.com/playlist?list=PLbo88FM1ETaVMxQheq24X-HTwfcIpnCLP Stream “My House“ on Spotify: http://smarturl.it/MyHouseSpotify "My House" EP Available Now! Flo Rida - My House [Official Video] Directed by: Alex Acosta Follow Flo Rida: http://officialflo.com http://clubflo.com http://imgstrongarm.com http://twitter.com/official_flo http://instagram.com/official_flo http://facebook.com/officialflo
https://wn.com/Flo_Rida_My_House_Official_Video
Flo Rida - Sugar (Official Video) [HD]
4:04

Flo Rida - Sugar (Official Video) [HD]

  • Order:
  • Duration: 4:04
  • Uploaded Date: 16 May 2019
  • views: 20086663
The official HD video for "Sugar" by Flo Rida from the album 'R.O.O.T.S. (Route Of Overcoming The Struggle)' celebrating its 15th Anniversary this year! Listen now: https://florida.lnk.to/R.O.O.T.S Flo Rida - Sugar [Official Video] Subscribe for more official content from Flo Rida: https://FloRida.lnk.to/FRsubscribe Visit Flo Rida online: http://instagram.com/official_flo http://twitter.com/official_flo http://facebook.com/officialflo http://clubflo.com The official YouTube channel of Atlantic Records artist Flo Rida. Subscribe for the latest music videos, performances, and more. #FloRida #Sugar #ROOTS
https://wn.com/Flo_Rida_Sugar_(Official_Video)_Hd
Day Two of Celebrate Erie Features Flo Rida
2:35

Day Two of Celebrate Erie Features Flo Rida

  • Order:
  • Duration: 2:35
  • Uploaded Date: 20 Aug 2023
  • views: 384
Local residents celebrated day two of Celebrate Erie by enjoying the art, food and culture of the area and also got a chance to hear headliner Flo Rida.
https://wn.com/Day_Two_Of_Celebrate_Erie_Features_Flo_Rida
Flo Rida - I Cry [Official Video]
3:53

Flo Rida - I Cry [Official Video]

  • Order:
  • Duration: 3:53
  • Uploaded Date: 29 Sep 2012
  • views: 128225545
The official music video for Flo Rida "I Cry" from his album, WILD ONES ©2012 WMG Download Flo Rida's WILD ONES album on iTunes: ‪http://smarturl.it/wildones‬ Directed by Marc Klasfeld http://officialflo.com http://twitter.com/official_flo http://facebook.com/officialflo
https://wn.com/Flo_Rida_I_Cry_Official_Video
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)
    3:51
    Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)remove from playlist
  • Flo Rida - Whistle [Official Video]
    3:55
    Flo Rida - Whistle [Official Video]remove from playlist
  • Flo Rida - Club Can't Handle Me ft. David Guetta [Official Music Video] - Step Up 3D
    4:06
    Flo Rida - Club Can't Handle Me ft. David Guetta [Official Music Video] - Step Up 3Dremove from playlist
  • Flo Rida - Wild Ones ft. Sia [Official Video]
    3:55
    Flo Rida - Wild Ones ft. Sia [Official Video]remove from playlist
  • Flo Rida - Good Feeling [Official Video]
    4:31
    Flo Rida - Good Feeling [Official Video]remove from playlist
  • Flo Rida - Right Round (feat. Ke$ha) (Official Video) [HD]
    3:27
    Flo Rida - Right Round (feat. Ke$ha) (Official Video) [HD]remove from playlist
  • Flo Rida - My House [Official Video]
    3:17
    Flo Rida - My House [Official Video]remove from playlist
  • Flo Rida - Sugar (Official Video) [HD]
    4:04
    Flo Rida - Sugar (Official Video) [HD]remove from playlist
  • Day Two of Celebrate Erie Features Flo Rida
    2:35
    Day Two of Celebrate Erie Features Flo Ridaremove from playlist
  • Flo Rida - I Cry [Official Video]
    3:53
    Flo Rida - I Cry [Official Video]remove from playlist
PLAYLIST TIME: 0:00 / 37:34

Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)

The official video for "Low" by Flo Rida featuring T-Pain from 'Step Up 2 The Streets O.S.T. / Mail On Sunday'. Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Flo Rida https://facebook.com/officialflo https://twitter.com/official_flo https://youtube.com/user/officialflo http://instagram.com/official_flo http://officialflo.com/ Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top 40 hitmakers like Wiz Khalifa, Sean Paul, Trey Songz, Bruno Mars, Charlie Puth, Janelle Monáe, and B.o.B. Atlantic Records prides itself for working on Motion Picture Soundtracks, such as “The Greatest Showman”, “Suicide Squad” and “The Fate of the Furious.” As well as Musical Soundtracks including “Dear Evan Hansen,” and Grammy and Tony Award Winning “Hamilton”. It is home to world-renowned record labels representing music from every genre, including Asylum, Big Beat, Canvasback, Elektra, Fueled By Ramen, Rhino, Roadrunner, and Sire. Subscribe for the latest official music videos, official audio videos, performances, bts and more from our artists and projects. https://Atlantic.lnk.to/Subscribe #FloRida #Low #TPain #StepUp2 #TheStreets #OST #MailOnSunday #OfficialVideo #AtlanticRecords #Atlantic Sing Along At Home with Your Favorite The Greatest Showman Soundtracks ➤ https://bit.ly/AtlanticSing Best Sing Along Songs at Home from Atlantic Records ➤ https://bit.ly/AtlanticSingAlong Home Workout Music from Atlantic Records ➤ https://bit.ly/AtlanticWorkOut Romantic Music To Listen To At Home from Atlantic Records ➤ https://bit.ly/AtlanticRomantic Work From Home Music from Atlantic Records ➤ https://bit.ly/AtlanticWork
3:51
Flo Rida - Low (feat. T-Pain) [from Step Up 2 The Streets O.S.T. / Mail On Sunday] (Official Video)
The official video for "Low" by Flo Rida featuring T-Pain from 'Step Up 2 The Streets O.S....
published: 27 Oct 2009
Play in Full Screen
3:55
Flo Rida - Whistle [Official Video]
© 2012 WMG. Get an exclusive behind-the-scenes look at the making of the Flo Rida "Whistle...
published: 24 May 2012
Play in Full Screen
4:06
Flo Rida - Club Can't Handle Me ft. David Guetta [Official Music Video] - Step Up 3D
Off the new album ONLY ONE FLO (PART 1) - available everywhere NOW! Download the album on ...
published: 15 Jul 2010
Play in Full Screen
3:55
Flo Rida - Wild Ones ft. Sia [Official Video]
© 2012 WMG. "Wild Ones" ft. Sia is off of Flo Rida's new album WILD ONES, available in sto...
published: 09 Feb 2012
Play in Full Screen
4:31
Flo Rida - Good Feeling [Official Video]
© 2011 WMG | Flo Rida's new album WILD ONES is available in stores & online now! Download ...
published: 21 Oct 2011
Play in Full Screen
3:27
Flo Rida - Right Round (feat. Ke$ha) (Official Video) [HD]
The official HD video for "Right Round" by Flo Rida featuring Ke$ha from the album 'R.O.O....
published: 12 Dec 2009
Play in Full Screen
3:17
Flo Rida - My House [Official Video]
Flo Rida's new EP "My House" is available now! Download here: http://smarturl.it/MyHouseE...
published: 24 Sep 2015
Play in Full Screen
4:04
Flo Rida - Sugar (Official Video) [HD]
The official HD video for "Sugar" by Flo Rida from the album 'R.O.O.T.S. (Route Of Overcom...
published: 16 May 2019
Play in Full Screen
2:35
Day Two of Celebrate Erie Features Flo Rida
Local residents celebrated day two of Celebrate Erie by enjoying the art, food and culture...
published: 20 Aug 2023
Play in Full Screen
3:53
Flo Rida - I Cry [Official Video]
The official music video for Flo Rida "I Cry" from his album, WILD ONES ©2012 WMG Downloa...
published: 29 Sep 2012
Play in Full Screen

Flo Rida

Tramar Lacel Dillard (born September 16, 1979), better known by his stage name Flo Rida (pronounced /fl ˈrdə/,) is an American hip hop recording artist from Carol City, Florida. He is known for releasing a string of hits, such as his 2008 breakout single "Low", which was number one for 10 weeks in the United States and broke the record for digital download sales at the time of its release. "Low" was followed by the Top 40 hits, "Elevator" and "In the Ayer".

As of 2016, Flo Rida has released four studio albums. His first album, 2008's Mail on Sunday, debuted at number four in the US. The album was succeeded by R.O.O.T.S., the next year. His subsequent albums, 2010's Only One Flo (Part 1) and 2012's Wild Ones, also charted on the US Billboard 200 chart.

Flo Rida has sold over 80 million records worldwide. His catalog includes the international hit singles "Right Round", "Club Can't Handle Me", "Good Feeling", "Wild Ones", "Whistle", "I Cry" and "G.D.F.R.", among others.

Life and career

'); } 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: Flo Rida

Edit

Single-A Florida State League Glance

The Facts 21 Apr 2025
All Times EDTEast DivisionWLPct.GBPalm Beach (St. Louis)96.600—Daytona (Cincinnati)87.5331St. Lucie (N.Y. Mets)87.5331Jupiter (Miami)78.4672 ....
Edit

Florida State classes to resume after fatal shooting, but in-person attendance isn’t mandatory

Penn Live 21 Apr 2025
TALLAHASSEE, Fla. (AP) — Classes will resume at Florida State University on Monday, four days after a deadly shooting on campus left two people dead and six others injured, school officials said ... ALSO READ ... ....
Edit

Dunbar Easter Parade in Fort Myers delights spectators with beloved tradition in 81st year

News-Press - Fort Myers 21 Apr 2025
The 81st annual Dunbar Easter Parade brought out hundreds of community members Sunday, April 20, with retired Fort Myers Councilman Johnny Streets leading the way as grand marshal.
Edit

Cavaliers wear down overmatched Heat in 121-100 rout in series opener

Sun Sentinel 21 Apr 2025
CLEVELAND – The Oklahoma City Thunder set the standard for No. 1 seeds earlier in the day, when in their Western Conference playoff opener against the Memphis Grizzlies they went up by 56 points and won by 51 ... 1. Closing time ... 2. His part ... 3. His part, too.
Edit

Winderman’s view: Tyler Herro looking for a friend, as Heat stumble in Cleveland

Sun Sentinel 21 Apr 2025
CLEVELAND — Observations and other notes of interest from Sunday night’s 121-100 NBA playoff loss to the Cleveland Cavaliers.. – For years, the question seemingly was how to get Jimmy Butler help ... – Because who else?. – Yes, Bam Adebayo scored.
Edit

What no-hitter? Rays’ Chandler Simpson knew he had a single all along

Tampa Bay Times 21 Apr 2025
TAMPA — Chandler Simpson didn’t see what all the debate was ... “I’m like, ‘Oh, wow,’” Simpson said ... Subscribe to our free Sports Today newsletterWe’ll send you news and analysis on the Bucs, Lightning, Rays and Florida’s college football teams every day.
Edit

Lightning playoff strategy? Keep opponents guessing

Tampa Bay Times 21 Apr 2025
“We’ve played Florida numerous times,” Cooper said after Thursday’s Game 82 loss to the Rangers in New York ... when the ‘Battle of Florida’ happens it can be must-watch TV.
Edit

Andrei Vasilevskiy is back to his old form, eyeing another Stanley Cup

Tampa Bay Times 21 Apr 2025
He’s healthy again, the long-lasting effects from 2023 back surgery mostly in his rear view ... Subscribe to our free Sports Today newsletterWe’ll send you news and analysis on the Bucs, Lightning, Rays and Florida’s college football teams every day ... ....
Edit

Major Florida grower plans to build new community after ending citrus operations

Tampa Bay Times 21 Apr 2025
FORT MYERS — One of Florida’s biggest citrus growers plans to build a 3,000-acre community in Southwest Florida, just months after announcing it was abandoning its citrus-growing operations at the end of this year’s season.
Edit

Rays have bigger issues than near no-no: ‘We’ve got to turn it around’

Tampa Bay Times 21 Apr 2025
Consider their scoring totals over the past week. 16, 4, 0, 3, 0, 10, 0 ... Puzzling?. Frustrating? ... Subscribe to our free Sports Today newsletterWe’ll send you news and analysis on the Bucs, Lightning, Rays and Florida’s college football teams every day.
Edit

Lavonte David might seem immortal, but Bucs must address ILB position

Tampa Bay Times 21 Apr 2025
TAMPA — Lavonte David is as hard to read off the field as he is while playing inside linebacker ... Subscribe to our free Sports Today newsletterWe’ll send you news and analysis on the Bucs, Lightning, Rays and Florida’s college football teams every day.
Edit

Rays escape being no-hit but are shut out in another loss to Yankees

Tampa Bay Times 21 Apr 2025
Monday. Off. Next game ... TV/radio. FanDuel Sports Florida; 95.3-FM, 620-AM, 106.7-FM (Spanish) ... Info ... Subscribe to our free Sports Today newsletterWe’ll send you news and analysis on the Bucs, Lightning, Rays and Florida’s college football teams every day.
Edit

Rays taking a different swing at how they run batting practice

Tampa Bay Times 21 Apr 2025
TAMPA — Rays batting practice looks different this season ... It just gives you better feedback.” ... Subscribe to our free Sports Today newsletterWe’ll send you news and analysis on the Bucs, Lightning, Rays and Florida’s college football teams every day.
×