javax.sound.sampled

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » sound » javax.sound.sampled 
javax.sound.sampled
Provides interfaces and classes for capture, processing, and playback of sampled audio data.

Related Documentation

For overviews, tutorials, examples, and guides, please see: @since 1.3
Java Source File NameTypeComment
AudioFileFormat.javaClass An instance of the AudioFileFormat class describes an audio file, including the file type, the file's length in bytes, the length in sample frames of the audio data contained in the file, and the format of the audio data.

The AudioSystem class includes methods for determining the format of an audio file, obtaining an audio input stream from an audio file, and writing an audio file from an audio input stream.

An AudioFileFormat object can include a set of properties.

AudioFormat.javaClass AudioFormat is the class that specifies a particular arrangement of data in a sound stream. By examing the information stored in the audio format, you can discover how to interpret the bits in the binary sound data.

Every data line has an audio format associated with its data stream.

AudioInputStream.javaClass An audio input stream is an input stream with a specified audio format and length.
AudioPermission.javaClass The AudioPermission class represents access rights to the audio system resources.
AudioSystem.javaClass The AudioSystem class acts as the entry point to the sampled-audio system resources.
BooleanControl.javaClass A BooleanControl provides the ability to switch between two possible settings that affect a line's audio.
Clip.javaInterface The Clip interface represents a special kind of data line whose audio data can be loaded prior to playback, instead of being streamed in real time.

Because the data is pre-loaded and has a known length, you can set a clip to start playing at any position in its audio data.

CompoundControl.javaClass A CompoundControl, such as a graphic equalizer, provides control over two or more related properties, each of which is itself represented as a Control.
Control.javaClassLine Lines often have a set of controls, such as gain and pan, that affect the audio signal passing through the line.
DataLine.javaInterface DataLine adds media-related functionality to its superinterface, Line .
EnumControl.javaClass A EnumControl provides control over a set of discrete possible values, each represented by an object.
FloatControl.javaClass A FloatControl object provides control over a range of floating-point values.
Line.javaInterface The Line interface represents a mono or multi-channel audio feed.
LineEvent.javaClass The LineEvent class encapsulates information that a line sends its listeners whenever the line opens, closes, starts, or stops. Each of these four state changes is represented by a corresponding type of event.
LineListener.javaInterface Instances of classes that implement the LineListener interface can register to receive events when a line's status changes.
LineUnavailableException.javaClass A LineUnavailableException is an exception indicating that a line cannot be opened because it is unavailable.
Mixer.javaInterface A mixer is an audio device with one or more lines.
Port.javaInterface Ports are simple lines for input or output of audio to or from audio devices.
ReverbType.javaClass The ReverbType class provides methods for accessing various reverberation settings to be applied to an audio signal.

Reverberation simulates the reflection of sound off of the walls, ceiling, and floor of a room.

SourceDataLine.javaInterface A source data line is a data line to which data may be written.
TargetDataLine.javaInterface A target data line is a type of DataLine from which audio data can be read.
UnsupportedAudioFileException.javaClass An UnsupportedAudioFileException is an exception indicating that an operation failed because a file did not contain valid data of a recognized file type and format.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.