http://www.mltframework.org/twiki/bin/view/MLT/
1] Building from source:
./configure --disable-valerie --avformat-svn
and edit some source which has incorrect location for headers
2] Incorrect commandline invocation causes system freeze.
for testing: inigo test.avi in=90 out=100 -consumer avformat:rendered_file.avi real_time=0
crashes but does produce some output
3] Supports in and out points, and rendering to and from westley XML format:
http://www.mltframework.org/twiki/bin/view/MLT/Westley
which is a list of producers/clips.
Further links:
http://www.dennedy.org/mlt/twiki/bin/view/MLT/Questions
http://www.mail-archive.com/kdenlive-devel@lists.sourceforge.net/msg00003.html
http://www.kdenlive.org/mantis/view.php?id=23
1] Following:
http://sachachua.com/wp/2007/12/28/emacs-getting-things-done-with-org-basic/
with a few changes:
(defun remember-to-org ()
"Remember to Org."
(interactive)
(let ((remember-annotation-functions
(cons 'org-remember-annotation
remember-annotation-functions)))
(add-hook 'remember-mode-hook 'org-remember-apply-template)
(remember)
(set (make-variable-buffer-local
'remember-handler-functions)
'(org-remember-handler))))
(defun remember-to-planner ()
"Remember to Planner."
(interactive)
(let ((remember-annotation-functions
(append planner-annotation-functions
remember-annotation-functions)))
(remember)
(remove-hook 'remember-mode-hook 'org-remember-apply-template)
(set (make-variable-buffer-local
'remember-handler-functions)
'(remember-planner-append))))
(global-set-key (kbd "C-c r o") 'remember-to-org)
(global-set-key (kbd "C-c r p") 'remember-to-planner)
2] Also use of templates following:
http://orgmode.org/manual/Remember-templates.html
as:
(setq org-remember-templates
'(("Todo" ?t "* TODO %?\n %i\n %a" "~/experiment/TODO.org")
("private" ?p "* %U %?\n\n %i\n %a" "~/svn_test/trunk/notes.org")
("publish" ?u "* %T %?\n\n %i\n %a" "~/svn_test/trunk/orgpub/test.org")))
orgpub is our publishing site as defined by org-publish-project-alist.
3] Using C-u C-c C-c in remember buffer prompts for filename to save note under