gloss-mc/modules/myth_tv_player/myth_tv_player.py

119 lines
3.6 KiB
Python
Raw Normal View History

import gst
import pygtk
import pygst
import os
import clutter
2007-08-14 18:10:53 -07:00
from clutter import cluttergst
from modules.myth_tv_player.MythBackendConn import MythBackendConnection
from Menu import Menu
from VideoController import VideoController
2007-08-14 18:10:53 -07:00
2007-11-19 03:38:15 -08:00
class Module:
title = "TV"
menu_image = "dvd.png"
2007-08-14 18:10:53 -07:00
2007-11-19 03:38:15 -08:00
def __init__(self, MenuMgr, dbMgr):
self.stage = MenuMgr.get_stage()
self.videoController = VideoController(self.stage)
self.dbMgr = dbMgr
self.isRunning = False
2007-11-19 03:38:15 -08:00
#Action to take when menu item is selected
def action(self):
return self
2007-08-14 18:10:53 -07:00
def begin(self, menuMgr):
self.menuMgr = menuMgr
#self.buffer_file_reader = open("test.mpg","r")
menuMgr.get_selector_bar().set_spinner(True)
(server, port) = self.dbMgr.get_backend_server()
self.myConn = MythBackendConnection(self, server, port)
2007-08-14 18:10:53 -07:00
self.myConn.start()
#vid.begin(self.stage)
self.isRunning = True
def begin_playback(self, buffer_file):
self.menuMgr.get_selector_bar().set_spinner(False)
uri = "file://" + os.getcwd() +"/" + buffer_file
self.videoController.play_video(uri, self)
2007-08-14 18:10:53 -07:00
"""
timeline = clutter.Timeline(15, 25)
alpha = clutter.Alpha(timeline, clutter.ramp_inc_func)
behaviour = clutter.BehaviourOpacity(alpha, 0,255)
behaviour.apply(self.video)
2007-08-14 18:10:53 -07:00
self.stage.add(self.video)
self.video.set_playing(True)
timeline.start()
#return None
"""
def video_size_change(self, texture, width, height):
self.video.set_property("sync-size", False)
self.video.set_position(0, 0)
xy_ratio = float(width / height)
print "XY Ratio: " + str(xy_ratio)
width = int(self.stage.get_width())
height = int (width / xy_ratio)
height = 768
self.video.set_size(width, height)
def stop(self):
self.videoController.stop_video()
self.myConn.stop() # Stops the backend / frontend streaming
def stop_video(self):
self.myConn.stop()
2007-08-14 18:10:53 -07:00
def on_key_press_event (self, stage, event):
if self.isRunning:
self.videoController.on_key_press_event(event)
if event.keyval == clutter.keysyms.Escape:
return True
2007-08-14 18:10:53 -07:00
#print event.hardware_keycode
2007-08-14 18:10:53 -07:00
"""if event.keyval == clutter.keysyms.p:
if self.paused:
self.unpause()
else:
self.pause()
if event.keyval == clutter.keysyms.q:
clutter.main_quit()"""
#The following generates a menu with an option for each of the slideshows in the base menu
def generateMenu(self):
tempMenu = Menu(self.MenuMgr)
self.dbMgr.get_channels()
file_list = os.listdir(self.baseDir)
for directoryEntry in file_list:
subdir = self.baseDir + "/" + directoryEntry
if os.path.isdir(subdir):
imgPath = subdir + "/" + os.listdir(subdir)[0]
#print imgPath
tempItem = tempMenu.addItem(directoryEntry, "/home/josh/.mythtv/MythVideo/0088763.jpg")
tempItem.setAction(self)
return tempMenu
class channel:
def __init__(self, chanID, channum, name, iconLocation, xmltvid):
self.chanID = chanID
self.channum = channum
self.name = name
self.iconLocation = iconLocation
self.xmltvid = xmltvid
def get_name():
return self.name