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
I wanted to let you know I created a static-sox for tools like this so that the user doesn't have to face the pain of pre-installing sox for their platform in order to use the binary.
Consider adding static-sox to the dependency list and then using static_sox.add_paths(weak=True) in functions before they invoke a call to the sox binary.
static-sox will only download the binaries on first use, and there is a file based lock that will make sure the downloading step is only done once even in a concurrent environment.
The text was updated successfully, but these errors were encountered:
zackees
changed the title
Improve pysox by adding static-sox package to auto download binaries
Improve pysox by adding static-sox package to auto download sox binaries
Feb 22, 2023
Hi there, great library.
I wanted to let you know I created a
static-sox
for tools like this so that the user doesn't have to face the pain of pre-installingsox
for their platform in order to use the binary.Consider adding
static-sox
to the dependency list and then usingstatic_sox.add_paths(weak=True)
in functions before they invoke a call to thesox
binary.static-sox
will only download the binaries on first use, and there is a file based lock that will make sure the downloading step is only done once even in a concurrent environment.pip install static-sox
https://pypi.org/project/static-sox/
The text was updated successfully, but these errors were encountered: