You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying out a big batch of videos and found some that call t.addi(start, end, [(index, shape)]) where start and end are the same value.
ValueError: IntervalTree: Null Interval objects not allowed in IntervalTree: Interval(3045100000000, 3045100000000, [(30, <Element '{http://www.w3.org/2000/svg}g' at 0x7ff8042cff90>)])
I've tired to solve it on mine by just adding a "if start == end: continue" just before but I'm not sure if that's a good fix. Some of these take a very long time to process.
The text was updated successfully, but these errors were encountered:
I'm trying out a big batch of videos and found some that call
t.addi(start, end, [(index, shape)])
where start and end are the same value.ValueError: IntervalTree: Null Interval objects not allowed in IntervalTree: Interval(3045100000000, 3045100000000, [(30, <Element '{http://www.w3.org/2000/svg}g' at 0x7ff8042cff90>)])
I've tired to solve it on mine by just adding a "if start == end: continue" just before but I'm not sure if that's a good fix. Some of these take a very long time to process.
The text was updated successfully, but these errors were encountered: