在Groovy中生成音频波形

时间:2013-05-15 06:29:46

标签: grails audio groovy waveform

有没有办法使用Groovy生成音频波形?或者是否有任何第三方库允许您使用groovy生成音频波形。

1 个答案:

答案 0 :(得分:0)

您可以使用java音频生成和播放波形(converted from the java here):

import javax.sound.sampled.*

byte[] wavform( int freq, int seconds, int sampleRate ) {
  byte[] ret = new byte[ seconds * sampleRate ]
  ret.length.times { idx ->
    ret[ idx ] = (byte)( Math.sin( ( 2.0 * Math.PI * idx ) / ( sampleRate / freq ) ) * 127 ) 
  }
  ret
}

int sampleRate = 8000
new AudioFormat( sampleRate, 16, 1, true, true ).with { af ->
  AudioSystem.getSourceDataLine( af ).with { line ->
    line.open( af )
    line.start()
    wavform( 200, 1, sampleRate ).with { byte[] wav ->
      line.write( wav, 0, wav.length )
    }
    line.drain()
    line.close()
  }
}

但是,当你标记了这个问题 grails 时,我假设你不想播放它?