sonusai 0.18.5__py3-none-any.whl → 0.18.6__py3-none-any.whl
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.
- sonusai/mixture/mixdb.py +14 -17
- {sonusai-0.18.5.dist-info → sonusai-0.18.6.dist-info}/METADATA +1 -1
- {sonusai-0.18.5.dist-info → sonusai-0.18.6.dist-info}/RECORD +5 -5
- {sonusai-0.18.5.dist-info → sonusai-0.18.6.dist-info}/WHEEL +0 -0
- {sonusai-0.18.5.dist-info → sonusai-0.18.6.dist-info}/entry_points.txt +0 -0
sonusai/mixture/mixdb.py
CHANGED
@@ -1063,25 +1063,22 @@ class MixtureDatabase:
|
|
1063
1063
|
if is_textgrid:
|
1064
1064
|
for target in self.mixture(mixid).targets:
|
1065
1065
|
data = get_textgrid_tier_from_target_file(self.target_file(target.file_id).name, tier)
|
1066
|
-
if data
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
results.append(data)
|
1066
|
+
if isinstance(data, list):
|
1067
|
+
# Check for tempo augmentation and adjust Interval start and end data as needed
|
1068
|
+
entries = []
|
1069
|
+
for entry in data:
|
1070
|
+
if target.augmentation.tempo is not None:
|
1071
|
+
entries.append(Interval(entry.start / target.augmentation.tempo,
|
1072
|
+
entry.end / target.augmentation.tempo,
|
1073
|
+
entry.label))
|
1074
|
+
else:
|
1075
|
+
entries.append(entry)
|
1076
|
+
results.append(entries)
|
1077
|
+
else:
|
1078
|
+
results.append(data)
|
1080
1079
|
else:
|
1081
1080
|
for target in self.mixture(mixid).targets:
|
1082
|
-
|
1083
|
-
if data is not None:
|
1084
|
-
results.append(data)
|
1081
|
+
results.append(self.speaker(self.target_file(target.file_id).speaker_id, tier))
|
1085
1082
|
|
1086
1083
|
return sorted(results)
|
1087
1084
|
|
@@ -46,7 +46,7 @@ sonusai/mixture/feature.py,sha256=Rwuf82IoXzhHPGbKYVGcatImF_ssBf_FfvbqghVPXtg,41
|
|
46
46
|
sonusai/mixture/generation.py,sha256=W3n6ipI-dxg4Wj6YBJn8RTpFqkAyIXzxwObeFbSLq08,42801
|
47
47
|
sonusai/mixture/helpers.py,sha256=eC9ZysEa-83VLKen_9PKWzr8w9dkHj4lp6rMB2fNLbg,24759
|
48
48
|
sonusai/mixture/log_duration_and_sizes.py,sha256=baTUpqyM15wA125jo9E3posmVJUe3WlpksyO6v9Jul0,1347
|
49
|
-
sonusai/mixture/mixdb.py,sha256=
|
49
|
+
sonusai/mixture/mixdb.py,sha256=WPXuziS0SePtKkd7qtkE7Db8rV-TKQoUBvs4GPieTek,57332
|
50
50
|
sonusai/mixture/soundfile_audio.py,sha256=BwO4lftNvrhoPTJERONcrpxSpM2fjO6kL_e5Ylz742A,4220
|
51
51
|
sonusai/mixture/sox_audio.py,sha256=Pu5RLE8lKKlGOzZsbfcVzbDvy7YPGBuGpbD_PxowFqA,12511
|
52
52
|
sonusai/mixture/sox_augmentation.py,sha256=kBWPrsFk0EBi71nLcKt5v0GA34bY7g9D9x0cEamNWbU,4564
|
@@ -119,7 +119,7 @@ sonusai/utils/stratified_shuffle_split.py,sha256=rJNXvBp-GxoKzH3OpL7k0ANSu5xMP2z
|
|
119
119
|
sonusai/utils/write_audio.py,sha256=ZsPGExwM86QHLLN2LOWekK2uAqf5pV_1oRW811p0QAI,840
|
120
120
|
sonusai/utils/yes_or_no.py,sha256=eMLXBVH0cEahiXY4W2KNORmwNQ-ba10eRtldh0y4NYg,263
|
121
121
|
sonusai/vars.py,sha256=m2AefF0m5bXWGXpJj8Pi42zWL2ydeEj7bkak3GrtMyM,940
|
122
|
-
sonusai-0.18.
|
123
|
-
sonusai-0.18.
|
124
|
-
sonusai-0.18.
|
125
|
-
sonusai-0.18.
|
122
|
+
sonusai-0.18.6.dist-info/METADATA,sha256=L4wl__zTyqiH1SEMDPIIJcgLM7Uxqa6lQ9EMXVjXRlI,2591
|
123
|
+
sonusai-0.18.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
124
|
+
sonusai-0.18.6.dist-info/entry_points.txt,sha256=zMNjEphEPO6B3cD1GNpit7z-yA9tUU5-j3W2v-UWstU,92
|
125
|
+
sonusai-0.18.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|