This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import whisper | |
import os | |
# Replace with the path to your input folder | |
input_folders = ['/mnt/d/OST/Land of the Lustrous/Disk 02/temp'] | |
model_name = 'medium' # Replace with the model name you want to use | |
print(f'Loading model: {model_name}') | |
model = whisper.load_model(model_name) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem Copies the original directory structure from F:\Music to D:\Music | |
rem xcopy /T %1 %2 | |
Robocopy %1 %2 /E /XF *.flac *.mp3 *.mp4 | |
for /R %1 %%i in (*.flac;*.mp3;*.mp4) do ( | |
rem check if file exists |