Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhengr
/
ChatTTS2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
925d8d7
ChatTTS2
/
tools
/
audio
/
ffmpeg.py
zhengr
init
c02bdcd
7 months ago
raw
Copy download link
history
blame
Safe
116 Bytes
from
pydub.utils
import
which
def
has_ffmpeg_installed
() ->
bool
:
return
which(
"ffmpeg"
)
and
which(
"ffprobe"
)