remove same file extension constraint

This commit is contained in:
harisreedhar
2025-11-14 14:44:42 +05:30
committed by henryruhs
parent 92b1e1b3e3
commit 51d4ec63b0
16 changed files with 31 additions and 62 deletions
+3 -3
View File
@@ -109,7 +109,7 @@ def test_merge_video() -> None:
create_temp_directory(target_path)
extract_frames(target_path, (452, 240), 25.0, 0, 1)
assert merge_video(target_path, 25.0, (452, 240), 25.0, 0, 1) is True
assert merge_video(target_path, 25.0, (452, 240), 25.0, 0, 1, target_path) is True
clear_temp_directory(target_path)
@@ -152,7 +152,7 @@ def test_restore_audio() -> None:
for output_audio_encoder in output_audio_encoders:
state_manager.init_item('output_audio_encoder', output_audio_encoder)
copy_file(target_path, get_temp_file_path(target_path))
copy_file(target_path, get_temp_file_path(target_path, output_path))
assert restore_audio(target_path, output_path, 0, 270) is True
@@ -179,7 +179,7 @@ def test_replace_audio() -> None:
for output_audio_encoder in output_audio_encoders:
state_manager.init_item('output_audio_encoder', output_audio_encoder)
copy_file(target_path, get_temp_file_path(target_path))
copy_file(target_path, get_temp_file_path(target_path, output_path))
assert replace_audio(target_path, get_test_example_file('source.mp3'), output_path) is True
assert replace_audio(target_path, get_test_example_file('source.wav'), output_path) is True
+1 -1
View File
@@ -21,7 +21,7 @@ def before_all() -> None:
def test_get_temp_file_path() -> None:
temp_directory = tempfile.gettempdir()
assert get_temp_file_path(get_test_example_file('target-240p.mp4')) == os.path.join(temp_directory, 'facefusion', 'target-240p', 'temp.mp4')
assert get_temp_file_path(get_test_example_file('target-240p.mp4'), get_test_example_file('target-240p.mp4')) == os.path.join(temp_directory, 'facefusion', 'target-240p', 'temp.mp4')
def test_get_temp_directory_path() -> None: