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
Hello guys! I cant remove this warning from my code. I think that can be an issue from this repo. If someone woud like to verify. Thanks.
my code:
tfm = sox.Transformer()
tfm.set_globals(verbosity=0)
tfm.oops()
tfm.build_file(temp_file,temp_out_of_phase)
this code always returns this warning:
output_file: R:\out_of_phase.wav already exists and will be overwritten on build
The text was updated successfully, but these errors were encountered:
Hey @cristianritter - its admittedly a bit confusing, but there are logs coming from two different places. tfm.set_globals(verbosity=0) controls the sox command line's verbosity, but the warning you're seeing is controlled by the python library's verbosity, which you can configure with the logging module. Hope this helps!
On Tue, Dec 15, 2020, 8:49 PM Rachel Bittner ***@***.***> wrote:
Hey @cristianritter <https://github.com/cristianritter> - its admittedly
a bit confusing, but there are logs coming from two different places.
tfm.set_globals(verbosity=0) controls the sox command line's verbosity,
but the warning you're seeing is controlled by the python library's
verbosity, which you can configure with the logging module. Hope this
helps!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#122 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANZK7UAABH6MYI67XFOYWGLSU7YYDANCNFSM4USGVO6A>
.
Hello guys! I cant remove this warning from my code. I think that can be an issue from this repo. If someone woud like to verify. Thanks.
my code:
tfm = sox.Transformer()
tfm.set_globals(verbosity=0)
tfm.oops()
tfm.build_file(temp_file,temp_out_of_phase)
this code always returns this warning:
output_file: R:\out_of_phase.wav already exists and will be overwritten on build
The text was updated successfully, but these errors were encountered: