!pip install speechrecognition

  import speech_recognition as sr

  audio_files = [
  "/content/drive/MyDrive/MSCIT/SEM2/CF/Eleanor_Roosevelt.wav",
  "/content/drive/MyDrive/MSCIT/SEM2/CF/Comey.wav"
  ]

  keywords = ["FBI","Investigation","Unilever","Mills","Wall Street"]

  r = sr.Recognizer()
  audio_collection = {}

  for f in audio_files:
      with sr.AudioFile(f) as source:
          text = r.recognize_google(r.record(source))
          audio_collection[text] = f
          print(audio_collection)

  for k in keywords:
      for text in audio_collection:
          if k.lower() in text.lower():
              print(f'Keyword "{k}" found in the audio "{audio_collection[text]}"')