We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3335ab0 commit 10e0e55Copy full SHA for 10e0e55
src/superannotate/__init__.py
@@ -2,7 +2,7 @@
2
import sys
3
4
5
-__version__ = "4.4.6b1"
+__version__ = "4.4.6b2"
6
7
8
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
src/superannotate/lib/core/video_convertor.py
@@ -187,7 +187,7 @@ def _process(self):
187
interpolated_frames = {}
188
for timestamp in parameter["timestamps"]:
189
frames_mapping[
190
- int(math.ceil(timesstamp["timestamp"] / self.ratio))
+ int(math.ceil(timestamp["timestamp"] / self.ratio))
191
].append(timestamp)
192
frames_mapping = self.merge_first_frame(frames_mapping)
193
0 commit comments