Tagged Questions
1
vote
1answer
85 views
android gdx sound performance issue
I'm building a scrolling shooter with libgdx. in windows, everything runs just fine, but on android i get noticeable jitter and the framerate drops from 61 fps avg without sound to 48-56 fps avg with ...
0
votes
0answers
115 views
GDX Runtime Exception: Audio Only
When I'm testing the project, the app worked smoothly, even if I re-open it several times. Currently, I'm using Google Nexus 7 for the testing. After when my boss published it to Google Play and ...
0
votes
0answers
49 views
libGdx - Sound blocks thread on certain smartphones?
I got one issue with playing sounds with libgdx.
The sounds I want to play, are loaded via an assetManager like this:
assetManager.load("data/soundfile.ogg", Sound.class);
and get it via:
sfx = ...
1
vote
0answers
143 views
Compiled .Jar Crashes (no java console) but compiles and runs in Eclipse?
I am using Libgdx to code a game and it makes use of methods such as Gdx.files.internal("file") to load files, this should work when exporting the application since that is what it's meant to do
Some ...
2
votes
1answer
575 views
LIBGDX - Error creating music
I'm attempting to simply load a Music asset using libgdx, and this is what I have:
Music main_background;
main_background = Gdx.audio.newMusic(Gdx.files.internal("data/music/main_bg.wav"));
This ...
1
vote
0answers
252 views
Passing an AudioBuffer to LibGdx FFT
I have a problem with LibGdx, i whish to make an audio visualizer for Android using libGdx, i could use the Android FFt from the Visualizer class() but, since i want my app to work on Desktop to, i ...
0
votes
0answers
48 views
Why have the Gdx audio decoders changed to using short[] instead of ShortBuffer?
I'm trying to get buffered audio playback, but the decoders only accept short[] arrays now. (Noted here, and other places: http://code.google.com/p/libgdx/source/detail?r=3209)
Why is that? How ...
0
votes
2answers
189 views
Java - How to play an mp3 with looping points
I'm a bit stumped here. I need background music for the game I'm making, and for most songs, there will be a beginning section that will head into a loop once it's done playing (aka an intro). ...