Guest User

Untitled

a guest
Mar 11th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.22 KB | None | 0 0
  1. using Gst;
  2.  
  3. void main (string[] args) {
  4.     Gst.init (ref args);
  5.  
  6.     var pipeline = Gst.parse_launch("playbin uri=\"file://%s\"".printf(args[1]));
  7.     pipeline.set_state (State.PLAYING);
  8.     new MainLoop ().run ();
  9. }
Add Comment
Please, Sign In to add comment