From be45b15d646de569fad66dee9bd8092b98b2ae31 Mon Sep 17 00:00:00 2001 From: Star Brilliant Date: Sun, 15 Sep 2013 13:25:29 +0800 Subject: [PATCH] Border for neither white or black --- convert.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/convert.py b/convert.py index 5da6362..aeca360 100755 --- a/convert.py +++ b/convert.py @@ -73,8 +73,6 @@ def WriteComment(f, c, row, width, height, bottomReserved, fontsize, lifetime): styles += '{\\c&H%02X%02X%02x&}' % (c[5]&0xff, (c[5]>>8)&0xff, (c[5]>>16)&0xff) if c[5] == 0x000000: styles += '{\\3c&HFFFFFF&}' - else: - styles += '{\\bord0}' f.write('Dialogue: 3,%(start)s,%(end)s,Default,,0000,0000,0000,,%(styles)s%(text)s\n' % {'start': ConvertTimestamp(c[0]), 'end': ConvertTimestamp(c[0]+lifetime), 'styles': styles, 'text': text})