aboutsummaryrefslogtreecommitdiff
path: root/mkiv.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-02-21 23:43:16 -0500
committerGraham Northup <grissess@nexusg.org>2017-02-21 23:44:05 -0500
commit12f9e5ecaa7c4362d80b4aa5a5391b9132ac1cab (patch)
treed411c28f5410a68156d5d1e2ce5cbec5127eeaf7 /mkiv.py
parent19d054741ba632d4cc664b89e694d07fe0b568f1 (diff)
How was drums.py working...
Also minorly improved stability of mkiv.py
Diffstat (limited to 'mkiv.py')
-rw-r--r--mkiv.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/mkiv.py b/mkiv.py
index f363027..e914f8a 100644
--- a/mkiv.py
+++ b/mkiv.py
@@ -691,7 +691,10 @@ for fname in args:
ivtext = ET.SubElement(ivstreams, 'stream', type='text')
for tev in textstream:
text = tev.ev.text
- text = text.decode('utf8')
+ try:
+ text = text.decode('utf8')
+ except UnicodeDecodeError:
+ text = 'base64:' + text.encode('base64')
ivev = ET.SubElement(ivtext, 'text', time=str(tev.abstime), type=type(tev.ev).__name__, text=text)
ivaux = ET.SubElement(ivstreams, 'stream')