1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-05 01:10:22 +08:00

13 Commits

Author SHA1 Message Date
源文雨
6223116f6b fix: no attribute 'FILE_LIKE'' & update instructions 2025-06-19 17:25:21 +09:00
keitarou
626bca2dd4 fix: pip version
ref https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/pull/2238
2024-08-14 21:04:40 +08:00
Alex Murkoff
1e22d468ea feat(audio): use PyAV instead of ffmpeg (#31)
* feat(audio): use PyAV instead of ffmpeg

replaced usage of ffmpeg in favor of PyAV (`av`)

* refactor(audio): store all of the audio related functions in the `infer.lib.audio`

refactors previous commit to have singular functions for each task, all located in `infer.lib.audio`

* fix(audio): remove downsample_audio from mdxnet.py

it is no longer needed, since it's imported from infer.lib.audio

* docs: remove every ffmpeg mention in the documentation to avoid confusion

* chore(requirements): remove ffmpeg-python and ffmpy from all requirements

* fix(audio): fix loading for UVR

wrapped gathering of META info from the stream into a function

fixes loading for UVR

* fix(audio): use np.frombuffer() instead of direct conversion of the resampled frames

this fixes traceback on preprocessing

* feat(audio): pre-allocate decoded_audio array in the load_audio function

this should improve performance, even if just a little

* Revert "docs: remove every ffmpeg mention in the documentation to avoid confusion"

This reverts commit 1e05bbce03.

* chore(format): run black on dev

* fix(requirements): revert removal of ffmpeg in unitest.yml and Dockerfile

* Revert "fix(requirements): revert removal of ffmpeg in unitest.yml and Dockerfile"

This reverts commit e28a0eebb2.

* feat(audio): pre-allocate numpy array to store the AudioFrame data in ndarray of dtype float32

* chore(format): run black on dev

* fix(audio): fix the decoded_audio size estimation

in estimated_total_samples we multiply by `sr` instead of `container.streams.audio[0].rate` since we want to estimate size of the OUTPUT file, not the input one. - Added dynamic resizing, in case something goes wrong and the size of decoded_audio is estimated incorrectly

Fixed function `load_audio` when the input audio's samplerate does not match the desired samplerate (`sr`)

* chore(format): run black on dev

* refactor(audio): remove `clean_path()` function as it serves no purpose anymore

* docs: remove everything related to ffmpeg

this includes everything except for formats support specification in the training_tips docs, since it has nothing to do with what ffmpeg does/did but rather what audio formats are supported (all the ones that ffmpeg supports!)

* docs: fix order of the steps in preparation in the READMEs

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-12 20:13:26 +09:00
Alex Murkoff
5f69b9a376 chore(structure): rename requirements files (#14)
* chore(structure): rename requirements files

all of the requirements under `requirements/` have requirements-* in their name, which just looks dirty since all of the requirements are already in the `requirements` dir. therefore to have cleaner project, it's better to rename all the req files to just contain info on what each of them does

* fix(unitest): update requirements file used in the unitest workflow
2024-06-09 20:56:01 +09:00
源文雨
f37889137b optimize: rename root pys 2024-06-07 00:50:51 +09:00
源文雨
3f85a24e1b optimize(deps): move req.txts into req folder 2024-06-07 00:48:35 +09:00
Andrei Iashchak
d6db9dc99f optimize(dockerfile): 将"copy . ."移至系统设置之后 (#1937)
将Dockerfile中的"copy . ."指令移至系统设置之后的副作用是构建过程现在将在复制文件之前缓存层。
这意味着如果系统设置保持不变,后续构建将更快,因为将重用缓存的层。

optimize(dockerfile): Moved "copy . ." after system setup

The side effect of moving the "copy . ." instruction after the system setup in the Dockerfile is that the build process will now cache the layers before copying the files.
This means that if the system setup remains unchanged, subsequent builds will be faster as the cached layers will be reused.
2024-04-11 16:53:19 +09:00
Isaac Tay
644b595287 fix: typo for rmvpe location in Dockerfile (#1261) 2023-09-17 07:29:17 +09:00
Abdellah derfoufi
50d0f2fa1e Added NVIDIA GPU support to Docker (#1231)
* Added NVIDIA GPU support to Docker

* feat: Added NVIDIA GPU support to Docker

---------

Co-authored-by: Abdellah Derfoufi <mohammed-abdellah.derfoufi@capgemini.com>
2023-09-13 00:18:04 +09:00
NULL
569fcd8048 Update Dockerfile (#1195)
删除Docker镜像构建时的安装缓存以及禁用Python依赖安装时的缓存。可以降低最终镜像大小
2023-09-05 16:07:36 +09:00
Ftps
d70b3d6f46 docker path 2023-08-28 16:06:37 +09:00
lwroo
72a4494c55 chore: extend Dockerfile, add docker-compose.yml (#1009)
Co-authored-by: lwroo.local <me@lwroo.party>
2023-08-15 10:38:42 +08:00
Sebastian Gabriel Savu
d43c1d3cdd add ability to containerize with Docker (add Dockerfile) (#240)
Co-authored-by: Sebastian Savu <sebastian.savu@bidfx.com>
2023-05-07 13:32:16 +08:00