ChatTTS / tools /audio /ffmpeg.py
zhengr's picture
init
c02bdcd
raw
history blame contribute delete
116 Bytes
from pydub.utils import which
def has_ffmpeg_installed() -> bool:
return which("ffmpeg") and which("ffprobe")