Replies: 3 comments 2 replies
-
I do not thing python would be performent enough (be able to run on GPU since every node runs on GPU and CPU does not have the capability of massive paralelism GPUs have). |
Beta Was this translation helpful? Give feedback.
-
hello . nice job |
Beta Was this translation helpful? Give feedback.
-
I recently just think about an idea of a video editor that used all Python. Because it is possible to scale and modularize each part and only run low level parts on libraries. I think that is a good idea but there are a lot of video editors developed only on C++. I used Python to edit videos manually and it is very fast, it is not slow. Of course, Python is used only to execute instructions like "convert_video_to_grayscale(video)" so that is not really processed in a Python loop that of course will be very slow. |
Beta Was this translation helpful? Give feedback.
-
An option that allows users to write filters and some effects using Python.
I think of something like:
def process(numpy_array, current_frame, video): ...
video variable contains information like; max_seconds, frame_count, fps, etc
this is something i thought about doing but never got around to doing
as python is a popular language, many editors and common people know how to use it, and this encourages people to create what they need and cannot easily find
Beta Was this translation helpful? Give feedback.
All reactions