-
Notifications
You must be signed in to change notification settings - Fork 233
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 #3 from pettarin/master
aeneas v1.0.4: added boundary adjustment algorithm, run_vad, subtitle…
- Loading branch information
Showing
70 changed files
with
2,720 additions
and
483 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.3 | ||
1.0.4 |
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,6 +6,7 @@ | |
to automagically synchronize audio and text. | ||
""" | ||
|
||
from aeneas.adjustboundaryalgorithm import AdjustBoundaryAlgorithm | ||
from aeneas.analyzecontainer import AnalyzeContainer | ||
from aeneas.audiofile import AudioFile | ||
from aeneas.container import Container, ContainerFormat | ||
|
@@ -27,6 +28,7 @@ | |
from aeneas.synthesizer import Synthesizer | ||
from aeneas.task import Task, TaskConfiguration | ||
from aeneas.textfile import TextFile, TextFileFormat, TextFragment | ||
from aeneas.vad import VAD | ||
from aeneas.validator import Validator | ||
|
||
__author__ = "Alberto Pettarin" | ||
|
@@ -35,7 +37,7 @@ | |
Copyright 2013-2015, ReadBeyond Srl (www.readbeyond.it) | ||
""" | ||
__license__ = "GNU AGPL v3" | ||
__version__ = "1.0.3" | ||
__version__ = "1.0.4" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
|
Oops, something went wrong.