Added soundpacks' possibility

This commit is contained in:
2016-05-24 17:48:22 -05:00
parent cada87275d
commit 2b44c72999
5 changed files with 81 additions and 4 deletions

View File

@@ -288,4 +288,4 @@ class chatBuffer(baseBuffer):
def send_chat_to_user(self, *args, **kwargs):
text = self.tab.text.GetValue()
if text == "": return
response = self.session.vk.client.messages.send(user_id=self.kwargs["user_id"], message=text)
response = self.session.vk.client.messages.send(user_id=self.kwargs["user_id"], message=text)

View File

@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
import output
import sound_lib
from sound_lib.output import Output
from sound_lib.stream import URLStream
from mysc.repeating_timer import RepeatingTimer
from pubsub import pub
@@ -16,7 +15,6 @@ def setup():
class audioPlayer(object):
def __init__(self):
Output()
self.is_playing = False
self.stream = None
self.vol = 100