Skip to content

Commit

Permalink
Started working on Python 3 port
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Pettarin committed Dec 27, 2015
1 parent 5e52569 commit 0e5311f
Show file tree
Hide file tree
Showing 78 changed files with 4,357 additions and 3,847 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

**aeneas** is a Python library and a set of tools to automagically synchronize audio and text.

* Version: 1.3.3
* Date: 2015-12-20
* Version: 1.4.0
* Date: 2016-01-??
* Developed by: [ReadBeyond](http://www.readbeyond.it/)
* Lead Developer: [Alberto Pettarin](http://www.albertopettarin.it/)
* License: the GNU Affero General Public License Version 3 (AGPL v3)
Expand Down Expand Up @@ -75,8 +75,8 @@ or raw CSV/SSV/TSV/TXT/XML for further processing.
1. a reasonably recent machine (recommended 4 GB RAM, 2 GHz 64bit CPU)
2. `ffmpeg` and `ffprobe` executables available in your `$PATH`
3. `espeak` executable available in your `$PATH`
4. Python 2.7.x
5. Python modules `BeautifulSoup`, `lxml`, and `numpy`
4. Python 2.7.x or 3.4.x or later
5. Python modules `BeautifulSoup4`, `lxml`, and `numpy`
6. (Optional, but strongly recommended) Python C headers to compile the Python C extensions
7. (Optional, required only for downloading audio from YouTube) Python module `pafy`

Expand Down Expand Up @@ -572,6 +572,9 @@ of downloading audio from YouTube
for the first time available
also on [PyPI](https://pypi.python.org/pypi/aeneas/)

**January 2016**: release of v1.4.0,
supporting both Python 2.7.x and 3.4 or later

## Acknowledgments

Many thanks to **Nicola Montecchio**,
Expand Down
11 changes: 7 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ aeneas
**aeneas** is a Python library and a set of tools to automagically
synchronize audio and text.

- Version: 1.3.3
- Date: 2015-12-20
- Version: 1.4.0
- Date: 2016-01-??
- Developed by: `ReadBeyond <http://www.readbeyond.it/>`__
- Lead Developer: `Alberto Pettarin <http://www.albertopettarin.it/>`__
- License: the GNU Affero General Public License Version 3 (AGPL v3)
Expand Down Expand Up @@ -87,8 +87,8 @@ System Requirements
1. a reasonably recent machine (recommended 4 GB RAM, 2 GHz 64bit CPU)
2. ``ffmpeg`` and ``ffprobe`` executables available in your ``$PATH``
3. ``espeak`` executable available in your ``$PATH``
4. Python 2.7.x
5. Python modules ``BeautifulSoup``, ``lxml``, and ``numpy``
4. Python 2.7.x or 3.4.x or later
5. Python modules ``BeautifulSoup4``, ``lxml``, and ``numpy``
6. (Optional, but strongly recommended) Python C headers to compile the
Python C extensions
7. (Optional, required only for downloading audio from YouTube) Python
Expand Down Expand Up @@ -614,6 +614,9 @@ downloading audio from YouTube
**November 2015**: release of v1.3.2, for the first time available also
on `PyPI <https://pypi.python.org/pypi/aeneas/>`__

**January 2016**: release of v1.4.0, supporting both Python 2.7.x and
3.4 or later

Acknowledgments
---------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.3
1.4.0
6 changes: 4 additions & 2 deletions aeneas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
to automagically synchronize audio and text.
"""

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
Expand Down Expand Up @@ -53,10 +55,10 @@
__copyright__ = """
Copyright 2012-2013, Alberto Pettarin (www.albertopettarin.it)
Copyright 2013-2015, ReadBeyond Srl (www.readbeyond.it)
Copyright 2015, Alberto Pettarin (www.albertopettarin.it)
Copyright 2015-2016, Alberto Pettarin (www.albertopettarin.it)
"""
__license__ = "GNU AGPL v3"
__version__ = "1.3.3"
__version__ = "1.4.0"
__email__ = "[email protected]"
__status__ = "Production"

Expand Down
Loading

0 comments on commit 0e5311f

Please sign in to comment.