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