[android-developers] Re: SoundPool problem (SDK 4.0.x) int loop any value other than zero causes crash

2012-01-30 Thread Stephen Farnsworth
Did you ever figure this out? I am having the same problem debugging on my LG G2x from an Ubuntu 11.04 box using eclipse and adk plugin. My sound files are even shorter, though. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Soundpool problem

2011-08-23 Thread davemac
SoundPool isn't designed to work with that much sound. The internal buffer is around 1MB, and that's after decompression from the source file. If you really want to use SoundPool, you're going to have to use less sound. You could try a shorter clip, smaller frequency (8 instead of 44), mono

[android-developers] Re: SoundPool problem

2009-11-25 Thread Mike
Guys, what did you use to encode your sounds in the ogg format? Is there anything free (and decent) out there that will convert wav to ogg? - Mike On Nov 10, 12:18 pm, Nikolay Ananiev devuni...@gmail.com wrote: I had the same problem. All my sounds were in .mp3 and they didn't play in 2.0. I

[android-developers] Re: SoundPool problem

2009-11-25 Thread Mike
By the way, I'm trying MediaCoder right now - it looks like it'll do the trick: http://www.mediacoderhq.com/dlfull.htm - Mike On Nov 25, 11:02 am, Mike michaeldouglaskra...@gmail.com wrote: Guys, what did you use to encode your sounds in the ogg format?  Is there anything free (and decent) out

[android-developers] Re: SoundPool problem

2009-11-18 Thread Doug
YES YES YES. This is particularly disappointing to me (that mp3 doesn't work with SoundPool on 2.0). I have an entry in ADC2 that relies heavily on mp3/SoundPool that works fine with all phones EXCEPT the recently produced Droid which runs 2.0. I'm sure it will kill my application's chances in

Re: [android-developers] Re: SoundPool problem

2009-11-18 Thread Wayne Wenthin
I may be wrong but I thought I read that the ADC2 was restricted and will not run on 2.0. On Mon, Nov 16, 2009 at 10:28 PM, Doug d...@hyper-aware.com wrote: YES YES YES. This is particularly disappointing to me (that mp3 doesn't work with SoundPool on 2.0). I have an entry in ADC2 that

[android-developers] Re: SoundPool problem

2009-11-18 Thread Doug
You just made my day. On Nov 18, 8:44 am, Wayne Wenthin wa...@fuligin.com wrote: I may be wrong but I thought I read that the ADC2 was restricted and will not run on 2.0. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: SoundPool problem

2009-11-18 Thread Wayne Wenthin
I'm glad someone is having a good day! LOL I hate bugs! On Wed, Nov 18, 2009 at 12:04 PM, Doug d...@hyper-aware.com wrote: You just made my day. On Nov 18, 8:44 am, Wayne Wenthin wa...@fuligin.com wrote: I may be wrong but I thought I read that the ADC2 was restricted and will not run

[android-developers] Re: SoundPool problem

2009-11-11 Thread ayanir
It is very annoying that this problem stared with the 2.0 version (hope that the framework developers see that remark) while in the 1.6 and 1.5 it worked fine. The workaround for this problem, besides of changing the files format is using MediaPlayer and handle the sound low level (which I really

Re: [android-developers] Re: SoundPool problem

2009-11-11 Thread Nikolay Ananiev
Just the long one. On Wed, Nov 11, 2009 at 10:05 AM, ayanir ayanir...@gmail.com wrote: It is very annoying that this problem stared with the 2.0 version (hope that the framework developers see that remark) while in the 1.6 and 1.5 it worked fine. The workaround for this problem, besides of

[android-developers] Re: SoundPool problem

2009-11-11 Thread ayanir
thank you Nikolay, It worked after the the format change. On Nov 11, 7:49 pm, Nikolay Ananiev devuni...@gmail.com wrote: Just the long one. On Wed, Nov 11, 2009 at 10:05 AM, ayanir ayanir...@gmail.com wrote: It is very annoying that this problem stared with the 2.0 version (hope that the

[android-developers] Re: SoundPool problem

2009-11-10 Thread Nightwolf
It seems that SoundPool can't allocate more than 1 MB. SoundPool stores uncompressed audio. Does anyone know is it possible to control uncompressed audio characteristics? That would allow storing relatively lengthy sounds. On 10 ноя, 22:18, Nikolay Ananiev devuni...@gmail.com wrote: I had the