- published: 06 Sep 2020
- views: 25995512
'+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; })); }); -->
"You Make Me Feel..." is a song recorded by American synthpop band Cobra Starship with guest vocals by Sabi. It was the first single released from their fourth studio album, Night Shades. The song was released digitally through iTunes on May 10, 2011. The song is a dance-pop, electropop song and it talks about looking for a soul mate in the club. It received mixed reviews from most music critics, some of them thought that the song is "catchy and happy", but at the same time they criticized it for being too "faceless and empty".
After the success of the single "Good Girls Go Bad", which was their most successful single on the charts, Cobra Starship began to record what would be their fourth studio album. "You Make Me Feel..." was released before the album finish and it served as the first single from the album entitled "Night Shades". It was released on May 10, 2011 and features the American singer/rapper Sabi. The singer/actress turned rapper first came to many people's attention after Britney Spears gave her a spot on her track "(Drop Dead) Beautiful".
You Make Me Feel may refer to:
"You Make Me Feel (Mighty Real)" is the title of a 1978 single by American disco singer Sylvester James, who performed using just his first name, Sylvester. The song was written by James Wirrick and Sylvester and appears on the singer's 1978 album, Step II.
The track was originally recorded as a mid tempo piano driven gospel tune, however after producer Patrick Cowley saw a rehearsal of the song at San Francisco's city disco, he offered to remix the song. The result was one of the pioneering disco records using electronic instrumentation and effects, following closely on from I Feel Love, by Donna Summer, that would have such an influence on 80s and 90s dance music.
The song was Sylvester's first Top 10 hit in the United Kingdom, where it peaked at #8 on the UK Singles Chart in October 1978. In Sylvester's home country, the single was his second Top 40 hit, peaking at #36 on the Billboard Hot 100 chart in February 1979. The song also reached #20 on the Billboard Hot Soul Singles chart. A 12" single was released in 1978, with "Dance (Disco Heat)" as the A-side and "You Make Me Feel (Mighty Real)" as the B-side, and these two extended dance mixes proved to be very popular in dance clubs at the time. The two songs held down the top spot on the Billboard Dance/Disco chart for six weeks in August and September 1978. These two songs helped to establish Sylvester's career as a noted disco and dance music performer, both in the U.S. and abroad.
Yanou (born Yann Peifer) is a German trance musician and producer. He is most famous for collaborating on DJ Sammy's hit "Heaven" with vocalist Do and for being a member of the popular German trance act Cascada alongside DJ Manian and Natalie Horler. Before Yanou worked with Cascada and DJ Sammy he produced and wrote tracks for "Beam & Yanou" in the late 1990s.
Stream the fully remastered version of Step II here: found.ee/Sylvester-stepII-s Follow Sylvester on Facebook at: found.ee/Sylvester-fb-d
The official lyric video for Adam Lambert x Sigala's 'You Make Me Feel (Mighty Real)' the official Pride in London 2023 song. Follow Adam: Instagram: https://AdamLambert.lnk.to/InstagramYC TikTok: https://AdamLambert.lnk.to/TikTokYC Facebook: https://AdamLambert.lnk.to/FacebookYC Twitter: https://AdamLambert.lnk.to/TwitterYC Website: https://AdamLambert.lnk.to/WebsiteYC Follow Sigala: Instagram: https://www.instagram.com/sigala/ Facebook: http://www.facebook.com/sigalamusic Twitter: http://www.twitter.com/sigalamusic TikTok: https://www.tiktok.com/@sigalamusic Website: https://www.sigalamusic.com/ Find out more about Pride in London: https://prideinlondon.org/ Lyrics: [Verse 1] When we're out there dancin' on the floor, darlin' And I feel like I need some more And I feel your bo...
You Make Me Feel (Mighty Real) Official Video HD Restoration Pre-order ‘Read My Lips (Remastered and Expanded)’: https://jimmy-somerville.lnk.to/RML23 Listen to ‘You Make Me Feel (Mighty Real) (Gerd Janson Remix)’ here: https://jimmy-somerville.lnk.to/gerdmix Subscribe to Jimmy Somerville’s mailing list: https://jimmy-somerville.lnk.to/mail Follow Jimmy Somerville Instagram https://www.instagram.com/jimmysomervilleofficial/ Facebook https://www.facebook.com/officialjimmysomerville Twitter https://twitter.com/JimmySomerville YouTube https://youtube.com/@JimmySomervilleOFFICIAL Follow London Records Facebook https://londonrecords.lnk.to/Facebook Instagram https://londonrecords.lnk.to/Instagram Twitter https://londonrecords.lnk.to/Twitter Youtube https://londonrecords.lnk.to/YTSub...
‘Read My Lips (Remastered and Expanded)’ is out now: https://jimmy-somerville.lnk.to/RML23ID Subscribe to our channel: https://londonrecords.lnk.to/YTSubscribeID Sign up to our mailing list: https://londonrecords.lnk.to/signupID Follow Jimmy Somerville Instagram https://www.instagram.com/jimmysomervilleofficial/ Facebook https://www.facebook.com/officialjimmysomerville Twitter https://twitter.com/JimmySomerville YouTube https://youtube.com/@JimmySomervilleOFFICIAL Follow London Records Store https://londonrecords.lnk.to/StoreID Facebook https://londonrecords.lnk.to/FacebookID Instagram https://londonrecords.lnk.to/InstagramID Twitter https://londonrecords.lnk.to/TwitterID TikTok https://londonrecords.lnk.to/tiktokID YouTube https://londonrecords.lnk.to/YTSubscribeID ↓ LYRICS ↓ ...
Music video by Sylvester performing You Make Me Feel (Mighty Real). (C) 2013 Concord Music Group, Inc.
Adam Lambert blew everyone away with his anthem-filled set at Capital’s Summertime Ball – what a performance! Check out his rendition of ‘You Make Me Feel (Mighty Real)’ at Wembley Stadium, we’re still recovering. #adamlambert #SummertimeBall #Capital ✨ Watch all the performances, interviews and backstage highlights on Global Player: https://app.af.globalplayer.com/Br0x/stb23dmes ✨ 👉 globalplayer.com or search ‘Global Player’ in your App Store 📱 Capital’s Summertime Ball with Barclaycard returned to Wembley Stadium, London on Sunday 11th June 2023 with a huge line-up of artists including Niall Horan, Jonas Brothers and Anne-Marie. SUBSCRIBE to our YouTube channel 👉 http://capitalfm.co/Subscribe WATCH MORE from Capital on Global Player 👉 https://global-player.onelink.me/Br0x/CapitalG...
Pour son audition à l'aveugle, Alex a choisi le morceau de Sylvester "You Make Me Feel". Un choix payant puisqu'il fera se retourner Garou, Jenifer et Mika. Il choisira finalement comme coach Garou ! 🎤 Découvrez les covers exclusives des talents : http://bit.ly/TheVoice_100inedits 🎤 Abonnez-vous à la chaîne : http://bit.ly/1OdKCbY 🎤 Revoir toutes les performances de la saison : http://bit.ly/TheVoiceFRS3 The Voice : La Plus Belle Voix est une émission de télévision française de télé-crochet musical diffusée sur TF1. Des chanteurs expérimentés ou novices tentent de séduire le public et les 4 coachs, Florent Pagny, Mika, Garou et Jenifer lors d’auditions à l’aveugle, de battle et de primes. Présentée par Nikos Aliagas et Karine Ferri, la saison 3 de The Voice a été diffusée du 11 janvier 2...
The Very Best Of Jimmy Somerville, Bronski Beat & The Communards, 2001
"GMA" celebrates Pride Month with Lambert's performance of his new single, which is a cover of Sylvester's disco classic. SUBSCRIBE: https://bit.ly/2Zq0dU5 SIGN UP to get the daily GMA Wake-Up Newsletter: https://gma.abc/2Vzcd5j VISIT GMA: https://www.goodmorningamerica.com FOLLOW: TikTok: https://tiktok.com/@gma Instagram: https://instagram.com/GoodMorningAmerica Facebook: https://facebook.com/GoodMorningAmerica Twitter: https://twitter.com/gma #adamlambert #pride #sylvester #dance #gma
"You Make Me Feel..." is a song recorded by American synthpop band Cobra Starship with guest vocals by Sabi. It was the first single released from their fourth studio album, Night Shades. The song was released digitally through iTunes on May 10, 2011. The song is a dance-pop, electropop song and it talks about looking for a soul mate in the club. It received mixed reviews from most music critics, some of them thought that the song is "catchy and happy", but at the same time they criticized it for being too "faceless and empty".
After the success of the single "Good Girls Go Bad", which was their most successful single on the charts, Cobra Starship began to record what would be their fourth studio album. "You Make Me Feel..." was released before the album finish and it served as the first single from the album entitled "Night Shades". It was released on May 10, 2011 and features the American singer/rapper Sabi. The singer/actress turned rapper first came to many people's attention after Britney Spears gave her a spot on her track "(Drop Dead) Beautiful".
Deep in the night, when I'm alone.
My heart starts to burn, cause I feel for you.
I've been away too long from my love.
I leave it up to you to understand.
I've got this feeling, deep in my mind.
Come back and love me, just one more time.
On the ground of an ocean, we buried our love far away.
My heart's still bleeding, won't you come back and stay.
I can't understand, why there's salt in my eyes.
I can't understand, why your heart's in disguise.
For I still need you, and I want you to come back again.
You make me feel like never again.
I Can't find the answer from the look in your eyes.
My heart's still crying. Don't tell me your love's a lie.
You're still the one to set me in a state of trance.
Why don't we give us a second chance.
I can't understand, why you laugh, though you cry.
I can't undersand, why I don't say goodbye.
For I still need you, and I want you to come back again.
You make me feel like never again.
For I still need you, and I want you to come back again.