sskodje / ScreenRecorderLib

A .NET library for screen recording in Windows, using native Microsoft Media Foundation for realtime encoding to h264 video or PNG images.
MIT License
414 stars 94 forks source link

Support for Captions/Video Transcript #288

Closed rwedoff closed 8 months ago

rwedoff commented 8 months ago

Do you have support for Windows Speech Recognizer for captions for the video? Could this be exposed via recording options as another output? https://learn.microsoft.com/en-us/uwp/api/windows.media.speechrecognition.speechrecognizer?view=winrt-22621

sskodje commented 8 months ago

There's no support for that. If what you are after is to burn text into the video like permanent captions, you can probably implement it as an overlay and modify one of the existing ones. If you are after the text directly, it's probably easier to implement it in your own app from the audio source directly.

rwedoff commented 8 months ago

Thanks for the quick response!