Skip to content

Commit fbb2ce0

Browse files
committed
Add beatExtraction
1 parent 25c16db commit fbb2ce0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ features = get_features("data_samples/testing", ["gfcc", "mfcc"])
134134
# features is a dictionary that will hold data of the following format
135135
"""
136136
{
137-
subdir1_name: {file1_path: {"features": <list>, "feature_names": list}, ...},
138-
subdir2_name: {file1_path: {"features": <list>, "feature_names": list}, ...},
137+
subdir1_name: {file1_path: {"features": <list>, "feature_names": <list>}, ...},
138+
subdir2_name: {file1_path: {"features": <list>, "feature_names": <list>}, ...},
139139
...
140140
}
141141
"""

pyAudioProcessing/features/audioFeatureExtraction.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
from pyAudioAnalysis.audioFeatureExtraction import (
1313
mfccInitFilterBanks, stChromaFeaturesInit, stChromaFeatures,
1414
stZCR, stEnergy, stEnergyEntropy, stSpectralCentroidAndSpread,
15-
stSpectralEntropy, stSpectralFlux, stSpectralRollOff, stMFCC)
15+
stSpectralEntropy, stSpectralFlux, stSpectralRollOff, stMFCC,
16+
beatExtraction)
1617
from pyAudioProcessing.features import getGfcc
1718

1819

0 commit comments

Comments
 (0)