Load audio file From URL : Sound « Development Class « Java






Load audio file From URL

 

import java.io.File;
import java.net.URL;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;

    AudioSystem stream = AudioSystem.getAudioInputStream(new URL(
        "http://hostname/audiofile"));

    AudioFormat format = stream.getFormat();
    if (format.getEncoding() == AudioFormat.Encoding.ULAW) {
    } else if (format.getEncoding() == AudioFormat.Encoding.ULAW) {
    }

  }
}

   
  








Related examples in the same category

1.Play sound
2.Duke Speaks
3.Duke Speaks Test
4.Sound Applet
5.Sound player
6.Simple program to try out the new Sound stuff in JDK1.2
7.Sound Application Sound Application
8.An example of loading and playing a sound using a ClipAn example of loading and playing a sound using a Clip
9.An example of playing a sound with an echo filter
10.The Filter3dTest class demonstrates the Filter3d functionality
11.Sound Manager TestSound Manager Test
12.An example that plays a Midi sequence
13.Determining When a Sampled Audio Player Has Finished Playing
14.Setting the Volume of a Sampled Audio Player
15.Determining the Position of a Sampled Audio Player
16.Playing Streaming Sampled Audio
17.Determining the File Format of a Sampled Audio File
18.Loading and Playing Sampled Audio
19.Determining the Position of a Midi Sequencer
20.Continuously Playing a Sampled Audio File
21.Load image and sound from Jar file
22.Determine the duration of a Midi audio file
23.Playing Streaming Midi Audio
24.Capturing Audio with Java Sound API
25.A simple player for sampled sound files.
26.Load and play Midi audio
27.Play a streaming Midi audio
28.Determining When a Midi Audio Player Has Finished Playing
29.Float Control Component
30.This is a simple program to record sounds and play them back
31.Determining the Duration of a Midi Audio File
32.Loading and Playing Midi Audio
33.Determining the File Format of a Midi Audio File
34.Play an audio file from a JAR file
35.Setting the Volume of Playing Midi Audio
36.Make your own Java Media Player to play media files
37.Determining the Encoding of a Sampled Audio File
38.Determining the Duration of a Sampled Audio File
39.audio sound: implements java.applet.AudioClip