Open linkwoodworking opened 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
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") }
What did I do wrong?
I encountered the same issue.
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!
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,000What did I do wrong?