


Open Source Video Editor Pitivi Seeks Crowdfunding to Reach 1.0 79
Eloquence writes "Pitivi is perhaps the most mature, stable and actually usable open source video editor out there. They're now looking to raise funds to support the project's ongoing development. The lack of decent open source video editors has been one of the things keeping people locked into proprietary platforms, and video editing has been identified as a high priority project by the Free Software Foundation. 2014 may still not be the fabled year of the Linux desktop, but here's hoping it'll be the year of open source video editing." Work continues as well on the crowdfunded transition to cross-platform, open-source video editing with OpenShot, and developer Jonathan Thomas is presenting the work done so far at SCALE this weekend.
not a fan (Score:4, Informative)
Python is not suited for every task and video editing is one of the things that should be exclusively in native code.
You already have Blender 3D... (Score:4, Informative)
Yes yes...it's 3D software, but it has a very functional, totally unlimited video-editing suite built right in, very easy to use too...you don't need to learn how to use Blender, but you need to learn a bit about video formats, compression and such.
Re:not a fan (Score:5, Informative)
Very enthusiastic about that effort ! (Score:5, Informative)
Re:Pitivi is such a POS (Score:5, Informative)
While Cinelerra is very capable, it also seems to be an unmaintainable code dump. The community project can just about get it in a state that it builds, but I am not aware that they have added any features to it. IIRC the community devs though it would be better to start again from scatch, with a project called something like Luminara, but I can't find much about that now.
On the other hand Pitivi is build on a solid base of libraries that are used widely in other peices of software. Even if pitivi were not to succede then it would have created the tools for other people to build an editor. It also provides a base of libraries for experimental editors like Nova cut.
Re:Very enthusiastic about that effort ! (Score:5, Informative)
Re:not a fan (Score:2, Informative)
Where the hell did you get that idea? All performance critical code is in the media framework and codecs layer (Gstreamer for Pitivi, MLT for KDEnlive and Flowblade). Python code does things like "add clip to track","seek to frame 3452","start playback from current frame". There is zero need to to do CPU intensive tasks in Python code when programming video editors.