-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from umjammer/1.0.14
1.0.14
- Loading branch information
Showing
11 changed files
with
28 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,16 +16,16 @@ | |
|
||
|
||
/** | ||
* wave ファイルからデータだけを抜き出すプログラム. | ||
* extract data from .wav file. | ||
* | ||
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 020708 nsano initial version <br> | ||
* 0.01 030711 nsano new version compliant <br> | ||
* 0.02 030715 nsano fix <br> | ||
*/ | ||
public class wave { | ||
public class ExtractWave { | ||
/** | ||
* usage: java wave in_file out_file | ||
* usage: java ExtractWave in_file out_file | ||
*/ | ||
public static void main(String[] args) throws Exception { | ||
InputStream is = new BufferedInputStream(Files.newInputStream(Paths.get(args[0]))); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,10 +23,10 @@ | |
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 030711 nsano initial version <br> | ||
*/ | ||
public class t150_1 { | ||
public class PlayLine { | ||
|
||
/** | ||
* usage: java t150_1 file ... | ||
* usage: java PlayLine file ... | ||
*/ | ||
public static void main(String[] args) throws Exception { | ||
|
||
|
@@ -35,7 +35,7 @@ public static void main(String[] args) throws Exception { | |
} | ||
|
||
// play | ||
t150_1 player = new t150_1(); | ||
PlayLine player = new PlayLine(); | ||
for (String arg : args) { | ||
player.play(arg); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 090913 nsano initial version <br> | ||
*/ | ||
public class Test1 { | ||
public class PlayMFi { | ||
|
||
/** | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,10 +24,10 @@ | |
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 030714 nsano initial version <br> | ||
*/ | ||
public class t150_3 { | ||
public class PlayPCM { | ||
|
||
/** | ||
* usage: java t150_3 pcm_file [sampleRate] [byteOrder(le,be)] | ||
* usage: java PlayPCM pcm_file [sampleRate] [byteOrder(le,be)] | ||
*/ | ||
public static void main(String[] args) throws Exception { | ||
|
||
|
@@ -48,7 +48,7 @@ public static void main(String[] args) throws Exception { | |
System.err.println("byteOrder: " + byteOrder); | ||
} | ||
|
||
t150_3 player = new t150_3(); | ||
PlayPCM player = new PlayPCM(); | ||
player.play(file, sampleRate, byteOrder); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,10 @@ | |
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 030714 nsano initial version <br> | ||
*/ | ||
public class t150_4 { | ||
public class PlayPCM2 { | ||
|
||
/** | ||
* usage: java t150_4 pcm_file | ||
* usage: java PlayPCM2 pcm_file | ||
*/ | ||
public static void main(String[] args) throws Exception { | ||
|
||
|
@@ -44,7 +44,7 @@ public static void main(String[] args) throws Exception { | |
|
||
// 2 | ||
|
||
t150_4 player = new t150_4(); | ||
PlayPCM2 player = new PlayPCM2(); | ||
player.play(file, sampleRate, byteOrder); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 090913 nsano initial version <br> | ||
*/ | ||
public class Test2 { | ||
public class PlaySMAF { | ||
|
||
/** | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
* @author <a href="mailto:[email protected]">Naohide Sano</a> (umjammer) | ||
* @version 0.00 2019/04/08 umjammer initial version <br> | ||
*/ | ||
public class Test3 { | ||
public class ShowMIDIProviders { | ||
|
||
/** | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters