From 5fe82f474c20cf4758362c1f29c141b0d6f8c0b3 Mon Sep 17 00:00:00 2001 From: ZXGuesser Date: Mon, 16 Sep 2024 14:12:04 +0100 Subject: [PATCH] Set lower raspi-teletext output level Add Nemetext to known services --- scripts/known_services.json | 5 +++-- scripts/runvbit2.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/known_services.json b/scripts/known_services.json index 77bf0a7..470c23f 100644 --- a/scripts/known_services.json +++ b/scripts/known_services.json @@ -15,6 +15,7 @@ {"name":"Ceefax (Yorks and Lincs)","type":"svn","url":"https://internal.nathanmediaservices.co.uk/svn/ceefax/Yorks&Lincs","path":"CeefaxYorksAndLincs", "subservices":[{"name":"CeefaxCommon","type":"svn","url":"https://internal.nathanmediaservices.co.uk/svn/ceefax/national","path":"National","required":true}]} ]}, {"name":"Chunkytext","type":"git","url":"https://zxnet.co.uk/git/cf.git","path":"Chunkytext"}, - {"name":"SPARK","type":"git","url":"https://github.com/ZXGuesser/spark-teletext.git","path":"SPARK"} + {"name":"SPARK","type":"git","url":"https://github.com/ZXGuesser/spark-teletext.git","path":"SPARK"}, + {"name":"Nemetext","type":"git","url":"https://github.com/JamieNemeth/nemetext.git","path":"Nemetext"} ] -} \ No newline at end of file +} diff --git a/scripts/runvbit2.py b/scripts/runvbit2.py index 5721422..8c5d5d5 100755 --- a/scripts/runvbit2.py +++ b/scripts/runvbit2.py @@ -57,7 +57,7 @@ def signalHandler(_signo, _stack_frame): for i in range(linesPerField): mask = (mask << 1) & 0xffff - destproc = [os.path.join(os.getenv('HOME'), "raspi-teletext/teletext"), "-m", "0x{:04x}".format(mask), "-"] + destproc = [os.path.join(os.getenv('HOME'), "raspi-teletext/teletext"), "-m", "0x{:04x}".format(mask), "-l", "66", "-"] if prerun: subprocess.run(prerun)