https://github.com/jina-ai/executor-video-frameextractor
An executor that extract the frames from videos with `ffmpeg`
https://github.com/jina-ai/executor-video-frameextractor
Last synced: 3 months ago
JSON representation
An executor that extract the frames from videos with `ffmpeg`
- Host: GitHub
- URL: https://github.com/jina-ai/executor-video-frameextractor
- Owner: jina-ai
- Created: 2021-09-27T13:01:43.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-05T20:46:16.000Z (about 4 years ago)
- Last Synced: 2025-06-13T17:54:53.801Z (4 months ago)
- Language: Python
- Size: 2.91 MB
- Stars: 2
- Watchers: 26
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VideoFrameExtractor
**FrameExtractor** is an executor that extracts frames from videos with `ffmpeg`## Usage
#### via Docker image (recommended)
```python
from jina import Flow
f = Flow().add(uses='jinahub+docker://VideoFrameExtractor')
```#### via source code
```python
from jina import Flow
f = Flow().add(uses='jinahub://VideoFrameExtractor')
```- To override `__init__` args & kwargs, use `.add(..., uses_with: {'key': 'value'})`
- To override class metas, use `.add(..., uses_metas: {'key': 'value})`