You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are more than one segments in vc.pipeline, every new segment makes subsequent audio output out of place by one frame (i.e. length of self.window = 0.01s). The final audio is thereby also slightly shorter. This effect is barely perceptible, but can be verified using audio editing software.
After experimenting with several attempted fixes, this effect can be drastically reduced after changing line 388, 405, 423 and 440 of infer/modules/vc/pipeline.py from "self.t_pad_tgt : -self.t_pad_tgt" to "(self.t_pad_tgt - self.window) : -(self.t_pad_tgt - self.window)."
I was able to cut the input vs output length difference of a 4-minute audio from 0.04 seconds down to 0.002 seconds.
The text was updated successfully, but these errors were encountered:
matthew99a
changed the title
Output alignment issue
Minor output alignment issue
Sep 20, 2024
When there are more than one segments in vc.pipeline, every new segment makes subsequent audio output out of place by one frame (i.e. length of self.window = 0.01s). The final audio is thereby also slightly shorter. This effect is barely perceptible, but can be verified using audio editing software.
After experimenting with several attempted fixes, this effect can be drastically reduced after changing line 388, 405, 423 and 440 of infer/modules/vc/pipeline.py from "self.t_pad_tgt : -self.t_pad_tgt" to "(self.t_pad_tgt - self.window) : -(self.t_pad_tgt - self.window)."
I was able to cut the input vs output length difference of a 4-minute audio from 0.04 seconds down to 0.002 seconds.
The text was updated successfully, but these errors were encountered: