Package org.terasology.audio

Examples of org.terasology.audio.StaticSoundData


            ByteStreams.copy(reader, bos);

            ByteBuffer data = BufferUtils.createByteBuffer(bos.size()).put(bos.toByteArray());
            data.flip();

            return new StaticSoundData(data, reader.getChannels(), reader.getRate(), 16);
        } catch (IOException e) {
            throw new IOException("Failed to load sound: " + e.getMessage(), e);
        }
    }
View Full Code Here

TOP

Related Classes of org.terasology.audio.StaticSoundData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.