Make submit button play url in MPV

This commit is contained in:
Aleksander Gustaw Wasaznik 2016-09-11 21:38:58 +02:00
parent 8a3b42dea3
commit 8525506744
2 changed files with 3 additions and 5 deletions

View File

@ -12,7 +12,7 @@ class MPV(next_MPV):
super().__init__(debug=True)
def play(self, url):
self.command("loadfile", path)
self.command("loadfile", url)
self.set_property("pause", False)
@staticmethod

View File

@ -2,6 +2,7 @@
import remi.gui as gui, random, os, time
from remi import start, App
from threading import Timer
from mpv_control import mpv
class namespace(object): pass
@ -71,10 +72,6 @@ class MyApp(App):
['3', 'spis meg', "90:01"],
['3', "Slidervalue: %s" % self.playback.slider.get_value(), "0:00"]])
mpv.step()
mpv.get_queue()
mpv.position()
Timer(1, self.mainLoop).start()
def playback_play(self): pass
def playback_pause(self): pass
@ -84,6 +81,7 @@ class MyApp(App):
value = self.input.field.get_text()
print(value)
mpv.play(value)
self.input.field.set_text("")