The error "No module named 'faster_whisper'" indicates that the required Python package for the faster-whisper speech recognition model is not installed in your environment.
Since you are running the source code version (v3.80, frozen:False) on Linux, you need to install the dependencies manually.
Here are the steps to resolve this:
- Activate your Python environment: Ensure you are in the same Python environment where you installed
pyVideoTrans
. Install the package: Run the following command in your terminal:
pip install faster-whisper
- Restart the application: After the installation is complete, restart
pyVideoTrans
.
If you encounter any issues during the pip installation, you may need to install system-level dependencies first. Please refer to the official faster-whisper
documentation for specific requirements for your Linux distribution.
If the problem persists after installation, please provide the complete log file from the videotrans/logs/
directory.