added temp fix readme
This commit is contained in:
parent
6c93b06908
commit
d0a0c92170
|
@ -15,6 +15,8 @@ optional arguments:
|
||||||
input url
|
input url
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If the program gives an error for sox, try running `ulimit -n 999'`
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
This was tested on macOS Catalina ( so should work on almost all macOS versions).
|
This was tested on macOS Catalina ( so should work on almost all macOS versions).
|
||||||
|
|
|
@ -85,7 +85,9 @@ class VaporSong:
|
||||||
tocomb.append(sample)
|
tocomb.append(sample)
|
||||||
tocomb.append(dest)
|
tocomb.append(dest)
|
||||||
tmpFileLimit = len(tocomb) + 256 # in case the program messes up, it does not actually frick up your system
|
tmpFileLimit = len(tocomb) + 256 # in case the program messes up, it does not actually frick up your system
|
||||||
os.system("ulimit -n " + str(tmpFileLimit))
|
n = str(tmpFileLimit)
|
||||||
|
#logger.info("Setting file limit to ", n)
|
||||||
|
os.system("ulimit -n " + n)
|
||||||
subprocess.check_output(tocomb)
|
subprocess.check_output(tocomb)
|
||||||
return dest
|
return dest
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue