cleanup requirements and imported packages
This commit is contained in:
parent
bf12747492
commit
d009fa5d8b
4 changed files with 12 additions and 13 deletions
9
.vscode/settings.json
vendored
Normal file
9
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
// "editor.cursorBlinking": "expand",
|
||||
"flake8.args": [
|
||||
// --ignore=E501
|
||||
// --max-line-length=120
|
||||
"--ignore=E501",
|
||||
"--ignore=E722"
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
Run DNF3 and/or RNNOISE on any audio you like.
|
||||
|
||||
Just build it:
|
||||
Put your noisy audio into the ```noisy_audio``` Folder,
|
||||
|
||||
build it
|
||||
|
||||
```podman build -t sound-processing-functions .```
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,3 @@
|
|||
smbprotocol
|
||||
requests
|
||||
lxml
|
||||
ffmpeg-python
|
||||
|
||||
|
||||
# DFN (DeepFilterNet)
|
||||
deepfilternet
|
||||
torch
|
||||
|
|
@ -26,7 +20,3 @@ torchaudio -f https://download.pytorch.org/whl/cpu/torch_stable.html
|
|||
#espnet_model_zoo
|
||||
# wheel
|
||||
# https://files.pythonhosted.org/packages/4d/9d/9153942f0e2143a43978bcefba31d79187b7037bed3f85a6668c69493062/sentencepiece-0.1.99-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
||||
|
||||
|
||||
# MISC
|
||||
#torchaudio
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
import smbclient
|
||||
import logging
|
||||
import traceback
|
||||
import json
|
||||
|
|
@ -6,7 +5,6 @@ import os
|
|||
import sys
|
||||
from pathlib import Path
|
||||
from datetime import datetime
|
||||
from lxml import etree
|
||||
import subprocess
|
||||
|
||||
# DeepFilterNet (DFN3)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue