File size: 376 Bytes
d748de4 86a5a17 d748de4 86a5a17 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
---
title: Optical Flow To 60fps
emoji: 😻
colorFrom: gray
colorTo: indigo
sdk: gradio
sdk_version: 5.9.1
app_file: app.py
pinned: false
license: mit
short_description: Make your 10,20,30 fps video to 60 fps video!!
---
how to use it in cmd:
```bash
.input(your_video.mp4)
.filter('minterpolate', fps=60)
.output(output_path, acodec='copy')
.run(overwrite_output=True)
``` |