Masaki Saito
Masaki Saito
Thanks for your comment. I believe that this software is currently unlikely to compete with existing commercial software such as premiere pro and after effects, as it requires some coding...
Sorry for the late reply. As you know, RTSP is not directly supported, and while it is possible to achieve this by modifying the ``__call__`` operator in ``Composition``, I think...
Hi @afeezaziz, Thanks for your interest. Basically, I don't accept donations, but if you have any requests for additional features, please don't hesitate to post them on the issue or...
Thank you for your PR! Although tests by github actions has failed, but this appears to be an internal problem and not caused by this PR. LGTM.
Thank you! I appreciate what you make about the introductory video. Do you have a portfolio of videos to show your video production skills?
Thank you for your interest. The simplest method is to overlay two layers, similar to how it's done in Premiere or After Effects, and then add animation related to opacity....
感谢您的建议。我们正在考虑如何在当前的界面中添加这些典型的效果,但无论如何,我们都认为这是一个非常重要的问题。如果您有其他任何要求,请随时告诉我们。 Thank you for your suggestion. We are considering how to add such typical effects in the current interface, but in any case, we think it is a very important...
https://github.com/rezoo/movis/pull/37 我目前正在创建一些快捷函数,以便简单地实现淡入和淡出效果。我认为这些函数可能会直观易用,但如果您有任何不明白的地方,请告诉我。 I am currently creating a set of shortcut functions to easily implement fade-in and fade-out effects. I believe these functions will likely be intuitive to use, but if...
In that case, these codes can be simplified as follows: ```python layer = mv.layer.Video('input.mp4') scene = mv.trim(layer, start_times=[10, 50], end_times=[13, 53]) scene = mv.fade_in_out(scene, 1.0, 1.0) scene.write_video('output.mp4') ``` > the...
Thank you. I have partially understood the situation. The reason why we're currently getting 6.24 iter/sec instead of the expected 14.73 iter/sec is likely due to the processing of `mv.trim()`....