The error [Errno 2] No such file or directory: 'A Girl Wakes/pt.wav' indicates that the software tried to find an audio file pt.wav inside a folder or path that includes a space in its name (A Girl Wakes). This is a typical file path issue in Windows when spaces or special characters are present.
Possible causes:
- The video file
A Girl Wakes... (or the output folder) contains a space, which can break command-line arguments used by ffmpeg/inner tools. - The file
pt.wav is not in the expected location (the path may be incorrectly constructed during processing).
Immediate solutions:
- Rename the video file (and the folder if any) to a short name without spaces, special characters, or non-ASCII characters. For example, rename
A Girl Wakes.mp4 to A_Girl_Wakes.mp4 or video.mp4. - Ensure the file path is short – move the video to a shallow directory like
F:/work/video.mp4. - Check the
_video_out/ folder – if you are using a custom output path, make sure it also has no spaces or special characters.
If the problem persists, provide the last 30 lines of the log file from logs/ folder (e.g., F:/win-videotrans-v3.83/logs/current.log). This will help identify whether the file was never generated or the path was wrong from the start.