- published: 08 Aug 2023
- views: 7717
'+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; })); }); -->
DeAndre Cortez Way (born July 28, 1990), better known by his stage name Soulja Boy Tell 'Em, or simply Soulja Boy, is an American rapper, record producer, actor, and entrepreneur born in Chicago, Illinois.
In September 2007, his single "Crank That (Soulja Boy)" reached number one on the US Billboard Hot 100. The single was initially self-published on the internet, and it later became a number-one hit in the United States for seven non-consecutive weeks starting in September 2007. On August 17 Way was listed at number 18 on the Forbes list of Hip-Hop Cash Kings of 2010 earning $7 million for that year.
Way has currently released three studio albums and one independent album: his debut studio album Souljaboytellem.com (2007) was certified platinum by the RIAA. However, his next two albums, iSouljaBoyTellem (2008) and The DeAndre Way (2010) did not match the commercial success of his debut, the latter only selling 100,000 copies, despite the success of several singles across both albums, such as "Kiss Me Thru the Phone" and "Turn My Swag On" (iSouljaBoyTellem) and "Pretty Boy Swag" (The DeAndre Way). Way digitally released his fifth studio album, Blessed, on July 28, 2015.
Soulja or Souljah may refer to:
SoulJa (ソルジャ, Soruja, birth name: Johannes Marías Reijnders Zwan) is a Japanese hip-hop musician and songwriter. He is best known for his collaborations with singer Thelma Aoyama, "Koko ni Iru yo" and "Soba ni Iru ne" - the latter of which was the former Guinness World Records holder for the best selling digital single of all-time in Japan (until it was superseded by Greeeen's "Kiseki").
SoulJa's father is Japanese and his mother is from Belgium. He studied music, learning how to play the violin, cello and piano from a young age, due to the influence of his mother. During his childhood, he spent time in Belgium, Japan and America. At 15, he grew to love hip-hop music.
In 2003, he returned to Japan, and began creating music. He got his first big break when a song of his, "First Contact," was featured in a commercial for Men's Beauteen (featuring actor Joe Odagiri) in 2005. This led to several more offers to write commercial music for companies such as magazine Oggi, along with SoulJa's independent label debut. In late 2005, he released the EP First Contact under Rock & Hill Records.
Soulja Boy - Do You Got Money? (Music Video) Soulja World 3: https://souljaboy.ffm.to/souljaworld3 Soulja World Tour: https://linktr.ee/souljaworldtour Socials: http://www.twitter.com/souljaboy http://www.instagram.com/souljaboy http://www.facebook.com/souljaboy https://www.tiktok.com/@souljaboytv? Dir. By: Tra-V SODMG Records comment below what music video and content you want next. #souljaboy #souljaworld #sodmg
REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered
Music video by Soulja Boy Tell`em performing Kiss Me Thru The Phone. (C) 2008 ColliPark Music/Interscope Records
Full Article: https://hiphopdx.com/news/soulja-boy-net-worth-negative Subscribe to HipHopDX on Youtube for daily Hip Hop News: http://bit.ly/dxsubscribe Check out more of DX here on social media: http://www.hiphopdx.com https://twitter.com/hiphopdx https://www.facebook.com/hiphopdx http://instagram.com/hiphopdx Voice Over By: Ayeeedubb https://www.instagram.com/ayeeedubb/ Script Written By: Karan Singh Video Edit: CT https://www.instagram.com/goodluckct/ Video Manager: Jeremy Hecht http://www.instagram.com/jeremy_hecht Executive Producer: Sharath Cherian For over 21 years, HipHopDX has been at the forefront of Hip Hop culture, reaching over 3.2 million readers and 5 million followers per month. As one of the longest-standing Hip Hop digital publications, DX not only stays current on ...
Thanks to ExpressVPN for sponsoring this video. Go to https://expressvpn.com/jontron to take back your Internet privacy TODAY and find out how you can get 3 months free. FOLLOW ME ON INSTAGRAM HERE: http://www.instagram.com/jontronshow FOLLOW ME ON TWITTER HERE: http://www.twitter.com/jontronshow Cast: Jon Jafari - Himself Magical Living SouljaGame - Sergio Emilio Torres I'm tired - Yes I am Crew: Jon Jafari - Director/Lead Editor Mike Shayne - Director of Cinematography/Post Production Andrew Reynoso - Editor/Production Melanie Licata - Costume/Prop Designer Sergio Emilio Torres - Production
REMASTERED IN HD! Official Music Video for Turn My Swag On performed by Soulja Boy. Follow Soulja Boy: Instagram: https://www.instagram.com/souljaboy Facebook: https://www.facebook.com/souljaboy TikTok: https://www.tiktok.com/@souljaboytv #SouljaBoy #TurnMySwagOn #Remastered
Get ready for an exclusive tour of the luxurious Draco Mansion, featuring Big Draco himself! From the arcade machines to the swimming pool with outdoor TVs, witness the amazing life of Draco in this epic house tour! Don't miss it! Find REVOLT on TV here: https://revolt.tv/providers Stay connected with REVOLT here: Download our app for more exclusive content! https://revolt.onelink.me/7Lb8/e6zon0g1 + Subscribe now: http://bit.ly/REVOLT_Subscribe_Now Website: http://www.revolt.tv/?utm_source=YouTube&utm_medium=Organic_Referral (Surf) Instagram: http://Instagram.com/REVOLTTV (Follow) Twitter: http://twitter.com/REVOLTTV (Follow) Facebook: http://www.facebook.com/REVOLT (Like) Text Us! (404) 737-1393 Snapchat: Revolt.TV (Add) TikTok: REVOLT About REVOLT : Launched by Sean "Di...
Soulja Boy: The Biggest Liar in Rap History Click here to subscribe: https://tinyurl.com/SubHHC Soulja Boy became a superstar overnight when he dropped Crank That in 2007. But the buzz didn’t last for long and he ended up falling off just as fast as he blew up - and when he couldn’t keep the momentum up, he started lying for attention. Most rap fans have heard at least a couple of his wild made-up stories about himself, but today we’re breaking down how Soulja Boy is actually the biggest liar in rap history. Check out these videos too: Suge Knight Admits Killing Eazy-E? https://www.youtube.com/watch?v=m9sHOUG1bvY Why Suge Knight Tried To Kill Snoop Dogg https://www.youtube.com/watch?v=oAVHRmXvGos Everyone Drake Took Shots At On "Her Loss" https://www.youtube.com/watch?v=IHUFyLWPT...
Soulja Boy - Soulja Season (Official Video) NEW ALBUM "SOULJA SEASON" MAY 12 https://souljaboy.ffm.to/souljaseason https://souljaboy.ffm.to/souljaboy SOULJAWORLD Tour: https://www.livenation.com/artist/K8vZ917G6TV/soulja-boy-events #souljaboy #souljaseason
Music video by Soulja Boy Tell'em performing Blowing Me Kisses. (C) 2010 ColliPark Music/Interscope Records
Listen to "Deja Vu" the Album: https://music.empi.re/dejavusoulja Connect with #Soulja: https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Connect with #Montiyago: https://www.instagram.com/_montiyago_/ https://twitter.com/Montiyago2 https://www.tiktok.com/@montiyago Directed by Andrew Dmello & Magnum Ghandour https://www.instagram.com/mellodrives https://www.instagram.com/mg_offiicial Music Production: Fodi https://www.instagram.com/fodimix_/ SVNBIRDS / EMPIRE https://www.instagram.com/svnbirdspro/ https://www.instagram.com/empire.wana/ #soulja #Montiyago #london #dejavu
Connect with Soulja: https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Music Production: 7xusam https://www.instagram.com/7xusam/ Mixing: Swish https://www.instagram.com/omar.swish Mastering: Mike Seaberg https://www.instagram.com/mikeseaberg/ Album Cover: Marwan on the Moon https://www.instagram.com/marwanonthemoon/ SVNBIRDS / EMPIRE https://www.instagram.com/svnbirdspro/ https://www.instagram.com/empire.wana/
As its name indicates, “Qesas” tells the stories, trials and tribulations faced by Soulja over a musical tapestry woven by music producer Hussam using the melodic synth rhythms of Sudanese “Zanig”; a genre born as a natural progression of non-mainstream music in Sudan. “Qesas” sends a message of hope, that despite the ups and downs of life, there are still things to work towards and be hopeful about. زي ما الإسم بيشير، تراك قصص بيحكي التجارب والحكايات اللي بيمر بيها سولجا والشباب السوداني على أنغام من توزيع المنتج حسام مستوحاة من موسيقى "الزنق" السودانية، واللي هي بدورها تعتبر التطور الطبيعي لموسيقى الشارع والشباب السوداني. "قصص" جواها رسالة أمل، بتقول لينا مع إن الدنيا يوم فوق ويوم تحت، فيها برضو البيخلينا نجتهد ونطمح وننتج. Connect with Soulja https://instagram.com/souljamusic https:...
"Charleston" captures the essence of Sudan’s golden era - the 1970s, a time of prosperity and intellectual openness. Referencing the iconic Charleston Jeans worn in the 70s, Soulja expresses how his life was upended as he ventures into stardom. “Charleston” is available on all streaming platforms. Listen here: https://bit.ly/2PNNzuV --- Connect with Soulja https://instagram.com/souljamusic?igshid=1wkd2y61rf61u https://twitter.com/souljamusicc Produced by Monkey https://www.instagram.com/_a7med999_/ Engineered by 77 https://instagram.com/prodby77?igshid=tvp8n9yzmmwx Music Video produced by DecemberTwentySix https://www.instagram.com/dec26films/ Learn more about Soulja: https://soulja-music.com/
Soulja - Fantastic (Official Video) سولجا - فانتاستك Listen to Fantastic: https://music.empi.re/fantasticsoulja Connect with Soulja https://instagram.com/souljamusic https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Produced by Fodi https://www.instagram.com/fodimix_ Mixed & Mastered by Fodi https://www.instagram.com/fodimix_ Directed by Jaily Mahdi https://instagram.com/jailyalimahdi Video Production by Klozium Studio D.O.P: Ayman Mohammed Producer: Sagda Alnoor Production Manager: Hind Khalid Editing by Read Al Murish https://instagram.com/raedrebel SVNBIRDS https://www.instagram.com/svnbirdspro https://www.svnbirds.com
OUT NOW ON ALL PLATFORMS https://music.empi.re/bringi Connect with Soulja https://instagram.com/souljamusic?igs... https://twitter.com/souljamusicc Produced by Mshakil https://www.instagram.com/mshakil_beatz/?hl=en Mixed & Mastered by 77 & Fodi https://www.instagram.com/prodby77/?igshid=tvp8n9yzmmwx https://www.instagram.com/fodimix_/?hl=en SVNBIRDS https://www.instagram.com/svnbirdspro/ Learn more about Soulja: https://soulja-music.com/
Step into Soulja’s world. Set to a high-energy jersey-type beat, “Ronaldo” offers a peek into the life of a star in the making. Featuring footage from his sprint of regional shows in 2023, the video takes you behind the scenes in Dubai, where the non-stop energy of Soulja’s journey unfolds. ."ادخلوا عالم سولجا وشاركوه في رحلته في الطريق إلى النجومية في فيديو كليب أغنية "رونالدو الفيديو يحكي تفاصيل رحلات سولجا وعروضه في العام الماضي ويأخذكم في رحلة خلف كواليس زياراته لمدينة دبي، المدينة التي تحاكي طاقة سولجا العالية وشغفه Connect with Soulja https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Director: Andrew Dmello https://www.instagram.com/mellodrives/ Music Production: 77 https://www.instagram.com/prodby77/ Mixing: Swish htt...
Connect with Soulja: https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Connect with Montiyago: https://www.instagram.com/_montiyago_/ https://twitter.com/Montiyago2 https://www.tiktok.com/@montiyago Music Production: Fodi https://www.instagram.com/fodimix_/ Mixing: Fodi https://www.instagram.com/fodimix_/ Mastering: Mike Seaberg https://www.instagram.com/mikeseaberg/ Album Cover: Marwan on the Moon https://www.instagram.com/marwanonthemoon/ SVNBIRDS / EMPIRE https://www.instagram.com/svnbirdspro/ https://www.instagram.com/empire.wana/
REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered
Listen to "Deja Vu" the Album: https://music.empi.re/dejavusoulja Connect with #Soulja: https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Connect with #Montiyago: https://www.instagram.com/_montiyago_/ https://twitter.com/Montiyago2 https://www.tiktok.com/@montiyago Directed by Andrew Dmello & Magnum Ghandour https://www.instagram.com/mellodrives https://www.instagram.com/mg_offiicial Music Production: Fodi https://www.instagram.com/fodimix_/ SVNBIRDS / EMPIRE https://www.instagram.com/svnbirdspro/ https://www.instagram.com/empire.wana/ #soulja #Montiyago #london #dejavu
Connect with Soulja: https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Music Production: 7xusam https://www.instagram.com/7xusam/ Mixing: Swish https://www.instagram.com/omar.swish Mastering: Mike Seaberg https://www.instagram.com/mikeseaberg/ Album Cover: Marwan on the Moon https://www.instagram.com/marwanonthemoon/ SVNBIRDS / EMPIRE https://www.instagram.com/svnbirdspro/ https://www.instagram.com/empire.wana/
As its name indicates, “Qesas” tells the stories, trials and tribulations faced by Soulja over a musical tapestry woven by music producer Hussam using the melodic synth rhythms of Sudanese “Zanig”; a genre born as a natural progression of non-mainstream music in Sudan. “Qesas” sends a message of hope, that despite the ups and downs of life, there are still things to work towards and be hopeful about. زي ما الإسم بيشير، تراك قصص بيحكي التجارب والحكايات اللي بيمر بيها سولجا والشباب السوداني على أنغام من توزيع المنتج حسام مستوحاة من موسيقى "الزنق" السودانية، واللي هي بدورها تعتبر التطور الطبيعي لموسيقى الشارع والشباب السوداني. "قصص" جواها رسالة أمل، بتقول لينا مع إن الدنيا يوم فوق ويوم تحت، فيها برضو البيخلينا نجتهد ونطمح وننتج. Connect with Soulja https://instagram.com/souljamusic https:...
"Charleston" captures the essence of Sudan’s golden era - the 1970s, a time of prosperity and intellectual openness. Referencing the iconic Charleston Jeans worn in the 70s, Soulja expresses how his life was upended as he ventures into stardom. “Charleston” is available on all streaming platforms. Listen here: https://bit.ly/2PNNzuV --- Connect with Soulja https://instagram.com/souljamusic?igshid=1wkd2y61rf61u https://twitter.com/souljamusicc Produced by Monkey https://www.instagram.com/_a7med999_/ Engineered by 77 https://instagram.com/prodby77?igshid=tvp8n9yzmmwx Music Video produced by DecemberTwentySix https://www.instagram.com/dec26films/ Learn more about Soulja: https://soulja-music.com/
Soulja - Fantastic (Official Video) سولجا - فانتاستك Listen to Fantastic: https://music.empi.re/fantasticsoulja Connect with Soulja https://instagram.com/souljamusic https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Produced by Fodi https://www.instagram.com/fodimix_ Mixed & Mastered by Fodi https://www.instagram.com/fodimix_ Directed by Jaily Mahdi https://instagram.com/jailyalimahdi Video Production by Klozium Studio D.O.P: Ayman Mohammed Producer: Sagda Alnoor Production Manager: Hind Khalid Editing by Read Al Murish https://instagram.com/raedrebel SVNBIRDS https://www.instagram.com/svnbirdspro https://www.svnbirds.com
OUT NOW ON ALL PLATFORMS https://music.empi.re/bringi Connect with Soulja https://instagram.com/souljamusic?igs... https://twitter.com/souljamusicc Produced by Mshakil https://www.instagram.com/mshakil_beatz/?hl=en Mixed & Mastered by 77 & Fodi https://www.instagram.com/prodby77/?igshid=tvp8n9yzmmwx https://www.instagram.com/fodimix_/?hl=en SVNBIRDS https://www.instagram.com/svnbirdspro/ Learn more about Soulja: https://soulja-music.com/
Step into Soulja’s world. Set to a high-energy jersey-type beat, “Ronaldo” offers a peek into the life of a star in the making. Featuring footage from his sprint of regional shows in 2023, the video takes you behind the scenes in Dubai, where the non-stop energy of Soulja’s journey unfolds. ."ادخلوا عالم سولجا وشاركوه في رحلته في الطريق إلى النجومية في فيديو كليب أغنية "رونالدو الفيديو يحكي تفاصيل رحلات سولجا وعروضه في العام الماضي ويأخذكم في رحلة خلف كواليس زياراته لمدينة دبي، المدينة التي تحاكي طاقة سولجا العالية وشغفه Connect with Soulja https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Director: Andrew Dmello https://www.instagram.com/mellodrives/ Music Production: 77 https://www.instagram.com/prodby77/ Mixing: Swish htt...
Connect with Soulja: https://www.instagram.com/souljamusic/ https://twitter.com/souljamusicc https://www.tiktok.com/@souljamusicc Connect with Montiyago: https://www.instagram.com/_montiyago_/ https://twitter.com/Montiyago2 https://www.tiktok.com/@montiyago Music Production: Fodi https://www.instagram.com/fodimix_/ Mixing: Fodi https://www.instagram.com/fodimix_/ Mastering: Mike Seaberg https://www.instagram.com/mikeseaberg/ Album Cover: Marwan on the Moon https://www.instagram.com/marwanonthemoon/ SVNBIRDS / EMPIRE https://www.instagram.com/svnbirdspro/ https://www.instagram.com/empire.wana/
REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered
DeAndre Cortez Way (born July 28, 1990), better known by his stage name Soulja Boy Tell 'Em, or simply Soulja Boy, is an American rapper, record producer, actor, and entrepreneur born in Chicago, Illinois.
In September 2007, his single "Crank That (Soulja Boy)" reached number one on the US Billboard Hot 100. The single was initially self-published on the internet, and it later became a number-one hit in the United States for seven non-consecutive weeks starting in September 2007. On August 17 Way was listed at number 18 on the Forbes list of Hip-Hop Cash Kings of 2010 earning $7 million for that year.
Way has currently released three studio albums and one independent album: his debut studio album Souljaboytellem.com (2007) was certified platinum by the RIAA. However, his next two albums, iSouljaBoyTellem (2008) and The DeAndre Way (2010) did not match the commercial success of his debut, the latter only selling 100,000 copies, despite the success of several singles across both albums, such as "Kiss Me Thru the Phone" and "Turn My Swag On" (iSouljaBoyTellem) and "Pretty Boy Swag" (The DeAndre Way). Way digitally released his fifth studio album, Blessed, on July 28, 2015.
This is no ordinary love song
Won't make a thousand promises no, no
'Cause I got to get somethings to give her
And it might take a minute, babe, so I won't say when
Like a robin way up high, blue skies we'll fly
Like a candle burning bright our love it will shine
Like a tulip in June, believe in our love
It will bloom real soon, real soon
Life in a way is a boat of roses
It's all like a road that never ends, yes it is
But maybe the lessons that I'm learning
Maybe it'll make me a better lover and friend
Like a robin way up high, blue skies we'll fly
Like a candle burning bright our love it will shine
Like a tulip in June, believe in our love
It will bloom real soon, real soon
(You and I)
Were truly meant to be together
(Like birds we'll fly)
[Incomprehensible] weather
(Love takes time)
When it's truly meant to last forever
(Like yours and mine)
One day like birds of a feather just like
Robin way up high, blue skies we'll fly
Like a candle burning bright, our love it will shine
Just like a tulip in June, believe in our love
It will bloom real soon, real soon
Just like a robin way up high, blue skies we'll fly
Like a candle burning bright, our love it will shine
Ohh, like a tulip in June, believe in our love it will
It will bloom real soon, real soon, real soon, real soon
Robin way up high, blue skies we'll fly
Candle burning bright our love will shine