Skip to content

Commit

Permalink
Changed provenance generation to actually provide processing time in ms
Browse files Browse the repository at this point in the history
  • Loading branch information
Sara Veldhoen committed May 3, 2024
1 parent cf4322a commit afc2c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectrogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def run(
"Optionally, also extract the audio to mp3 and generate spectrogram image"
),
start_time_unix=start_time,
processing_time_ms=time() - start_time,
processing_time_ms=(time() - start_time) * 1000,
input_data={
"input_file_path": input_file_path,
"keyframe_timestamps": str(keyframe_timestamps),
Expand Down

0 comments on commit afc2c10

Please sign in to comment.