scilab 讀取處理 wav 檔案 (2)__數學軟體

來源:互聯網
上載者:User

上一篇 blog 中已經介紹了 wavread 和 wavwrite 兩個函數。這裡介紹其他一些有用的函數。

playsnd 函數

播放聲音資料。基本用法如下。 其中 command 只在 unix 類系統中用到。用來指定播放聲音的程式。 Win 下無需考慮。

[]=playsnd(y)

[]=playsnd(y,rate,bits [,command])

如果不指定 rate 則預設是 22050

Bits 在目前的版本中其實沒有用,所以無需設定。

我通常會用高採樣率採集聲音,然後在這裡設個低的 rate,將聲音慢放出來。細節就可以聽的很清楚了。

Sound 函數

Sound 函數的作用和 Playsnd 函數完全相同。不知道scilab 為什麼要將這兩個函數都保留了下來。

sound(y [,fs,bits,command)

Auread 函數

讀取 .au 檔案,用法基本和 wavread 是相同的。下面使用法舉例,各個參數的含義與 wavread 中對應參數相同。因此這裡就不多解釋了。

y=auread(aufile)

y=auread(aufile,ext)

[y,Fs,bits]=auread(aufile)

[y,Fs,bits]=auread(aufile,ext)

Auwrite 函數

將資料寫到一個 .au 檔案中。

auwrite(y,aufile)

auwrite(y,Fs,aufile)

auwrite(y,Fs,bits,aufile)

auwrite(y,Fs,bits,method,aufile)

Analyze 函數

繪製聲音資料的頻譜圖。

analyze(y, fmin, fmax, fs, points);

下面舉個例子

[y,fs,bits]=wavread("C63A 4331440.wav");

Plot(y);


analyze(y, 100, 15000, fs, size(y,2));

z = abs(fft(y));

plot(z(1:16342)/41532);



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.