<< Chapter < Page Chapter >> Page >

..

Listing 13 . The class named AudioFormatParameters01.
/*File AudioFormatParameters01.java Copyright 2014, R.G.BaldwinRevised 08/16/14 ******************************************************************************/public class AudioFormatParameters01{ //The following are audio format parameters used by the Java audio system.// They may be modified by the signal generator at runtime. Values allowed // by Java SDK 1.4.1 are shown in comments.public float sampleRate = 16000.0F; //Allowable 8000,11025,16000,22050,44100 samples per secondpublic int sampleSizeInBits = 16; //Allowable 8,16public int channels = 1; //Allowable 1 for mono and 2 for stereopublic boolean signed = true; //Allowable true,falsepublic boolean bigEndian = true;//Allowable true,false }//end class AudioFormatParameters01//===========================================================================//

..

Listing 14 . The class named MusicComposer04.
/*File MusicComposer04.java Copyright 2014, R.G.BaldwinRevised 08/20/14 This program creates and plays three seconds of monaural white or pink noise.It works in conjunction with the following classes: WhiteNoiseAudioSignalGenerator02 AudioPlayOrFile01AudioFormatParameters01 The sound can be played immediately or can be saved in an audio file oftype AU for playback later. You should be able to play the audio file with any standard media player that can handle the AU file typeTested using JDK 1.8 under Win 7. ******************************************************************************/public class MusicComposer04{ //Instantiate an object containing audio format parameters with predefined// values. They may be modified by the signal generator at runtime. Values // allowed by Java SDK 1.4.1 are shown in comments in the class definition.AudioFormatParameters01 audioParams = new AudioFormatParameters01();//A buffer to hold the audio data that will be played or filed. byte[]melody;//A place to store the incoming args array. String[]args; //-------------------------------------------------------------------------////Command-line parameter (only one parameter is needed) //If "play", the sound will be played immediately. Otherwise, the string will// be used as a filename for an audio file of type AU. In the latter case, // it must be a string that would be valid as a file name for the operating// system in use. public static void main(String[]args){ //Instantiate a new object of this class.new MusicComposer04(args); }//end main//-------------------------------------------------------------------------//public MusicComposer04(String[] args){//constructor//Save the args array. this.args = args;//Create default args data if no args data is provided on the command line.if(args.length == 0){ this.args = new String[1]; this.args[0]= "play";//Play the melody immediately }//end if//Get a populated array containing audio data for white or pink noise. WhiteNoise whiteNoise = new WhiteNoise(audioParams,this.args,melody);melody = whiteNoise.getMelody(); //Play or file the audio datanew AudioPlayOrFile01(audioParams,melody,this.args[0]).playOrFileData();}//end constructor //-------------------------------------------------------------------------//}//end class MusicComposer04.java //===========================================================================//

Questions & Answers

I'm interested in biological psychology and cognitive psychology
Tanya Reply
what does preconceived mean
sammie Reply
physiological Psychology
Nwosu Reply
How can I develope my cognitive domain
Amanyire Reply
why is communication effective
Dakolo Reply
Communication is effective because it allows individuals to share ideas, thoughts, and information with others.
effective communication can lead to improved outcomes in various settings, including personal relationships, business environments, and educational settings. By communicating effectively, individuals can negotiate effectively, solve problems collaboratively, and work towards common goals.
it starts up serve and return practice/assessments.it helps find voice talking therapy also assessments through relaxed conversation.
miss
Every time someone flushes a toilet in the apartment building, the person begins to jumb back automatically after hearing the flush, before the water temperature changes. Identify the types of learning, if it is classical conditioning identify the NS, UCS, CS and CR. If it is operant conditioning, identify the type of consequence positive reinforcement, negative reinforcement or punishment
Wekolamo Reply
please i need answer
Wekolamo
because it helps many people around the world to understand how to interact with other people and understand them well, for example at work (job).
Manix Reply
Agreed 👍 There are many parts of our brains and behaviors, we really need to get to know. Blessings for everyone and happy Sunday!
ARC
A child is a member of community not society elucidate ?
JESSY Reply
Isn't practices worldwide, be it psychology, be it science. isn't much just a false belief of control over something the mind cannot truly comprehend?
Simon Reply
compare and contrast skinner's perspective on personality development on freud
namakula Reply
Skinner skipped the whole unconscious phenomenon and rather emphasized on classical conditioning
war
explain how nature and nurture affect the development and later the productivity of an individual.
Amesalu Reply
nature is an hereditary factor while nurture is an environmental factor which constitute an individual personality. so if an individual's parent has a deviant behavior and was also brought up in an deviant environment, observation of the behavior and the inborn trait we make the individual deviant.
Samuel
I am taking this course because I am hoping that I could somehow learn more about my chosen field of interest and due to the fact that being a PsyD really ignites my passion as an individual the more I hope to learn about developing and literally explore the complexity of my critical thinking skills
Zyryn Reply
good👍
Jonathan
and having a good philosophy of the world is like a sandwich and a peanut butter 👍
Jonathan
generally amnesi how long yrs memory loss
Kelu Reply
interpersonal relationships
Abdulfatai Reply
What would be the best educational aid(s) for gifted kids/savants?
Heidi Reply
treat them normal, if they want help then give them. that will make everyone happy
Saurabh
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Accessible objected-oriented programming concepts for blind students using java. OpenStax CNX. Sep 01, 2014 Download for free at https://legacy.cnx.org/content/col11349/1.17
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Accessible objected-oriented programming concepts for blind students using java' conversation and receive update notifications?

Ask