forked from readbeyond/aeneas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Python C extensions cdtw and cmfcc. Code cleanup. RATEAGGRESSIV…
…E and OFFSET boundary adj algos. Code cleanup. Added Python C Extension for computing the DTW, and supporting scripts to install/compile it Added unit test for cdtw Added cmfcc and the Python-C-Python glue code. TODO: testing. C code cleanup Added unit tests for cmfcc and AbstractWave Moved MFCC extraction code into AudioFile. Added OFFSET and RATEAGGRESSIVE boundary adj algos. Added tools.extract_mfcc Code cleanups. Most of the planned long tests done. Ready to release as v1.1.0.
- Loading branch information
Alberto Pettarin
committed
Aug 20, 2015
1 parent
b1478e8
commit 4601bdf
Showing
63 changed files
with
2,931 additions
and
704 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
*.py[cdo] | ||
*.swp | ||
*.so | ||
MANIFEST | ||
aeneas/build | ||
bak | ||
dist | ||
docs/build | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.4 | ||
1.1.0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
from aeneas.job import Job, JobConfiguration | ||
from aeneas.language import Language | ||
from aeneas.logger import Logger | ||
#from aeneas.mfcc | ||
from aeneas.syncmap import SyncMap, SyncMapFragment, SyncMapFormat | ||
from aeneas.synthesizer import Synthesizer | ||
from aeneas.task import Task, TaskConfiguration | ||
|
@@ -34,10 +33,11 @@ | |
__author__ = "Alberto Pettarin" | ||
__copyright__ = """ | ||
Copyright 2012-2013, Alberto Pettarin (www.albertopettarin.it) | ||
Copyright 2013-2015, ReadBeyond Srl (www.readbeyond.it) | ||
Copyright 2013-2015, ReadBeyond Srl (www.readbeyond.it) | ||
Copyright 2015, Alberto Pettarin (www.albertopettarin.it) | ||
""" | ||
__license__ = "GNU AGPL v3" | ||
__version__ = "1.0.4" | ||
__version__ = "1.1.0" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
Oops, something went wrong.