Skip to content

Commit

Permalink
fix cache making duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
couleurm committed Mar 26, 2024
1 parent 1b31364 commit 5a73119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target/jamba.vpy
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ verb(f"CONTEXT: __file__: {__file__}")
_, input_ext = path.splitext(input_video)

temp_folder = gettempdir()
cache_file = path.join(temp_folder, path.basename(input_video) + "-ffms2_index")
cache_file = path.join(temp_folder, path.basename(input_video) + str(path.getsize(input_video)) + "-ffms2_index")

if input_ext == '.avi':

Expand Down

0 comments on commit 5a73119

Please sign in to comment.