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

We Are. (Do As Infinity song)

"We Are.", stylized as We are., is Do As Infinity's sixth single, released in 2000.

This song was included in the band's compilation albums Do the Best and Do the A-side.

Track listing

  • "We Are."
  • "Eien" (永遠 Eternity)
  • "New World"
  • "Summer Days" (8.27 Live version)
  • "We Are." (Instrumental)
  • "Eien" (永遠 Eternity) (Instrumental)
  • "New World" (Instrumental)
  • Chart positions

    External links

  • "We Are." at Avex Network
  • "We Are." at Oricon

  • Keke Palmer discography

    The discography of Keke Palmer, an American R&B singer-songwriter, consists of one studio album, one extended play, three mixtapes and seven singles. In 2005, Palmer signed a record deal with Atlantic Records. Palmer released her debut album So Uncool on September 18, 2007. The album failed to chart on the US Billboard 200, but did chart at number 85 on the R&B chart. The album was preceded by the lead single "Keep It Movin'". In 2010, Palmer was signed by the Chairman of Interscope Records, Jimmy Iovine, and began working on an album.

    In January 2011, Palmer released her first mixtape Awaken. The mixtape was officially released on January 10, 2011, for downloads on mixtape-downloading websites. The first and only single released from the mixtape was "The One You Call". A music video was also released for the song. In July 2012, Palmer released the single "You Got Me" featuring Kevin McCall. The video for the single was released on July 11, 2012. Palmer released a self-titled mixtape Keke Palmer on October 1, 2012. It includes her new singles "You Got Me" & "Dance Alone" which have already been released. On May 16, 2013, Keke Palmer released a video showing her recording and performing a cover of Alicia Keys song "If I Ain't Got You".

    We Are

    We Are may refer to:

  • We Are (EP), a 2008 EP by Cassette Kids
  • "We Are" (Ana Johnsson song), 2004
  • "We Are" (Do As Infinity song), 2000
  • "We Are" (Hollywood Undead song)
  • "We Are (Family)", a song from the 2012 film Ice Age: Continental Drift
  • We Are, a 2011 album by Elan Atias
  • See also

  • All pages beginning with "We Are"
  • Podcasts:

    • Do As Infinity / We are.

      Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 サポーターの皆様のご協力により、一足早いクリスマスの人通りを再現することが出来ました。ショーウィンドウに飾られた伴は絶品。この部分は裏原、ビルの屋上の部分は天王洲の倉庫。TVスポットの最後には「メリークリスマス」のメッセージ入り。この年一番早いクリスマスCMとなる。長尾君最後のPV作品。

      published: 26 Dec 2008
    • Do As Infinity / We are. 「Do As Infinity 14th Anniversary~Dive At It Limited Live 2013~」

      Official Web Site http://www.d-a-i.com/ We are. / Do As Infinity 14th Anniversary~ Dive At It limited Live 2013 ~ 2013年9月29日 Do As Infinityデビュー14周年記念ファンクラブ “Dive At It” 限定LIVE 「Do As Infinity 14th Anniversary~ Dive At It limited Live 2013 ~」

      published: 20 Oct 2015
    • Do As Infinity / 君がいない未来(Kimi Ga Inai Mirai)

      Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 復活した「犬夜叉完結編」のオープニングテーマ。再スタートにあたって真っ先にお話をいただけた読売テレビの皆様、高橋先生にはただただ感謝である。BPMはDoAs最速。この曲がこれからライブ後半のアッパー合戦の核となる事は間違いなし。監督は巨匠竹石渉。お互いいつかやろうと言って10年目にして出来ました。砂埃がまさにサラコナー。 Do As Infinityの曲が、広告なしで全曲聴き放題【AWA/無料】 曲をダウンロードして、圏外でも聴ける。 無料で利用開始▶https://mf.awa.fm/2ycDmPr ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \  圏外でも聴ける!公式音楽アプリ /   \ 世界最大規模5000万曲が聴き放題 / ・全曲ダウンロード可能!広告なしで、圏外でも聴ける ・好みを分析して、自動で音楽をおすすめ ・音楽プロデューサー・人気アーティスト等によるプレイリストが豊富 「君がいない未来」のほか、Do As Infinityが全曲聴き放題 無料で利用開始▶https://mf.awa.fm/2ycDmPr ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

      published: 27 Nov 2009
    • Jaymes Young - Infinity (Lyrics) "cause i love you for infinity"

      Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads Follow Jaymes Young: https://twitter.com/jaymesyng https://instagram.com/jaymesyng https://soundcloud.com/jaymes-young https://facebook.com/jaymesyoungmusic 📷 Wallpaper: https://unsplash.com ©️If any producer or label has an issue with this song or picture, please get in contact with us and we will delete it immediately. Lyrics: [Intro] (Oh-oh, oh-oh-oh) (Oh-oh, oh-oh-oh) [Verse 1] Baby, this love, I'll never let it die Can't be touched by no one I'd like to see them try (Oh-oh) I'm a mad man for your touch (Oh-oh) Girl, I've lost control (Oh-oh-oh) I'm gonna make this last forever (Oh-oh) Don't tell me it's impossible (Oh-oh-oh) [Chorus] 'Cause I love you for infinity (Oh-oh-oh) I love you for...

      published: 17 May 2022
    • Do As Infinity / 深い森(Fukai Mori)

      Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 ロケ地は2007年に閉園した、北海道は帯広のグリュック王国。大渡の撮影時、偶然回った回転ブランコが象徴的。PV初の本州脱出ロケ。完成時しばらくは社内で「ロシアロケ」と言い張れたクォリティ。グリュック王国は当初余り期待してはいなかったが、遠目からの完璧な仕様と予想以上の閑古鳥の感じがこの曲の方向性を決定付けた。

      published: 26 Dec 2008
    • Jaymes Young - Infinity [Official Audio]

      Jaymes Young - Infinity [Official Audio] Stream/Download: https://jaymesyoung.lnk.to/InfinityAY 'Feel Something' (Deluxe) out now: http://jaymesyoung.lnk.to/FeelSomethingDeluxeID Subscribe for more official content from Jaymes Young: https://Atlantic.lnk.to/JYSubscribe Follow Jaymes Young: Spotify: http://smarturl.it/JYSpotify Website: http://jaymesyng.com Twitter: https://twitter.com/jaymesyng Instagram: https://instagram.com/jaymesyng SoundCloud: https://soundcloud.com/jaymes-young Facebook: https://facebook.com/jaymesyoungmusic Subscribe for more official content from Jaymes Young: https://Atlantic.lnk.to/JYSubscribe Lyrics: Baby, this love I'll never let it die Can't be touched by no one I'd like to see them try I'm a mad man for your touch, girl, I've lost control I'm gonna make ...

      published: 23 Jun 2017
    • Do As Infinity / 真実の詩(Shinjitsu no Uta)

      Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 初の沖縄ロケ。胡弓奏者のウールーチンと競演した作品。なんともいえない色味と幻想的な世界が続く。この世の果てとも思える風景に少年は何を見たのか。歌詞の世界観を更に増幅させる映像美に圧倒させられる。Do As史上最強のイメージ作品。このPVに前後がついたオリジナル編集は単体で発売されるに到る。

      published: 27 Dec 2008
    • Do as infinity - fukai mori lyric

      ost Inuyasha

      published: 15 Mar 2017
    • Guru Josh Project - Infinity (Klaas Vocal Mix) [Ultra Records]

      This song is taking the world by storm. If you haven't heard it yet check it out! And if you have heard it then I know you want to listen to it again. For more songs like "Infinity", follow our "Dance All Day" Spotify playlist! http://smarturl.it/DanceAllDay Subscribe to Ultra Records - https://www.youtube.com/subscription_center?add_user=ultrarecords Ultra Records has pushed the boundaries of electronic music, elevated up-and-coming artists to the global mainstream, and brought fresh genres and sounds to the dance floor. ​Founded in 1995, Ultra has been home to some of the most legendary names in electronic music like MK, Benny Benassi, Armin van Buuren, Steve Aoki, David Guetta, Calvin Harris, Black Coffee, deadmau5, Kygo, Tiësto, Kaskade, SOFI TUKKER, and many more. Ultra Records will...

      published: 20 Feb 2009
    developed with YouTube
    Do As Infinity / We are.
    4:47

    Do As Infinity / We are.

    • Order:
    • Duration: 4:47
    • Uploaded Date: 26 Dec 2008
    • views: 1157426
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 サポーターの皆様のご協力により、一足早いクリスマスの人通りを再現することが出来ました。ショーウィンドウに飾られた伴は絶品。この部分は裏原、ビルの屋上の部分は天王洲の倉庫。TVスポットの最後には「メリークリスマス」のメッセージ入り。この年一番早いクリスマスCMとなる。長尾君最後のPV作品。
    https://wn.com/Do_As_Infinity_We_Are.
    Do As Infinity / We are.  「Do As Infinity 14th Anniversary~Dive At It Limited Live 2013~」
    3:29

    Do As Infinity / We are. 「Do As Infinity 14th Anniversary~Dive At It Limited Live 2013~」

    • Order:
    • Duration: 3:29
    • Uploaded Date: 20 Oct 2015
    • views: 170204
    Official Web Site http://www.d-a-i.com/ We are. / Do As Infinity 14th Anniversary~ Dive At It limited Live 2013 ~ 2013年9月29日 Do As Infinityデビュー14周年記念ファンクラブ “Dive At It” 限定LIVE 「Do As Infinity 14th Anniversary~ Dive At It limited Live 2013 ~」
    https://wn.com/Do_As_Infinity_We_Are._「Do_As_Infinity_14Th_Anniversary~Dive_At_It_Limited_Live_2013~」
    Do As Infinity / 君がいない未来(Kimi Ga Inai Mirai)
    4:34

    Do As Infinity / 君がいない未来(Kimi Ga Inai Mirai)

    • Order:
    • Duration: 4:34
    • Uploaded Date: 27 Nov 2009
    • views: 10027874
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 復活した「犬夜叉完結編」のオープニングテーマ。再スタートにあたって真っ先にお話をいただけた読売テレビの皆様、高橋先生にはただただ感謝である。BPMはDoAs最速。この曲がこれからライブ後半のアッパー合戦の核となる事は間違いなし。監督は巨匠竹石渉。お互いいつかやろうと言って10年目にして出来ました。砂埃がまさにサラコナー。 Do As Infinityの曲が、広告なしで全曲聴き放題【AWA/無料】 曲をダウンロードして、圏外でも聴ける。 無料で利用開始▶https://mf.awa.fm/2ycDmPr ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ \  圏外でも聴ける!公式音楽アプリ /   \ 世界最大規模5000万曲が聴き放題 / ・全曲ダウンロード可能!広告なしで、圏外でも聴ける ・好みを分析して、自動で音楽をおすすめ ・音楽プロデューサー・人気アーティスト等によるプレイリストが豊富 「君がいない未来」のほか、Do As Infinityが全曲聴き放題 無料で利用開始▶https://mf.awa.fm/2ycDmPr ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    https://wn.com/Do_As_Infinity_君がいない未来(Kimi_Ga_Inai_Mirai)
    Jaymes Young - Infinity (Lyrics) "cause i love you for infinity"
    3:50

    Jaymes Young - Infinity (Lyrics) "cause i love you for infinity"

    • Order:
    • Duration: 3:50
    • Uploaded Date: 17 May 2022
    • views: 116042
    Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads Follow Jaymes Young: https://twitter.com/jaymesyng https://instagram.com/jaymesyng https://soundcloud.com/jaymes-young https://facebook.com/jaymesyoungmusic 📷 Wallpaper: https://unsplash.com ©️If any producer or label has an issue with this song or picture, please get in contact with us and we will delete it immediately. Lyrics: [Intro] (Oh-oh, oh-oh-oh) (Oh-oh, oh-oh-oh) [Verse 1] Baby, this love, I'll never let it die Can't be touched by no one I'd like to see them try (Oh-oh) I'm a mad man for your touch (Oh-oh) Girl, I've lost control (Oh-oh-oh) I'm gonna make this last forever (Oh-oh) Don't tell me it's impossible (Oh-oh-oh) [Chorus] 'Cause I love you for infinity (Oh-oh-oh) I love you for infinity (Oh-oh-oh) 'Cause I love you for infinity (Oh-oh-oh) I love you for infinity (Oh-oh-oh) [Verse 2] Oh, darling, my soul You know it aches for yours And you've been filling this hole Since you were born, oh 'Cause you're the reason I believe in fate (Oh-oh) You're my paradise (Oh-oh-oh) And I'll do anything to be your love (Oh-oh) I'll be your sacrifice (Oh-oh-oh) ̲ ̲[Chorus] 'Cause I love you for infinity (Oh-oh-oh) I love you for infinity (Oh-oh-oh) 'Cause I love you for infinity (Oh-oh-oh) I love you for infinity (Oh-oh-oh) (Oh-oh) [Bridge] Meet me at the bottom of the ocean (Ocean) Where the time is frozen (Frozen) Where all the universes open (Open) Love isn't random, we are chosen (Oh-oh) And we could wear the same crown Keep slowing your heart down We are the gods now [Chorus] 'Cause I love you for infinity (Oh-oh-oh) I love you for infinity (Oh-oh-oh) 'Cause I love you for infinity (Oh-oh-oh) I love you for infinity (Oh-oh-oh) [Outro] (Oh-oh, oh-oh-oh) (Oh-oh, oh-oh-oh) (Oh-oh, oh-oh) (Oh-oh, oh-oh) Tags Jaymes Young, Infinity, Jaymes Young Infinity, Infinity Jaymes Young, Lyrics, Lyrics Infinity, Jaymes Young Infinity Lyrics, Infinity Jaymes Young Lyrics, Jaymes Young Lyrics, Infinity Lyrics Jaymes Young, Lyrics Jaymes Young Infinity, Lyrics Infinity Jaymes Young cause i love you for infinity, cause i love you for infinity Tiktok song, Tiktok song cause i love you for infinity, tiktok song,
    https://wn.com/Jaymes_Young_Infinity_(Lyrics)_Cause_I_Love_You_For_Infinity
    Do As Infinity / 深い森(Fukai Mori)
    4:17

    Do As Infinity / 深い森(Fukai Mori)

    • Order:
    • Duration: 4:17
    • Uploaded Date: 26 Dec 2008
    • views: 38321482
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 ロケ地は2007年に閉園した、北海道は帯広のグリュック王国。大渡の撮影時、偶然回った回転ブランコが象徴的。PV初の本州脱出ロケ。完成時しばらくは社内で「ロシアロケ」と言い張れたクォリティ。グリュック王国は当初余り期待してはいなかったが、遠目からの完璧な仕様と予想以上の閑古鳥の感じがこの曲の方向性を決定付けた。
    https://wn.com/Do_As_Infinity_深い森(Fukai_Mori)
    Jaymes Young - Infinity [Official Audio]
    3:58

    Jaymes Young - Infinity [Official Audio]

    • Order:
    • Duration: 3:58
    • Uploaded Date: 23 Jun 2017
    • views: 233085452
    Jaymes Young - Infinity [Official Audio] Stream/Download: https://jaymesyoung.lnk.to/InfinityAY 'Feel Something' (Deluxe) out now: http://jaymesyoung.lnk.to/FeelSomethingDeluxeID Subscribe for more official content from Jaymes Young: https://Atlantic.lnk.to/JYSubscribe Follow Jaymes Young: Spotify: http://smarturl.it/JYSpotify Website: http://jaymesyng.com Twitter: https://twitter.com/jaymesyng Instagram: https://instagram.com/jaymesyng SoundCloud: https://soundcloud.com/jaymes-young Facebook: https://facebook.com/jaymesyoungmusic Subscribe for more official content from Jaymes Young: https://Atlantic.lnk.to/JYSubscribe Lyrics: Baby, this love I'll never let it die Can't be touched by no one I'd like to see them try I'm a mad man for your touch, girl, I've lost control I'm gonna make this last forever, don't tell me it's impossible Cos I love you for infinity I love you for infinity Cos I love you for infinity I love you for infinity Darling, my soul You know it aches for yours And you've been filling this hole Since you were born You're the reason I believe in fate, you're my paradise And I'll do anything to be your love or be your sacrifice Cos I love you for infinity I love you for infinity Cos I love you for infinity I love you for infinity Meet me at the bottom of the ocean Where the time is frozen Where all the universes open Love isn't random, we are chosen And we could wear the same crown Keep slowing your heart down We are the gods now I love you for infinity I love you for infinity I love you for infinity I love you for infinity The official YouTube channel of Atlantic Records artist Jaymes Young. Subscribe for the latest music videos, performances, and more. #JaymesYoung #Infinity #CauseIloveYouFor
    https://wn.com/Jaymes_Young_Infinity_Official_Audio
    Do As Infinity / 真実の詩(Shinjitsu no Uta)
    4:16

    Do As Infinity / 真実の詩(Shinjitsu no Uta)

    • Order:
    • Duration: 4:16
    • Uploaded Date: 27 Dec 2008
    • views: 7269748
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 初の沖縄ロケ。胡弓奏者のウールーチンと競演した作品。なんともいえない色味と幻想的な世界が続く。この世の果てとも思える風景に少年は何を見たのか。歌詞の世界観を更に増幅させる映像美に圧倒させられる。Do As史上最強のイメージ作品。このPVに前後がついたオリジナル編集は単体で発売されるに到る。
    https://wn.com/Do_As_Infinity_真実の詩(Shinjitsu_No_Uta)
    Do as infinity - fukai mori lyric
    4:06

    Do as infinity - fukai mori lyric

    • Order:
    • Duration: 4:06
    • Uploaded Date: 15 Mar 2017
    • views: 637319
    ost Inuyasha
    https://wn.com/Do_As_Infinity_Fukai_Mori_Lyric
    Guru Josh Project - Infinity (Klaas Vocal Mix) [Ultra Records]
    3:15

    Guru Josh Project - Infinity (Klaas Vocal Mix) [Ultra Records]

    • Order:
    • Duration: 3:15
    • Uploaded Date: 20 Feb 2009
    • views: 234230096
    This song is taking the world by storm. If you haven't heard it yet check it out! And if you have heard it then I know you want to listen to it again. For more songs like "Infinity", follow our "Dance All Day" Spotify playlist! http://smarturl.it/DanceAllDay Subscribe to Ultra Records - https://www.youtube.com/subscription_center?add_user=ultrarecords Ultra Records has pushed the boundaries of electronic music, elevated up-and-coming artists to the global mainstream, and brought fresh genres and sounds to the dance floor. ​Founded in 1995, Ultra has been home to some of the most legendary names in electronic music like MK, Benny Benassi, Armin van Buuren, Steve Aoki, David Guetta, Calvin Harris, Black Coffee, deadmau5, Kygo, Tiësto, Kaskade, SOFI TUKKER, and many more. Ultra Records will continue to deliver exceptional electronic music to the masses. Follow Us: https://www.ultrarecords.com https://www.youtube.com/@ultrarecords https://discord.gg/ultrarecords https://www.twitter.com/ultrarecords https://www.facebook.com/ultrarecordsofficial https://www.instagram.com/ultrarecordsofficial/ https://soundcloud.com/ultrarecords https://open.spotify.com/user/ultramusicofficial
    https://wn.com/Guru_Josh_Project_Infinity_(Klaas_Vocal_Mix)_Ultra_Records
    • Hiroshi Kitadani - We Are! / THE FIRST TAKE

      THE FIRST TAKE is a YouTube Channel dedicated to shooting musicians and singers performing in a single take. Episode 394 welcomes legendary anime song singer Hiroshi Kitadani, renowned for his numerous vocal contributions to anime theme songs, to THE FIRST TAKE for the first time. He will perform “We Are!”, the theme song to the TV anime series and theatrical release of “ONE PIECE”, which has continued to be loved worldwide since its release in November 1999. It is also the significant song that marked his debut. Enjoy Hiroshi Kitadani’s exceptional one-shot performance for THE FIRST TAKE, accompanied by Dany’s, the band he personally hand-selected, together with a dazzling trumpet section. “ONE PIECE”STREAMING & DOWNLOAD Apple Music: https://a-anime.lnk.to/ONEPIECE_Ap Spotify: https:/...

      published: 08 Jan 2024
    • [Eng Sub] We Are คือเรารักกัน | EP.1 [1/4]

      เรื่องเล่าวุ่นๆ ของเหล่ามิตรสหายที่ต่อให้ชีวิตมหาลัยจะเรียนหนักหนาสาหัสแค่ไหนก็ยังมีเรื่องให้ปวดสมอง ทั้งวุ่นวายแถมวุ่นรักแบบไม่ให้ได้หยุดพักผ่อน! We Are... คือเราเป็นเพื่อนกัน แต่เรากัดกัน ชอบกัน จนมาจีบกัน และเราจะรักกันได้ยังไง ติดตามความสัมพันธ์ของแก๊งเพื่อนพี่น้องในรั้วมหาลัยแห่งนี้ได้ใน We Are คือเรารักกัน นำแสดงโดย ปอนด์ ณราวิชญ์ เลิศรัตน์โกสุมภ์ รับบท ภูมิ ภูวิน ภูวินทร์ ตั้งศักดิ์ยืน รับบท พีม วินนี่ ธนวินท์ ผลเจริญรัตน์ รับบท คิว สตางค์ กิตติภพ เสรีวิชยสวัสดิ์ รับบท เต้ย อู๋ ธนบูรณ์ เกียรตินิรันดร์ รับบท แทน บูม ธราธร จันทรวรกาญจน์ รับบท ข้าวฟ่าง มาร์ค ณฐริศร์ วรกรเลิศสิทธิ์ รับบท เชน ปูน มิตรภักดี รับบท ปัน ไซซี รัตท์ริชา ประภากิติ รับบท ฝ้าย เจเจ ชยกร จุฑามาศ รับบท แมทธิว ธี ธีรเดช วิถีพานิชย์ รับบท มิค ไตเติ้ล กีรติ พวงมาลี รับบท คลื่น เปปเปอร์ ภานุโรจ...

      published: 03 Apr 2024
    • One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED]

      One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED] gams life

      published: 21 Nov 2021
    • ONE OK ROCK - We are [Official Video from AMBITIONS JAPAN DOME TOUR]

      Directed by Naoto Amazutsumi ONE OK ROCK Official Website http://www.oneokrock.com/ 2019年8月21日(水)Release LIVE DVD & Blu-ray “ONE OK ROCK 2018 AMBITIONS JAPAN DOME TOUR” ■品番:【DVD】AZBS-1051 / 【Blu-ray】AZXS-1028

      published: 30 Jul 2019
    • One Piece OP 1 - We Are! Lyrics

      1st Opening theme of One Piece We Are! by Hiroshi Kitadani

      published: 14 Jun 2018
    • [Eng Sub] We Are คือเรารักกัน | EP.16 [1/4] | ตอนจบ

      เรื่องเล่าวุ่นๆ ของเหล่ามิตรสหายที่ต่อให้ชีวิตมหาลัยจะเรียนหนักหนาสาหัสแค่ไหนก็ยังมีเรื่องให้ปวดสมอง ทั้งวุ่นวายแถมวุ่นรักแบบไม่ให้ได้หยุดพักผ่อน! We Are... คือเราเป็นเพื่อนกัน แต่เรากัดกัน ชอบกัน จนมาจีบกัน และเราจะรักกันได้ยังไง ติดตามความสัมพันธ์ของแก๊งเพื่อนพี่น้องในรั้วมหาลัยแห่งนี้ได้ใน We Are คือเรารักกัน นำแสดงโดย ปอนด์ ณราวิชญ์ เลิศรัตน์โกสุมภ์ รับบท ภูมิ ภูวิน ภูวินทร์ ตั้งศักดิ์ยืน รับบท พีม วินนี่ ธนวินท์ ผลเจริญรัตน์ รับบท คิว สตางค์ กิตติภพ เสรีวิชยสวัสดิ์ รับบท เต้ย อู๋ ธนบูรณ์ เกียรตินิรันดร์ รับบท แทน บูม ธราธร จันทรวรกาญจน์ รับบท ข้าวฟ่าง มาร์ค ณฐริศร์ วรกรเลิศสิทธิ์ รับบท เชน ปูน มิตรภักดี รับบท ปัน ไซซี รัตท์ริชา ประภากิติ รับบท ฝ้าย เจเจ ชยกร จุฑามาศ รับบท แมทธิว ธี ธีรเดช วิถีพานิชย์ รับบท มิค ไตเติ้ล กีรติ พวงมาลี รับบท คลื่น เปปเปอร์ ภานุโรจ...

      published: 17 Jul 2024
    • USA For Africa - We Are The World (HQ official Video)

      Titre : We Are The World Interprète : USA For Africa Année : 1985 Auteurs compositeurs : Lionel Richie, Michael Jackson Durée : 7 m 06 s Label : Columbia Records

      published: 28 Feb 2016
    • One Piece - Opening 1 【We Are!】 4K 60FPS Creditless | CC

      One Piece OP / Opening 1 "We Are!" by Hiroshi Kitadani Subtitles: [CC] https://www.youtube.com/@Bruhclan69 ------------------------------------------------------------------------------------ 🖌 Anime: One Piece ♫ Artist: Hiroshi Kitadani ♪ Song: We Are! ------------------------------------------------------------------------------------ ⛾ Support me on Patreon: ⛾ https://www.patreon.com/Neobrane ⛾ Discord: ⛾ https://discord.gg/2Qsrr26u5D ------------------------------------------------------------------------------------ Subtitle artists: https://www.youtube.com/@yaco77 https://www.youtube.com/@Bruhclan69 ------------------------------------------------------------------------------------ #OnePiece #HiroshiKitadani​ #WeAre

      published: 15 Jul 2023
    • ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) — Full Lyrics [Kan/Rom/Eng]

      SONG: ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) ALBUM: ONE PIECE キャラソンBEST "FESTIVAL" [Disc 3, Track 01] — [Full Album, Track 37] SINGER(s}: Luffy (Mayumi Tanaka) Zoro (Kazuya Nakai) Usopp (Kappei Yamaguchi) Sanji (Hiroaki Hirata) Nami (Akemi Okamura) Chopper (Ikue Ōtani) Franky (Kazuki Yao) Robin (Yuriko Yamaguchi) Brook (Chō) BUY THEIR MUSIC HERE 👇 Amazon : https://www.amazon.co.jp/dp/B01FDPI3G4/ref=cm_sw_r_tw_dp_U_x_-QHDBb0VYK0BZ iTunes : https://music.apple.com/jp/album/one-piece-%E3%82%AD%E3%83%A3%E3%83%A9%E3%82%BD%E3%83%B3best-festival/1131928884 "We Are!" is a song by Hiroshi Kitadani, composed by Kohei Tanaka with lyrics by Shoko Fujibayashi. It was used as the first opening theme for the One Piece television anime, accompanying most of the episodes ...

      published: 10 Nov 2022
    • ONE OK ROCK: We Are [OFFICIAL VIDEO]

      ONE OK ROCK's official video for 'We Are’ from their album Ambitions available now on Fueled By Ramen/A-Sketch. Stream // Download... Spotify: http://smarturl.it/OORAmbitions-sp Apple Music: http://smarturl.it/OORAmbitions-am iTunes: http://smarturl.it/OORAmbitions Google Play: http://smarturl.it/OORAmbitions-gp Amazon: http://smarturl.it/OORAmbitions-az Find ONE OK ROCK on... Site: http://www.oneokrock.com/ Facebook: http://smarturl.it/OORfacebook Twitter: http://smarturl.it/OORtwitter Instagram: http://smarturl.it/OORinstagram YouTube: http://smarturl.it/OORyoutube Spotify: http://smarturl.it/OORspotify Directed by Mark Staubach Inspired by Nonotak studio LYRICS They think that we`re no one We`re nothing, not sorry They push us It’s too late, it’s too late Not going back They thi...

      published: 09 Jan 2017
    developed with YouTube
    Hiroshi Kitadani - We Are! / THE FIRST TAKE
    4:44

    Hiroshi Kitadani - We Are! / THE FIRST TAKE

    • Order:
    • Duration: 4:44
    • Uploaded Date: 08 Jan 2024
    • views: 14967386
    THE FIRST TAKE is a YouTube Channel dedicated to shooting musicians and singers performing in a single take. Episode 394 welcomes legendary anime song singer Hiroshi Kitadani, renowned for his numerous vocal contributions to anime theme songs, to THE FIRST TAKE for the first time. He will perform “We Are!”, the theme song to the TV anime series and theatrical release of “ONE PIECE”, which has continued to be loved worldwide since its release in November 1999. It is also the significant song that marked his debut. Enjoy Hiroshi Kitadani’s exceptional one-shot performance for THE FIRST TAKE, accompanied by Dany’s, the band he personally hand-selected, together with a dazzling trumpet section. “ONE PIECE”STREAMING & DOWNLOAD Apple Music: https://a-anime.lnk.to/ONEPIECE_Ap Spotify: https://a-anime.lnk.to/ONEPIECE_Sp ■Hiroshi Kitadani Socials Web Site: http://kitadani-hiroshi.com X: https://twitter.com/gokigensandany ■THE FIRST TAKE Socials Web Site: https://www.thefirsttake.jp/ Instagram: https://www.instagram.com/the_firsttake/ Twitter: https://twitter.com/The_FirstTake TikTok: https://www.tiktok.com/@the_first_take THE FIRST TIMES: https://www.thefirsttimes.jp/ ■THE FIRST TAKE Concept A microphone and a white studio. And 1 rule. You’ve got 1 TAKE. Perform anything you like. Show us everything you’ve got for that 1 moment. ■THE FIRST TAKE Statement CAPTURE THE TAKE. THIS MOMENT. THIS SOUND. IT ONLY HAPPENS ONCE. THE FIRST TAKE CREDITS ― Director/Creative Director: Keisuke Shimizu Art Director: Yo Kimura Copywriter: Hiroshi Yamazaki Director of Photography: Kazuki Nagayama Technical Coordinator: Masaaki Ogasawara Chief Camera Assistants: Shota Hatano Camera Assistants: Takumi Torii,Junpei Arai,Ryusei Kitahara Lighting Director: Kazuhide Toya Lighting Assistants: Naoya Imaoka, Keita Nakayama,Takuya Nojima,Kenta Nagai,Kouta Hagiwara Art Designer : Naoto Kashiwagi (studio noll) Art Assistants: Takashi Irei, Satoshi Kano (studio noll) Movie Producer: Shohei Sadohara (TYO drive) Production Manager: Yuka Imazato (TYO drive),Seitaro Inoue Production Assistant: Kai Takaha, Nagisa Taki, Yoshiko Okubo, Runa Kamo Offline Editor: Kentaro Kinoshita Colorist: Takaku Hiruma Online Editor: Syusei Fujita, Yuki Ohoka Stylist: DAN (kelemmi) Hair&Make up: Yu Takahashi (fringe) #THEFIRSTTAKE #ONEPIECE #WeAre #HiroshiKitadani
    https://wn.com/Hiroshi_Kitadani_We_Are_The_First_Take
    [Eng Sub] We Are คือเรารักกัน | EP.1 [1/4]
    15:24

    [Eng Sub] We Are คือเรารักกัน | EP.1 [1/4]

    • Order:
    • Duration: 15:24
    • Uploaded Date: 03 Apr 2024
    • views: 3070829
    เรื่องเล่าวุ่นๆ ของเหล่ามิตรสหายที่ต่อให้ชีวิตมหาลัยจะเรียนหนักหนาสาหัสแค่ไหนก็ยังมีเรื่องให้ปวดสมอง ทั้งวุ่นวายแถมวุ่นรักแบบไม่ให้ได้หยุดพักผ่อน! We Are... คือเราเป็นเพื่อนกัน แต่เรากัดกัน ชอบกัน จนมาจีบกัน และเราจะรักกันได้ยังไง ติดตามความสัมพันธ์ของแก๊งเพื่อนพี่น้องในรั้วมหาลัยแห่งนี้ได้ใน We Are คือเรารักกัน นำแสดงโดย ปอนด์ ณราวิชญ์ เลิศรัตน์โกสุมภ์ รับบท ภูมิ ภูวิน ภูวินทร์ ตั้งศักดิ์ยืน รับบท พีม วินนี่ ธนวินท์ ผลเจริญรัตน์ รับบท คิว สตางค์ กิตติภพ เสรีวิชยสวัสดิ์ รับบท เต้ย อู๋ ธนบูรณ์ เกียรตินิรันดร์ รับบท แทน บูม ธราธร จันทรวรกาญจน์ รับบท ข้าวฟ่าง มาร์ค ณฐริศร์ วรกรเลิศสิทธิ์ รับบท เชน ปูน มิตรภักดี รับบท ปัน ไซซี รัตท์ริชา ประภากิติ รับบท ฝ้าย เจเจ ชยกร จุฑามาศ รับบท แมทธิว ธี ธีรเดช วิถีพานิชย์ รับบท มิค ไตเติ้ล กีรติ พวงมาลี รับบท คลื่น เปปเปอร์ ภานุโรจน์ เฉลิมกิจพรทวี รับบท เบียร์ อาร์ม วีรยุทธ จันทร์สุข รับบท โอ้ ก๊อตจิ ทัชชกร บุญลัภยานันท์ รับบท อาปุ้ย นะ ธนบูลย์ วัลลภศิรินันท์ รับบท อาจารย์โป แชมป์ ณัฐรัชต์ ก้อนแก้ว รับบท เอื่อย กำกับซีรีส์ : ศิวัจน์ สวัสดิ์มณีกุล ติดตาม We Are คือเรารักกัน ทุกวันพุธ เวลา 20:30 น. ทางช่อง GMM25 ดูออนไลน์ เวลา 21:30 น. บนแอป iQIYI และเว็บ iQ.com ที่เดียวเท่านั้น เพลงประกอบซีรีส์ เรามีเรา (WE ARE) Ost.We Are คือเรารักกัน - Pond, Phuwin, Winny, Satang, Aou, Boom, Marc, Poon https://www.youtube.com/watch?v=K7u_RcLipSc นานตลอดกาล (We Are Forever) Ost.We Are คือเรารักกัน - Phuwin https://www.youtube.com/watch?v=RRD1Rtsj4cE หมดมุก (Jokester) Ost.We Are คือเรารักกัน - Aou Thanaboon, Boom Tharatorn https://www.youtube.com/watch?v=3Om0znCNfJ0 แค่ในวันนั้น (Truth in the Eyes) Ost.We Are คือเรารักกัน - Pond, Phuwin https://www.youtube.com/watch?v=-Y9NfUPdlFg คิดถึงฉันใช่ป่ะ (Missing Me?) Ost.We Are คือเรารักกัน - Winny Thanawin, Satang Kittiphop https://www.youtube.com/watch?v=B9RqVCGTRxE แอบเพื่อน (Hidden Love) Ost.We Are คือเรารักกัน - Marc Natarit, Poon Mitpakdee https://www.youtube.com/watch?v=o7890phVxLU ติดตามทุกความเคลื่อนไหวของ GMMTV ได้ที่ Facebook | https://www.facebook.com/GMMTVOFFICIAL YouTube | https://www.youtube.com/GMMTV YouTube | https://www.youtube.com/GMMTVRECORDS Instagram | https://www.instagram.com/GMMTV X | https://twitter.com/GMMTV TikTok | https://www.tiktok.com/@gmmtvofficial Weibo | https://www.weibo.com/u/6146914790 Threads | https://www.threads.net/@gmmtv Website | https://www.gmm-tv.com ติดต่อโฆษณา คุณชนิดา วงศ์ธนาภักดี โทร 02-669-8330 chanida.won@gmm-tv.com #WeAreSeries #GMMTV Subtitles Spanish : DanDao Subs Italian : Five Italian Sub Spanish (Latin America) : Team We Are Perú Indonesian : @ryry_sherry (Twitter) Portuguese (Brazil) : aouboom_br, BrPondPhuwin, WinnySatangBr, SIZZY_br (X) Burmese : Padauk^^Thazin,Jelly,Coral,SuMyat,Zar,Su**Yadanar Korean : @ShineSunshine16 Khmer : winnysatang_KH (X), hst_rydq (X) French : Betty x Elea Kayne (CHOPTONBL) Vietnamese : BeeXis, Tiệm quýt quàng tử Pòn và Pieces of you, Winny Thanawin Hungarian : Phoenix&Duomi&Egyszer volt... Chinese (Hong Kong) : @satangks_hk (Instagram & Twitter) Polish : @iigafz (X) Chinese (Taiwan) : @daoling_uages(Instagram), @milkfish0107(Threads) Japanese : かな(@st_ox_2g)
    https://wn.com/Eng_Sub_We_Are_คือเรารักกัน_|_Ep.1_1_4
    One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED]
    1:52

    One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED]

    • Order:
    • Duration: 1:52
    • Uploaded Date: 21 Nov 2021
    • views: 2308028
    One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED] gams life
    https://wn.com/One_Piece_Opening_1_We_Are_Special_Episode_1000_1080P_Remastered
    ONE OK ROCK - We are [Official Video from AMBITIONS JAPAN DOME TOUR]
    5:47

    ONE OK ROCK - We are [Official Video from AMBITIONS JAPAN DOME TOUR]

    • Order:
    • Duration: 5:47
    • Uploaded Date: 30 Jul 2019
    • views: 46553288
    Directed by Naoto Amazutsumi ONE OK ROCK Official Website http://www.oneokrock.com/ 2019年8月21日(水)Release LIVE DVD & Blu-ray “ONE OK ROCK 2018 AMBITIONS JAPAN DOME TOUR” ■品番:【DVD】AZBS-1051 / 【Blu-ray】AZXS-1028
    https://wn.com/One_Ok_Rock_We_Are_Official_Video_From_Ambitions_Japan_Dome_Tour
    One Piece OP 1 - We Are! Lyrics
    4:01

    One Piece OP 1 - We Are! Lyrics

    • Order:
    • Duration: 4:01
    • Uploaded Date: 14 Jun 2018
    • views: 34250817
    1st Opening theme of One Piece We Are! by Hiroshi Kitadani
    https://wn.com/One_Piece_Op_1_We_Are_Lyrics
    [Eng Sub] We Are คือเรารักกัน | EP.16 [1/4] | ตอนจบ
    13:06

    [Eng Sub] We Are คือเรารักกัน | EP.16 [1/4] | ตอนจบ

    • Order:
    • Duration: 13:06
    • Uploaded Date: 17 Jul 2024
    • views: 1160225
    เรื่องเล่าวุ่นๆ ของเหล่ามิตรสหายที่ต่อให้ชีวิตมหาลัยจะเรียนหนักหนาสาหัสแค่ไหนก็ยังมีเรื่องให้ปวดสมอง ทั้งวุ่นวายแถมวุ่นรักแบบไม่ให้ได้หยุดพักผ่อน! We Are... คือเราเป็นเพื่อนกัน แต่เรากัดกัน ชอบกัน จนมาจีบกัน และเราจะรักกันได้ยังไง ติดตามความสัมพันธ์ของแก๊งเพื่อนพี่น้องในรั้วมหาลัยแห่งนี้ได้ใน We Are คือเรารักกัน นำแสดงโดย ปอนด์ ณราวิชญ์ เลิศรัตน์โกสุมภ์ รับบท ภูมิ ภูวิน ภูวินทร์ ตั้งศักดิ์ยืน รับบท พีม วินนี่ ธนวินท์ ผลเจริญรัตน์ รับบท คิว สตางค์ กิตติภพ เสรีวิชยสวัสดิ์ รับบท เต้ย อู๋ ธนบูรณ์ เกียรตินิรันดร์ รับบท แทน บูม ธราธร จันทรวรกาญจน์ รับบท ข้าวฟ่าง มาร์ค ณฐริศร์ วรกรเลิศสิทธิ์ รับบท เชน ปูน มิตรภักดี รับบท ปัน ไซซี รัตท์ริชา ประภากิติ รับบท ฝ้าย เจเจ ชยกร จุฑามาศ รับบท แมทธิว ธี ธีรเดช วิถีพานิชย์ รับบท มิค ไตเติ้ล กีรติ พวงมาลี รับบท คลื่น เปปเปอร์ ภานุโรจน์ เฉลิมกิจพรทวี รับบท เบียร์ อาร์ม วีรยุทธ จันทร์สุข รับบท โอ้ ก๊อตจิ ทัชชกร บุญลัภยานันท์ รับบท อาปุ้ย นะ ธนบูลย์ วัลลภศิรินันท์ รับบท อาจารย์โป แชมป์ ณัฐรัชต์ ก้อนแก้ว รับบท เอื่อย กำกับซีรีส์ : ศิวัจน์ สวัสดิ์มณีกุล ติดตาม We Are คือเรารักกัน ทุกวันพุธ เวลา 20:30 น. ทางช่อง GMM25 ดูออนไลน์ เวลา 21:30 น. บนแอป iQIYI และเว็บ iQ.com ที่เดียวเท่านั้น เพลงประกอบซีรีส์ เรามีเรา (WE ARE) Ost.We Are คือเรารักกัน - Pond, Phuwin, Winny, Satang, Aou, Boom, Marc, Poon https://www.youtube.com/watch?v=K7u_RcLipSc นานตลอดกาล (We Are Forever) Ost.We Are คือเรารักกัน - Phuwin https://www.youtube.com/watch?v=RRD1Rtsj4cE หมดมุก (Jokester) Ost.We Are คือเรารักกัน - Aou Thanaboon, Boom Tharatorn https://www.youtube.com/watch?v=3Om0znCNfJ0 แค่ในวันนั้น (Truth in the Eyes) Ost.We Are คือเรารักกัน - Pond, Phuwin https://www.youtube.com/watch?v=-Y9NfUPdlFg คิดถึงฉันใช่ป่ะ (Missing Me?) Ost.We Are คือเรารักกัน - Winny Thanawin, Satang Kittiphop https://www.youtube.com/watch?v=B9RqVCGTRxE แอบเพื่อน (Hidden Love) Ost.We Are คือเรารักกัน - Marc Natarit, Poon Mitpakdee https://www.youtube.com/watch?v=o7890phVxLU ติดตามทุกความเคลื่อนไหวของ GMMTV ได้ที่ Facebook | https://www.facebook.com/GMMTVOFFICIAL YouTube | https://www.youtube.com/GMMTV YouTube | https://www.youtube.com/GMMTVRECORDS Instagram | https://www.instagram.com/GMMTV X | https://twitter.com/GMMTV TikTok | https://www.tiktok.com/@gmmtvofficial Weibo | https://www.weibo.com/u/6146914790 Threads | https://www.threads.net/@gmmtv Website | https://www.gmm-tv.com ติดต่อโฆษณา คุณชนิดา วงศ์ธนาภักดี โทร 02-669-8330 chanida.won@gmm-tv.com #WeAreSeries #GMMTV Subtitles Spanish : LAS VEGAS BOYS LOVE FAN SUB Spanish (Latin America) : Latin Las Vegas Fan Subs Indonesian : @ryry_sherry (X/Twitter) Khmer : winnysatang_KH (X), hst_rydq (X) Chinese (Hong Kong) : @satangks_hk (Instagram & X) Korean : @ShineSunshine16 Italian : Five Italian Sub Hungarian : Phoenix&Duomi&Egyszer volt... Burmese : @Padauk,Thazin,Jelly,Coral,SuMyat,Zar,Su,WNLY
    https://wn.com/Eng_Sub_We_Are_คือเรารักกัน_|_Ep.16_1_4_|_ตอนจบ
    USA For Africa - We Are The World (HQ official Video)
    7:07

    USA For Africa - We Are The World (HQ official Video)

    • Order:
    • Duration: 7:07
    • Uploaded Date: 28 Feb 2016
    • views: 69335069
    Titre : We Are The World Interprète : USA For Africa Année : 1985 Auteurs compositeurs : Lionel Richie, Michael Jackson Durée : 7 m 06 s Label : Columbia Records
    https://wn.com/USA_For_Africa_We_Are_The_World_(Hq_Official_Video)
    One Piece - Opening 1 【We Are!】 4K 60FPS Creditless | CC
    2:26

    One Piece - Opening 1 【We Are!】 4K 60FPS Creditless | CC

    • Order:
    • Duration: 2:26
    • Uploaded Date: 15 Jul 2023
    • views: 386347
    One Piece OP / Opening 1 "We Are!" by Hiroshi Kitadani Subtitles: [CC] https://www.youtube.com/@Bruhclan69 ------------------------------------------------------------------------------------ 🖌 Anime: One Piece ♫ Artist: Hiroshi Kitadani ♪ Song: We Are! ------------------------------------------------------------------------------------ ⛾ Support me on Patreon: ⛾ https://www.patreon.com/Neobrane ⛾ Discord: ⛾ https://discord.gg/2Qsrr26u5D ------------------------------------------------------------------------------------ Subtitle artists: https://www.youtube.com/@yaco77 https://www.youtube.com/@Bruhclan69 ------------------------------------------------------------------------------------ #OnePiece #HiroshiKitadani​ #WeAre
    https://wn.com/One_Piece_Opening_1_【We_Are_】_4K_60Fps_Creditless_|_Cc
    ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) — Full Lyrics [Kan/Rom/Eng]
    4:20

    ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) — Full Lyrics [Kan/Rom/Eng]

    • Order:
    • Duration: 4:20
    • Uploaded Date: 10 Nov 2022
    • views: 6482103
    SONG: ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) ALBUM: ONE PIECE キャラソンBEST "FESTIVAL" [Disc 3, Track 01] — [Full Album, Track 37] SINGER(s}: Luffy (Mayumi Tanaka) Zoro (Kazuya Nakai) Usopp (Kappei Yamaguchi) Sanji (Hiroaki Hirata) Nami (Akemi Okamura) Chopper (Ikue Ōtani) Franky (Kazuki Yao) Robin (Yuriko Yamaguchi) Brook (Chō) BUY THEIR MUSIC HERE 👇 Amazon : https://www.amazon.co.jp/dp/B01FDPI3G4/ref=cm_sw_r_tw_dp_U_x_-QHDBb0VYK0BZ iTunes : https://music.apple.com/jp/album/one-piece-%E3%82%AD%E3%83%A3%E3%83%A9%E3%82%BD%E3%83%B3best-festival/1131928884 "We Are!" is a song by Hiroshi Kitadani, composed by Kohei Tanaka with lyrics by Shoko Fujibayashi. It was used as the first opening theme for the One Piece television anime, accompanying most of the episodes comprising the East Blue Saga. As a result, it became a sort of shorthand for the Straw Hat Pirates' earliest adventures (and, among the wider public, for the series as a whole) Several variants of this song have been produced with Straw Hat Pirates singing the lyrics. The earliest, originally released on 2004's Character Song Album 2, featured every member up to Nico Robin; this version was briefly used as an anime opening during the Enies Lobby Arc's "recap" period (Episode 279 to 283), accompanied by the same visuals as the first opening. In 2009, an updated version was released, incorporating vocals from both Franky and Brook. (© One Piece Wiki) Kan/Rom/Eng Lyrics Credits © ONE PIECE WIKI © https://onepiece.fandom.com/wiki/We_Are! #onepiecelyrics #onepiececharactersong #麦わらの一味 #mugiwaranoichimi #onepiece #monkeydluffy #luffy #onepieceluffy #luffyonepiece #モンキーDディールフィ #ルフィ #roronoazoro #zoro #onepiecezoro #zoroonepiece #ロロノアゾロ #ゾロ #nami #onepiecenami #namionepiece #ナミ #usopp #usopponepiece #onepieceusopp #ウソップ #sanji #vinsmokesanji #onepiecesanji #sanjionepiece #サンジ #chopper #tonytonychopper #chopperonepiece #onepiecechopper #トニートニーチョッパー #チョッパー #robin #nicorobin #onepiecerobin #robinonepiece #onepiecenicorobin #nicorobinonepiece #ニコロビン #Franky #onepiecefranky #frankyonepiece #フランキー #brook #soulbrook #onepiecebrook #brookonepiece #ブルック #mugiwarapirates #strawhatpirates #mugiwaracrew #strawhatcrew ================================== NO COPY RIGHT INFRINGEMENT INTENDED ALL SONG CREDITS TO THE RIGHTFUL OWNER FAIR USE DISCLAIMER Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.
    https://wn.com/ウィーアー_|_We_Are_(9人の麦わらの一味_9_Member_Straw_Hat_Pirates_Version)_—_Full_Lyrics_Kan_Rom_Eng
    ONE OK ROCK: We Are [OFFICIAL VIDEO]
    4:21

    ONE OK ROCK: We Are [OFFICIAL VIDEO]

    • Order:
    • Duration: 4:21
    • Uploaded Date: 09 Jan 2017
    • views: 12579363
    ONE OK ROCK's official video for 'We Are’ from their album Ambitions available now on Fueled By Ramen/A-Sketch. Stream // Download... Spotify: http://smarturl.it/OORAmbitions-sp Apple Music: http://smarturl.it/OORAmbitions-am iTunes: http://smarturl.it/OORAmbitions Google Play: http://smarturl.it/OORAmbitions-gp Amazon: http://smarturl.it/OORAmbitions-az Find ONE OK ROCK on... Site: http://www.oneokrock.com/ Facebook: http://smarturl.it/OORfacebook Twitter: http://smarturl.it/OORtwitter Instagram: http://smarturl.it/OORinstagram YouTube: http://smarturl.it/OORyoutube Spotify: http://smarturl.it/OORspotify Directed by Mark Staubach Inspired by Nonotak studio LYRICS They think that we`re no one We`re nothing, not sorry They push us It’s too late, it’s too late Not going back They think we are made up Of all of our failures They think we are foolish And that’s how the story goes They stand for nothing They’re lifeless and cold Anything they say Will never break our hearts of gold When you’re standing on the edge So young and hopeless Got demons in your head We are, we are No ground beneath your feet Not here to hold you ‘Cause we are, we are The colors in the dark Now covered in madness But they just can’t hurt us They tell us were nothing Keep walking and let it go They are the weakest And don’t even know Anything they say Will never break our hearts of gold When you’re standing on the edge So young and hopeless Got demons in your head We are, we are No ground beneath your feet Not here to hold you ‘Cause we are, we are The colors in the dark Never tell yourself You should be someone else Stand up tall and say I’m not afraid, I’m not afraid So never tell yourself You should be someone else Stand up tall and say I’m not afraid, I’m not afraid When you’re standing on the edge So young and hopeless Got demons in your head We are, we are No ground beneath your feet Not here to hold you ‘Cause we are, we are The colors in the dark
    https://wn.com/One_Ok_Rock_We_Are_Official_Video
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Do As Infinity / We are.
      4:47
      Do As Infinity / We are.remove from playlist
    • Do As Infinity / We are.  「Do As Infinity 14th Anniversary~Dive At It Limited Live 2013~」
      3:29
      Do As Infinity / We are. 「Do As Infinity 14th Anniversary~Dive At It Limited Live 2013~」remove from playlist
    • Do As Infinity / 君がいない未来(Kimi Ga Inai Mirai)
      4:34
      Do As Infinity / 君がいない未来(Kimi Ga Inai Mirai)remove from playlist
    • Jaymes Young - Infinity (Lyrics)
      3:50
      Jaymes Young - Infinity (Lyrics) "cause i love you for infinity"remove from playlist
    • Do As Infinity / 深い森(Fukai Mori)
      4:17
      Do As Infinity / 深い森(Fukai Mori)remove from playlist
    • Jaymes Young - Infinity [Official Audio]
      3:58
      Jaymes Young - Infinity [Official Audio]remove from playlist
    • Do As Infinity / 真実の詩(Shinjitsu no Uta)
      4:16
      Do As Infinity / 真実の詩(Shinjitsu no Uta)remove from playlist
    • Guru Josh Project - Infinity (Klaas Vocal Mix) [Ultra Records]
      3:15
      Guru Josh Project - Infinity (Klaas Vocal Mix) [Ultra Records]remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Do As Infinity / We are.

    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfinityCh Twitter Account:https://twitter.com/doasinfinity929 サポーターの皆様のご協力により、一足早いクリスマスの人通りを再現することが出来ました。ショーウィンドウに飾られた伴は絶品。この部分は裏原、ビルの屋上の部分は天王洲の倉庫。TVスポットの最後には「メリークリスマス」のメッセージ入り。この年一番早いクリスマスCMとなる。長尾君最後のPV作品。
    4:47
    Do As Infinity / We are.
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfini...
    published: 26 Dec 2008
    Play in Full Screen
    3:29
    Do As Infinity / We are. 「Do As Infinity 14th Anniversary~Dive At It Limited Live 2013~」
    Official Web Site http://www.d-a-i.com/ We are. / Do As Infinity 14th Anniversary~ Dive ...
    published: 20 Oct 2015
    Play in Full Screen
    4:34
    Do As Infinity / 君がいない未来(Kimi Ga Inai Mirai)
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfini...
    published: 27 Nov 2009
    Play in Full Screen
    3:50
    Jaymes Young - Infinity (Lyrics) "cause i love you for infinity"
    Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads ...
    published: 17 May 2022
    Play in Full Screen
    4:17
    Do As Infinity / 深い森(Fukai Mori)
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfin...
    published: 26 Dec 2008
    Play in Full Screen
    3:58
    Jaymes Young - Infinity [Official Audio]
    Jaymes Young - Infinity [Official Audio] Stream/Download: https://jaymesyoung.lnk.to/Infin...
    published: 23 Jun 2017
    Play in Full Screen
    4:16
    Do As Infinity / 真実の詩(Shinjitsu no Uta)
    Official Web Site:http://d-a-i.com/ YouTube Channel:http://www.youtube.com/user/DoAsInfin...
    published: 27 Dec 2008
    Play in Full Screen
    4:06
    Do as infinity - fukai mori lyric
    ost Inuyasha
    published: 15 Mar 2017
    Play in Full Screen
    3:15
    Guru Josh Project - Infinity (Klaas Vocal Mix) [Ultra Records]
    This song is taking the world by storm. If you haven't heard it yet check it out! And if y...
    published: 20 Feb 2009
    Play in Full Screen

    We Are. (Do As Infinity song)

    "We Are.", stylized as We are., is Do As Infinity's sixth single, released in 2000.

    This song was included in the band's compilation albums Do the Best and Do the A-side.

    Track listing

  • "We Are."
  • "Eien" (永遠 Eternity)
  • "New World"
  • "Summer Days" (8.27 Live version)
  • "We Are." (Instrumental)
  • "Eien" (永遠 Eternity) (Instrumental)
  • "New World" (Instrumental)
  • Chart positions

    External links

  • "We Are." at Avex Network
  • "We Are." at Oricon

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Hiroshi Kitadani - We Are! / THE FIRST TAKE
      4:44
      Hiroshi Kitadani - We Are! / THE FIRST TAKEremove from playlist
    • [Eng Sub] We Are คือเรารักกัน | EP.1 [1/4]
      15:24
      [Eng Sub] We Are คือเรารักกัน | EP.1 [1/4]remove from playlist
    • ONE OK ROCK - We are [Official Video from AMBITIONS JAPAN DOME TOUR]
      5:47
      ONE OK ROCK - We are [Official Video from AMBITIONS JAPAN DOME TOUR]remove from playlist
    • One Piece OP 1 - We Are! Lyrics
      4:01
      One Piece OP 1 - We Are! Lyricsremove from playlist
    • [Eng Sub] We Are คือเรารักกัน | EP.16 [1/4] | ตอนจบ
      13:06
      [Eng Sub] We Are คือเรารักกัน | EP.16 [1/4] | ตอนจบremove from playlist
    • USA For Africa - We Are The World (HQ official Video)
      7:07
      USA For Africa - We Are The World (HQ official Video)remove from playlist
    • One Piece - Opening 1 【We Are!】 4K 60FPS Creditless | CC
      2:26
      One Piece - Opening 1 【We Are!】 4K 60FPS Creditless | CCremove from playlist
    • ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) — Full Lyrics [Kan/Rom/Eng]
      4:20
      ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) — Full Lyrics [Kan/Rom/Eng]remove from playlist
    • ONE OK ROCK: We Are [OFFICIAL VIDEO]
      4:21
      ONE OK ROCK: We Are [OFFICIAL VIDEO]remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Hiroshi Kitadani - We Are! / THE FIRST TAKE

    THE FIRST TAKE is a YouTube Channel dedicated to shooting musicians and singers performing in a single take. Episode 394 welcomes legendary anime song singer Hiroshi Kitadani, renowned for his numerous vocal contributions to anime theme songs, to THE FIRST TAKE for the first time. He will perform “We Are!”, the theme song to the TV anime series and theatrical release of “ONE PIECE”, which has continued to be loved worldwide since its release in November 1999. It is also the significant song that marked his debut. Enjoy Hiroshi Kitadani’s exceptional one-shot performance for THE FIRST TAKE, accompanied by Dany’s, the band he personally hand-selected, together with a dazzling trumpet section. “ONE PIECE”STREAMING & DOWNLOAD Apple Music: https://a-anime.lnk.to/ONEPIECE_Ap Spotify: https://a-anime.lnk.to/ONEPIECE_Sp ■Hiroshi Kitadani Socials Web Site: http://kitadani-hiroshi.com X: https://twitter.com/gokigensandany ■THE FIRST TAKE Socials Web Site: https://www.thefirsttake.jp/ Instagram: https://www.instagram.com/the_firsttake/ Twitter: https://twitter.com/The_FirstTake TikTok: https://www.tiktok.com/@the_first_take THE FIRST TIMES: https://www.thefirsttimes.jp/ ■THE FIRST TAKE Concept A microphone and a white studio. And 1 rule. You’ve got 1 TAKE. Perform anything you like. Show us everything you’ve got for that 1 moment. ■THE FIRST TAKE Statement CAPTURE THE TAKE. THIS MOMENT. THIS SOUND. IT ONLY HAPPENS ONCE. THE FIRST TAKE CREDITS ― Director/Creative Director: Keisuke Shimizu Art Director: Yo Kimura Copywriter: Hiroshi Yamazaki Director of Photography: Kazuki Nagayama Technical Coordinator: Masaaki Ogasawara Chief Camera Assistants: Shota Hatano Camera Assistants: Takumi Torii,Junpei Arai,Ryusei Kitahara Lighting Director: Kazuhide Toya Lighting Assistants: Naoya Imaoka, Keita Nakayama,Takuya Nojima,Kenta Nagai,Kouta Hagiwara Art Designer : Naoto Kashiwagi (studio noll) Art Assistants: Takashi Irei, Satoshi Kano (studio noll) Movie Producer: Shohei Sadohara (TYO drive) Production Manager: Yuka Imazato (TYO drive),Seitaro Inoue Production Assistant: Kai Takaha, Nagisa Taki, Yoshiko Okubo, Runa Kamo Offline Editor: Kentaro Kinoshita Colorist: Takaku Hiruma Online Editor: Syusei Fujita, Yuki Ohoka Stylist: DAN (kelemmi) Hair&Make up: Yu Takahashi (fringe) #THEFIRSTTAKE #ONEPIECE #WeAre #HiroshiKitadani
    4:44
    Hiroshi Kitadani - We Are! / THE FIRST TAKE
    THE FIRST TAKE is a YouTube Channel dedicated to shooting musicians and singers performing...
    published: 08 Jan 2024
    Play in Full Screen
    15:24
    [Eng Sub] We Are คือเรารักกัน | EP.1 [1/4]
    เรื่องเล่าวุ่นๆ ของเหล่ามิตรสหายที่ต่อให้ชีวิตมหาลัยจะเรียนหนักหนาสาหัสแค่ไหนก็ยังมีเรื่อง...
    published: 03 Apr 2024
    Play in Full Screen
    1:52
    One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED]
    One Piece Opening 1 - We Are Special Episode 1000 [1080p] [REMASTERED] gams life
    published: 21 Nov 2021
    Play in Full Screen
    5:47
    ONE OK ROCK - We are [Official Video from AMBITIONS JAPAN DOME TOUR]
    Directed by Naoto Amazutsumi ONE OK ROCK Official Website http://www.oneokrock.com/ 201...
    published: 30 Jul 2019
    Play in Full Screen
    4:01
    One Piece OP 1 - We Are! Lyrics
    1st Opening theme of One Piece We Are! by Hiroshi Kitadani
    published: 14 Jun 2018
    Play in Full Screen
    13:06
    [Eng Sub] We Are คือเรารักกัน | EP.16 [1/4] | ตอนจบ
    เรื่องเล่าวุ่นๆ ของเหล่ามิตรสหายที่ต่อให้ชีวิตมหาลัยจะเรียนหนักหนาสาหัสแค่ไหนก็ยังมีเรื่อง...
    published: 17 Jul 2024
    Play in Full Screen
    7:07
    USA For Africa - We Are The World (HQ official Video)
    Titre : We Are The World Interprète : USA For Africa Année : 1985 Auteurs compositeurs : L...
    published: 28 Feb 2016
    Play in Full Screen
    2:26
    One Piece - Opening 1 【We Are!】 4K 60FPS Creditless | CC
    One Piece OP / Opening 1 "We Are!" by Hiroshi Kitadani Subtitles: [CC] https://www.youtube...
    published: 15 Jul 2023
    Play in Full Screen
    4:20
    ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) — Full Lyrics [Kan/Rom/Eng]
    SONG: ウィーアー! | WE ARE! (9人の麦わらの一味 / 9-Member Straw Hat Pirates Version) ALBUM: ONE PIEC...
    published: 10 Nov 2022
    Play in Full Screen
    4:21
    ONE OK ROCK: We Are [OFFICIAL VIDEO]
    ONE OK ROCK's official video for 'We Are’ from their album Ambitions available now on Fuel...
    published: 09 Jan 2017
    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)); } }); }); }); // -->
    ×