An open API service indexing awesome lists of open source software.

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`

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})`