summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@collabora.com>2013-01-20 12:44:57 -0300
committerThibault Saunier <thibault.saunier@collabora.com>2013-02-15 14:42:02 -0300
commit695c381bb11b52ba9ba3a048de99065a7a2b8fa7 (patch)
tree3a2a500a73026d070721bae73f0192121f7dd860 /bindings
parent04a3c49ebd0258912f34c3d17601be9258ec1533 (diff)
Rename GESTimelineFileSource to GESUriClip
Conflicts: ges/ges-pitivi-formatter.c ges/ges-uri-clip.c tests/check/ges/project.c tests/check/ges/uriclip.c
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/examples/material.py2
-rw-r--r--bindings/python/examples/simple.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/examples/material.py b/bindings/python/examples/material.py
index 424679f2e2..37b48a4086 100644
--- a/bindings/python/examples/material.py
+++ b/bindings/python/examples/material.py
@@ -14,7 +14,7 @@ class Simple:
timeline.add_track(trackv)
timeline.add_layer(self.layer)
- GES.Asset.new_async(GES.TimelineFileSource, uri, None, self.discoveredCb, None)
+ GES.Asset.new_async(GES.UriClip, uri, None, self.discoveredCb, None)
self.loop = GLib.MainLoop()
self.loop.run()
diff --git a/bindings/python/examples/simple.py b/bindings/python/examples/simple.py
index 0987d8c3aa..3cf271ae4e 100644
--- a/bindings/python/examples/simple.py
+++ b/bindings/python/examples/simple.py
@@ -11,7 +11,7 @@ class Simple:
timeline.add_track(trackv)
timeline.add_layer(layer)
- src = GES.TimelineFileSource.new(uri=uri)
+ src = GES.UriClip.new(uri=uri)
src.set_start(long(0))
src.set_duration(long(10 * Gst.SECOND))
print src