1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-09 12:30:38 +08:00

chore(format): run black on dev (#101)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-11-28 23:20:17 +09:00
committed by GitHub
parent 5969314e8d
commit 51c85fcc49
6 changed files with 46 additions and 20 deletions

View File

@@ -142,7 +142,7 @@ def load_audio(
np.copyto(decoded_audio[..., offset:end_index], frame_data)
offset += len(frame_data[0])
container.close()
# Truncate the array to the actual size
@@ -188,7 +188,6 @@ def resample_audio(
output_container.close()
def get_audio_properties(input_path: str) -> Tuple[int, int]:
container = av.open(input_path)
audio_stream = next(s for s in container.streams if s.type == "audio")