On 23/08/2015 18:25, Vincent BLONDEAU wrote:
Thanks! It is working better now!
Nice tool! Do you plan to add Mp3? (because it is the current format now ;)).
Maybe one day ^^ I took WAV because it's a really easy audio format to parse. At least now we do have something working for a common format :)
Vincent
-----Message d'origine----- De : Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] De la part de Merwan Ouddane Envoyé : dimanche 23 août 2015 17:43 à : Pharo Development List Objet : Re: [Pharo-dev] WAV support in Pharo
Yes you have to download OpenAL for the openAL binding to work :p
The name of the dll is OpenAL32.dll
On 23/08/2015 17:25, Vincent BLONDEAU wrote:
Hi,
It does not work under windows.. Should I download a specific .dll ?
Cheers, Vincent
-----Message d'origine----- De : Pharo-dev [mailto:pharo-dev-bounces@lists.pharo.org] De la part de Merwan Ouddane Envoyé : dimanche 23 août 2015 16:02 à : Pharo Development List Objet : [Pharo-dev] WAV support in Pharo
Hi,
I made a WAV parser, so now we can play music in Pharo :)
I made an example using OpenAL's binding from Ronnie.
You can try it with this piece of code :
Gofer new smalltalkhubUser: 'MerwanOuddane' project: 'WAVParser'; package: 'ConfigurationOfWAVParser'; load. (Smalltalk at: #ConfigurationOfWAVParser) loadBleedingEdge. (Smalltalk at: #ALExamplesWAV) exampleBirdChirping
Merwan