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

Akira Yamaoka

Akira Yamaoka (山岡 晃 Yamaoka Akira, born February 6, 1968) is a Japanese video game composer, sound designer, guitarist, and producer, who is best known for composing the music in the Silent Hill series by Konami. He also worked as a producer on the series, as well as serving as a composer and producer of the Silent Hill film and its sequel.

Biography

Early life

Yamaoka attended Tokyo Art College, where he studied product design and interior design. He originally planned to follow a career in design.

Career

Yamaoka joined Konami on September 21, 1993. He immediately began to work on the games Contra: Hard Corps, Sparkster, and Sparkster: Rocket Knight Adventures 2. He then shortly thereafter worked on the music for the PC Engine and Sega CD versions of Snatcher. When Konami began searching for a musician to compose Silent Hill's score, Yamaoka volunteered because he thought he was the only one capable of making the soundtrack. Although initially hired as a composer, he soon became involved in overall sound design.

Podcasts:

山岡晃

ALBUMS

  • Silent Hill Best Soundtracks From The Legend Akira Yamaoka!!!!!

    SONG LIST i dont own this song its from konami and akira 1.silent hill hometown 0:00 2.silent hill shot down in flames 5:00 3.silent hill i want love (studio mix) 9:16 4. 'A Letter from the Lost Days' 13:49 5.silent hill acceptane 17:48 6.silent hill cradel of the forest 21:48 7.silent hill i want love 28:22 8.silent hill youre not here 31:06 9.silent hill promise 34:53 10.silent hill theme of laura 39:34 11.silent hill always on my mind 43:07 12.silent hill hell frozen rain 48:07 13.silent hill room of angels 53:53 14.silent hill youre rain 1:00:56 15.silent hill waiting for you 1:05:40 16.silent hill when youre gone 1:11:29 17.silent hill 1 theme song 1:14:41 18.silent hill one more soul to call 1:17:31 19.silent hill elle theme 1:24:05 20.silent hill sicknes unto foolish death ...

    published: 26 Jun 2011
  • Akira Yamaoka - Selected Hits (HQ)

    Track List: 1. Sine Mora - High Score (Results) 0:00 2. Liberation Maiden - Mountains of Daisetsuzan 2:08 3. Silent Hill 4 - Pulsating Ambience 3:59 4. Silent Hill - Alessa's Gift 7:05 5. Silent Hill - Sermon 8:07 6. Silent Hill - Results 9:55 7. Silent Hill 3 - Planning at the Motel 12:06 8. Slient Hill 2 - Laura Plays the Piano 15:09 9. Silent Hill 3 - Casual Background 17:00 10. Silent Hill 2 - Heaven's Night 18:47 11. Contra: Shattered Soldier - S-Power 20:51 12. Silent Hill 2 - Wish Ending (Part 1) 22:21 13. Silent Hill 4 - Fever Chill 24:57 14. Silent Hill 2 - A World of Madness 27:20 15. Silent Hill 2 - The Day of Night 29:07 16. Silent Hill 2 - Peace & Serenity 30:44 17. Silent Hill 2 - Rebirth Ending 34:00 18. Silent Hill 2 - Pizza & Bowling 37:33 19. Silent Hill 2 - Pianissimo Ep...

    published: 10 Apr 2023
  • Akira Yamaoka - Eternal Rest

    From OST of Silent Hill 1 (PSX GAME) Akira Yamaoka, Eternal Rest

    published: 15 May 2012
  • A K I Я A 1 6 [Akira Yamaoka & Mary Elizabeth McGlynn LIVE DVD 2016]

    Akira Yamaoka and the Silent Hill Band feat. Mary Elizabeth McGlynn LIVE in Saint Petersburg [06.11.2016] AKIRA16 PROJECT is a non-commercial concert film. All the rights remain courtesy of their respective owners. It is an incredible honor to be able to create this film for Yamaoka-san, Mary, Israel and Yoshi. Special thanks: To T H E S I L E N T H I L L B A N D To Israel (for helping us with some backstage footage and more...) To Geometria.ru (for photo coverage of the event.) The agency that organized the event. To the crew of the Cosmonavt Club. To Vadim Romanov (for helping out our sound engineer). To folks who provided footage of "Polyushko-polye" performance during the 15" concert: Evgeniy Urgalkin Alex Sulima Alex Esipov Vladislav (from INFINITY agency) Alex Konfe...

    published: 08 Nov 2017
  • me listening to my unorganized silent hill playlist

    All of this is genuinely me whenever listening to these sixteen songs. Honest to God.

    published: 25 Jun 2023
  • Theme of Laura

    Provided to YouTube by Rightsscale Theme of Laura · AKIRA YAMAOKA SILENT HILL2 (Original Soundtrack) ℗ Konami Digital Entertainment Co.,Ltd. Released on: 2001-10-03 Composer: AKIRA YAMAOKA Auto-generated by YouTube.

    published: 16 Apr 2020
  • Silent Hill Best Soundtracks From The Legend Akira Yamaoka! (Remade)

    Song List right here! 0:00 Theme of Laura 3:21 Elle Theme 8:43 Tears of... 11:58 Witchcraft 15:54 Shot Down in Flames 19:53 Hole in The Sky 24:05 Snowblind 26:06 One More Soul To The Call 32:06 Silent Hill Theme 34:54 Alex Theme (Machine Head Remix) 39:43 Promise 44:23 True 47:28 I Want Love (Studio Mix) 52:10 A Stray Child 57:40 Dance With Night Wind 1:03:03 Hometown 1:08:01 I Want Love 1:10:48 Letter From The Lost Days 1:14:44 Never Forgive Me Never Forget Me 1:17:04 Please Love Me... Once More 1:18:59 Sickness Unto Foolish Death 1:22:06 Walk On Vanity Ruins 1:24:53 You're Not Here 1:28:36 Tender Sugar 1:34:07 Waiting For You 1:40:07 Cradle Of Forest 1:46:36 Room Of Angel 1:53:46 Underground Dawn Never 1:55:59 Your Rain The reason why i remade ''Silent Hill Best Soundtracks From T...

    published: 02 Oct 2018
  • Akira Yamaoka - The day of night (slowed+extended)

    published: 15 Dec 2022
  • Theme Of Laura (Akira Yamaoka) live

    Шикарнейшее исполнение

    published: 20 Sep 2012
  • Akira Yamaoka Full Set | Live at Gamers City (Santiago, Chile) | April 16th 2023

    #akirayamaoka #silenthill #gamerscity Presentación en vivo completa de Akira Yamaoka en Gamers City, Santiago, Chile, 16 de abril, 2023, ¡junto a una inesperada sorpresa de David Hayter! Su excelente banda se compone de: IG: esther_ortega_canto (voz) IG: yoshitsugu_imai (bajo) IG: israel:ull (batería) SETLIST: 0:00 Intro 1:35 Overdose Delusion 5:23 Love Psalm 9:55 Silent Scream 15:21 Waiting for You 20:57 HellfrozenRain 26:40 Tender Sugar 32:56 One More Soul to the Call 38:40 Shot Down in Flames 43:09 Letter 47:42 Room of Angel 54:40 Ashes (Drum Solo) 1:01:11 Promise 1:05:39 Your Rain 1:11:30 SNAKE EATER (Metal Gear Solid 3) 1:17:02 When Yuu're Gone 1:22:40 Theme of Laura 1:26:56 You're Not Here ¡Pongan LIKE! NERDO - EN DIRECTO SE TRANSMITE TODOS LOS LUNES A LAS 20 HRS EN TWITCH 👉 h...

    published: 17 Apr 2023
Silent Hill Best Soundtracks From The Legend Akira Yamaoka!!!!!
2:25:38

Silent Hill Best Soundtracks From The Legend Akira Yamaoka!!!!!

  • Order:
  • Duration: 2:25:38
  • Uploaded Date: 26 Jun 2011
  • views: 1970332
SONG LIST i dont own this song its from konami and akira 1.silent hill hometown 0:00 2.silent hill shot down in flames 5:00 3.silent hill i want love (studio mix) 9:16 4. 'A Letter from the Lost Days' 13:49 5.silent hill acceptane 17:48 6.silent hill cradel of the forest 21:48 7.silent hill i want love 28:22 8.silent hill youre not here 31:06 9.silent hill promise 34:53 10.silent hill theme of laura 39:34 11.silent hill always on my mind 43:07 12.silent hill hell frozen rain 48:07 13.silent hill room of angels 53:53 14.silent hill youre rain 1:00:56 15.silent hill waiting for you 1:05:40 16.silent hill when youre gone 1:11:29 17.silent hill 1 theme song 1:14:41 18.silent hill one more soul to call 1:17:31 19.silent hill elle theme 1:24:05 20.silent hill sicknes unto foolish death 1:29:13 21.silent hill witchcraft 1:32:29 22.silent hill please love me once more 1:36:15 23.silent hill 1:38:41 Under Ground Dawn 24.silent hill snowblind 1:40:25 25.silent hill alex theme 1:42:23 26.silent hill hole in the sky 1:47:18 27.silent hill true 1:51:28 28.silent hill stray child 1:54:42 29.silent hill Dance With Night Wind 2:00:05 30.silent hill never forgive me never forget me 2:05:40 31.silent hill walk on vanity ruins 2:08:33 32.silent hill cradel of the forest (piano version) 2:10:30 33.silent hill tears of...:( 2:16:16 34.silent hill tender of sugar 2:20:00 top 100 soundtracks from akira /watch?v=rxme2JejoMM silent hill part 1 and 2 in one vidoe so i call this part 3 :P http://www.silentnerd.net Great website https://www.facebook.com/Thesilenthillfan-1535497586764676/4
https://wn.com/Silent_Hill_Best_Soundtracks_From_The_Legend_Akira_Yamaoka
Akira Yamaoka - Selected Hits (HQ)
1:12:16

Akira Yamaoka - Selected Hits (HQ)

  • Order:
  • Duration: 1:12:16
  • Uploaded Date: 10 Apr 2023
  • views: 132210
Track List: 1. Sine Mora - High Score (Results) 0:00 2. Liberation Maiden - Mountains of Daisetsuzan 2:08 3. Silent Hill 4 - Pulsating Ambience 3:59 4. Silent Hill - Alessa's Gift 7:05 5. Silent Hill - Sermon 8:07 6. Silent Hill - Results 9:55 7. Silent Hill 3 - Planning at the Motel 12:06 8. Slient Hill 2 - Laura Plays the Piano 15:09 9. Silent Hill 3 - Casual Background 17:00 10. Silent Hill 2 - Heaven's Night 18:47 11. Contra: Shattered Soldier - S-Power 20:51 12. Silent Hill 2 - Wish Ending (Part 1) 22:21 13. Silent Hill 4 - Fever Chill 24:57 14. Silent Hill 2 - A World of Madness 27:20 15. Silent Hill 2 - The Day of Night 29:07 16. Silent Hill 2 - Peace & Serenity 30:44 17. Silent Hill 2 - Rebirth Ending 34:00 18. Silent Hill 2 - Pizza & Bowling 37:33 19. Silent Hill 2 - Pianissimo Epilogue 40:04 20. Silent Hill 2 - True 41:40 21. Silent Hill 2 - Mary's Invitation 44:47 22. Silent Hill 2 - Failing Maria Again 46:34 23. Silent Hill 2 - Mary's Twin 48:39 24. Silent Hill 2 - Mirrored Guilt 51:27 25. Silent Hill - Meeting Cybil 53:46 26. Silent Hill 2 - Lost Innocence 56:25 27. Silent Hill 3 - A Sad Return Home 58:02 28. Silent Hill 3 - Bitter Tears 1:03:04 29. Silent Hill 2 - Angela's Hell 1:05:10 30. Sine Mora - Near Moneta Point 1:06:46
https://wn.com/Akira_Yamaoka_Selected_Hits_(Hq)
Akira Yamaoka - Eternal Rest
2:24

Akira Yamaoka - Eternal Rest

  • Order:
  • Duration: 2:24
  • Uploaded Date: 15 May 2012
  • views: 402579
From OST of Silent Hill 1 (PSX GAME) Akira Yamaoka, Eternal Rest
https://wn.com/Akira_Yamaoka_Eternal_Rest
A K I Я A 1 6 [Akira Yamaoka & Mary Elizabeth McGlynn LIVE DVD 2016]
2:00:05

A K I Я A 1 6 [Akira Yamaoka & Mary Elizabeth McGlynn LIVE DVD 2016]

  • Order:
  • Duration: 2:00:05
  • Uploaded Date: 08 Nov 2017
  • views: 262458
Akira Yamaoka and the Silent Hill Band feat. Mary Elizabeth McGlynn LIVE in Saint Petersburg [06.11.2016] AKIRA16 PROJECT is a non-commercial concert film. All the rights remain courtesy of their respective owners. It is an incredible honor to be able to create this film for Yamaoka-san, Mary, Israel and Yoshi. Special thanks: To T H E S I L E N T H I L L B A N D To Israel (for helping us with some backstage footage and more...) To Geometria.ru (for photo coverage of the event.) The agency that organized the event. To the crew of the Cosmonavt Club. To Vadim Romanov (for helping out our sound engineer). To folks who provided footage of "Polyushko-polye" performance during the 15" concert: Evgeniy Urgalkin Alex Sulima Alex Esipov Vladislav (from INFINITY agency) Alex Konferno Alex Serookiy Time codes: 00:00 WELCOME 06:11 BETRAYAL + OVERDOSE DELUSION 11:35 LOVE PSALM 15:50 SILENT SCREAM 22:06 WAITING FOR YOU 27:25 TENDER SUGAR 33:30 ONE MORE SOUL TO THE CALL 40:05 CRADLE OF FOREST 46:56 SHOT DOWN IN FLAMES 50:33 A STRAY CHILD + RIDERS OF THE LOST HEART (DRUM SOLO) 55:50 JUSTINE FOR ALL + THE DAY OF NIGHT + PROMISE (REPRISE) (BASS SOLO) 59:55 ROOM OF ANGEL 01:06:45 LETTER FROM THE LOST DAYS 01:11:47 REALITY 01:18:10 YOUR RAIN 01:23:10 HELL FROZEN RAIN 01:29:00 WHEN YOU'RE GONE 01:32:40 SILENT HILL (OTHER SIDE) + KATYUSHA + BALALAIKA-HILL 01:36:10 THEME OF LAURA 01:40:10 PROMISE 01:45:30 YOU'RE NOT HERE
https://wn.com/A_K_I_Я_A_1_6_Akira_Yamaoka_Mary_Elizabeth_Mcglynn_Live_Dvd_2016
me listening to my unorganized silent hill playlist
1:25

me listening to my unorganized silent hill playlist

  • Order:
  • Duration: 1:25
  • Uploaded Date: 25 Jun 2023
  • views: 336216
All of this is genuinely me whenever listening to these sixteen songs. Honest to God.
https://wn.com/Me_Listening_To_My_Unorganized_Silent_Hill_Playlist
Theme of Laura
3:25

Theme of Laura

  • Order:
  • Duration: 3:25
  • Uploaded Date: 16 Apr 2020
  • views: 4348305
Provided to YouTube by Rightsscale Theme of Laura · AKIRA YAMAOKA SILENT HILL2 (Original Soundtrack) ℗ Konami Digital Entertainment Co.,Ltd. Released on: 2001-10-03 Composer: AKIRA YAMAOKA Auto-generated by YouTube.
https://wn.com/Theme_Of_Laura
Silent Hill Best Soundtracks From The Legend Akira Yamaoka! (Remade)
2:00:41

Silent Hill Best Soundtracks From The Legend Akira Yamaoka! (Remade)

  • Order:
  • Duration: 2:00:41
  • Uploaded Date: 02 Oct 2018
  • views: 349980
Song List right here! 0:00 Theme of Laura 3:21 Elle Theme 8:43 Tears of... 11:58 Witchcraft 15:54 Shot Down in Flames 19:53 Hole in The Sky 24:05 Snowblind 26:06 One More Soul To The Call 32:06 Silent Hill Theme 34:54 Alex Theme (Machine Head Remix) 39:43 Promise 44:23 True 47:28 I Want Love (Studio Mix) 52:10 A Stray Child 57:40 Dance With Night Wind 1:03:03 Hometown 1:08:01 I Want Love 1:10:48 Letter From The Lost Days 1:14:44 Never Forgive Me Never Forget Me 1:17:04 Please Love Me... Once More 1:18:59 Sickness Unto Foolish Death 1:22:06 Walk On Vanity Ruins 1:24:53 You're Not Here 1:28:36 Tender Sugar 1:34:07 Waiting For You 1:40:07 Cradle Of Forest 1:46:36 Room Of Angel 1:53:46 Underground Dawn Never 1:55:59 Your Rain The reason why i remade ''Silent Hill Best Soundtracks From The Legend Akira Yamaoka!'' because it had bunch of copyright issue. And people couldn't watch it anymore. So i remade it using the same songs. But i did remove some songs because or else it will block countries from watching the video.
https://wn.com/Silent_Hill_Best_Soundtracks_From_The_Legend_Akira_Yamaoka_(Remade)
Akira Yamaoka - The day of night (slowed+extended)
1:34:33

Akira Yamaoka - The day of night (slowed+extended)

  • Order:
  • Duration: 1:34:33
  • Uploaded Date: 15 Dec 2022
  • views: 1380675
https://wn.com/Akira_Yamaoka_The_Day_Of_Night_(Slowed_Extended)
Theme Of Laura (Akira Yamaoka) live
4:41

Theme Of Laura (Akira Yamaoka) live

  • Order:
  • Duration: 4:41
  • Uploaded Date: 20 Sep 2012
  • views: 645733
Шикарнейшее исполнение
https://wn.com/Theme_Of_Laura_(Akira_Yamaoka)_Live
Akira Yamaoka Full Set | Live at Gamers City (Santiago, Chile) | April 16th 2023
1:36:12

Akira Yamaoka Full Set | Live at Gamers City (Santiago, Chile) | April 16th 2023

  • Order:
  • Duration: 1:36:12
  • Uploaded Date: 17 Apr 2023
  • views: 11849
#akirayamaoka #silenthill #gamerscity Presentación en vivo completa de Akira Yamaoka en Gamers City, Santiago, Chile, 16 de abril, 2023, ¡junto a una inesperada sorpresa de David Hayter! Su excelente banda se compone de: IG: esther_ortega_canto (voz) IG: yoshitsugu_imai (bajo) IG: israel:ull (batería) SETLIST: 0:00 Intro 1:35 Overdose Delusion 5:23 Love Psalm 9:55 Silent Scream 15:21 Waiting for You 20:57 HellfrozenRain 26:40 Tender Sugar 32:56 One More Soul to the Call 38:40 Shot Down in Flames 43:09 Letter 47:42 Room of Angel 54:40 Ashes (Drum Solo) 1:01:11 Promise 1:05:39 Your Rain 1:11:30 SNAKE EATER (Metal Gear Solid 3) 1:17:02 When Yuu're Gone 1:22:40 Theme of Laura 1:26:56 You're Not Here ¡Pongan LIKE! NERDO - EN DIRECTO SE TRANSMITE TODOS LOS LUNES A LAS 20 HRS EN TWITCH 👉 https://www.twitch.tv/nerdocl Recuerden que pueden realizar donaciones para apoyar a nuestro canal directamente desde 👉 https://www.nerdo.cl Outro: furanmusic.com & Pablo M. -- Sitio Web https://www.nerdo.cl Twitch https://www.twitch.tv/nerdocl Discord: http://bit.ly/DiscordNerdo Instagram: https://www.instagram.com/nerdo.cl/ Spotify http://bit.ly/SpotifyNerdo YouTube⁠ https://www.youtube.com/nerdocl Facebook https://www.facebook.com/nerdo.cl
https://wn.com/Akira_Yamaoka_Full_Set_|_Live_At_Gamers_City_(Santiago,_Chile)_|_April_16Th_2023
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 11:01:20

Silent Hill Best Soundtracks From The Legend Akira Yamaoka!!!!!

SONG LIST i dont own this song its from konami and akira 1.silent hill hometown 0:00 2.silent hill shot down in flames 5:00 3.silent hill i want love (studio mix) 9:16 4. 'A Letter from the Lost Days' 13:49 5.silent hill acceptane 17:48 6.silent hill cradel of the forest 21:48 7.silent hill i want love 28:22 8.silent hill youre not here 31:06 9.silent hill promise 34:53 10.silent hill theme of laura 39:34 11.silent hill always on my mind 43:07 12.silent hill hell frozen rain 48:07 13.silent hill room of angels 53:53 14.silent hill youre rain 1:00:56 15.silent hill waiting for you 1:05:40 16.silent hill when youre gone 1:11:29 17.silent hill 1 theme song 1:14:41 18.silent hill one more soul to call 1:17:31 19.silent hill elle theme 1:24:05 20.silent hill sicknes unto foolish death 1:29:13 21.silent hill witchcraft 1:32:29 22.silent hill please love me once more 1:36:15 23.silent hill 1:38:41 Under Ground Dawn 24.silent hill snowblind 1:40:25 25.silent hill alex theme 1:42:23 26.silent hill hole in the sky 1:47:18 27.silent hill true 1:51:28 28.silent hill stray child 1:54:42 29.silent hill Dance With Night Wind 2:00:05 30.silent hill never forgive me never forget me 2:05:40 31.silent hill walk on vanity ruins 2:08:33 32.silent hill cradel of the forest (piano version) 2:10:30 33.silent hill tears of...:( 2:16:16 34.silent hill tender of sugar 2:20:00 top 100 soundtracks from akira /watch?v=rxme2JejoMM silent hill part 1 and 2 in one vidoe so i call this part 3 :P http://www.silentnerd.net Great website https://www.facebook.com/Thesilenthillfan-1535497586764676/4
2:25:38
Silent Hill Best Soundtracks From The Legend Akira Yamaoka!!!!!
SONG LIST i dont own this song its from konami and akira 1.silent hill hometown 0:00 2.si...
published: 26 Jun 2011
Play in Full Screen
1:12:16
Akira Yamaoka - Selected Hits (HQ)
Track List: 1. Sine Mora - High Score (Results) 0:00 2. Liberation Maiden - Mountains of D...
published: 10 Apr 2023
Play in Full Screen
2:24
Akira Yamaoka - Eternal Rest
From OST of Silent Hill 1 (PSX GAME) Akira Yamaoka, Eternal Rest
published: 15 May 2012
Play in Full Screen
2:00:05
A K I Я A 1 6 [Akira Yamaoka & Mary Elizabeth McGlynn LIVE DVD 2016]
Akira Yamaoka and the Silent Hill Band feat. Mary Elizabeth McGlynn LIVE in Saint Petersbu...
published: 08 Nov 2017
Play in Full Screen
1:25
me listening to my unorganized silent hill playlist
All of this is genuinely me whenever listening to these sixteen songs. Honest to God.
published: 25 Jun 2023
Play in Full Screen
3:25
Theme of Laura
Provided to YouTube by Rightsscale Theme of Laura · AKIRA YAMAOKA SILENT HILL2 (Original...
published: 16 Apr 2020
Play in Full Screen
2:00:41
Silent Hill Best Soundtracks From The Legend Akira Yamaoka! (Remade)
Song List right here! 0:00 Theme of Laura 3:21 Elle Theme 8:43 Tears of... 11:58 Witch...
published: 02 Oct 2018
Play in Full Screen
1:34:33
Akira Yamaoka - The day of night (slowed+extended)
published: 15 Dec 2022
Play in Full Screen
4:41
Theme Of Laura (Akira Yamaoka) live
Шикарнейшее исполнение
published: 20 Sep 2012
Play in Full Screen
1:36:12
Akira Yamaoka Full Set | Live at Gamers City (Santiago, Chile) | April 16th 2023
#akirayamaoka #silenthill #gamerscity Presentación en vivo completa de Akira Yamaoka en G...
published: 17 Apr 2023
Play in Full Screen

Akira Yamaoka

Akira Yamaoka (山岡 晃 Yamaoka Akira, born February 6, 1968) is a Japanese video game composer, sound designer, guitarist, and producer, who is best known for composing the music in the Silent Hill series by Konami. He also worked as a producer on the series, as well as serving as a composer and producer of the Silent Hill film and its sequel.

Biography

Early life

Yamaoka attended Tokyo Art College, where he studied product design and interior design. He originally planned to follow a career in design.

Career

Yamaoka joined Konami on September 21, 1993. He immediately began to work on the games Contra: Hard Corps, Sparkster, and Sparkster: Rocket Knight Adventures 2. He then shortly thereafter worked on the music for the PC Engine and Sega CD versions of Snatcher. When Konami began searching for a musician to compose Silent Hill's score, Yamaoka volunteered because he thought he was the only one capable of making the soundtrack. Although initially hired as a composer, he soon became involved in overall sound design.

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