Const-me / Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model
Mozilla Public License 2.0
8.37k stars 718 forks source link

When I tried to use WhisperPS transcribe a entire folder, the generated timestamp was not available. #70

Open linkwoodworking opened 1 year ago

linkwoodworking commented 1 year ago

I ues this commond Import-Module WhisperPS -DisableNameChecking $Model = Import-WhisperModel D:\ai_model\WhisperDesktop\ggml-model-whisper-medium.bin cd D:\test dir *.mp4 | Transcribe-File $Model | foreach { $_ | Export-SubRip ($_.SourceName + ".srt") } The timestamps in the srt file are all 00:00:00,000 --> 00:00:00,000

What did I do wrong?

zhengliuer commented 1 year ago

I encountered the same issue.

gthbiu commented 11 months ago

I like the PowerShell support, and I have the same problem as the other posters - all empty timestamps. Is there any solution for this? Thank you for the great tool!