3b1b-manim/manimlib/utils/sounds.py

11 lines
276 B
Python
Raw Normal View History

from manimlib.utils.file_ops import find_file
2021-01-23 11:02:02 -08:00
from manimlib.utils.directories import get_sound_dir
2019-01-24 22:24:01 -08:00
def get_full_sound_file_path(sound_file_name):
return find_file(
2019-01-24 22:24:01 -08:00
sound_file_name,
2021-01-23 11:02:02 -08:00
directories=[get_sound_dir()],
2019-01-24 22:24:01 -08:00
extensions=[".wav", ".mp3"]
)