- published: 05 Dec 2019
- views: 12801
'+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; })); }); -->
Axel Stordahl (August 8, 1913 – August 30, 1963) was an arranger who was active from the late 1930s through the 1950s. He is perhaps best known for his work with Frank Sinatra in the 1940s at Columbia Records. With his sophisticated orchestrations, Stordahl is credited with helping to bring pop arranging into the modern age.
Stordahl was born in Staten Island, New York to Norwegian immigrant parents. He began his career as a trumpeter in jazz bands which played in several dance bands around Long Island and the Catskills during the late 1920s and early 1930s. He also began arranging around this time, and in 1933 he joined Bert Bloch's orchestra in both capacities. Over the next couple of years, Stordahl sang on the side in a vocal trio dubbed the Three Esquires.
In 1935, he joined Tommy Dorsey's new orchestra and soon became the band's main arranger. In January 1940, Sinatra joined the group as vocalist, and it became apparent that Stordahl's arrangements were particularly well suited to the singer's voice.
"In the Mood" is a big band-era #1 hit recorded by American bandleader Glenn Miller. It topped the charts for 13 straight weeks in 1940 in the U.S. and one year later was featured in the movie Sun Valley Serenade.
In 1983, the Glenn Miller recording from 1939 was inducted into the Grammy Hall of Fame.
In 1999, National Public Radio (NPR) included the 1939 Glenn Miller recording on RCA Bluebird on the NPR 100, the list of "The 100 most important American musical works of the 20th century".
In 2004, the 1939 Glenn Miller recording on RCA Victor was inducted into the Library of Congress National Recording Registry which consists of recordings that are "culturally, historically, or aesthetically significant."
"In the Mood" opens with a now-famous sax section theme based on repeated arpeggios that are rhythmically displaced; trumpets and trombones add accent riffs. The arrangement has two solo sections; a "tenor fight" or chase solo—in the most famous recording, between Tex Beneke and Al Klink—and a 16-bar trumpet solo by Clyde Hurley. The arrangement is also famous for its ending: a coda that climbs triumphantly, then sounds a simple sustained unison tonic pitch with a rim shot.
In the Mood is an album of tunes associated with Glenn Miller by jazz trumpeter Chet Baker and the Mariachi Brass recorded in 1966 and released on the World Pacific label.
Allmusic rated the album with 1 star stating "This LP, which has absolutely terrible arrangements of songs associated with Glenn Miller finds Baker halfheartedly playing some of the boring melodies".
"In the Mood" is a song recorded by Australian singer and songwriter Ricki-Lee Coulter for her fourth studio album Dance in the Rain. It was written by Coulter, Stuart Crichton and Brian Lee. Following the album's iTunes pre-order release, "In the Mood" debuted at number 97 on the ARIA Singles Chart.
"In the Mood" was written by Ricki-Lee Coulter, Stuart Crichton and Brian Lee. During the summer of 2013, Coulter rented a house in Whale Beach, New South Wales and invited Crichton and Lee over to write songs with her. Together they "setup a makeshift studio in the house" and wrote four songs, including "In the Mood". Coulter spoke about the writing sessions on her website, saying: "We drank, we danced, we wrote, we had fun and we were surrounded by friends and good vibes." On 19 September 2014, "In the Mood" was made available to download alongside the iTunes pre-order of Coulter's fourth studio album Dance in the Rain. Fans who pre-ordered the album on iTunes would instantly receive the song for free. Cameron Adams of the Herald Sun described "In the Mood" as "anthemic and athletic". For the issue dated 29 September 2014, "In the Mood" debuted at number 97 on the ARIA Singles Chart.
Pistas A1 As Time Goes By A2 A Blues Serenade A3 It's Easy To Remember A4 That Old Feeling B1 Imagination B2 What Is There To Say B3 Love Letters B4 I'm Getting Sentimental Over You
"Night and Day" (1942) Frank Sinatra with Axel Stordahl
as time goes by a blues serenade it's easy to remember that old feeling imagination what is there to say? love letters i’m getting sentimental ouer you
Axel Stordahl Neiani Jasmine & Jade (1960) Dot Records (DLP 25282)
The Moon of Manakoora Composer: Alfred Newman Performer: Axel Stordahl & Orchestra Label: Dot DLP 25282 - Track A3 Recorded: 1960
Imagination from the LP 'Dreamtime' Composer: Jimmy Van Heusen Performer: The Strings Of Axel Stordahl Label: Capitol H445 - Track B1 Recorded: 1953
Frank Sinatra - The Coffee Song 1946 - Axel Stordahl orchestra
Provided to YouTube by Universe Remasterings Over the Rainbow (feat. Axel Stordahl and His Orchestra, the George Siravo Orchestra, Hugo Winterhalter and His Orchestra) · Frank Sinatra · Axel Stordahl and His Orchestra · the George Siravo Orchestra · Hugo Winterhalter and His Orchestra · Edgar Yip Harburg · Harold Arlen · Edgar Yip Harburg · Harold Arlen The Voice: Songs by Sinatra / Swing and Dance with Frank Sinatra (1942 - 1951 Columbia Years) ℗ Universe Remasterings Released on: 2013-01-01 Auto-generated by YouTube.
Written by Eric Maschwitz and Jack Strachey in 1935, recorded by Frank Sinatra on Columbia Records in 1946. As always, a real joy to add my voice to this Axel Stordahl arrangement.
Glenn Miller - In The Mood Picture is from the movie "The Glenn Miller Story" (1953) starring James Stewart "In the Mood" is a song popularized by the American bandleader Glenn Miller in 1939, and one of the best-known arrangements of the big band era. Miller's rendition topped the charts one year later and was featured in the 1941 movie Sun Valley Serenade. ----------------------------------------------------- I've been looking Glenn Miller videos and noticed that all of them have low quality, so I decided to upload this nice version of the song.
Glenn Miller and his Orchestra performing "In The Mood", released originally in 1941. "In The Mood" is one of the best-known musical themes of the 1940s and one of the big band era's most recognizable songs. The song was the biggest hit of 1940 WHC and of Miller's career. The song went through several others' hands before it ended up with Miller. This song was based on a song called "Tar Paper Stomp" which was recorded in 1930 by Joseph "Wingy" Manone, who was a bandleader from New Orleans. This song was written by the Tin Pan Alley composers Joe Garland (music) and Andy Razaf (lyrics). "In The Mood" is an expression that indicates a desire to have sex. It was pretty innocent at the time, but a little racy. Miller recorded it in 1939, and the song became wildly popular in early 1940, sh...
"In the Mood" by Glenn Miller Listen to Glenn Miller: https://GlennMiller.lnk.to/listenYD Chorus: In the mood, that's what he told me In the mood, and when he told me In the mood, my heart was skippin' It didn't take me long to say "I'm in the mood now" In the mood for all his kissin' In the mood his crazy lovin' In the mood what I was missin' It didn't take me long to say "I'm in the mood now" #GlennMiller #IntheMood #OfficialAudio
Grab your dancing shoes and enjoy this classic Glenn Miller tune brought to life by America's Big Band, the Jazz Ambassadors! Video by Staff Sgt. Anthony Pocetti, audio by Staff Sgt. Ricky Furr. http://www.armyfieldband.com http://www.youtube.com/ArmyFieldBand http://www.facebook.com/ArmyFieldBand http://twitter.com/armyfieldband https://www.instagram.com/armyfieldband/ http://www.facebook.com/thesixstringsoldiers For more information visit our website or contact: The United States Army Field Band 4214 Field Band Drive STE 5330 Fort Meade, Maryland 20755-7055 #jazz #swing #glennmiller
Official video for "Mood" by 24kGoldn featuring iann dior. Listen + Download ‘El Dorado’ out now: https://24kgoldn.lnk.to/ElDorado Amazon Music - https://24kgoldn.lnk.to/ElDorado/amazonmusic Apple Music - https://24kgoldn.lnk.to/ElDorado/applemusic Audiomack - https://24kgoldn.lnk.to/ElDorado/audiomack Deezer - https://24kgoldn.lnk.to/ElDorado/deezer iTunes - https://24kgoldn.lnk.to/ElDorado/itunes Soundcloud - https://24kgoldn.lnk.to/ElDorado/soundcloud Spotify https://24kgoldn.lnk.to/ElDorado/spotify YouTube Music - https://24kgoldn.lnk.to/ElDorado/youtubemusic Play as 24kGoldn in search of the treasure of El Dorado in El Dorado: The Game http://24kgoldn.com/ Explore the world of El Dorado with Scavengar https://scvngr.app/edgl El Dorado merch available now at https://shop.24kgol...
The Nolans - I'm In the Mood for Dancing (Official Video) Stream The Nolans here: https://TheNolans.lnk.to/YTStreaming Subscribe to the The Nolans YouTube Channel: https://TheNolans.lnk.to/YTSubscribe Follow The Nolans: Facebook: https://en-gb.facebook.com/thenolansi... Instagram: https://www.instagram.com/thenolansof... Twitter: https://twitter.com/the_nolans #TheNolans #ImInTheMoodForDancing #TheNolansOfficial #TheNolans #TheNolansGreatestHits #TheNolansImInTheMoodForDancing #TheNolansOfficialAudio #BestOfTheNolans #TheNolansEssentials #TheNolansPlaylist #TheNolansPlaylist #TheNolans #TheNolansSongs #ImInTheMood #ImInTheMoodForDancingTheNolans #GottaPullMyselfTogether Lyrics: Ooh, ooh Yeah, yeah I'm in the mood for dancing, romancing Ooh I'm giving it all tonight I'm in the mood f...
Official music video for Robert Plant, 'In The Mood', from "The Principle of Moments" (1982) and Digging Deep. Digging Deep 7" Singles Boxset ▶ https://lnk.to/RP_DiggingDeep_Vinyl Stream Robert Plant here ▶ https://lnk.to/ThisisRobertPlant Subscribe to YouTube here ▶ https://www.youtube.com/user/RobertPlantVideos?sub_confirmation=1 Listen to Robert Plant's Digging Deep Podcast ▶ https://www.youtube.com/playlist?list=PLHafvQnXslJUet3gF7DVw8dHD_kUdHO2g For live updates and tickets follow here ▶ https://www.songkick.com/artists/39257-robert-plant LYRICS I'm in the mood for a melody I'm in the mood for a melody I'm in the mood I'm in the mood for a melody I'm in the mood for a melody I'm in the mood I'm in the mood for a melody I'm in the mood for a melody I'm in the mood I can m...
Provided to YouTube by The Orchard Enterprises In the Mood · Glenn Miller Moods, Vol. 2 ℗ 2010 Orange Leisure Released on: 2010-07-26 Auto-generated by YouTube.
Provided to YouTube by Universal Music Group In The Mood · Glenn Miller Orchestra In The Digital Mood ℗ 1983 UMG Recordings, Inc. Released on: 1983-07-20 Producer, Studio Personnel, Mixer: Dave Grusin Producer, Studio Personnel, Recording Engineer, Mixer: Larry Rosen Conductor: Larry O'Brien Associated Performer, Recording Arranger: Glenn Miller Author: Andy Razaf Composer: Joseph C. Garland Auto-generated by YouTube.
Axel Stordahl (August 8, 1913 – August 30, 1963) was an arranger who was active from the late 1930s through the 1950s. He is perhaps best known for his work with Frank Sinatra in the 1940s at Columbia Records. With his sophisticated orchestrations, Stordahl is credited with helping to bring pop arranging into the modern age.
Stordahl was born in Staten Island, New York to Norwegian immigrant parents. He began his career as a trumpeter in jazz bands which played in several dance bands around Long Island and the Catskills during the late 1920s and early 1930s. He also began arranging around this time, and in 1933 he joined Bert Bloch's orchestra in both capacities. Over the next couple of years, Stordahl sang on the side in a vocal trio dubbed the Three Esquires.
In 1935, he joined Tommy Dorsey's new orchestra and soon became the band's main arranger. In January 1940, Sinatra joined the group as vocalist, and it became apparent that Stordahl's arrangements were particularly well suited to the singer's voice.
[Talib Kweli]
Yes, welcome to the wonderful sounds of Talib Kweli
Ladies...
I got you in the mood, for an interlude,
Raw like in the nude, I hope this ain't considered rude,
But let's stop talkin, cause it's feelin like an interview,
I know you into me, so, let me get into you,
I'm always in the mood for laughin and lovin and rappin and (fuckin),
And passin the dutch and relaxin and puffin and hittin and duckin,
The rippin production, these kittens ain't muffins,
Just because we stuff 'em in the oven,
My words drippin off the tongue like the wax from a candle wick,
Ill the way I lay down the rap, they can't handle it,
Cats all sappy like romantic flicks, dude, get a clue,
Like Colonel Mustard in the study with a candlestick,
They holdin hands with these dudes like they goin steady,
But, one glimpse and I know they ready, you already know,
Slipped her a note like, 'you ready to go?'
We make a getaway plan and we head for the do'!
[Chorus x2]
I wear the night like a cloak 'cause I move with the stars,
Navigate through the truly bizarre,
Who we are, who we is, it's the kids that stay true to this life,
And if the mood is right, we gon' do it tonight,
[Kanye]
You messin up my mo', my whole mood, told you, oh,
Lose, eat crews like crews like soulfood,
The only producer that feel like "fuck rappers!"
Only backpacker with a chip like hackers,
Only Michael Richardson, only much blacker,
So if he say nigger, then I'ma say (cracker),
Is this the Ritz? Carlton? Dress like, fresh, like, just like..
I'm the shit (Uggh)
You ain't figured out what I'm about yet,
Always rockin that 'this ain't out yet',
But this ain't 'bout that,
From a city where niggers plug like outlets,
Far as music go yo, it ain't no outlets, so,
When I go out, niggers always out to get me in the studio,
And I ain't in the mood to flow,
I'm with my girl and I'm tryin to hit the movies yo,
And they tryna act stupid, oh!
In the club with Silicone Suzie,
What happened to real girls like Rudy?
With real titties like Tooty,
This girl got a silicone booty!
And got the nerve to act moody!
Now I ain't tryin to judge like Judy,
But bitch you a man, you can't fool me!
Act like Fifty, throw her in a pool G...
[Chorus x2]
[Talib:] Break it down
Bringin the drum, keep it funky like a stink in a slum,
'Cause see they wanna breed cursin for the things that don't come
The speakers wrong that we rap dudes speakin in tongues
Christmas time choice for what? No we keepin our guns
Smokin a piff to cause a leak in your lungs,
You ain't got shit to do like Friday when the weekend begun,
Completely done with rap dudes - don't compete with the dumb,
I spill my blood for my people, see how deep it can run?
I'm in the mood like Dante and Main Flow,
Never comin with the same flow, got it's change, yo
It's strange yo, to make yo chain glow, that's yo main goal
That's a facade like I'm somewhere over the rainbow
Really these cats sweeter than mangoes, Mr Bojangles-ass dudes,
Dancin around the club, doin the tango,
Go hard like Iverson playin with hurt ankles,
Plus, wrestle the topic from a different Kurt Angle!
[Chorus x2]
[Roy Ayers] Wow, that's a nice track!