我需要在Java中創建一個函數,該函數爲音頻添加特定頻率和長度的音符。我的頻率爲雙倍,音符長度以毫秒爲單位。如何從幀的長度(以毫秒爲單位)查找音符的幀長,字節和整數
全功能描述:
This method takes one AudioInputStream and adds the sound of a certain pure frequency to the FRONT of it, lasting a certain length of time. So the method takes two additional parameters: frequency and noteLengthInMilliseconds. The amplitude of the additional sound should be 64*256.
不過,我需要找到音符在幀的長度,以及在字節數和整數。
此外,關於如何創建筆記作爲樣本數據數組(使用java.sound.sampled包)的任何建議將會有所幫助。
FRAME &採樣率:44100.0hz
編碼:PCM_SIGNED
什麼樣的框架? PCM幀?採樣率是多少?而且,「以及字節和Ints」是什麼意思? – Brad
PCM_SIGNED編碼,44,100.0赫茲採樣率 – Markeazy