This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def extract_feature_means(audio_file_path: str) -> pd.DataFrame: | |
# config settings | |
number_of_mfcc = c.NUMBER_OF_MFCC | |
# 1. Importing 1 file | |
y, sr = librosa.load(audio_file_path) | |
# Trim leading and trailing silence from an audio signal (silence before and after the actual audio) | |
signal, _ = librosa.effects.trim(y) |