AudioPlayer.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import logging
  2. import pygame
  3. from core.FileManager import FileManager
  4. class AudioPlayer:
  5. PLAYER_MP3 = "MP3"
  6. PLAYER_WAV = "WAV"
  7. AUDIO_MP3_FREQUENCY = 16000
  8. AUDIO_MP3_SIZE = -16
  9. AUDIO_MP3_CHANNEL = 1
  10. AUDIO_MP3_BUFFER = 2048
  11. def __init__(self, default_type=None, audio_frequency=AUDIO_MP3_FREQUENCY, audio_size=AUDIO_MP3_SIZE, audio_channel=AUDIO_MP3_CHANNEL, audio_buffer=AUDIO_MP3_BUFFER):
  12. if default_type == self.PLAYER_MP3:
  13. self.audio_frequency = self.AUDIO_MP3_FREQUENCY
  14. self.audio_size = self.AUDIO_MP3_SIZE
  15. self.audio_channel = self.AUDIO_MP3_CHANNEL
  16. self.audio_buffer = self.AUDIO_MP3_BUFFER
  17. else:
  18. self.audio_frequency = audio_frequency
  19. self.audio_size = audio_size
  20. self.audio_channel = audio_channel
  21. self.audio_buffer = audio_buffer
  22. pygame.mixer.init(audio_frequency, audio_size, audio_channel, audio_buffer)
  23. def play_audio(self, music_file, volume=0.8, keep_file=False):
  24. try:
  25. self._init_player_audio(music_file, volume)
  26. logging.debug("Music file %s loaded!", music_file)
  27. except pygame.error:
  28. FileManager.remove_file(music_file)
  29. logging.error("File %s not found! (%s)", music_file, pygame.get_error())
  30. return
  31. self._start_player_audio()
  32. if not keep_file:
  33. FileManager.remove_file(music_file)
  34. @staticmethod
  35. def _init_player_audio(music_file, volume):
  36. pygame.mixer.music.set_volume(volume)
  37. pygame.mixer.music.load(music_file)
  38. @staticmethod
  39. def _start_player_audio():
  40. logging.info("Starting pygame audio player")
  41. pygame.mixer.music.play()
  42. clock = pygame.time.Clock()
  43. while pygame.mixer.music.get_busy():
  44. clock.tick(20)
  45. return