Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Teapack1
/
Assistant-Audio-Intent-Classification
like
1
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
Teapack1
commited on
Jan 3, 2024
Commit
fc73901
·
1 Parent(s):
7d5dbff
Create test.py
Browse files
Files changed (1)
hide
show
test.py
+5
-0
test.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import subprocess
2
+
command = ["ffmpeg", "-list_devices", "true", "-f", "dshow", "-i", ""]
3
+
4
+
ffmpeg_devices = subprocess.run(command, text=True, stderr=subprocess.PIPE, encoding="utf-8")
5
+
print(ffmpeg_devices)