Acoustic Feature Audio File Structure Channel : Mono(1) / Stereo(2) Length : 60s, 1m, 1h … Sampling Rate : 1์ด๋น ์ํ์ ๋น๋์ (44.1kHz - 1์ด์ ์ํ ์๊ฐ 44,100๊ฐ ๋ค์ด์๋ค.) Bit Depth : ์์ ๊ฐ๋๋ฅผ ์ผ๋ง๋ ์ธ๋ถํํ์ฌ ํํํ ๊ฒ์ธ์ง (24 bit - 2^24๊ฐ์ ๋๋ฎ์ด๋ฅผ ํํํ ์ ์๋ค.) Bit Rate : ์ค๋์ค๋ก ์ ์ก๋๋ ๋ฐ์ดํฐ์ ์ (CHANNEL # x SAMPLING RATE x BIT DEPTH) import matplotlib.pyplot as plt from scipy.io import wavfile as wav fs, data = wav.read('./3sec.wav') pri..