|
import os
|
|
import wave
|
|
from PIL import Image
|
|
|
|
from pipecat.frames.frames import AudioRawFrame, ImageRawFrame
|
|
|
|
script_dir = os.path.dirname(__file__)
|
|
|
|
|
|
def load_images(image_files):
|
|
images = {}
|
|
for file in image_files:
|
|
|
|
full_path = os.path.join(script_dir, "../assets", file)
|
|
|
|
filename = os.path.splitext(os.path.basename(full_path))[0]
|
|
|
|
with Image.open(full_path) as img:
|
|
images[filename] = ImageRawFrame(image=img.tobytes(), size=img.size, format=img.format)
|
|
return images
|
|
|
|
|
|
def load_sounds(sound_files):
|
|
sounds = {}
|
|
|
|
for file in sound_files:
|
|
|
|
full_path = os.path.join(script_dir, "../assets", file)
|
|
|
|
filename = os.path.splitext(os.path.basename(full_path))[0]
|
|
|
|
with wave.open(full_path) as audio_file:
|
|
sounds[filename] = AudioRawFrame(audio=audio_file.readframes(-1),
|
|
sample_rate=audio_file.getframerate(),
|
|
num_channels=audio_file.getnchannels())
|
|
|
|
return sounds
|
|
|