Compare commits

...

4 Commits

Author SHA1 Message Date
Alex Berezhkovsky 62b76d3620
Merge 72287ce89e into 61dae91439 2024-10-07 22:25:01 +05:30
Kenneth Estanislao 61dae91439 Revert "Merge pull request #566 from pereiraroland26/main"
This reverts commit 5d450b4352.
2024-10-04 15:57:48 +08:00
Kenneth Estanislao 5d450b4352 Merge pull request #566 from pereiraroland26/main
Added support for multiple faces
2024-10-04 15:55:31 +08:00
Alex Berezhkovsky 72287ce89e
add elif for pygrabber import 2024-08-18 18:33:46 +05:00
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@ import pyvirtualcam
# Import OS-specific modules only when necessary # Import OS-specific modules only when necessary
if platform.system() == 'Darwin': # macOS if platform.system() == 'Darwin': # macOS
import AVFoundation import AVFoundation
elif platform.system() == 'Windows' or platform.system() == 'Linux':
from pygrabber.dshow_graph import FilterGraph
# Import Windows specific modules only when on windows platform # Import Windows specific modules only when on windows platform
if platform.system() == 'Windows' or platform.system() == 'Linux': # Windows or Linux if platform.system() == 'Windows' or platform.system() == 'Linux': # Windows or Linux