easyaligner 0.2.3__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {easyaligner-0.2.3/src/easyaligner.egg-info → easyaligner-0.3.0}/PKG-INFO +4 -4
- {easyaligner-0.2.3 → easyaligner-0.3.0}/pyproject.toml +4 -4
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/vad/pyannote.py +2 -2
- {easyaligner-0.2.3 → easyaligner-0.3.0/src/easyaligner.egg-info}/PKG-INFO +4 -4
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner.egg-info/requires.txt +3 -3
- {easyaligner-0.2.3 → easyaligner-0.3.0}/LICENSE +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/README.md +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/setup.cfg +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/__init__.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/alignment/__init__.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/alignment/pytorch.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/alignment/utils.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/data/__init__.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/data/collators.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/data/datamodel.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/data/dataset.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/data/utils.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/pipelines.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/text/__init__.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/text/languages/sv.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/text/match.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/text/normalization.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/text/tokenizer.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/utils.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/vad/__init__.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/vad/silero.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/vad/utils.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner/vad/vad.py +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner.egg-info/SOURCES.txt +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner.egg-info/dependency_links.txt +0 -0
- {easyaligner-0.2.3 → easyaligner-0.3.0}/src/easyaligner.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: easyaligner
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Forced alignment pipeline designed for efficiency and ease of use.
|
|
5
5
|
Author: Faton Rekathati
|
|
6
6
|
Project-URL: Repository, https://github.com/kb-labb/easyaligner
|
|
@@ -8,12 +8,12 @@ Requires-Python: >=3.10
|
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Requires-Dist: transformers>=4.45.0
|
|
11
|
-
Requires-Dist: torch
|
|
12
|
-
Requires-Dist: torchaudio
|
|
11
|
+
Requires-Dist: torch<2.9,>=2.7.0
|
|
12
|
+
Requires-Dist: torchaudio<2.9,>=2.7.0
|
|
13
13
|
Requires-Dist: tqdm>=4.66.1
|
|
14
14
|
Requires-Dist: soundfile>=0.12.1
|
|
15
15
|
Requires-Dist: nltk>=3.8.2
|
|
16
|
-
Requires-Dist: pyannote-audio
|
|
16
|
+
Requires-Dist: pyannote-audio<4.0.4,>=3.3.1
|
|
17
17
|
Requires-Dist: silero-vad~=6.0
|
|
18
18
|
Requires-Dist: msgspec
|
|
19
19
|
Requires-Dist: rapidfuzz
|
|
@@ -3,7 +3,7 @@ requires = ["setuptools>=67.0.0"]
|
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
|
-
version = "0.
|
|
6
|
+
version = "0.3.0"
|
|
7
7
|
name = "easyaligner"
|
|
8
8
|
requires-python = ">= 3.10"
|
|
9
9
|
description = "Forced alignment pipeline designed for efficiency and ease of use."
|
|
@@ -12,12 +12,12 @@ authors = [{ name = "Faton Rekathati" }]
|
|
|
12
12
|
|
|
13
13
|
dependencies = [
|
|
14
14
|
"transformers>=4.45.0",
|
|
15
|
-
"torch>=2.7.0
|
|
16
|
-
"torchaudio>=2.7.0
|
|
15
|
+
"torch>=2.7.0,<2.9",
|
|
16
|
+
"torchaudio>=2.7.0,<2.9",
|
|
17
17
|
"tqdm>=4.66.1",
|
|
18
18
|
"soundfile>=0.12.1",
|
|
19
19
|
"nltk>=3.8.2",
|
|
20
|
-
"pyannote-audio>=3.3.1",
|
|
20
|
+
"pyannote-audio>=3.3.1,<4.0.4",
|
|
21
21
|
"silero-vad~=6.0",
|
|
22
22
|
"msgspec",
|
|
23
23
|
"rapidfuzz"
|
|
@@ -431,7 +431,7 @@ def run_vad_pipeline(metadata: AudioMetadata, model, audio, sample_rate=16000, c
|
|
|
431
431
|
# Run VAD on entire audio
|
|
432
432
|
vad_segments = model(
|
|
433
433
|
{
|
|
434
|
-
"waveform": torch.
|
|
434
|
+
"waveform": torch.as_tensor(audio).unsqueeze(0).to(torch.float32),
|
|
435
435
|
"sample_rate": sample_rate,
|
|
436
436
|
}
|
|
437
437
|
)
|
|
@@ -455,7 +455,7 @@ def run_vad_pipeline(metadata: AudioMetadata, model, audio, sample_rate=16000, c
|
|
|
455
455
|
|
|
456
456
|
vad_segments = model(
|
|
457
457
|
{
|
|
458
|
-
"waveform": torch.
|
|
458
|
+
"waveform": torch.as_tensor(speech_audio).unsqueeze(0).to(torch.float32),
|
|
459
459
|
"sample_rate": sample_rate,
|
|
460
460
|
}
|
|
461
461
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: easyaligner
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Forced alignment pipeline designed for efficiency and ease of use.
|
|
5
5
|
Author: Faton Rekathati
|
|
6
6
|
Project-URL: Repository, https://github.com/kb-labb/easyaligner
|
|
@@ -8,12 +8,12 @@ Requires-Python: >=3.10
|
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Requires-Dist: transformers>=4.45.0
|
|
11
|
-
Requires-Dist: torch
|
|
12
|
-
Requires-Dist: torchaudio
|
|
11
|
+
Requires-Dist: torch<2.9,>=2.7.0
|
|
12
|
+
Requires-Dist: torchaudio<2.9,>=2.7.0
|
|
13
13
|
Requires-Dist: tqdm>=4.66.1
|
|
14
14
|
Requires-Dist: soundfile>=0.12.1
|
|
15
15
|
Requires-Dist: nltk>=3.8.2
|
|
16
|
-
Requires-Dist: pyannote-audio
|
|
16
|
+
Requires-Dist: pyannote-audio<4.0.4,>=3.3.1
|
|
17
17
|
Requires-Dist: silero-vad~=6.0
|
|
18
18
|
Requires-Dist: msgspec
|
|
19
19
|
Requires-Dist: rapidfuzz
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
transformers>=4.45.0
|
|
2
|
-
torch
|
|
3
|
-
torchaudio
|
|
2
|
+
torch<2.9,>=2.7.0
|
|
3
|
+
torchaudio<2.9,>=2.7.0
|
|
4
4
|
tqdm>=4.66.1
|
|
5
5
|
soundfile>=0.12.1
|
|
6
6
|
nltk>=3.8.2
|
|
7
|
-
pyannote-audio
|
|
7
|
+
pyannote-audio<4.0.4,>=3.3.1
|
|
8
8
|
silero-vad~=6.0
|
|
9
9
|
msgspec
|
|
10
10
|
rapidfuzz
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|