From d09a88540da1c1f0382d28d882cf32817976d020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Mon, 4 Nov 2013 14:33:11 +0100 Subject: [PATCH] transmit modulated image in GIMP plugin --- pysstv/examples/gimp-plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pysstv/examples/gimp-plugin.py b/pysstv/examples/gimp-plugin.py index 2dc758c..eee2d9c 100755 --- a/pysstv/examples/gimp-plugin.py +++ b/pysstv/examples/gimp-plugin.py @@ -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()