yum-archive/TaSTT-Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model

git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper

KonstantinC++ console example now outputs text files when asked348c0ad

master
357 B7 linesraw
1#pragma once
2#include "../../Whisper/API/iContext.cl.h"
3
4// These functions print output segments into text files of various formats
5HRESULT writeText( Whisper::iContext* context, LPCTSTR audioPath, bool timestamps );
6HRESULT writeSubRip( Whisper::iContext* context, LPCTSTR audioPath );
7HRESULT writeWebVTT( Whisper::iContext* context, LPCTSTR audioPath );