You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Examples and Unit Tests execution requires video data generation. In order to generate such data it is required to install FFmpeg using your OS package manager such as:
Unit tests execution requires video data generation. In order to generate such data it is required to install FFmpeg using your OS package manager such as:
80
-
81
-
```bash
82
-
# Windows
69
+
# Windows, using chocolatey
83
70
choco install ffmpeg -y
84
71
72
+
# Windows, using winget
73
+
winget install ffmpeg
74
+
85
75
# Linux
86
76
sudo apt-get install -y ffmpeg
87
77
@@ -92,9 +82,24 @@ brew install ffmpeg
92
82
Once FFmpeg is installed and available on the path run the following python script:
0 commit comments