transmit modulated image in GIMP plugin

ironpython
András Veres-Szentkirályi 2013-11-04 14:33:11 +01:00
rodzic 0347aa7a3b
commit d09a88540d
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -9,6 +9,7 @@ from tempfile import mkstemp
from PIL import Image, ImageTk
from Tkinter import Tk, Label, Button
from pysstv import __main__ as pysstv_main
from pysstv.examples.pyaudio_sstv import PyAudioSSTV
import os
MODULE_MAP = pysstv_main.build_module_map()
@ -19,7 +20,7 @@ class Transmitter(object):
self.root = root
def start_tx(self, e):
pdb.gimp_message("TX!") # TODO
PyAudioSSTV(self.sstv).execute()
def close(self, e):
self.root.destroy()