-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from pettarin/nextmajor
Started working on v1.5.0. Rewritten VAD, SD, ExecuteTask. Added Audi…
- Loading branch information
Showing
145 changed files
with
4,862 additions
and
3,786 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
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.4.1 | ||
1.5.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 |
---|---|---|
|
@@ -6,18 +6,23 @@ | |
to automagically synchronize audio and text (aka forced alignment). | ||
""" | ||
|
||
""" | ||
from __future__ import absolute_import | ||
from __future__ import print_function | ||
from aeneas.adjustboundaryalgorithm import AdjustBoundaryAlgorithm | ||
from aeneas.analyzecontainer import AnalyzeContainer | ||
from aeneas.audiofile import AudioFile | ||
from aeneas.audiofile import AudioFileMonoWAVE | ||
from aeneas.audiofile import AudioFileUnsupportedFormatError | ||
from aeneas.audiofilemfcc import AudioFileMFCC | ||
from aeneas.cewsubprocess import CEWSubprocess | ||
from aeneas.configuration import Configuration | ||
from aeneas.container import Container | ||
from aeneas.container import ContainerFormat | ||
from aeneas.downloader import Downloader | ||
from aeneas.dtw import DTWAlgorithm | ||
from aeneas.dtw import DTWAligner | ||
from aeneas.dtw import DTWAlignerNotInitialized | ||
from aeneas.espeakwrapper import ESPEAKWrapper | ||
from aeneas.executejob import ExecuteJob | ||
from aeneas.executetask import ExecuteTask | ||
|
@@ -33,8 +38,8 @@ | |
from aeneas.job import JobConfiguration | ||
from aeneas.language import Language | ||
from aeneas.logger import Logger | ||
from aeneas.runtimeconfiguration import RuntimeConfiguration | ||
from aeneas.sd import SD | ||
from aeneas.sd import SDMetric | ||
from aeneas.syncmap import SyncMap | ||
from aeneas.syncmap import SyncMapFormat | ||
from aeneas.syncmap import SyncMapFragment | ||
|
@@ -50,6 +55,7 @@ | |
from aeneas.validator import Validator | ||
import aeneas.globalconstants as gc | ||
import aeneas.globalfunctions as gf | ||
""" | ||
|
||
__author__ = "Alberto Pettarin" | ||
__copyright__ = """ | ||
|
@@ -58,7 +64,7 @@ | |
Copyright 2015-2016, Alberto Pettarin (www.albertopettarin.it) | ||
""" | ||
__license__ = "GNU AGPL v3" | ||
__version__ = "1.4.1" | ||
__version__ = "1.5.0" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
Oops, something went wrong.