Rotem Dan

Results 256 comments of Rotem Dan

Yes, when I fixed the script a few months ago, I didn't fix the auto-expand for the description. On `0.2.8` I changed to: ```js // Expands video description function ensureExpandedVideoDescription()...

The word entries in the timeline don't include punctuation. There are several reasons for that: * The timeline was originally designed for text-to-speech word highlighting, where highlighting punctuation is usually...

The error shows there is an issue with DirectML (Windows native API for GPU acceleration on introduced on Windows 10 v1903) when running speech language detection to detect the language...

What options are you passing to `align` (really important)? `loadExecutablePackage` just resolves to the internal package corresponding to to `buildKind: WhisperCppBuild`. It doesn't do anything that could cause a hang....

Oh, forgot, that function also tries to download the build if it doesn't exist locally. The only change made between the versions is [this change](https://github.com/echogarden-project/echogarden/commit/5608b75f99e8db706eea0e6cc9de79e20d4acdfe)? It could be that it...

What's the particular option object you pass to `align`? (things like engine, other options, etc?). The exact audio matters less at this point.

If there is no special options, then it should use the `dtw` engine. But you said the issue is with `whisper.cpp`? It would be much easier If I could see...

I'm not 100% sure what you meant but I guess you want to synthesize subtitles such that they match the start and end times of individual cues? Just matching the...

I currently pass all audio files to FFMpeg for several reasons: * FFMpeg detects file type, not just based on file extension, but also based on content, so if the...

Getting everything streaming, either from disk (less likely), or say, a single in-memory copy of the audio in a compact form like 16-bit interleaved, would be great, but not very...