From 545ff0f3f249056db04e554a21824143b61fdd06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Franusic?= Date: Mon, 17 Jun 2013 12:32:17 -0700 Subject: [PATCH] change demo to mode that works with my SSTV client --- sstv.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sstv.py b/sstv.py index 9c0127b..b860ae6 100644 --- a/sstv.py +++ b/sstv.py @@ -97,7 +97,7 @@ def byte_to_freq(value): if __name__ == '__main__': from PIL import Image - from grayscale import Robot8BW - image = Image.open('160x120bw.png') - s = Robot8BW(image, 48000, 16) + from color import MartinM1 + image = Image.open('320x256.png') + s = MartinM1(image, 48000, 16) s.write_wav('test.wav')