Merge pull request #32 from Goshin/master
Fix potential type error when processing Tudou danmaku.
This commit is contained in:
commit
08458c5edf
@ -213,10 +213,10 @@ def ReadCommentsTudou2(f, fontsize):
|
||||
try:
|
||||
c = str(comment['content'])
|
||||
prop = json.loads(str(comment['propertis']) or '{}')
|
||||
size = prop.get('size', 1)
|
||||
size = int(prop.get('size', 1))
|
||||
assert size in (0, 1, 2)
|
||||
size = {0: 0.64, 1: 1, 2: 1.44}[size] * fontsize
|
||||
pos = prop.get('pos', 3)
|
||||
pos = int(prop.get('pos', 3))
|
||||
assert pos in (0, 3, 4, 6)
|
||||
yield (
|
||||
int(comment['playat'] * 0.001), int(comment['createtime'] * 0.001), i, c,
|
||||
|
Loading…
Reference in New Issue
Block a user