GabrielRF / Video2Telegram

Watches a folder. If new file, sends gif using Telegram Messenger.
https://hub.docker.com/r/gabrielrf/video2telegram/
GNU General Public License v3.0
30 stars 4 forks source link

Test the performance using ffmpy #3

Closed GabrielRF closed 5 years ago

GabrielRF commented 5 years ago

Moviepy is taking longer than I expected Therefore, I want to make some tests to try to reduce converting time

import ffmpy

ff = ffmpy.FFmpeg(
    inputs={file_path: None},
    outputs={gif_path: None}
)
ff.run()
GabrielRF commented 5 years ago

Much faster