Update test.py
Browse files
test.py
CHANGED
@@ -1,5 +1,6 @@
|
|
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)
|
|
|
1 |
import subprocess
|
|
|
2 |
|
3 |
+
command = ["ffmpeg", "-list_devices", "true", "-f", "dshow", "-i", ""]
|
4 |
+
print(command)
|
5 |
ffmpeg_devices = subprocess.run(command, text=True, stderr=subprocess.PIPE, encoding="utf-8")
|
6 |
print(ffmpeg_devices)
|