Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
ameerazam08/Gemini-Image-Edit
Ava2lon
/
studio
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
af78cff
studio
/
utils
/
ffmpeg.py
Ava2lon
Upload 170 files
345855e
verified
about 1 month ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
263 Bytes
import
subprocess
def
extract_audio
(
video, audio
):
cmd = [
"ffmpeg"
,
"-y"
,
"-i"
, video,
"-vn"
,
"-acodec"
,
"pcm_s16le"
,
"-ar"
,
"16000"
,
"-ac"
,
"1"
,
audio
]
subprocess.run(cmd, check=
True
)