Skip to content

Commit

Permalink
Merge pull request #795 from IAHispano/formatter/main
Browse files Browse the repository at this point in the history
chore(format): run black on main
  • Loading branch information
blaisewf authored Oct 9, 2024
2 parents 3e7ac4a + a3425aa commit 39947e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rvc/lib/tools/split_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def merge_audio(audio_segments, intervals, sr_orig, sr_new):

merged_audio = np.zeros(
int(intervals[0][0] * sr_ratio if intervals[0][0] > 0 else 0),
dtype=audio_segments[0].dtype
dtype=audio_segments[0].dtype,
)

merged_audio = np.concatenate((merged_audio, audio_segments[0]))
Expand Down

0 comments on commit 39947e7

Please sign in to comment.