File size: 1,124 Bytes
d9a03db
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Cloud Backend API Settings
# Local development: http://localhost:3000
# Production: https://your-render-app.onrender.com
API_URL=http://localhost:3000

# Security Key. Must match the API_KEY set in your server's .env file!
API_KEY=a_long_secure_token_for_local_worker_to_server_sync_98765

# Target Twitch Channel (whose chat to log, and stream audio to transcribe)
TWITCH_CHANNEL=winx_prinx

# Audio Capture Method:
# 'stream'      - Capture audio directly from the live Twitch stream using streamlink + ffmpeg (no mic setup required, runs on any PC).
# 'microphone'  - Capture direct microphone/system audio using your PC's audio input device.
CAPTURE_METHOD=stream

# Whisper Model Settings
# Available models: tiny, base, small, medium, large-v3
# 'base' is recommended for CPU, 'small' is recommended for GPU
WHISPER_MODEL=base

# Device to run Whisper on: 'cpu' or 'cuda' (for Nvidia GPUs)
# Note: For GTX 1650, you can use 'cuda' with 'float16' or 'int8' compute type.
WHISPER_DEVICE=cpu

# Compute type: 'float16' (GPU only), 'int8' (CPU/GPU, recommended for memory saving), or 'float32'
WHISPER_COMPUTE_TYPE=int8