0

I need an automatic speech transcription tool for my video editing project. I am using python speech recognition library. To split big audio file into small fractions I installed pydub and added its functionality in my script. Although I checked and solved the env-path issues of ffmpeg it still giving the following error:

Traceback (most recent call last):
  File "..\VideoEditing\speech_transcript.py", line 4, in <module>
    from pydub import AudioSegment
ModuleNotFoundError: No module named 'pydub'

What could be done to solve this issue, any ideas? Many thanks..

eshirvana
  • 23,227
  • 3
  • 22
  • 38

1 Answers1

0

Finally I found the solution. Just changed the directory of the downloaded package of pydub to:

"C:\Users\Username\AppData\Local\Programs\Python\Python36\Lib\site-packages".

Many thanks.