Spaces:
Running
Running
File size: 284 Bytes
4ab551f |
1 2 3 4 5 6 7 8 9 10 |
from pathlib import Path
from sorawm.core import SoraWM
if __name__ == "__main__":
input_video_path = Path("resources/dog_vs_sam.mp4")
output_video_path = Path("outputs/sora_watermark_removed.mp4")
sora_wm = SoraWM()
sora_wm.run(input_video_path, output_video_path)
|