Skip to content

Commit 919059f

Browse files
committed
Merge branch 'dev' into alpha
2 parents 2d1ce83 + a72eca8 commit 919059f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+3846
-1674
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ MANIFEST
1717
/.build_and_dist_win32
1818
/.release
1919
*.po~
20-
*.mo
2120
Pipfile
2221
*.lock

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- "2.7"
3+
- "3.7"
44
install:
55
- pip install .
66
- pip install pylint

CHANGELOG.md

+49-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- [Unreleased](#unreleased)
1313
- [Added](#addedunreleased)
1414
- [Changed](#changedunreleased)
15+
- [Fixed](#fixedunreleased)
16+
- [Removed](#removedunreleased)
17+
- [0.5.7-alpha - 2020-05-06](#057-alpha---2020-05-06)
18+
- [Added](#added057-alpha)
19+
- [Changed](#changed057-alpha)
20+
- [Fixed](#fixed057-alpha)
21+
- [Removed](#removed057-alpha)
1522
- [0.5.6-alpha - 2020-03-20](#056-alpha---2020-03-20)
1623
- [Added](#added056-alpha)
1724
- [Changed](#changed056-alpha)
@@ -47,9 +54,45 @@ Click up arrow to go back to TOC.
4754

4855
### [Unreleased]
4956

50-
#### Added(Unreleased)
57+
### [0.5.7-alpha] - 2020-05-06
5158

52-
#### Changed(Unreleased)
59+
#### Added(0.5.7-alpha)
60+
61+
- Add support for Xun Fei Yun Speech-to-Text WebSocket API.
62+
- Add support for Baidu Automatic Speech Recognition API. [issue #68](https://github.com/BingLingGroup/autosub/issues/68)
63+
- Add chars filter for the transcript result in XfyunWebSocketAPI.
64+
- Add delete_chars in method list_to_googletrans.
65+
- Add merge_src_assfile, merge_bilingual_assfile methods.
66+
- Add stop words to split events in merge_src_assfile method.
67+
- Add punctuations split in merge_src_assfile method.
68+
- Add limitation in SplitIntoAudioPiece with an audio length of at least 4 bytes.
69+
- Add support for src language auto-detection when not input `-SRC` language.
70+
71+
#### Changed(0.5.7-alpha)
72+
73+
- Change the replacement condition of the audio_split_cmd only when the user doesn't modify it.
74+
- Change the MAX_REGION_SIZE_LIMIT into 60 seconds.
75+
- Change all text file input decoding into "utf-8".
76+
- Change the default style selection in subtitles translation.
77+
- Change the loglevel in ffmpeg commands into `-loglevel error`.
78+
- Change DEFAULT_MIN_REGION_SIZE to 0.5.
79+
- Change langcodes into the optional dependency.
80+
- Change LICENSE into GPLv2.
81+
82+
#### Fixed(0.5.7-alpha)
83+
84+
- Fix the size count bug when the last line been split in list_to_googletrans.
85+
- Fix delete_chars issue when using `-of full-src`.
86+
- Fix os.remove() PermissionError in api_xfyun.py.
87+
- Fix DEFAULT_AUDIO_PRCS_CMDS and DEFAULT_CHECK_CMD.
88+
- Fix the issue with path checking in dependency finding.
89+
- Fix Baidu's strange error code handling. [issue #114](https://github.com/BingLingGroup/autosub/issues/114)
90+
91+
#### Removed(0.5.7-alpha)
92+
93+
- Remove Python 2.7 support.
94+
95+
<escape><a href = "#TOC">&nbsp;&nbsp;</a></escape>
5396

5497
### [0.5.6-alpha] - 2020-03-20
5598

@@ -72,6 +115,8 @@ Click up arrow to go back to TOC.
72115

73116
- Deprecate Python 2.7 support.
74117

118+
<escape><a href = "#TOC">&nbsp;&nbsp;</a></escape>
119+
75120
### [0.5.5-alpha] - 2020-03-04
76121

77122
#### Added(0.5.5-alpha)
@@ -239,7 +284,8 @@ Click up arrow to go back to TOC.
239284

240285
<escape><a href = "#TOC">&nbsp;&nbsp;</a></escape>
241286

242-
[Unreleased]: https://github.com/BingLingGroup/autosub/compare/0.5.6-alpha...HEAD
287+
[Unreleased]: https://github.com/BingLingGroup/autosub/compare/0.5.7-alpha...HEAD
288+
[0.5.7-alpha]: https://github.com/BingLingGroup/autosub/compare/0.5.6-alpha...0.5.7-alpha
243289
[0.5.6-alpha]: https://github.com/BingLingGroup/autosub/compare/0.5.5-alpha...0.5.6-alpha
244290
[0.5.5-alpha]: https://github.com/BingLingGroup/autosub/compare/0.5.4-alpha...0.5.5-alpha
245291
[0.5.4-alpha]: https://github.com/BingLingGroup/autosub/compare/0.5.3-alpha...0.5.4-alpha

0 commit comments

Comments
 (0)