The GStreamer Playbin.
Ejemplo n.º 1
0
	private void InitializePlaybin () {
		playbin = new Playbin();

		if (!playbin.Initiate(socket.Id))
			throw new PlayerCouldNotInitiateEngineException();

		playbin.Error += OnPlaybinError;
		playbin.EndOfStream += OnPlaybinEndOfStream;
		playbin.StateChanged += OnPlaybinStateChanged;
		playbin.FoundVideoInfo += OnPlaybinFoundVideoInfo;
		playbin.FoundTag += OnPlaybinFoundTag;
	}