From 14e17c8af377c3203306da124445511421118cd3 Mon Sep 17 00:00:00 2001 From: Star Brilliant Date: Mon, 3 Feb 2014 19:22:00 +0800 Subject: [PATCH] text_opaque -> text_opacity --- danmaku2ass.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/danmaku2ass.py b/danmaku2ass.py index 0cf51f4..ef854a2 100755 --- a/danmaku2ass.py +++ b/danmaku2ass.py @@ -685,7 +685,7 @@ def export(func): @export -def Danmaku2ASS(input_files, output_file, stage_width, stage_height, reserve_blank=0, font_face=_('(FONT) sans-serif')[7:], font_size=25.0, text_opaque=1.0, comment_duration=5.0, is_reduce_comments=False, progress_callback=None): +def Danmaku2ASS(input_files, output_file, stage_width, stage_height, reserve_blank=0, font_face=_('(FONT) sans-serif')[7:], font_size=25.0, text_opacity=1.0, comment_duration=5.0, is_reduce_comments=False, progress_callback=None): fo = None comments = ReadComments(input_files, font_size) try: @@ -693,7 +693,7 @@ def Danmaku2ASS(input_files, output_file, stage_width, stage_height, reserve_bla fo = ConvertToFile(output_file, 'w', encoding='utf-8-sig', errors='replace', newline='\r\n') else: fo = sys.stdout - ProcessComments(comments, fo, stage_width, stage_height, reserve_blank, font_face, font_size, text_opaque, comment_duration, is_reduce_comments, progress_callback) + ProcessComments(comments, fo, stage_width, stage_height, reserve_blank, font_face, font_size, text_opacity, comment_duration, is_reduce_comments, progress_callback) finally: if output_file and fo: fo.close()