Features: - Audio recording with pause/resume and visual feedback - Local Whisper transcription (tiny/base/small models) - 7 note types: instructions, capture, meeting, idea, daily, review, journal - Claude CLI integration for intelligent note processing - PKM context integration (reads vault files for better processing) - Auto-organization into type-specific folders - Daily notes with yesterday's task carryover - Language-adaptive responses (matches transcript language) - Custom icon and Windows desktop shortcut helpers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
341 B
Batchfile
13 lines
341 B
Batchfile
@echo off
|
|
:: Launch Voice Recorder App
|
|
:: Activate conda environment and run the recorder
|
|
|
|
set "CONDA_PATH=C:\Users\antoi\anaconda3\Scripts\activate.bat"
|
|
set "CONDA_ENV=test_env"
|
|
set "SCRIPT_DIR=%~dp0"
|
|
|
|
call %CONDA_PATH% %CONDA_ENV%
|
|
:: Use python (not pythonw) to see console output for debugging
|
|
python "%SCRIPT_DIR%VoiceRecorder.py"
|
|
pause
|