Skip to content

Commit

Permalink
fix the docs version and git rid of the commented-out code
Browse files Browse the repository at this point in the history
  • Loading branch information
baxtree committed Jan 2, 2020
1 parent 1d8ef9d commit 29e1100
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 13 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
## Dependencies
[FFmpeg](https://www.ffmpeg.org/) and [eSpeak](http://espeak.sourceforge.net/index.html)
```
apt-get install ffmpeg espeak libespeak1 libespeak-dev espeak-data
```
or
```
brew install ffmpeg espeak
```

Expand Down
2 changes: 1 addition & 1 deletion bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ pipelines:
- pip3 install --upgrade pip
- cat requirements.txt | xargs -L 1 pip install
- cat requirements-dev.txt | xargs -L 1 pip install
- MAX_WORKERS=1 ENVIRONMENT=pipeline python3 -m unittest discover
- ENVIRONMENT=pipeline python3 -m unittest discover
14 changes: 7 additions & 7 deletions site/source/acknowledgement.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Acknowledgement
########################


**Dependencies**::
**Required modules**:

librosa
tensorflow
scikit-learn
pycaption
pysrt
aeneas
- `librosa <https://librosa.github.io/librosa/>`_
- `tensorflow <https://www.tensorflow.org/>`_
- `scikit-learn <https://scikit-learn.org>`_
- `pycaption <https://pycaption.readthedocs.io>`_
- `pysrt <https://github.com/byroot/pysrt>`_
- `aeneas <https://www.readbeyond.it/aeneas/>`_
11 changes: 8 additions & 3 deletions site/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
Installation
########################

Subaligner is not available on PyPi's repo yet. To quickly get it installed and running, you can clone the
`GitHub repo <https://github.com/baxtree/subaligner>`_ and follow the steps down below
Subaligner is not available on PyPi's repo yet. To quickly get it installed and running, you can download the latest
release on `GitHub <https://github.com/baxtree/subaligner>`_ and follow the steps down below
to create a virtual environment and set up all the dependencies:

**Use HomeBrew* to install necessary packages**::
**Install necessary dependencies**::

$ apt-get install ffmpeg
$ apt-get install espeak libespeak1 libespeak-dev espeak-data

**or**::

$ brew install ffmpeg espeak

Expand Down
2 changes: 1 addition & 1 deletion subaligner/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
'''The semver for the current release.'''
__version__ = "0.0.1"
__version__ = "0.0.2"
2 changes: 1 addition & 1 deletion subaligner/predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def __adjust_durations(self, subs, audio_file_path):
# Execute the task
ExecuteTask(
task=task,
# rconf=RuntimeConfiguration(config_string=runtime_config_string),
rconf=RuntimeConfiguration(config_string=runtime_config_string),
logger=AeneasLogger(tee=Logger.VERBOSE),
).execute()

Expand Down

0 comments on commit 29e1100

Please sign in to comment.