Page 1 of 2  [ 11 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: Wed Mar 16, '16, 2:39 pm 
Does anyone know a website where they have the original series sound effects available for download? I'm looking for some sound effects to use for my android phone for notifications like text messages. In particular healing sound effects, like Gires and Wren's Recover from PS4. Any help would be appreciated! thanks


Top
PostPosted: Wed Mar 16, '16, 3:14 pm 
The most I'm able to find are soundtrack rips, but I can't find any just straight sound effects. I also did some searches on youtube for sound effect rips which you could in theory cut down to just the sound effects you want, but also came up dry.


Top
PostPosted: Mon Feb 27, '17, 11:05 am 
I've just tried to search and check some sound effects, as I am interested too, but it's hard to find ! :( Unfortunately...
And I've searched on some forums and apparently it's impossible to find ! But I'll continue ! :)


Top
PostPosted: Thu Mar 2, '17, 3:03 am 
I don't know of any place to download them, but there are disassembles of each of the PS games out there, maybe there's a way to extract them manually from that?


Top
PostPosted: Thu Mar 2, '17, 11:40 am 
Ah, maybe the fact to find disassembles of each of the PS will permit to extract them ! But honestly in not really versed into technology so.. Impossible to tell you if it's possible ! But maybe someone here knows it ?


Last edited by myau56 on Thu Mar 2, '17, 11:40 am, edited 2 times in total.

Top
PostPosted: Thu Mar 2, '17, 6:25 pm 
Well, you'd have to basically know assembly language to do that and assembly language is a nightmare to traverse through for the uninitiated.


Top
PostPosted: Fri Mar 3, '17, 11:55 am 
Assembly language ? I've heard about it but i don't know it at all...even e nightmare for the initiated one ? So good luck ! Did someone knows how to "use" it here ?


Top
PostPosted: Sat Mar 4, '17, 4:02 am 
Assembly language is a low-level programming language. What that means is that its operations are largely 1:1 to binary machine code (or close enough, anyway). Because programming in binary is not fun, so this was considered a step up.

However, we've largely moved on past assembly onto higher level programming languages because high level programming languages are more abstract.

In C++, this is how you would get a console to display a simple message:
------
#include <iostream>

int main ()
{
std::cout << "Hello!" << endl;
return 0;
}
----

The important thing to know is that std::cout is just a command to display some text on a console (like the command line). That's pretty easy, right? Well, doing the same thing in assembly takes far more lines of code, because you have to specifically tell the program to do some important stuff that higher level languages already do for you.

The Sega Genesis (or MegaDrive) in particular uses the Motorolla 68000 (sometimes called 68k) processor so that's the assembly language you'd have to learn in this case. I've heard other people say m68k is one of the easier assembly languages to learn, but I still can't hack it for the life of me.

To understand why assembly can be nightmarish to read, look at this and tell me if you have any idea what's going on:

----
move.w #$068A, D0
move.b #$0A, D1
add.b D1, D0
jsr Object1

Object 1
mulu.b $#03, D1
divu.w D1, D0
rts
-----

Does that look terrifying to you? Because it does to me. And as far as I know, that is braindead simple level of code. There was a period where I tried to learn that stuff but I got burnt out on trying to learn how.

I've peeked at the Phantasy Star disassemblies, but I'd have absolutely zero clue how to extract any music data from them, that's for someone far smarter than I am.


Last edited by Hukos on Sat Mar 4, '17, 4:02 am, edited 1 time in total.

Top
PostPosted: Sat Mar 4, '17, 11:49 am 
OUCH ! I'm starting to have nightmares just looking at what you've written here : seems like a Saccubus has appeared ! :rofl:
Low level but annoying one as it seems !

I'm not so smart too so I'll let other people to check it and try to rip those sound effects ! (If it's possible but I'm sure the answer is a positive one !).


Top
PostPosted: Sat Mar 4, '17, 9:27 pm 
MarkyJester wrote a pretty neat tutorial on m68k assembly... it just turns out I couldn't really wrap my head around it anyhow.


Top
 Page 1 of 2  [ 11 posts ]  Go to page 1, 2  Next


Who is online

Users browsing this forum: No registered users and 0 guests


Display posts from previous:
Sort by  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to: