├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── pythonpublish.yml │ ├── release-drafter.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── haffmpeg ├── __init__.py ├── camera.py ├── core.py ├── sensor.py ├── timeout.py └── tools.py ├── pylintrc ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── requirements_lint.txt ├── requirements_test.txt ├── setup.cfg ├── test ├── camera_mjpeg.py ├── sensor_motion.py ├── sensor_noise.py ├── tools_imageframe.py └── tools_version.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/README.md -------------------------------------------------------------------------------- /haffmpeg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/haffmpeg/__init__.py -------------------------------------------------------------------------------- /haffmpeg/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/haffmpeg/camera.py -------------------------------------------------------------------------------- /haffmpeg/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/haffmpeg/core.py -------------------------------------------------------------------------------- /haffmpeg/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/haffmpeg/sensor.py -------------------------------------------------------------------------------- /haffmpeg/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/haffmpeg/timeout.py -------------------------------------------------------------------------------- /haffmpeg/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/haffmpeg/tools.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | async-timeout==5.0.1 2 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/requirements_lint.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | click==8.1.8 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/setup.cfg -------------------------------------------------------------------------------- /test/camera_mjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/test/camera_mjpeg.py -------------------------------------------------------------------------------- /test/sensor_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/test/sensor_motion.py -------------------------------------------------------------------------------- /test/sensor_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/test/sensor_noise.py -------------------------------------------------------------------------------- /test/tools_imageframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/test/tools_imageframe.py -------------------------------------------------------------------------------- /test/tools_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/test/tools_version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/home-assistant-libs/ha-ffmpeg/HEAD/tox.ini --------------------------------------------------------------------------------