summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLionel Landwerlin <llandwerlin@gmail.com>2013-07-07 13:51:14 +0100
committerLionel Landwerlin <llandwerlin@gmail.com>2013-07-08 12:11:21 +0100
commit349f40cbe54160aaf8cc7bf807dcda2eeab6e362 (patch)
tree17f5d7ec4e1dcefe637835d37e8b2ffa43151fc0 /examples
parent2b077e89c620c630e4fdaf2d9cb73ab141127ea9 (diff)
downloadclutter-gst-349f40cbe54160aaf8cc7bf807dcda2eeab6e362.tar.gz
examples: add simple player
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am1
-rw-r--r--examples/simple-player.js55
2 files changed, 56 insertions, 0 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index f8117ff..7f63bcc 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -49,5 +49,6 @@ EXTRA_DIST = \
video-flip.js \
video-flip2.js \
pieces.js \
+ simple-player.js \
README \
$(NULL)
diff --git a/examples/simple-player.js b/examples/simple-player.js
new file mode 100644
index 0000000..9bd38d7
--- /dev/null
+++ b/examples/simple-player.js
@@ -0,0 +1,55 @@
+/*
+ * Copyright (C) 2013 Intel Corporation
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General
+ * Public License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+const Lang = imports.lang;
+const Clutter = imports.gi.Clutter;
+const ClutterGst = imports.gi.ClutterGst;
+
+if (ARGV.length < 1)
+ throw "Need 1 argument : simple-player.js videofile ";
+
+ClutterGst.init(null, null);
+
+let stage = new Clutter.Stage({
+ width: 800,
+ height: 600,
+ layout_manager: new Clutter.BinLayout({
+ x_align: Clutter.BinAlignment.FILL,
+ y_align: Clutter.BinAlignment.FILL,
+ }),
+});
+stage.connect('destroy',
+ Lang.bind(this, function() { Clutter.main_quit(); }));
+
+let player = new ClutterGst.Playback();
+player.set_filename(ARGV[0]);
+player.set_audio_volume(0.75);
+player.set_playing(true);
+
+let actor = new Clutter.Actor({
+ content: new ClutterGst.Aspectratio({
+ player: player,
+ paint_borders: true,
+ }),
+});
+stage.add_child(actor);
+
+stage.show();
+
+Clutter.main();