summaryrefslogtreecommitdiff
path: root/src/YalpClients/EflClient/playlist.py
blob: 242aa76ab64b4275af07c2eb4e6d3898678b5ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python

import edje
import ecore.evas
import sys
import os
import ecore
import emotion
import evas
import elementary

import media

class Selection(object):
	def __init__(self, win, c, stream):
		self.win = win
		self.c = c
		self.vid = emotion.Emotion(win.canvas, module_filename="gstreamer")
		self.stream = stream
		self.play_video ()
		
	def play_video(self):
		print self.stream
		# ip = self.stream[0][0].destIp  THIS CHRASHES!!! -> I know :-)
		ip = "127.0.0.1"
		port = 9993
		print "stream from", ip, port
		self.vid.file_set("udp://"+ip+":"+str(port))
		self.c.part_swallow("video", self.vid)
		self.vid.show()
		self.vid.play = True