- published: 28 Oct 2023
- views: 6908
'+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; })); }); -->
Session man may refer to:
Session Man is a 1991 short drama film directed by Seth Winston. It won an Academy Award in 1992 for Best Short Subject.
An aging, but capable and talented session guitarist named McQueen (Remar) is awakened by a late-night call from a nearby recording studio. He is needed to help smooth out some tracks that are being worked on by an established and popular hard rock band, the Raging Kings. The band’s own lead guitarist, Dean Storm (Kober) is resentful of McQueen’s involvement, and after an argument with the other members he decides to leave the group altogether. Impressed by McQueen’s skills, the band asks him on the spot to replace Storm and he graciously accepts, fulfilling his lifelong dream.
After a brief jam session, Storm suddenly returns to the studio and asks to speak privately with the original band. They soon return from the meeting, and one member comes to McQueen and reluctantly tells him that he is out. Stunned, McQueen manages to complete what he was called to do and returns home to his wife, who is still in bed. She asks what the call was about, to which McQueen replies “Just another session.” The film ends with McQueen staring into the darkness, trying to come to terms with how he realized his dream and lost it in the same night.
The Kinks were an English rock band formed in Muswell Hill, North London, in 1963 by brothers Dave and Ray Davies. They are regarded as one of the most important and influential rock groups of the era. The band emerged in 1964 during the height of British rhythm and blues and Merseybeat, and were briefly part of the British Invasion of the US until their touring ban in 1965. Their third single, the Ray Davies penned "You Really Got Me", became an international hit, topping the charts in the United Kingdom and reaching the Top 10 in the United States. Between the mid-1960s and early 1970s, the group released a string of hit singles; studio albums drew good reviews but sold less than compilations of their singles. They gained a reputation for reflecting English culture and lifestyle, fuelled by Ray Davies' observational writing style. Albums such as Face to Face, Something Else, The Kinks Are the Village Green Preservation Society, Arthur, Lola Versus Powerman and the Moneygoround and Muswell Hillbillies, along with their accompanying singles, are considered among the most influential recordings of the period.
Kinks is the self-titled debut album by English rock band The Kinks, released in 1964. It was released with three tracks omitted as You Really Got Me in the US.
The album was re-released in 1998 in the UK on Castle Records with twelve bonus tracks. This reissue was itself reissued in 2004 on the Sanctuary label. A deluxe edition was released on 28 March 2011.
Allmusic assessed the album as lacking in consistency, commenting that "As R&B cover artists, the Kinks weren't nearly as adept as the Stones and Yardbirds; Ray Davies' original tunes were, "You Really Got Me" aside, perfunctory Mersey Beat-ish pastiches; and [the] tunes that producer Shel Talmy penned for the group... were simply abominable."
All songs by Ray Davies, except where noted.
The Session Man tells the story of Nicky Hopkins, the highly gifted and prolific session pianist and unsung hero.
Starring James Remar as McQueen as a professional session musician, this short film won an Oscar at the 64th Academy Awards for Best Short Subject. McQueen is called up to work a session with The Raging Kings rock band when the current guitarist and the band have a vicious falling out. McQueen steps in and rocks with the band as current guitarist walks out. Written and directed by Seth Winston.
The Session Man tells the story of Nicky Hopkins, the highly gifted and prolific session pianist and unsung hero.
In this Oscar winning short film, James Remar stars as Mcqueen, a virtuoso session guitar player who has yearned for his entire lifetime to become a musical star but was never able to catch a break. When he gets a sudden late night call from the Raging Kings, one of the most popular bands in the world, he sees a possible light at the end of the tunnel. Directed by Stan Winston. This is one of my alltime favorite short films, with a very memorable soundtrack. Part 2 of 3. SUBTERRANEAN CINEMA http://subcin.wordpress.com
On September 1971, the British press wrote about Nicky Hopkins and spoke to him about his career as a session musician and the bands and artists he had worked with. This was an especially productive period in Nicky Hopkins' career. He had played piano on some tracks from the album "Who's Next" by The Who, he had also played on John Lennon's "Imagine" album and he was then working with the Stones on what would become one of their greatest records, "Exile On Main Street". Plus, bonus info! Nicky Hopkins in 1967. Hope you enjoy it
CLICK "SUBSCRIBE" FOR MORE FROM THIS CHANNEL Glen Campbell, Hal Blaine, Larry Knechtel, Joe Osborn, Jim Horn, Don Randi, Carol Kaye, Earl Palmer, Jim Keltner, Lee Sklar, Bones Howe, Nancy Sinatra. Produced, directed and edited by Gil Baker. THE SESSION MEN STORY 1965. At Western Studios in LA, a group of musicians (later known as The Wrecking Crew) are working on a song called Help Me Rhonda. They include Glen Campbell, Hal Blaine, Larry Knechtel, Don Randi and Ms. Carol Kaye on bass. When Rhonda shoots to Number One, the Beach Boys are heralded for their brilliant musicianship. But their live shows don't sound like their records. And no wonder. The Wrecking Crew performed on all of the big Beach Boys hits. Brian Wilson requested these players after hearing the magic they created for P...
CLICK "SUBSCRIBE" FOR MORE FROM THIS CHANNEL Roger Hawkins, David Hood, Jimmy Johnson, Pete Carr, Clayton Ivey, Johnny Rivers and Fame producer Rick Hall. Cinematography John Wolf. Sound Rodney Hall. Filmed at Fame Recording Studio. THE SESSION MEN STORY 1965. At Western Studios in LA, a group of musicians (later known as The Wrecking Crew) are working on a song called Help Me Rhonda. They include Glen Campbell, Hal Blaine, Larry Knechtel, Don Randi and Ms. Carol Kaye on bass. When Rhonda shoots to Number One, the Beach Boys are heralded for their brilliant musicianship. But their live shows don't sound like their records. And no wonder. The Wrecking Crew performed on all of the big Beach Boys hits. Brian Wilson requested these players after hearing the magic they created for Phil Spec...
Before Led Zeppelin, John Paul Jones was one of the most in-demand session bassists and arrangers in Britain. On March 1966, a British magazine met up with John Paul Jones to talk about his career as a session musician and the bands he had played on, among other things.
Ray movie clips: http://j.mp/1uvLwdY BUY THE MOVIE: http://amzn.to/u80F3F Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Margie (Regina King) is drunk and bitter during a recording session. Ray (Jamie Foxx) sends her and the other Raelettes home which allows him to experiment with the way he records back-up vocals. FILM DESCRIPTION: Directed by Taylor Hackford, this biopic profiles the life of legendary musician Ray Charles. Despite humble beginnings and the loss of his eyesight due to glaucoma at the age of six, Charles, depicted by Jamie Foxx, would nonetheless become an icon in both the music industry and the civil rights era. While the film delves into his problems with drugs and women, the bulk of the story details his career; among the highlights of th...
Song is "The Sound of Silence", by Simon & Garfunkel. Harp is the Fullsicle, by Harpsicle. Deer is startled. Support this channel on Patreon ► https://www.patreon.com/naomisv Instagram ► https://www.instagram.com/_naomisv_/ More harp music on Spotify ►https://open.spotify.com/artist/6viWbHUkojc2MQe5nSYiZk?si=QBtC3_QaRWqQOF_OQsavOg&dl_branch=1
The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow The Journey: https://thekinks.lnk.to/thejourneypt2ID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Originally released on 4th August 1964, the band's 3rd single You Really Got Me went to number 1 on the UK singles chart and later in the year to number 7 in the US charts. The track is taken from the Kinks self-...
The Kinks performing "Sunny Afternoon", released originally in 1966. It reached #1 in UK Singles Chart, #1 in Canada Top Singles, #1 in Norway, #1 in Netherlands, #1 in Ireland, #11 in US Cash Box Top 100, and #14 in US Billboard Hot 100. "Sunny Afternoon" is an iconic track by The Kinks that reflects the English lifestyle. The Kinks were one of the most influential English rock bands of the 1960s, formed in 1964 in Muswell Hill, North London, by brothers Ray Davies and Dave Davies. The band was known for their authentic and sincere songs, which were drenched in English culture and influenced by various genres such as R&B, rock and roll, British music hall, folk, and country. Ray Davies wrote "Sunny Afternoon" while he was dealing with fatherhood and a bad cold. He recorded the song in...
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Follow The Kinks Facebook: https://thekinks.lnk.to/thejourneypt1FA Twitter: https://thekinks.lnk.to/thejourneypt1TW Instagram: https://thekinks.lnk.to/thejourneypt1IN TikTok: https://thekinks.lnk.to/thejourneypt1TK Website: https://thekinks.lnk.to/thejourneypt1WE Originally released as a single on 3rd June 1966, it stayed at number one on the UK singles chart for two weeks, and peaked at No.14 in the US. The track features on the bands fourth studio album Face To Face, released in October 1966. Face ...
Visit the Official Store And Buy a Vinyl: https://thekinks.lnk.to/60storeID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X / Twitter: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID The Kinks were an English rock band formed in London in 1963 by brothers Ray and Dave Davies. They are regarded as one of the most influential rock bands of the 1960s. The Kinks' music drew from a wide range of influences, including American R&B and rock and roll initially...
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Subscribe to The Kinks: https://kinks.lnk.to/subscribeYD Follow The Kinks Facebook: https://thekinks.lnk.to/thejourneypt1FA Twitter: https://thekinks.lnk.to/thejourneypt1TW Instagram: https://thekinks.lnk.to/thejourneypt1IN TikTok: https://thekinks.lnk.to/thejourneypt1TK Website: https://thekinks.lnk.to/thejourneypt1WE Lyrics: They put a parking lot on a piece of land Where the supermarket used to stand Before that, they put up a bowling alley On the site that used to be the local palais That's wher...
the kinks- you really got me
The Kinks Lola Top of the Pops 1970 UMG
Visit the Official Store And Buy a Vinyl: https://thekinks.lnk.to/60storeID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X / Twitter: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID The Kinks were an English rock band formed in London in 1963 by brothers Ray and Dave Davies. They are regarded as one of the most influential rock bands of the 1960s. The Kinks' music drew from a wide range of influences, including American R&B and rock and roll initially...
The Kinks Session Man Face To Face 1966 He never will forget at all The day he played at the Albert Hall A million sessions ago, it seems He is a session man A chord progression A top musician Rock and roll or folk group star A philharmonic orchestra Everything comes the same to him He is a session man A chord progression A top musician He's not paid to think, just play A session man A session man A session man Playing at a different studio every day He reads the dots and plays each line And always finishes on time No overtime nor favors done He is a session man A chord progression A top musician He's not paid to think, just play A session man A session man A session man A session man A session man #kinks #1966 #sessionman
#TheKinks60 #TheKinks #TheJourney The Kinks are launching a 60th Anniversary Celebration of their illustrious musical career, confirming their vital importance to popular music. Subscribe to the channel and join us in celebrating! Follow the journey: https://thekinks.lnk.to/thejourneypt1ID Follow The Kinks: Facebook: https://thekinks.lnk.to/FacebookID X / Twitter: https://thekinks.lnk.to/TwitterID Instagram: https://thekinks.lnk.to/InstagramID YouTube: https://thekinks.lnk.to/YouTubeID TikTok: https://thekinks.lnk.to/TikTokID Website: https://thekinks.lnk.to/WebsiteID Official Store: https://thekinks.lnk.to/60storeID Originally released on 23rd October 1964 in the UK and 9th December 1964 in the US. The track was included on the Kinksize Hits EP. Lyrics: I'm not content to be with you i...
Session man may refer to:
He never will forget at all
The day he played at the Albert Hall.
A million sessions ago it seems.
He is a session man,
A chord progression,
A top musician.
Rock 'n' roll or vocal star[?],
A philharmonic orchestra,
Everything comes the same to him.
He is a session man,
A chord progression,
A top musician.
He's not paid to think, just play,
A session man
A session man
A session man
Playing at a different studio every day.
He reads the dots and plays each line,
And always finishes on time.
No overtime nor favors done.
He is a session man,
A chord progression,
A top musician.
He's not paid to think, just play,
A session man
A session man