私はフラッシュプラグインを使用してマイクからサウンドを録音しているWebアプリケーションに取り組んでいます。記録後、記録したファイルをサーバーにアップロードできます。以下のコードを参照してください。
// Get the input stream
InputStream is = request.getInputStream();
InputStream bufferedIn = new BufferedInputStream(is);
AudioInputStream ais = AudioSystem.getAudioInputStream(bufferedIn);
// Declare the new format to convert to
AudioFormat audioFormat = new AudioFormat(sampleRate, sampleSizeInBits, channels, signed, bigEndian);
// Convert the format and return the new audio input stream
ais = AudioSystem.getAudioInputStream(audioFormat, ais);
さて、この変換の後、音声データを ais からバッファに保存し、それを DB にアップロードしたいと思います。
それ、どうやったら出来るの?ありがとう!!:)