logo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions

45 lines
402 B

2 years ago
# Operator: video-decoder
Author: JunJie Jiang
## Overview
## Interface
```python
__init__(self, key_frame: bool)
```
Args:
- key_frame:
True: Only return key frame
False: Return all image frames of video
```python
__call__(self, video_path: str)
```
Args:
- video_path:
support local path and http/https url.
Returns:
- Image
## Requirements
av
## How it works
## Reference
2 years ago