```c static gchar source_moved_cb (GESProject *project, GError *error, GESAsset *asset_with_error) { return g_strdup ( "file:///the/new/uri.
ogg"); }
static int main (int argc, gchar ** argv) { GESTimeline *timeline; GESProject *project = ges_project_new ("file:///some/uri.xges");
g_signal_connect (project, "missing-uri", source_moved_cb, NULL); timeline = ges_asset_extract (GES_ASSET (project)); } ```
| error |
The error that happened |
| wrong_asset |
The asset with the wrong ID, you should us it and its content only to find out what the new location is. |
|
The new URI of |