Good speech to text software?

Discussion in 'Lounge' started by Gnosisrausch, Feb 1, 2021.

  1. Gnosisrausch

    Gnosisrausch Kapellmeister

    Joined:
    Sep 21, 2016
    Messages:
    52
    Likes Received:
    52
    I tend to dictate a lot of reports for work into my phone first before writing them down later. However, sometimes the process of writing everything down becomes very tedious. Does anyone know a good free solution (either completely free or something that can be found on the sister site etc.)? Ideally, I would like to just let the recorded file be converted to text without having to put it through a microphone again.
     
    • Interesting Interesting x 1
    • List
  2.  
  3. Futurewine

    Futurewine Audiosexual

    Joined:
    Oct 4, 2017
    Messages:
    887
    Likes Received:
    558
    Location:
    Sound City Labs
    • Like Like x 1
    • Interesting Interesting x 1
    • List
  4. Futurewine

    Futurewine Audiosexual

    Joined:
    Oct 4, 2017
    Messages:
    887
    Likes Received:
    558
    Location:
    Sound City Labs
    I did some tinkering with it and within my limited experience in learning to program with python .. i try to script a program that will batch convert audio files to text files.. examples program in video demo .. took me about 2minutes to convert 7 .wav files on ryzen 3200g.. this script could have been better, excuse my beginnner part :shalom:




    here is the script:

    PHP:
    #####################################################################
    # PROGRAM NAME: Futurewine_RockTheText.py                           #
    # ABOUT: This program will batch convert audio files to text files. #
    #                                                                   #
    # Supported audio formats: .wav, .aiff, .aif, and .flac only        #
    #                                                                   #
    # Copyright (None) Free To Edit as You Like..                       #
    #####################################################################

    import wx as using_wx_to_run
    import os 
    as using_os_to_run
    import speech_recognition 
    as using_speech_recognition_to_run

    def Get_Resources_Path
    ():
        
    Create_Application using_wx_to_run.App()
        
    Open_Directory_Dialog using_wx_to_run.DirDialog(parent=None,
                                
    message="Import audio file(s) into project")
        
    Open_Directory_Dialog.ShowModal()
        
    Create_Application.MainLoop()
        return 
    Open_Directory_Dialog.GetPath()

    def Get_Audio_Sources(Audio_Resources_path):
        
    Audio_Sources = []
        
    Audio_Formats = [".wav"".flac"".aiff"".aif"".aifc"]
        for 
    Audio_Source in using_os_to_run.listdir(Audio_Resources_path):
            for 
    Audio_Format in Audio_Formats:
                if 
    Audio_Format in Audio_Source:
                    
    Audio_Sources.append(Audio_Source)
        return 
    Audio_Sources

    def Convert_Audio_To_Text
    (Audio_Sources):
        
    Create_Application using_speech_recognition_to_run.Recognizer()
        for 
    Audio_Source in Audio_Sources:
            if (
    ".wav" in Audio_Source) or (".aif" in Audio_Source):
                
    Audio_Text_File Audio_Source[:-4] + ".txt"
            
    else:
                
    Audio_Text_File Audio_Source[:-5] + ".txt"   
            
    with using_speech_recognition_to_run.AudioFile(Audio_Source) as Audio:
                
    Audio_Transcript Create_Application.listen(Audio)
                try:
                    print(
    "Starting out Google Speech Recognition API ..")
                    print(
    f"Listening to {Audio_Source} ..")
                    
    Audio_Texts Create_Application.recognize_google(Audio_Transcript)
                    print(
    f"Converting {Audio_Source} to {Audio_Text_File}, please wait..")
                    
    with open (Audio_Text_File'w+') as Audio_Text_File_Contents:
                        for 
    Audio_Text in Audio_Texts:
                            
    Audio_Text_File_Contents.write(Audio_Text)
                    print(
    f"Finished converting {Audio_Source} to {Audio_Text_File} ..")                     
                
    except:
                    print(
    "Sorry.. Google Speech Recognition API is unreachable, please try again later..")             
                                  
    Audio_Resources_Path Get_Resources_Path()
    Audio_Sources Get_Audio_Sources(Audio_Resources_Path)

    Convert_Audio_To_Text(Audio_Sources)

    How to run this script:
    Using command-line and type:
    > python Futurewine_RockTheText.py :hillbilly:


    Supported format: .wav, .aiff, .aif, .flac only

    Program use:
    Download Python | Python.org

    Additional required libraries
    wxPython · PyPI
    SpeechRecognition · PyPI

    Script attached in file.. :shalom:#havefun :drunks:
     

    Attached Files:

  5. recycle

    recycle Guest

    siri
     
  6. Roject

    Roject Audiosexual

    Joined:
    Jan 2, 2019
    Messages:
    1,468
    Likes Received:
    644
    Location:
    Earth
Loading...
Similar Threads - speech text software Forum Date
Any text2speech or Yamaha vocaloid equivalent or better than Software Oct 15, 2022
Share yours favorite text to speech website Software Oct 10, 2019
Text to Speech or Voiceover Lounge Dec 20, 2016
DeRoom Pro - Reverb Removal PROFESSIONAL SPEECH RESTORATION Software Oct 30, 2020
Remove "Speech" from plugin database? FL Studio Feb 22, 2020
Loading...