We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c24ac65 commit 7082dc0Copy full SHA for 7082dc0
funscript_editor/ui/minimal.py
@@ -71,6 +71,8 @@ def __init__(self,
71
start_frame = int(round(float(start_time)/(float(1000)/float(fps)))) if start_time > 0.0 else 0
72
end_frame = int(round(float(end_time)/(float(1000)/float(fps)))) if end_time > 0.0 and start_time < end_time else -1
73
74
+ self.__logger.info("Set End Time to Frame Number %d", end_frame)
75
+
76
self.funscript_generator = FunscriptGenerator(
77
FunscriptGeneratorParameter(
78
video_path = video_file,
0 commit comments