MidiDevice: open() : MidiDevice « javax.sound.midi « Java by API

Java by API
1. com.sun.image.codec.jpeg
2. java.applet
3. java.awt
4. java.awt.datatransfer
5. java.awt.dnd
6. java.awt.event
7. java.awt.font
8. java.awt.geom
9. java.awt.im.spi
10. java.awt.image
11. java.awt.print
12. java.beans
13. java.beans.beancontext
14. java.io
15. java.lang
16. java.lang.annotation
17. java.lang.instrument
18. java.lang.management
19. java.lang.ref
20. java.lang.reflect
21. java.math
22. java.net
23. java.nio
24. java.nio.channels
25. java.nio.charset
26. java.rmi.dgc
27. java.rmi.server
28. java.security
29. java.security.cert
30. java.security.spec
31. java.sql
32. java.text
33. java.text.spi
34. java.util
35. java.util.concurrent
36. java.util.concurrent.atomic
37. java.util.concurrent.locks
38. java.util.jar
39. java.util.logging
40. java.util.prefs
41. java.util.regex
42. java.util.spi
43. java.util.zip
44. javax.accessibility
45. javax.activation
46. javax.annotation.security
47. javax.comm
48. javax.crypto
49. javax.crypto.spec
50. javax.ejb
51. javax.imageio
52. javax.imageio.event
53. javax.jws
54. javax.mail
55. javax.mail.internet
56. javax.media.jai
57. javax.microedition.io
58. javax.microedition.lcdui
59. javax.microedition.media
60. javax.microedition.media.control
61. javax.microedition.midlet
62. javax.microedition.pim
63. javax.microedition.rms
64. javax.naming
65. javax.naming.directory
66. javax.naming.event
67. javax.naming.ldap
68. javax.naming.spi
69. javax.net
70. javax.net.ssl
71. javax.persistence
72. javax.print
73. javax.print.attribute
74. javax.print.attribute.standard
75. javax.print.event
76. javax.script
77. javax.servlet
78. javax.servlet.http
79. javax.sound.midi
80. javax.sound.sampled
81. javax.sql
82. javax.sql.rowset
83. javax.swing
84. javax.swing.border
85. javax.swing.colorchooser
86. javax.swing.event
87. javax.swing.filechooser
88. javax.swing.plaf.basic
89. javax.swing.plaf.metal
90. javax.swing.plaf.synth
91. javax.swing.table
92. javax.swing.text
93. javax.swing.text.html
94. javax.swing.text.html.parser
95. javax.swing.text.rtf
96. javax.swing.tree
97. javax.swing.undo
98. javax.tools
99. javax.transaction
100. javax.xml
101. javax.xml.bind
102. javax.xml.bind.annotation
103. javax.xml.crypto.dsig
104. javax.xml.crypto.dsig.keyinfo
105. javax.xml.namespace
106. javax.xml.parsers
107. javax.xml.soap
108. javax.xml.stream
109. javax.xml.stream.events
110. javax.xml.transform
111. javax.xml.transform.dom
112. javax.xml.transform.stream
113. javax.xml.validation
114. javax.xml.ws
115. javax.xml.xpath
116. junit.extensions
117. junit.framework
118. junit.textui
119. org.apache.commons.lang
120. org.apache.commons.lang.builder
121. org.apache.commons.lang.exception
122. org.apache.commons.lang.time
123. org.apache.commons.logging
124. org.apache.commons.math
125. org.eclipse.jface.action
126. org.eclipse.jface.dialogs
127. org.eclipse.jface.operation
128. org.eclipse.jface.viewers
129. org.eclipse.jface.window
130. org.eclipse.jface.wizard
131. org.eclipse.swt
132. org.eclipse.swt.browser
133. org.eclipse.swt.custom
134. org.eclipse.swt.dnd
135. org.eclipse.swt.events
136. org.eclipse.swt.graphics
137. org.eclipse.swt.layout
138. org.eclipse.swt.ole.win32
139. org.eclipse.swt.printing
140. org.eclipse.swt.program
141. org.eclipse.swt.widgets
142. org.junit
143. org.w3c.dom
144. org.xml.sax
145. org.xml.sax.helpers
146. sun.audio
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java by API » javax.sound.midi » MidiDevice 
MidiDevice: open()
  


/*
 * Copyright (c) 2004 David Flanagan.  All rights reserved.
 * This code is from the book Java Examples in a Nutshell, 3nd Edition.
 * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
 * You may study, use, and modify it for any non-commercial purpose,
 * including teaching and use in open-source projects.
 * You may distribute it non-commercially as long as you retain this notice.
 * For a commercial use license, or to purchase the book, 
 * please visit http://www.davidflanagan.com/javaexamples3.
 */

import java.io.File;
import java.io.IOException;

import javax.sound.midi.InvalidMidiDataException;
import javax.sound.midi.MetaEventListener;
import javax.sound.midi.MetaMessage;
import javax.sound.midi.MidiEvent;
import javax.sound.midi.MidiSystem;
import javax.sound.midi.MidiUnavailableException;
import javax.sound.midi.Sequence;
import javax.sound.midi.Sequencer;
import javax.sound.midi.ShortMessage;
import javax.sound.midi.Synthesizer;
import javax.sound.midi.Track;

public class Main {
  // These are some MIDI constants from the spec. They aren't defined
  // for us in javax.sound.midi.
  public static final int DAMPER_PEDAL = 64;

  public static final int DAMPER_ON = 127;

  public static final int DAMPER_OFF = 0;

  public static final int END_OF_TRACK = 47;

  public static void main(String[] argsthrows MidiUnavailableException, InvalidMidiDataException,
      IOException {
    int instrument = 0;
    int tempo = 120;
    String filename = null;

    // Parse the options
    // -i <instrument number> default 0, a piano. Allowed values: 0-127
    // -t <beats per minute> default tempo is 120 quarter notes per minute
    // -o <filename> save to a midi file instead of playing
    int a = 0;
    while (a < args.length) {
      if (args[a].equals("-i")) {
        instrument = Integer.parseInt(args[a + 1]);
        a += 2;
      else if (args[a].equals("-t")) {
        tempo = Integer.parseInt(args[a + 1]);
        a += 2;
      else if (args[a].equals("-o")) {
        filename = args[a + 1];
        a += 2;
      else
        break;
    }

    char[] notes = args[a].toCharArray();

    // 16 ticks per quarter note.
    Sequence sequence = new Sequence(Sequence.PPQ, 16);

    // Add the specified notes to the track
    addTrack(sequence, instrument, tempo, notes);

    if (filename == null) { // no filename, so play the notes
      // Set up the Sequencer and Synthesizer objects
      Sequencer sequencer = MidiSystem.getSequencer();
      sequencer.open();
      Synthesizer synthesizer = MidiSystem.getSynthesizer();
      synthesizer.open();
      sequencer.getTransmitter().setReceiver(synthesizer.getReceiver());

      // Specify the sequence to play, and the tempo to play it at
      sequencer.setSequence(sequence);
      sequencer.setTempoInBPM(tempo);

      // Let us know when it is done playing
      sequencer.addMetaEventListener(new MetaEventListener() {
        public void meta(MetaMessage m) {
          // A message of this type is automatically sent
          // when we reach the end of the track
          if (m.getType() == END_OF_TRACK)
            System.exit(0);
        }
      });
      // And start playing now.
      sequencer.start();
    else // A file name was specified, so save the notes
      int[] allowedTypes = MidiSystem.getMidiFileTypes(sequence);
      if (allowedTypes.length == 0) {
        System.err.println("No supported MIDI file types.");
      else {
        MidiSystem.write(sequence, allowedTypes[0]new File(filename));
        System.exit(0);
      }
    }
  }

  static final int[] offsets = // add these amounts to the base value
  // A B C D E F G
      -4, -20135};

  /*
   * This method parses the specified char[] of notes into a Track. The musical
   * notation is the following: A-G: A named note; Add b for flat and # for
   * sharp. +: Move up one octave. Persists. -: Move down one octave. Persists.
   * /1: Notes are whole notes. Persists 'till changed /2: Half notes /4:
   * Quarter notes /n: N can also be, 8, 16, 32, 64. s: Toggle sustain pedal on
   * or off (initially off)
   *  >: Louder. Persists <: Softer. Persists .: Rest. Length depends on current
   * length setting Space: Play the previous note or notes; notes not separated
   * by spaces are played at the same time
   */
  public static void addTrack(Sequence s, int instrument, int tempo, char[] notes)
      throws InvalidMidiDataException {
    Track track = s.createTrack()// Begin with a new track

    // Set the instrument on channel 0
    ShortMessage sm = new ShortMessage();
    sm.setMessage(ShortMessage.PROGRAM_CHANGE, 0, instrument, 0);
    track.add(new MidiEvent(sm, 0));

    int n = 0// current character in notes[] array
    int t = 0// time in ticks for the composition

    // These values persist and apply to all notes 'till changed
    int notelength = 16// default to quarter notes
    int velocity = 64// default to middle volume
    int basekey = 60// 60 is middle C. Adjusted up and down by octave
    boolean sustain = false// is the sustain pedal depressed?
    int numnotes = 0// How many notes in current chord?

    while (n < notes.length) {
      char c = notes[n++];

      if (c == '+')
        basekey += 12// increase octave
      else if (c == '-')
        basekey -= 12// decrease octave
      else if (c == '>')
        velocity += 16// increase volume;
      else if (c == '<')
        velocity -= 16// decrease volume;
      else if (c == '/') {
        char d = notes[n++];
        if (d == '2')
          notelength = 32// half note
        else if (d == '4')
          notelength = 16// quarter note
        else if (d == '8')
          notelength = 8// eighth note
        else if (d == '3' && notes[n++== '2')
          notelength = 2;
        else if (d == '6' && notes[n++== '4')
          notelength = 1;
        else if (d == '1') {
          if (n < notes.length && notes[n== '6')
            notelength = 4// 1/16th note
          else
            notelength = 64// whole note
        }
      else if (c == 's') {
        sustain = !sustain;
        // Change the sustain setting for channel 0
        ShortMessage m = new ShortMessage();
        m
            .setMessage(ShortMessage.CONTROL_CHANGE, 0, DAMPER_PEDAL, sustain ? DAMPER_ON
                : DAMPER_OFF);
        track.add(new MidiEvent(m, t));
      else if (c >= 'A' && c <= 'G') {
        int key = basekey + offsets[c - 'A'];
        if (n < notes.length) {
          if (notes[n== 'b') { // flat
            key--;
            n++;
          else if (notes[n== '#') { // sharp
            key++;
            n++;
          }
        }

        addNote(track, t, notelength, key, velocity);
        numnotes++;
      else if (c == ' ') {
        // Spaces separate groups of notes played at the same time.
        // But we ignore them unless they follow a note or notes.
        if (numnotes > 0) {
          t += notelength;
          numnotes = 0;
        }
      else if (c == '.') {
        // Rests are like spaces in that they force any previous
        // note to be output (since they are never part of chords)
        if (numnotes > 0) {
          t += notelength;
          numnotes = 0;
        }
        // Now add additional rest time
        t += notelength;
      }
    }
  }

  // A convenience method to add a note to the track on channel 0
  public static void addNote(Track track, int startTick, int tickLength, int key, int velocity)
      throws InvalidMidiDataException {
    ShortMessage on = new ShortMessage();
    on.setMessage(ShortMessage.NOTE_ON, 0, key, velocity);
    ShortMessage off = new ShortMessage();
    off.setMessage(ShortMessage.NOTE_OFF, 0, key, velocity);
    track.add(new MidiEvent(on, startTick));
    track.add(new MidiEvent(off, startTick + tickLength));
  }
}

   
    
  
Related examples in the same category
1. MidiDevice: getReceiver()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.