GNOME Bugzilla – Bug 673714
Saving/loading projects with empty timeline doesn't work [pitivi]
Last modified: 2013-09-24 16:03:41 UTC
Because there is an assert in ges-formatter.c, GES doesn't allow saving projects with empty timeline. Besides it, ges-pitivi-formatter emitts "project-loaded" signal after last track object is loade, so if there are no track objects this signal is never emitted.
Created attachment 211566 [details] [review] Patch for GESFormatter to allow saving projects with empty timeline
Created attachment 211567 [details] [review] Patch for GESPitiviFormatter to allow loading of projects with empty timeline
commit 963cce240cf59531faad010ac17a8b49fd2ec091 Author: Volodymyr Rudyi <vladimir.rudoy@gmail.com> Date: Sun Apr 8 00:30:03 2012 +0300 ges-pitivi-formatter: Fixed loading of projects with empty timeline Because 'project-loaded' signal was triggered from track object loading callback in case with projects that have empty timeline this signal was never emitted. commit b102df2d4d35fa48500b684407c081a1d848a6e6 Author: Volodymyr Rudyi <vladimir.rudoy@gmail.com> Date: Sun Apr 8 00:08:43 2012 +0300 ges-formatter: Removed assert to allow saving projects with empty timeline Removed assert in ges-formatter.c to allow saving projects with empty timeline. Thanks :)