-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
Adam Klement edited this page Jul 23, 2026
·
1 revision
lwt transcribe meeting.mp4
lwt t meeting.mp4
lwt transcribe call.wav -o transcript.txtlwt transcribe meeting.wav --language cs --prompt "Technical API meeting"lwt transcribe video.mp4 --format srt -o subtitles.srt
lwt transcribe video.mp4 --format vtt -o subtitles.vttlwt transcribe meeting.mp4 --format json -o output.jsonRequires HuggingFace Diarization setup first.
lwt install diarization
lwt config set diarization.hf_token hf_YOUR_TOKEN
lwt transcribe panel.mp3 --diarize --speaker-names "Alice,Bob,Carol"Output:
[00:01:23] Alice: Good morning, let's start the meeting.
[00:01:45] Bob: Sounds good, I have the presentation ready.
Requires Ollama.
lwt ollama pull llama3.2
lwt transcribe standup.mp4 --summarize
lwt transcribe meeting.en.mp3 --translate-to Czechlwt transcribe meeting.mp4 \
--language en \
--diarize \
--speaker-names "Alice,Bob" \
--summarize \
-o meeting-notes.txtSee Commands for full reference.