MissingTwins

Results 11 comments of MissingTwins

First, check your logs. When you open a URL from Chrome, do the logs show the activities from your Chrome? If not, you may need to set the Chrome launch...

Same problem here ``` D:\work\whisper>jupyter nbextensions_configurator enable --user Traceback (most recent call last): File "", line 198, in _run_module_as_main File "", line 88, in _run_code File "C:\Users\chelsea\AppData\Local\Programs\Python\Python311\Scripts\jupyter-nbextensions_configurator.EXE\__main__.py" , line 4,...

Thank you for the fast response, I have been able to fix the issue by upgrade LangSegment to 0.2.3

For the first deployment, you may refer to the jupyter notebook file in this project root folder, and test run with google colab before trying on your local environment.

1. open `MeloTTS\requirements.txt' Change `torch

`pip install ffmpeg-normalize` `ffmpeg-normalize input.wav -c:a libopus -b:a 128k -o output.oga -f` WARNING: Input file had loudness range of 10.1. This is larger than the loudness range target (7.0). Normalization...

@blakadder But it does, at least my variant does. It is equipped with BL0937. I bought WP6 primarily because it was capable of power monitoring and also came with an...

Remove the version from mecab-python3 then install again There are two duplicated mecab-python3 in requirements.txt, don't forget to delete the extra one https://github.com/myshell-ai/MeloTTS/blob/50a8a000395d1db6e4f0eceb1944f03fa4a67723/requirements.txt#L6

Try this in windows cmd ``` set HTTP_PROXY=http://127.0.0.1:7890 set HTTPS_PROXY=http://127.0.0.1:7890 python -m unidic download ``` Try this in bash ``` export HTTP_PROXY=http://127.0.0.1:7890 export HTTPS_PROXY=http://127.0.0.1:7890 python -m unidic download ```

There is a way to around this: ``` import subprocess # Function to run FFmpeg commands def run_ffmpeg(start_time, end_time, input_file, output_file): command = [ 'ffmpeg', '-ss', str(start_time), '-to', str(end_time), '-i',...