Top "Javasound" questions

Use this tag for questions about the Java Sound APIs.

Audio volume control (increase or decrease) in Java

How do I increase the volume of an outgoing wav audio stream using Java? I'm having issues with various Java …

java audio javasound
How to develop screen capture to video application

I found similar questions in stackoverflow. But I want to be specific. I visited a web site screencast-o-matic. They have …

java screen video-capture javasound
Playing MP3 using Java Sound API

Can you please suggest that how can i write a piece that plays a song.? I tried the following snippet …

java audio javasound
Sine Wave Sound Generator in Java

What's the simplest way to generate a sine wave sound at any frequency in Java? A sample size more than 2 …

java audio javasound wave trigonometry
Best way to get Sound on Button Press for a Java Calculator?

I'm a learning Java student working on an independent project for my Resume. I decided to do a Java calculator …

java swing audio jbutton javasound
Reading MIDI files in Java

I'm trying to read in .MID files to a Java program, and would like to separate each note/chord so …

java audio midi javasound
Wav file convert to byte array in java

My project is 'Speech Recognition of Azeri speech'. I have to write a program that converts wav files to byte …

java arrays audio javasound wave
Join two WAV files from Java?

What's the simplest way to concatenate two WAV files in Java 1.6? (Equal frequency and all, nothing fancy.) (This is probably …

java audio javasound
mp3 to wav conversion in java

My code to convert mp3 to wav is: package audio1; import java.io.File; import javax.sound.sampled.AudioFileFormat; import …

java audio mp3 wav javasound
Convert audio stream to WAV byte array in Java without temp file

Given an InputStream called in which contains audio data in a compressed format (such as MP3 or OGG), I wish …

java audio wav javasound