GithubHelp home page GithubHelp logo

Comments (13)

babysor avatar babysor commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤

`D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended.
warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.")
Traceback (most recent call last):
File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in
import webrtcvad
ModuleNotFoundError: No module named 'webrtcvad'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in
raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables "
ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.`

請問有可能是發生什麼事情嗎?

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤

`D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended.
warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.")
Traceback (most recent call last):
File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in
import webrtcvad
ModuleNotFoundError: No module named 'webrtcvad'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in
raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables "
ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.`

請問有可能是發生什麼事情嗎?

這邊問題已經解決,其中 ModuleNotFoundError: No module named 'webrtcvad' 這個錯誤只要用 pip install webrtcvad 就能解決,之後如遇到 分頁不足 可以參考 #5 其中有人提到把內存改為100G就可以

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

@babysor 另外我想詢問您,之前有在 #5 當中說到你是用 100% cpu 跑一小時,是因為無法用GPU嗎(因為我目前也是 100% CPU運轉中),我不太清楚在這邊詢問,有方法是用GPU跑嗎?

from mockingbird.

babysor avatar babysor commented on May 22, 2024

@babysor 另外我想詢問您,之前有在 #5 當中說到你是用 100% cpu 跑一小時,是因為無法用GPU嗎(因為我目前也是 100% CPU運轉中),我不太清楚在這邊詢問,有方法是用GPU跑嗎?

有部分处理是必须通过CPU的,所以其中有一段cpu 100%很正常,但如果很多处理都是100%,那可能有问题。

from mockingbird.

babysor avatar babysor commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤
D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended. warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.") Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in import webrtcvad ModuleNotFoundError: No module named 'webrtcvad' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables " ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.
請問有可能是發生什麼事情嗎?

這邊問題已經解決,其中 ModuleNotFoundError: No module named 'webrtcvad' 這個錯誤只要用 pip install webrtcvad 就能解決,之後如遇到 分頁不足 可以參考 #5 其中有人提到把內存改為100G就可以

你可以提个quick change到readme嘛

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤
D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended. warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.") Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in import webrtcvad ModuleNotFoundError: No module named 'webrtcvad' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables " ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.
請問有可能是發生什麼事情嗎?

這邊問題已經解決,其中 ModuleNotFoundError: No module named 'webrtcvad' 這個錯誤只要用 pip install webrtcvad 就能解決,之後如遇到 分頁不足 可以參考 #5 其中有人提到把內存改為100G就可以

你可以提个quick change到readme嘛

不好意思,我是 github 的新手,我非常樂意提供我遇到難題的解決方法,不過要怎麼提到 readme 裡面讓遇到困難的人可以直接看到呢?

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

@babysor 另外我想詢問您,之前有在 #5 當中說到你是用 100% cpu 跑一小時,是因為無法用GPU嗎(因為我目前也是 100% CPU運轉中),我不太清楚在這邊詢問,有方法是用GPU跑嗎?

有部分处理是必须通过CPU的,所以其中有一段cpu 100%很正常,但如果很多处理都是100%,那可能有问题。

了解,謝謝!

from mockingbird.

babysor avatar babysor commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤
D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended. warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.") Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in import webrtcvad ModuleNotFoundError: No module named 'webrtcvad' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables " ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.
請問有可能是發生什麼事情嗎?

這邊問題已經解決,其中 ModuleNotFoundError: No module named 'webrtcvad' 這個錯誤只要用 pip install webrtcvad 就能解決,之後如遇到 分頁不足 可以參考 #5 其中有人提到把內存改為100G就可以

你可以提个quick change到readme嘛

不好意思,我是 github 的新手,我非常樂意提供我遇到難題的解決方法,不過要怎麼提到 readme 裡面讓遇到困難的人可以直接看到呢?

你需要folk,修改之后提交git,申请pull request就好

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤
D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended. warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.") Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in import webrtcvad ModuleNotFoundError: No module named 'webrtcvad' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables " ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.
請問有可能是發生什麼事情嗎?

這邊問題已經解決,其中 ModuleNotFoundError: No module named 'webrtcvad' 這個錯誤只要用 pip install webrtcvad 就能解決,之後如遇到 分頁不足 可以參考 #5 其中有人提到把內存改為100G就可以

你可以提个quick change到readme嘛

不好意思,我是 github 的新手,我非常樂意提供我遇到難題的解決方法,不過要怎麼提到 readme 裡面讓遇到困難的人可以直接看到呢?

你需要folk,修改之后提交git,申请pull request就好

我花了一點時間研究,已經申請pull request了,再請作者看一下

from mockingbird.

babysor avatar babysor commented on May 22, 2024

3。文件路径有空格 要么加双引号要么把文件夹名称空格去掉

我按照你說的把空格去掉,不過又出現以下錯誤
D:\python_demo\Realtime-Voice-Clone-Chinese\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended. warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.") Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 52, in import webrtcvad ModuleNotFoundError: No module named 'webrtcvad' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\python_demo\Realtime-Voice-Clone-Chinese\synthesizer_preprocess_audio.py", line 54, in raise ModuleNotFoundError("Package 'webrtcvad' not found. This package enables " ModuleNotFoundError: Package 'webrtcvad' not found. This package enables noise removal and is recommended. Please install and try again. If installation fails, use --no_trim to disable this error message.
請問有可能是發生什麼事情嗎?

這邊問題已經解決,其中 ModuleNotFoundError: No module named 'webrtcvad' 這個錯誤只要用 pip install webrtcvad 就能解決,之後如遇到 分頁不足 可以參考 #5 其中有人提到把內存改為100G就可以

你可以提个quick change到readme嘛

不好意思,我是 github 的新手,我非常樂意提供我遇到難題的解決方法,不過要怎麼提到 readme 裡面讓遇到困難的人可以直接看到呢?

你需要folk,修改之后提交git,申请pull request就好

我花了一點時間研究,已經申請pull request了,再請作者看一下

通过了 不过这个好像是另一个修改?

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

什麼意思?

from mockingbird.

XiuChen-Liu avatar XiuChen-Liu commented on May 22, 2024

什麼意思?

我好像懂了 我再去研究一下 這個issue先關閉

from mockingbird.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.