前提・実現したいこと
Javaでマイク入力音声をWAVEファイルに保存し、サーバーにポストするシステムを作っています。
こちらのページを引用し、録音部分を実装しました。
発生している問題・エラーメッセージ
録音したWAVEファイルの音声が部分的に飛んでいる。
ローカルストレージに保存されるWAVEファイルも飛んでいるため、録音部分に問題があると考えています。
該当のソースコード
Java
1 2/* sample 4.2.2 */ 3import javax.sound.sampled.*; 4import java.io.*; 5import java.net.HttpURLConnection; 6import java.net.URL; 7import java.nio.charset.StandardCharsets; 8import java.util.UUID; 9 10 11public class SoundRecord extends Thread { 12 private TargetDataLine m_line; 13 private AudioFileFormat.Type m_targetType; 14 private AudioInputStream m_audioInputStream; 15 private File m_outputFile; 16 private boolean m_bRecording; 17 18 public SoundRecord(TargetDataLine line, AudioFileFormat.Type targetType, File file) { 19 m_line = line; 20 m_audioInputStream = new AudioInputStream(line); 21 m_targetType = targetType; 22 m_outputFile = file; 23 } 24 25 public void startRecording() { 26 m_line.start(); 27 super.start(); 28 m_bRecording = true; 29 } 30 31 public void stopRecording() { 32 m_line.stop(); 33 m_line.close(); 34 m_bRecording = false; 35 } 36 37 public void run() { 38 try { 39 AudioSystem.write(m_audioInputStream, m_targetType, m_outputFile); 40 System.out.println("録音が終了しました"); 41 } catch (IOException e) { 42 System.out.println(e); 43 } 44 } 45 46 public static void main(String[] args) { 47 try { 48 File outputFile = new File("./RecordAudio.wav"); 49 50 AudioFormat audioFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, 44100.0F, // サンプリング周波数 51 16, 52 2, 53 4, 44100.0F, false); 54 55 DataLine.Info info = new DataLine.Info(TargetDataLine.class, audioFormat); 56 TargetDataLine targetDataLine = (TargetDataLine) AudioSystem.getLine(info); 57 58 targetDataLine.open(audioFormat); 59 AudioFileFormat.Type targetType = AudioFileFormat.Type.WAVE; 60 61 SoundRecord recorder = new SoundRecord(targetDataLine, targetType, outputFile); 62 System.out.println("ENTERキーを押すと録音を開始します"); 63 byte[] b = new byte[2]; 64 System.in.read(b); 65 66 recorder.startRecording(); 67 System.out.println("録音中..."); 68 System.out.println("ENTERキーを押すと録音を停止します"); 69 System.in.read(b); 70 recorder.stopRecording(); 71 System.out.println("Record Stop"); 72 int StatCode = Send(); 73 System.out.println(StatCode); 74 System.exit(0); 75 } catch (Exception e) { 76 System.out.println(e); 77 System.exit(1); 78 } 79 } 80 81 private static final String EOL = "\r\n"; 82 83 public static int Send() throws IOException { 84 String filename = "./RecordAudio.wav"; 85 String url = "サーバーのエンドポイント"; 86 try (FileInputStream file = new FileInputStream(filename)) { 87 HttpURLConnection con = (HttpURLConnection) new URL(url).openConnection(); 88 final String boundary = UUID.randomUUID().toString(); 89 con.setDoOutput(true); 90 con.setRequestMethod("POST"); 91 con.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary); 92 try (OutputStream out = con.getOutputStream()) { 93 out.write(("--" + boundary + EOL + "Content-Disposition: form-data; name=\"fname\"; " + "filename=\"" 94 + filename + "\"" + EOL + "Content-Type: audio/mpeg" + EOL + EOL) 95 .getBytes(StandardCharsets.UTF_8)); 96 byte[] buffer = new byte[128]; 97 int size = -1; 98 while (-1 != (size = file.read(buffer))) { 99 out.write(buffer, 0, size); 100 } 101 out.write((EOL + "--" + boundary + EOL + "Content-Disposition: form-data; name=\"Body[Title]\"" + EOL 102 + EOL + "Java投稿テスト音源" + EOL + "--" + boundary + EOL 103 + "Content-Disposition: form-data; name=\"Body[TimeStamp]\"" + EOL + EOL + "2021-08-30" + EOL 104 + "--" + boundary + EOL + "Content-Disposition: form-data; name=\"Body[EventID]\"" + EOL + EOL 105 + "2" + EOL + "--" + boundary + EOL + "Content-Disposition: form-data; name=\"Auth[Token]\"" 106 + EOL + EOL + "(Token)" + EOL + "--" + boundary + EOL 107 + "Content-Disposition: form-data; name=\"Auth[UserID]\"" + EOL + EOL + "(UesrID)" + EOL + "--" 108 + boundary + EOL + "Content-Disposition: form-data; name=\"Method\"" + EOL + EOL + "addNewAudio" 109 + EOL + "--" + boundary + EOL + "Content-Disposition: form-data; name=\"Body[MusicID]\"" + EOL 110 + EOL + "0" + EOL).getBytes(StandardCharsets.UTF_8)); 111 out.write(("--" + boundary + "--" + EOL).getBytes(StandardCharsets.UTF_8)); 112 out.flush(); 113 System.err.println(con.getResponseMessage()); 114 InputStream is = con.getInputStream(); 115 BufferedReader reader = new BufferedReader(new InputStreamReader(is)); 116 String s; 117 while ((s = reader.readLine()) != null) { 118 System.out.println(s); 119 } 120 return con.getResponseCode(); 121 } finally { 122 123 con.disconnect(); 124 } 125 } 126 } 127 128}
試したこと
こちらのサイトの実装方法でも試しましが、同じような問題が発生しました。
補足情報(FW/ツールのバージョンなど)
開発環境 : Vsiual Studio Code
実行OS : Windows 10 Pro
使用CPU : Intel(R) Core(TM) i5-2520M CPU @ 2.50GHz
使用RAM : 8GB
Javaのバージョン
java version "15.0.2" 2021-01-19
Java(TM) SE Runtime Environment (build 15.0.2+7-27)
Java HotSpot(TM) 64-Bit Server VM (build 15.0.2+7-27, mixed mode, sharing)
あなたの回答
tips
プレビュー