diff --git a/warc_wat_url_processor.py b/warc_wat_url_processor.py index f8f73fe..7469112 100644 --- a/warc_wat_url_processor.py +++ b/warc_wat_url_processor.py @@ -60,7 +60,7 @@ def process_file(file_path): # Use zstd command-line tool for compression compressed_file_path = f'{output_file_path}.zst' - command_compress = f'zstd -f -T0 -12 --long {output_file_path} -o {compressed_file_path}' + command_compress = f'zstd -12 --long --force {output_file_path} -o {compressed_file_path}' try: # Run the compression command synchronously and wait for it to complete