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

I Know

I Know may refer to:

Music

Albums

  • I Know (Luther Vandross album), 1998
  • I Know (Tone Damli album), 2009
  • I Know, by John Gorka
  • Songs

  • "I Know" (Dionne Farris song), 1995
  • "I Know" (Drake Bell song), 2006
  • "I Know" (Jay-Z song), 2008
  • "I Know" (Yo Gotti song), 2013
  • "I Know (You Don't Love Me No More)", a 1961 song by Barbara George
  • "She's So High/I Know", a double A-side single by the English rock band Blur
  • "I Know", by Barenaked Ladies from their album Born on a Pirate Ship
  • "I Know", by B.G. from its album Checkmate
  • "I Know", by Big Sean featuring Jhene Aiko
  • "I Know", by Fiona Apple from her album When the Pawn...
  • "I Know", by The Hollywood Flames
  • "I Know", by Joe Walsh from his album Songs for a Dying Planet
  • "I Know", by Kylie Minogue recorded around the time of Ultimate Kylie
  • "I Know", by Luther Vandross from his album I Know
  • "I Know", by New Atlantic
  • "I Know", by Perry Como, written by Carl Stutz and Edith Lindeman
  • "I Know", by Placebo from their self-titled album
  • "I Know", by Korean singer Se7en
  • "I Know", by Shift K3Y
  • I Know (I Know)

    "I Know (I Know)" is a song written by John Lennon released on his 1973 album Mind Games. The song is included on the 1998 box set, John Lennon Anthology. Lennon called the song, "just a piece of nothing," though some have read the song as a confession of troubles with his relationship with Yoko Ono.

    Personnel

    The musicians who performed on the original recording were as follows:

  • John Lennon – vocals, acoustic guitar
  • David Spinozza – guitar
  • Ken Ascher – keyboards
  • Gordon Edwards – bass guitar
  • Jim Keltner – drums
  • References

    External links

  • Lyrics of this song at MetroLyrics

  • I Know (Tone Damli song)

    "I Know" is a song by Norwegian singer Tone Damli from her third studio album I Know (2009). It was released in Norway on 27 April 2009. The song has peaked to number 4 on the Norwegian Singles Chart.

    Track listing

    Chart performance

    Release history

    References

    Jaz-O

    Jonathan Burks (born October 4, 1964), better known by his stage name Jaz-O, is an American rapper and record producer active in the late 1980s through the 1990s, best known for being the mentor of Jay Z. Jaz is also known as the Originator and had a song called "The Originators" that featured a young Jay Z in 1990. As The Jaz, he had success with his 1989 single "Hawaiian Sophie" from his debut album Word to the Jaz. He has been featured on some of Jay Z's songs, (such as "Bring it On" from Reasonable Doubt), "Ain't No Nigga", and the single "Nigga What, Nigga Who (Originator 99)" from Vol. 2: Hard Knock Life, where he was credited as Big Jaz. He also produced the single "Ain't No Nigga" from Reasonable Doubt and the song "Rap Game/Crack Game" from In My Lifetime, Vol. 1. The album "Kingz Kounty (2002) - with The Immobilarie Present" marked the last time Jay Z and mentor Jaz-O would ever collaborate.

    Career

    Feud with Jay-Z

    The long-standing feud between him and Jay-Z started when Jay-Z started Roc-A-Fella Records and he tried to convince Jaz-O and fellow rapper Sauce Money to sign with the label. They both refused. It is rumored that they didn't trust Roc-A-Fella Records CEOs Damon Dash and Kareem "Biggs" Burke. In addition, they weren't satisfied with what they were to be receiving had they signed the contract, 300,000 dollars in Jaz-O's case. Jay-Z confirms this event on the song "What We Talkin' About" on the Blueprint 3 album when he says "Dame made millions, even Jaz made some scraps, he could've made more but he ain't sign his contract."

    Podcasts:

    • Travis Scott - I KNOW ? (Official Music Video)

      Travis Scott - I KNOW ? (Official Music Video) "UTOPIA" available at: https://TravisScott.lnk.to/UTOPIA Directed by Dave Meyers & Travis Scott Starring Emily Ratajkowski & Anok Yai Label: Cactus Jack Records Label Producer: Sam Lecca Production Company: Freenjoy Produced by Nathan Scherrer & Roisín Audrey Moloney Cinematographer: Scott Cunningham Production Designer: Veronica Gutierrez Travis Scott online: https://shop.travisscott.com/ https://twitter.com/trvisXX https://www.instagram.com/travisscott/ https://soundcloud.com/travisscott-2 https://www.facebook.com/travisscottlaflame https://travisscott.com/ (C) 2024 Cactus Jack Records under exclusive license to Epic Records, a division of Sony Music Entertainment #TravisScott #UTOPIA #IKNOW

      published: 23 Jan 2024
    • Travis Scott - I KNOW ? (Official Audio)

      Travis Scott - I KNOW ? (Official Audio) "UTOPIA" available at: https://TravisScott.lnk.to/UTOPIA Travis Scott online: https://shop.travisscott.com/ https://twitter.com/trvisXX https://www.instagram.com/travisscott/ https://soundcloud.com/travisscott-2 https://www.facebook.com/travisscottlaflame https://travisscott.com/ (C) 2023 Cactus Jack Records under exclusive license to Epic Records, a division of Sony Music Entertainment #TravisScott #UTOPIA #IKNOW

      published: 28 Jul 2023
    • Travis Scott - I KNOW ? (Lyrics)

      ♫ Travis Scott - I KNOW ? Stream/Download: https://TravisScott.lnk.to/UTOPIA • Travis Scott • • https://twitter.com/trvisXX • https://www.instagram.com/travisscott/ • https://soundcloud.com/travisscott-2 • https://facebook.com/travisscottlaflame • https://travisscott.com/ (Lyrics): [Chorus] Tell me, is you still up? (Up) It's five A.M. and I'm drunk right now Tell me, can we still fuck? (Fuck that shit) One of one, I'm in the zone right now Tell me, am I still? (Mmm) Tellin' you just how I feel right now You said it's just the drugs and I know I know, I know, I know, I know, I know, I know I lied too, way before (Let's go), before Before I had you right inside my arms But then again, I could be drunk (It's lit, yeah) [Verse 1] Baby, I don't wanna sound righteous (Yeah) I got twen...

      published: 09 Aug 2023
    • Kanii - I Know (PR1SVX Edit) [Visualizer]

      Stream "I Know" (PR1SVX Edit) now: https://kanii.lnk.to/IKnow Follow Kanii: Instagram: https://www.instagram.com/kanii_o/ TikTok: https://www.tiktok.com/@kanii_o Facebook: https://www.facebook.com/officialkanii Credits A visual by @ben.hanning & @omikoi Footage by @tommykiljoy @spacehrts Lyrics: i know you understand, i can’t leave you alone, i give you my time, but you can’t pick up the phone, life done been so tragic ha, it won’t leave me alone, try not to be obsessive, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, ho wah, you only gon text me when your bored, don’t like the feeling of being ignored, told you we too grown for this, m...

      published: 24 Mar 2023
    • kanii - i know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know

      Kanii - I Know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know : https://open.spotify.com/playlist/632LusrUF4XM1Q29DCUyww?si=fed75cc7bdc74866 ⭐HyperTunes https://open.spotify.com/playlist/632LusrUF4XM1Q29DCUyww?si=fed75cc7bdc74866 https://soundcloud.com/hyper_tunes https://www.instagram.com/itshypertunes/ https://www.tiktok.com/@itshypertunes Stream Kanii - I Know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know: https://kanii.lnk.to/IKnow ⭐Kanii Instagram: https://www.instagram.com/kanii_o/ TikTok: https://www.tiktok.com/@kanii_o Facebook: https://www.facebook.com/officialkanii [verse 1] i know you understand i can't leave you alone i give you my time, but you can't pick up the phone life done been so tragic, huh it won't leave me alone try not to be obsessive [chorus] i f...

      published: 23 Mar 2023
    • Big Sean - I Know ft. Jhené Aiko (Official Music Video)

      D A R K S K Y P A R A D I S E AVAILABLE NOW! Deluxe: http://smarturl.it/DarkSkyParadiseDex?IQid=vevo Standard: http://smarturl.it/DarkSkyParadiseS?IQid=vevo Get The 'DARK SKY PARADISE' Black Long Sleeve + IDFWU Beanie Bundle: http://smarturl.it/bigseanshop?IQid=vevo http://uknowbigsean.com Director : Lawrence Lamont Production Company : Lord Danger Producer : Josh Shadid, Maxwell Riesberg, Shyam Sundar Sengupta Music video by Big Sean performing I Know. (C) 2015 Getting Out Our Dreams, Inc./Def Jam Recordings, a division of UMG Recordings, Inc. http://vevo.ly/l0jtJD Best of Big Sean: https://goo.gl/aUXeR4 Subscribe here: https://goo.gl/89s6Fb #BigSean #IKnow #Vevo #HipHop #JheneAiko

      published: 24 Jun 2015
    • Yo Gotti - I Know (Official Music Video) ft. Rich Homie Quan

      Download the "I Am" album here: http://smarturl.it/i-am Spotify: http://open.spotify.com/album/57gO7DyFyvl59GdBHtjI74 www.yogottimusic.com www.facebook.com/yogotti www.twitter.com/yogottikom www.instagram.com/yogottikom www.soundcloud.com/yogottikom www.youtube.com/yogottivideos © 2014 Epic Records, a division of Sony Music Entertainment/CMG #YoGotti #IKnow #Vevo #HipHop #OfficialMusicVideo #RichHomieQuan

      published: 01 May 2014
    • i know-karaoke (tom jones)

      Learn to play guitar! Click here! https://a298bn7hqau-0o86-mt53rkr1f.hop.clickbank.net Enjoy singing like the great vocalist and legendary Sir Tom Jones! Sir Thomas John Woodward OBE (born 7 June 1940), known professionally as Tom Jones, is a Welsh singer. His career began with a string of top-ten hits in the mid-1960s. He has toured regularly, with appearances in Las Vegas (1967–2011), and has had several career comebacks, such as his high-profile coaching role on the television talent show The Voice UK from 2012 (with the exception of 2016). Jones's powerful voice has been described as a "full-throated, robust baritone". Source: Wikipedia @ https://en.wikipedia.org/wiki/Tom_Jones_(singer) Video is generated using YouTube Movie Maker. Kudos and with my sincerest apology to the copyri...

      published: 27 Oct 2018
    • Ask Amy: How can I know I’ll be okay no matter what?

      Lorin wonders how someone can come to know that they’ll be okay no matter what happens. Is that a belief we can adopt or a knowing one can realize? Send your questions to AskAmy@thelittleschoolofbigchange.com

      published: 23 Sep 2024
    • Irma - I know (Clip officiel)

      Titre co-produit par Irma & Trackinvaders Album "Letter to the Lord" disponible sur iTunes https://itunes.apple.com/fr/album/letter-to-lord-edition-collector/id473542381 Second album "Faces" dans les bacs le 2 juin! Retrouvez Irma sur Facebook : https://www.facebook.com/irmarockstar Twitter : http://www.twitter.com/irmamusic Irma est une artiste révélée par My Major Company http://www.mymajorcompany-label.com/irma

      published: 31 Dec 2010
    developed with YouTube
    Travis Scott - I KNOW ? (Official Music Video)
    3:47

    Travis Scott - I KNOW ? (Official Music Video)

    • Order:
    • Duration: 3:47
    • Uploaded Date: 23 Jan 2024
    • views: 47373948
    Travis Scott - I KNOW ? (Official Music Video) "UTOPIA" available at: https://TravisScott.lnk.to/UTOPIA Directed by Dave Meyers & Travis Scott Starring Emily Ratajkowski & Anok Yai Label: Cactus Jack Records Label Producer: Sam Lecca Production Company: Freenjoy Produced by Nathan Scherrer & Roisín Audrey Moloney Cinematographer: Scott Cunningham Production Designer: Veronica Gutierrez Travis Scott online: https://shop.travisscott.com/ https://twitter.com/trvisXX https://www.instagram.com/travisscott/ https://soundcloud.com/travisscott-2 https://www.facebook.com/travisscottlaflame https://travisscott.com/ (C) 2024 Cactus Jack Records under exclusive license to Epic Records, a division of Sony Music Entertainment #TravisScott #UTOPIA #IKNOW
    https://wn.com/Travis_Scott_I_Know_(Official_Music_Video)
    Travis Scott - I KNOW ? (Official Audio)
    3:34

    Travis Scott - I KNOW ? (Official Audio)

    • Order:
    • Duration: 3:34
    • Uploaded Date: 28 Jul 2023
    • views: 39874643
    Travis Scott - I KNOW ? (Official Audio) "UTOPIA" available at: https://TravisScott.lnk.to/UTOPIA Travis Scott online: https://shop.travisscott.com/ https://twitter.com/trvisXX https://www.instagram.com/travisscott/ https://soundcloud.com/travisscott-2 https://www.facebook.com/travisscottlaflame https://travisscott.com/ (C) 2023 Cactus Jack Records under exclusive license to Epic Records, a division of Sony Music Entertainment #TravisScott #UTOPIA #IKNOW
    https://wn.com/Travis_Scott_I_Know_(Official_Audio)
    Travis Scott - I KNOW ? (Lyrics)
    3:34

    Travis Scott - I KNOW ? (Lyrics)

    • Order:
    • Duration: 3:34
    • Uploaded Date: 09 Aug 2023
    • views: 5531112
    ♫ Travis Scott - I KNOW ? Stream/Download: https://TravisScott.lnk.to/UTOPIA • Travis Scott • • https://twitter.com/trvisXX • https://www.instagram.com/travisscott/ • https://soundcloud.com/travisscott-2 • https://facebook.com/travisscottlaflame • https://travisscott.com/ (Lyrics): [Chorus] Tell me, is you still up? (Up) It's five A.M. and I'm drunk right now Tell me, can we still fuck? (Fuck that shit) One of one, I'm in the zone right now Tell me, am I still? (Mmm) Tellin' you just how I feel right now You said it's just the drugs and I know I know, I know, I know, I know, I know, I know I lied too, way before (Let's go), before Before I had you right inside my arms But then again, I could be drunk (It's lit, yeah) [Verse 1] Baby, I don't wanna sound righteous (Yeah) I got twenty bitches suckin' like bisons I just eeny, meeny, miney, roll the dices, I pick her (Pop it, pop it) She ain't even really my type, been out here She been losin' herself to the night shift She been losin' herself and I get it, oh, girl, yeah, I get it Yeah, yeah, you've been fightin' for your shot And you've been searchin' for your spot Girl, I feel it, yeah, girl, I feel it, yeah Oh, you think you got your groove But you want someone like you (Let's go) [Chorus] Tell me, is you still up? (Up) It's five A.M. and I'm drunk right now Tell me, can we still fuck? (Fuck that shit) One of one, I'm in the zone right now Tell me, am I still? (Mmm) Tellin' you just how I feel right now You said it's just the drugs and I know I know, I know, I know, I know, I know, I know (Ooh, it's the kid, know it, damn it) I lied too, way before, before (How they feelin', how they feelin', ooh) Before I had you right inside my arms (Feelin' like some money tonight) But then again, I could be drunk (Yeah) [Verse 2] I know, mami, I know (Know), it's two A.M., don't stress (Stress) At three, that bullshit kick in, in thirty, you'll feel your best I turned my whole spot to crucial, it's crucial, the way I left (It's lit) Upstairs is like a low, my new bitches be the best (Let's go) I'm lookin' at her, when her startin' to turn into you (Her) Now you startin' to fuck up my mind, is it you, is it her? We brought Booby Trap to the 'burbs F29 is my address, in case you ain't heard It's floodin' upstairs, it's a leak I don't make it squeak, make it squirt I make this shit beat, bon appétit when I feast Slippin' and slide through the streets, it takes a finesse Especially in this Cabriolet Jeep, engine make it hard to creep Just leave the gate open, through the side door, I'ma creep (Ooh, ooh) Are you 'bout it? Too real, and are the kids downstairs asleep? And are you upstairs by yourself? A minute from there Is there some room for me? Baby, do tell, do tell [Chorus] Tell me, is you still up? (Up) It's five A.M. and I'm drunk right now Tell me, can we still fuck? (Fuck that shit) One of one, I'm in the zone right now Tell me, am I still? (Mmm) Tellin' you just how I feel right now You said it's just the drugs and I know I know, I know, I know, I know, I know, I know I lied too, way before (Let's go), before Before I had you right inside my arms But then again, I could be drunk Tags: I Know Lyrics Travis Scott I Know I Know Travis Scott Tell me is you still up? It's five A.M. and I'm drunk right now Tell me can we still fuck? One of one I'm in the zone right now Tell me am I still? Tellin' you just how I feel right now You said it's just the drugs and I know I know I know I know I know I know I know I lied too way before before Before I had you right inside my arms But then again I could be drunk I Know #TravisScott #iknow #Lyrics Contact: droppinglyricsvibe@gmail.com
    https://wn.com/Travis_Scott_I_Know_(Lyrics)
    Kanii - I Know (PR1SVX Edit) [Visualizer]
    2:14

    Kanii - I Know (PR1SVX Edit) [Visualizer]

    • Order:
    • Duration: 2:14
    • Uploaded Date: 24 Mar 2023
    • views: 10396074
    Stream "I Know" (PR1SVX Edit) now: https://kanii.lnk.to/IKnow Follow Kanii: Instagram: https://www.instagram.com/kanii_o/ TikTok: https://www.tiktok.com/@kanii_o Facebook: https://www.facebook.com/officialkanii Credits A visual by @ben.hanning & @omikoi Footage by @tommykiljoy @spacehrts Lyrics: i know you understand, i can’t leave you alone, i give you my time, but you can’t pick up the phone, life done been so tragic ha, it won’t leave me alone, try not to be obsessive, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, ho wah, you only gon text me when your bored, don’t like the feeling of being ignored, told you we too grown for this, make your choice, told you i’m too bold for this, already on it, she wanna spend some time away, she wanna spend some time, i can’t give my heart away, i’m too in my mind, i can’t give my cards away, i’m too in my grind, learned this shit the harder way, now i’m in my prime, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, i fucked up oh girl i know, i know, i know, #Kanii #iKnow #trynottobeobsessed
    https://wn.com/Kanii_I_Know_(Pr1Svx_Edit)_Visualizer
    kanii - i know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know
    2:55

    kanii - i know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know

    • Order:
    • Duration: 2:55
    • Uploaded Date: 23 Mar 2023
    • views: 12494624
    Kanii - I Know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know : https://open.spotify.com/playlist/632LusrUF4XM1Q29DCUyww?si=fed75cc7bdc74866 ⭐HyperTunes https://open.spotify.com/playlist/632LusrUF4XM1Q29DCUyww?si=fed75cc7bdc74866 https://soundcloud.com/hyper_tunes https://www.instagram.com/itshypertunes/ https://www.tiktok.com/@itshypertunes Stream Kanii - I Know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know: https://kanii.lnk.to/IKnow ⭐Kanii Instagram: https://www.instagram.com/kanii_o/ TikTok: https://www.tiktok.com/@kanii_o Facebook: https://www.facebook.com/officialkanii [verse 1] i know you understand i can't leave you alone i give you my time, but you can't pick up the phone life done been so tragic, huh it won't leave me alone try not to be obsessive [chorus] i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know oh-ah [verse 2] you only gon' text me when you're bored don't like the feeling of being ignored told you we're too grown for this, make your choice told you i'm too bold for this, already on it she wanna spend some time away, she wanna spend some timе i can't give my heart away, i'm too in my mind i can't give my cards away, i'm too in my grind lеarned this shit the harder way, now i'm in my prime [chorus] i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know oh-ah i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know i fucked up, oh girl, i know, i know, i know oh-ah [outro] i fucked up, oh girl, i know i fucked up, oh girl, i know i fucked up, oh girl, i know i fucked up, oh girl, i know i fucked up, oh girl, i know i fucked up, oh girl, i know i fucked up, oh girl, i know i fucked up, oh girl, i know Contact us here: itstiktoktunes@gmail.com Kanii - I Know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know #kanii#iknow#iknowtiktokremix#iknowpr1svxremix#iknowlyrics#lyrics#hypertunes#hyperpop
    https://wn.com/Kanii_I_Know_(Tiktok_Pr1Svx_Remix)_Lyrics_|_I_Fd_Up_Oh_Girl_I_Know
    Big Sean - I Know ft. Jhené Aiko (Official Music Video)
    4:55

    Big Sean - I Know ft. Jhené Aiko (Official Music Video)

    • Order:
    • Duration: 4:55
    • Uploaded Date: 24 Jun 2015
    • views: 124235594
    D A R K S K Y P A R A D I S E AVAILABLE NOW! Deluxe: http://smarturl.it/DarkSkyParadiseDex?IQid=vevo Standard: http://smarturl.it/DarkSkyParadiseS?IQid=vevo Get The 'DARK SKY PARADISE' Black Long Sleeve + IDFWU Beanie Bundle: http://smarturl.it/bigseanshop?IQid=vevo http://uknowbigsean.com Director : Lawrence Lamont Production Company : Lord Danger Producer : Josh Shadid, Maxwell Riesberg, Shyam Sundar Sengupta Music video by Big Sean performing I Know. (C) 2015 Getting Out Our Dreams, Inc./Def Jam Recordings, a division of UMG Recordings, Inc. http://vevo.ly/l0jtJD Best of Big Sean: https://goo.gl/aUXeR4 Subscribe here: https://goo.gl/89s6Fb #BigSean #IKnow #Vevo #HipHop #JheneAiko
    https://wn.com/Big_Sean_I_Know_Ft._Jhené_Aiko_(Official_Music_Video)
    Yo Gotti - I Know (Official Music Video) ft. Rich Homie Quan
    4:25

    Yo Gotti - I Know (Official Music Video) ft. Rich Homie Quan

    • Order:
    • Duration: 4:25
    • Uploaded Date: 01 May 2014
    • views: 180766513
    Download the "I Am" album here: http://smarturl.it/i-am Spotify: http://open.spotify.com/album/57gO7DyFyvl59GdBHtjI74 www.yogottimusic.com www.facebook.com/yogotti www.twitter.com/yogottikom www.instagram.com/yogottikom www.soundcloud.com/yogottikom www.youtube.com/yogottivideos © 2014 Epic Records, a division of Sony Music Entertainment/CMG #YoGotti #IKnow #Vevo #HipHop #OfficialMusicVideo #RichHomieQuan
    https://wn.com/Yo_Gotti_I_Know_(Official_Music_Video)_Ft._Rich_Homie_Quan
    i know-karaoke (tom jones)
    3:58

    i know-karaoke (tom jones)

    • Order:
    • Duration: 3:58
    • Uploaded Date: 27 Oct 2018
    • views: 8464199
    Learn to play guitar! Click here! https://a298bn7hqau-0o86-mt53rkr1f.hop.clickbank.net Enjoy singing like the great vocalist and legendary Sir Tom Jones! Sir Thomas John Woodward OBE (born 7 June 1940), known professionally as Tom Jones, is a Welsh singer. His career began with a string of top-ten hits in the mid-1960s. He has toured regularly, with appearances in Las Vegas (1967–2011), and has had several career comebacks, such as his high-profile coaching role on the television talent show The Voice UK from 2012 (with the exception of 2016). Jones's powerful voice has been described as a "full-throated, robust baritone". Source: Wikipedia @ https://en.wikipedia.org/wiki/Tom_Jones_(singer) Video is generated using YouTube Movie Maker. Kudos and with my sincerest apology to the copyright owner/s of the featured song for non-consensual use. Kindly contact me via email for the matter. This is for viewers opportunity not only to listen to traditional songs and instrumentals but to show off and discover their hidden talent in singing. #IKnow #TomJones #Delilah
    https://wn.com/I_Know_Karaoke_(Tom_Jones)
    Ask Amy: How can I know I’ll be okay no matter what?
    9:48

    Ask Amy: How can I know I’ll be okay no matter what?

    • Order:
    • Duration: 9:48
    • Uploaded Date: 23 Sep 2024
    • views: 187
    Lorin wonders how someone can come to know that they’ll be okay no matter what happens. Is that a belief we can adopt or a knowing one can realize? Send your questions to AskAmy@thelittleschoolofbigchange.com
    https://wn.com/Ask_Amy_How_Can_I_Know_I’Ll_Be_Okay_No_Matter_What
    Irma - I know (Clip officiel)
    2:53

    Irma - I know (Clip officiel)

    • Order:
    • Duration: 2:53
    • Uploaded Date: 31 Dec 2010
    • views: 28944363
    Titre co-produit par Irma & Trackinvaders Album "Letter to the Lord" disponible sur iTunes https://itunes.apple.com/fr/album/letter-to-lord-edition-collector/id473542381 Second album "Faces" dans les bacs le 2 juin! Retrouvez Irma sur Facebook : https://www.facebook.com/irmarockstar Twitter : http://www.twitter.com/irmamusic Irma est une artiste révélée par My Major Company http://www.mymajorcompany-label.com/irma
    https://wn.com/Irma_I_Know_(Clip_Officiel)
    • Tone Damli Aaberge I Know

      published: 16 Jun 2009
    • Tone Damli Aaberge - I Know - live @ Senkveld TV2 (HQ)

      Tone Damli Aaberge fremfører singelen "I know" live på Senkveld, TV2

      published: 23 Mar 2009
    • I Know

      Provided to YouTube by Universal Music Group I Know · Tone Damli Looking Back ℗ 2009 Eccentric Music Released on: 2012-04-20 Producer: David Eriksen Composer Lyricist: David Eriksen Composer Lyricist: Dag Rune Kristiansen Auto-generated by YouTube.

      published: 23 Jul 2018
    • Tone Damli Aaberge - I Know - TV2s Artistgalla, 05.2009. HQ.

      published: 19 Oct 2011
    • tone damli i know

      sad song

      published: 13 Jun 2012
    • Artistgalla 2009 - I Know (Tone Damli Aaberge)

      Tone Damli Aaberge synger I Know under artistgallaen 2009 i Drammen 18 April 2009

      published: 19 Apr 2009
    developed with YouTube
    Tone Damli Aaberge I Know
    3:57

    Tone Damli Aaberge I Know

    • Order:
    • Duration: 3:57
    • Uploaded Date: 16 Jun 2009
    • views: 123225
    https://wn.com/Tone_Damli_Aaberge_I_Know
    Tone Damli Aaberge - I Know - live @ Senkveld TV2 (HQ)
    4:11

    Tone Damli Aaberge - I Know - live @ Senkveld TV2 (HQ)

    • Order:
    • Duration: 4:11
    • Uploaded Date: 23 Mar 2009
    • views: 147709
    Tone Damli Aaberge fremfører singelen "I know" live på Senkveld, TV2
    https://wn.com/Tone_Damli_Aaberge_I_Know_Live_Senkveld_Tv2_(Hq)
    I Know
    3:55

    I Know

    • Order:
    • Duration: 3:55
    • Uploaded Date: 23 Jul 2018
    • views: 2694
    Provided to YouTube by Universal Music Group I Know · Tone Damli Looking Back ℗ 2009 Eccentric Music Released on: 2012-04-20 Producer: David Eriksen Composer Lyricist: David Eriksen Composer Lyricist: Dag Rune Kristiansen Auto-generated by YouTube.
    https://wn.com/I_Know
    Tone Damli Aaberge - I Know - TV2s Artistgalla, 05.2009. HQ.
    3:52

    Tone Damli Aaberge - I Know - TV2s Artistgalla, 05.2009. HQ.

    • Order:
    • Duration: 3:52
    • Uploaded Date: 19 Oct 2011
    • views: 28332
    https://wn.com/Tone_Damli_Aaberge_I_Know_Tv2S_Artistgalla,_05.2009._Hq.
    tone damli i know
    3:59

    tone damli i know

    • Order:
    • Duration: 3:59
    • Uploaded Date: 13 Jun 2012
    • views: 148
    sad song
    https://wn.com/Tone_Damli_I_Know
    Artistgalla 2009 - I Know (Tone Damli Aaberge)
    4:00

    Artistgalla 2009 - I Know (Tone Damli Aaberge)

    • Order:
    • Duration: 4:00
    • Uploaded Date: 19 Apr 2009
    • views: 32711
    Tone Damli Aaberge synger I Know under artistgallaen 2009 i Drammen 18 April 2009
    https://wn.com/Artistgalla_2009_I_Know_(Tone_Damli_Aaberge)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Travis Scott - I KNOW ? (Official Music Video)
      3:47
      Travis Scott - I KNOW ? (Official Music Video)remove from playlist
    • Travis Scott - I KNOW ? (Official Audio)
      3:34
      Travis Scott - I KNOW ? (Official Audio)remove from playlist
    • Travis Scott - I KNOW ? (Lyrics)
      3:34
      Travis Scott - I KNOW ? (Lyrics)remove from playlist
    • Kanii - I Know (PR1SVX Edit) [Visualizer]
      2:14
      Kanii - I Know (PR1SVX Edit) [Visualizer]remove from playlist
    • kanii - i know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know
      2:55
      kanii - i know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i knowremove from playlist
    • Big Sean - I Know ft. Jhené Aiko (Official Music Video)
      4:55
      Big Sean - I Know ft. Jhené Aiko (Official Music Video)remove from playlist
    • Yo Gotti - I Know (Official Music Video) ft. Rich Homie Quan
      4:25
      Yo Gotti - I Know (Official Music Video) ft. Rich Homie Quanremove from playlist
    • i know-karaoke (tom jones)
      3:58
      i know-karaoke (tom jones)remove from playlist
    • Ask Amy: How can I know I’ll be okay no matter what?
      9:48
      Ask Amy: How can I know I’ll be okay no matter what?remove from playlist
    • Irma - I know (Clip officiel)
      2:53
      Irma - I know (Clip officiel)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Travis Scott - I KNOW ? (Official Music Video)

    Travis Scott - I KNOW ? (Official Music Video) "UTOPIA" available at: https://TravisScott.lnk.to/UTOPIA Directed by Dave Meyers & Travis Scott Starring Emily Ratajkowski & Anok Yai Label: Cactus Jack Records Label Producer: Sam Lecca Production Company: Freenjoy Produced by Nathan Scherrer & Roisín Audrey Moloney Cinematographer: Scott Cunningham Production Designer: Veronica Gutierrez Travis Scott online: https://shop.travisscott.com/ https://twitter.com/trvisXX https://www.instagram.com/travisscott/ https://soundcloud.com/travisscott-2 https://www.facebook.com/travisscottlaflame https://travisscott.com/ (C) 2024 Cactus Jack Records under exclusive license to Epic Records, a division of Sony Music Entertainment #TravisScott #UTOPIA #IKNOW
    3:47
    Travis Scott - I KNOW ? (Official Music Video)
    Travis Scott - I KNOW ? (Official Music Video) "UTOPIA" available at: https://TravisScott...
    published: 23 Jan 2024
    Play in Full Screen
    3:34
    Travis Scott - I KNOW ? (Official Audio)
    Travis Scott - I KNOW ? (Official Audio) "UTOPIA" available at: https://TravisScott.lnk.t...
    published: 28 Jul 2023
    Play in Full Screen
    3:34
    Travis Scott - I KNOW ? (Lyrics)
    ♫ Travis Scott - I KNOW ? Stream/Download: https://TravisScott.lnk.to/UTOPIA • Travis Sc...
    published: 09 Aug 2023
    Play in Full Screen
    2:14
    Kanii - I Know (PR1SVX Edit) [Visualizer]
    Stream "I Know" (PR1SVX Edit) now: https://kanii.lnk.to/IKnow Follow Kanii: Instagram: ht...
    published: 24 Mar 2023
    Play in Full Screen
    2:55
    kanii - i know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know
    Kanii - I Know (tiktok/pr1svx remix) Lyrics | i fd up oh girl i know : https://open.spotif...
    published: 23 Mar 2023
    Play in Full Screen
    4:55
    Big Sean - I Know ft. Jhené Aiko (Official Music Video)
    D A R K S K Y P A R A D I S E AVAILABLE NOW! Deluxe: http://smarturl.it/DarkSkyParadiseDe...
    published: 24 Jun 2015
    Play in Full Screen
    4:25
    Yo Gotti - I Know (Official Music Video) ft. Rich Homie Quan
    Download the "I Am" album here: http://smarturl.it/i-am Spotify: http://open.spotify.com/a...
    published: 01 May 2014
    Play in Full Screen
    3:58
    i know-karaoke (tom jones)
    Learn to play guitar! Click here! https://a298bn7hqau-0o86-mt53rkr1f.hop.clickbank.net En...
    published: 27 Oct 2018
    Play in Full Screen
    9:48
    Ask Amy: How can I know I’ll be okay no matter what?
    Lorin wonders how someone can come to know that they’ll be okay no matter what happens. Is...
    published: 23 Sep 2024
    Play in Full Screen
    2:53
    Irma - I know (Clip officiel)
    Titre co-produit par Irma & Trackinvaders Album "Letter to the Lord" disponible sur iTune...
    published: 31 Dec 2010
    Play in Full Screen

    I Know

    I Know may refer to:

    Music

    Albums

  • I Know (Luther Vandross album), 1998
  • I Know (Tone Damli album), 2009
  • I Know, by John Gorka
  • Songs

  • "I Know" (Dionne Farris song), 1995
  • "I Know" (Drake Bell song), 2006
  • "I Know" (Jay-Z song), 2008
  • "I Know" (Yo Gotti song), 2013
  • "I Know (You Don't Love Me No More)", a 1961 song by Barbara George
  • "She's So High/I Know", a double A-side single by the English rock band Blur
  • "I Know", by Barenaked Ladies from their album Born on a Pirate Ship
  • "I Know", by B.G. from its album Checkmate
  • "I Know", by Big Sean featuring Jhene Aiko
  • "I Know", by Fiona Apple from her album When the Pawn...
  • "I Know", by The Hollywood Flames
  • "I Know", by Joe Walsh from his album Songs for a Dying Planet
  • "I Know", by Kylie Minogue recorded around the time of Ultimate Kylie
  • "I Know", by Luther Vandross from his album I Know
  • "I Know", by New Atlantic
  • "I Know", by Perry Como, written by Carl Stutz and Edith Lindeman
  • "I Know", by Placebo from their self-titled album
  • "I Know", by Korean singer Se7en
  • "I Know", by Shift K3Y
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Tone Damli Aaberge I Know

    3:57
    Tone Damli Aaberge I Know
    published: 16 Jun 2009
    Play in Full Screen
    4:11
    Tone Damli Aaberge - I Know - live @ Senkveld TV2 (HQ)
    Tone Damli Aaberge fremfører singelen "I know" live på Senkveld, TV2
    published: 23 Mar 2009
    Play in Full Screen
    3:55
    I Know
    Provided to YouTube by Universal Music Group I Know · Tone Damli Looking Back ℗ 2009 Ec...
    published: 23 Jul 2018
    Play in Full Screen
    3:52
    Tone Damli Aaberge - I Know - TV2s Artistgalla, 05.2009. HQ.
    published: 19 Oct 2011
    Play in Full Screen
    3:59
    tone damli i know
    sad song
    published: 13 Jun 2012
    Play in Full Screen
    4:00
    Artistgalla 2009 - I Know (Tone Damli Aaberge)
    Tone Damli Aaberge synger I Know under artistgallaen 2009 i Drammen 18 April 2009
    published: 19 Apr 2009
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×