mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
16 lines
395 B
Python
16 lines
395 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import unittest
|
||
|
from selenium import webdriver
|
||
|
from selenium.webdriver.support.wait import WebDriverWait
|
||
|
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
|
||
|
from selenium.webdriver.chrome.options import Options as COptions
|
||
|
import asyncio
|
||
|
import threading
|
||
|
import signal
|
||
|
|
||
|
import gi
|
||
|
gi.require_version('Gst', '1.0')
|
||
|
from gi.repository import Gst
|