Typing Information, Frame Values in Time - type hints for all of the parameters and returns. #1695
Labels
design-decisions
Discussion of ideas, suggestions, questions relevant to (re)design decision-making process.
feature-request
Request for a new feature or additional functionality.
Currently I am developing a library on top of moviepy.
As I go deeper into my own code I find that there is limited type information provided on the moviepy side.
I tend to have to look at the source code in order to find answers on how to properly interface with certain APIs.
In video editing there are multiple uses for creating subclips accurately up to a single frame.
Therefore I would like to propose features as follows:
t
parameters in methods such as.subclip(t_start, t_end)
.subclip(t_start: float | int, t_end: float | int, frames:bool = False)
Conversion could be handled internally.
The text was updated successfully, but these errors were encountered: