68 Commits

Author SHA1 Message Date
Sarah Mak 1c8d6a682c Update antivirus warning and user caution in README
Clarified warning about potential command injection risks and emphasized the importance of user caution.
2026-02-22 17:16:57 +08:00
ThePlasmak a2dc2c2ef9 fix: skip-existing multi-format check, no-timestamps format list, speaker-names warning, batch skip count
- Fixed --skip-existing in multi-format mode (--format srt,text) to check
  ALL format outputs before skipping, not just the first one
- Fixed --no-timestamps conflict check to include lrc, ass, ttml formats
  (all require timing info, same as srt/vtt/tsv)
- Fixed --speaker-names silently doing nothing without --diarize; now
  prints a clear warning
- Batch summary now shows skipped file count when --skip-existing is
  active: Done: 8 files (3 skipped), ...

Bumps version to 1.5.1
v1.5.1
2026-02-19 00:26:50 +08:00
Sarah Mak 219ebcaa3c Improve formatting and details for parakeet reference
Reformatted the parakeet section for clarity and detail.
2026-02-19 00:02:23 +08:00
ThePlasmak ee491691f2 docs: add cross-reference to parakeet skill in See Also section 2026-02-18 23:59:00 +08:00
ThePlasmak 056d99a54c docs: polish prose 2026-02-18 19:55:37 +08:00
ThePlasmak 59e9ef7a47 docs: title-case 'With Your Agent' header 2026-02-18 19:34:12 +08:00
ThePlasmak 3c5e60cb74 docs: update antivirus note 2026-02-18 19:33:48 +08:00
ThePlasmak 0a93456457 docs: title-case README headers 2026-02-18 19:31:38 +08:00
ThePlasmak 7bca1b75f5 chore: release v1.5.0 v1.5.0 2026-02-18 19:30:51 +08:00
ThePlasmak 8f9c970f7f docs: update default model from distil-large-v3 to distil-large-v3.5 2026-02-18 18:39:21 +08:00
ThePlasmak 28b64fdcae fix: setup.sh --check hangfix + skill.json ffmpeg optional
- setup.sh --check: replace full pyannote.audio import with
  importlib.util.find_spec + metadata version lookup; avoids
  30-60s CUDA init, check now completes in ~12s
- skill.json: move ffmpeg from requires.bins to optionalBins;
  ffmpeg not needed for basic transcription since PyAV handles
  decoding (only needed for --burn-in, --normalize, --denoise,
  --channel, --export-speakers)
- CHANGELOG.md + SKILL.md: document both fixes
2026-02-18 18:35:20 +08:00
ThePlasmak 9050eaf1a5 fix(transcribe): clean-filler word list, fuzzy search tokens, URL temp cleanup
- fix(clean-filler): remove_filler_words() now also filters seg['words'], so
  --max-chars-per-line / --max-words-per-line subtitle formatters (SRT/VTT/ASS/TTML)
  correctly omit filler words; previously only seg['text'] was cleaned
- fix(clean-filler): add leading/double-comma and orphaned-comma cleanup
  (e.g. ',,' → ',', ',?' → '?') to prevent punctuation artifacts
- fix(search): fuzzy match now checks individual word tokens so short queries
  like 'wrld' correctly match 'world'; also adds multi-word phrase fallback
- fix(detect-language-only): clean up URL-downloaded temp dirs before exit;
  continue processing remaining files on error instead of exiting immediately
2026-02-18 18:35:20 +08:00
ThePlasmak 01f130b1eb fix: suppress onnxruntime WSL2 device-discovery warning on every run
Pre-import onnxruntime at startup with stderr redirected to /dev/null,
so the harmless [W:onnxruntime:Default, device_discovery.cc:211] warning
about missing /sys/class/drm/card0/device/vendor is silenced before any
real output begins. Subsequent lazy imports (Silero VAD) hit the cache.

docs(skill): add missing ASS/LRC/HTML trigger phrases and batch chapters caveat

- Add 'ASS subtitles', 'aegisub format', 'LRC subtitles', 'timed lyrics',
  'HTML transcript', 'confidence-colored transcript' to trigger phrases
- Note that --chapters-file takes a single path and overwrites in batch mode
2026-02-18 18:35:20 +08:00
ThePlasmak c0ddd86426 chore: revert to version 1.5.0 2026-02-18 18:35:20 +08:00
ThePlasmak 4316f88c4c fix(multi-format): create output dir in single-file mode
When --format srt,text is used with a single file and -o <path> (no
trailing slash, directory doesn't exist yet), the code was falling
through to the file-path branch and writing all formats to the same
file. Fix: treat output as directory whenever multiple formats are
requested and the path has no extension.

Also expand SKILL.md agent guidance with explicit 'only add when' rules
for all new v1.5.0 features (--clean-filler, --channel, --max-chars-per-
line, --detect-paragraphs, --speaker-names, --hotwords, --prefix,
--detect-language-only, --stats-file, --parallel, --retries, --burn-in,
--keep-temp, --output-template, multi-format), and update output format
relay guidance to cover ASS, LRC, multi-format, stats, and language
detection.
2026-02-18 18:35:19 +08:00
ThePlasmak 53d5c9c75a chore: consolidate all changes as v1.5.0
All features added in this session (formerly labeled v1.7.0–v1.13.0 and
the prior v1.10.0 CHANGELOG entry) are now a single v1.5.0 release.

Versions corrected:
- SKILL.md: 1.13.0 → 1.5.0
- skill.json: 1.10.0 → 1.5.0
- CHANGELOG.md: collapsed all intermediate versions into [1.5.0]

Going forward: only bump version when explicitly asked.
2026-02-18 18:35:19 +08:00
ThePlasmak 9bc3ab42c3 docs: improve agent guidance for all v1.5–1.13 features
- Expand 'When to Use' with: podcast RSS, language-map, search, chapters,
  speaker export, CSV output, batch ETA
- Add trigger phrases for all new features (search, chapters, TTML,
  speaker export, CSV, podcast, language-map)
- Rewrite 'Agent guidance' section with per-feature rules for all flags
  added since v1.5: search, chapters, speaker export, language-map, RSS,
  filter-hallucinations, merge-sentences, output format relay guidance
- Add 'Output format for agent relay' guidance: when to show output to
  user directly vs write to -o file
- Add chapter stdout separator: '=== CHAPTERS (N) ===' header so agents
  can distinguish chapter list from transcript text
- Expand tags: add podcast, chapters, search, csv, ttml, batch
2026-02-18 18:35:19 +08:00
ThePlasmak 5ba682d774 feat: add CSV output, language-map, batch ETA estimate
- --format csv: spreadsheet-ready output with header row (start_s,end_s,text);
  proper RFC 4180 quoting via stdlib csv module; adds speaker column when diarized
- --language-map MAP: per-file language override for batch mode via fnmatch
  glob patterns; inline ('*.mp3=en,*.wav=fr') or JSON file ('@map.json');
  parallel mode uses copy.copy(args) for thread safety
- Batch ETA: sequential batch jobs show [N/total] filename | ETA: Xm Ys
  before each file; computed from avg time/file * remaining files;
  printed to stderr so OpenClaw surfaces it to users in real time

Bumps version to 1.13.0
2026-02-18 18:35:19 +08:00
ThePlasmak d15785e69c feat: add TTML output, transcript search, chapter detection, speaker audio export
- --format ttml: W3C TTML 1.0 (DFXP) broadcast-standard subtitle format
  compatible with Netflix, Amazon Prime, BBC; supports speaker labels and
  --max-words-per-line
- --search TERM: search transcript for keyword and print matching segments
  with timestamps; --search-fuzzy for approximate matching
- --detect-chapters: auto-detect chapter breaks from silence gaps between
  segments; configurable via --chapter-gap (default 8s); three output
  formats (youtube/text/json); --chapters-file to save to file
- --export-speakers DIR: after --diarize, export each speaker's audio turns
  as separate WAV files using ffmpeg aselect filter; respects --speaker-names

Bumps version to 1.12.0
2026-02-18 18:35:19 +08:00
ThePlasmak ad473b8f3c feat: v1.8.0 distil auto-condition, log-level, ffmpeg clarification, quick-ref additions
- Auto-disable condition_on_previous_text for distil-* models (HuggingFace rec.)
  to prevent repetition loops with the default distil-large-v3.5 model
- Add --condition-on-previous-text override flag to opt back in
- Add --log-level flag (debug/info/warning/error) for library log control
- Clarify ffmpeg is optional: only needed for --burn-in/--normalize/--denoise
  (PyAV bundled with faster-whisper handles basic audio decoding)
- Add --hotwords, --prefix, --revision examples to Quick Reference table
- Update distil model table note about auto-disable behaviour
- Update SKILL.md to v1.8.0
2026-02-18 18:35:19 +08:00
ThePlasmak c0837d9cf2 fix(faster-whisper): rename --without-timestamps to --no-timestamps 2026-02-18 18:35:19 +08:00
ThePlasmak 5cb6fbb54f feat(faster-whisper): add 17 new features — upstream params + LRC/detect-language/merge-sentences/stats/stdin/template (v1.6.0) 2026-02-18 18:35:19 +08:00
Sarah Mak 227d5113d9 Fix typo in README.md regarding faster-whisper 2026-02-18 16:25:30 +08:00
ThePlasmak 5fc2fb55ef chore: bump version to 1.4.5 v1.4.5 2026-02-17 20:22:50 +08:00
ThePlasmak 3e86c73e4f chore: bump version to 1.4.4 v1.4.4 2026-02-17 20:20:05 +08:00
ThePlasmak 6a6eecd4c0 chore: bump version to 1.4.3 v1.4.3 2026-02-17 20:07:49 +08:00
ThePlasmak d6e18ba7b0 refactor: remove --precise flag, alignment is automatic
- wav2vec2 alignment runs automatically whenever word timestamps are needed
- --precise kept as hidden backward-compat alias for --word-timestamps
- Simpler UX: fewer flags, same result
2026-02-17 18:54:17 +08:00
ThePlasmak 79719689a7 feat: auto-run wav2vec2 alignment whenever word timestamps are computed
- Alignment now triggers for --word-timestamps, --precise, --diarize, --min-confidence
- --precise becomes shorthand for --word-timestamps (both get alignment)
- No overhead for basic transcription (alignment only runs when words needed)
- Update SKILL.md: document auto-alignment behavior, simplify agent guidance
2026-02-17 18:49:48 +08:00
ThePlasmak aee4bb76d7 chore: bump version to 1.4.1 v1.4.1 2026-02-17 18:48:03 +08:00
ThePlasmak ae1f92a8c5 chore: bump version to 1.4.0 2026-02-17 18:47:53 +08:00
ThePlasmak d02a385363 feat: precise word timestamps via wav2vec2 forced alignment (--precise)
- Add --precise flag for wav2vec2 forced alignment (~10ms word accuracy)
- Uses torchaudio MMS model (multilingual, 1000+ languages)
- Model cached across files for efficient batch processing
- Runs before diarization when both flags used (improves speaker assignment)
- Auto-enables word timestamps when --precise is set
- Graceful fallback: segments with unsupported chars keep original timestamps
- Install torchaudio alongside torch in setup.sh
- Update SKILL.md with --precise documentation and agent guidance
2026-02-17 18:46:23 +08:00
ThePlasmak fdfe6e2567 chore: remove stale release zip 2026-02-17 18:14:22 +08:00
ThePlasmak c7f565aa72 feat: SRT/VTT subtitles, speaker diarization, URL input, batch processing, initial prompt, confidence filtering
- Add --format srt/vtt for subtitle output (word timestamps auto-enabled)
- Add --diarize for speaker identification via pyannote.audio
- Add URL/YouTube auto-download via yt-dlp
- Add batch processing with glob patterns, directories, multiple files
- Add --initial-prompt to condition model with domain terminology
- Add --min-confidence to filter low-confidence segments
- Add --skip-existing for resumable batch workflows
- Add performance stats (duration, processing time, realtime factor)
- Unify output format under --format flag (text/json/srt/vtt)
- Keep --json as hidden backward-compatible alias
- Update setup.sh with --diarize flag for optional pyannote install
- Comprehensive SKILL.md rewrite with new features documented
2026-02-17 18:09:46 +08:00
ThePlasmak be70bbe7e7 chore: bump version to 1.2.0 v1.2.0 2026-02-17 15:07:22 +08:00
ThePlasmak 0e836ebca6 chore: bump version to 1.1.0 v1.1.0 2026-02-17 14:59:21 +08:00
ThePlasmak b8ff9d25a8 chore: bump version to 1.0.12 v1.0.12 2026-02-17 14:31:31 +08:00
ThePlasmak fd90f80e0c chore: bump version to 1.0.11 v1.0.11 2026-02-17 14:29:17 +08:00
ThePlasmak dde4b1c67c chore: bump version to 1.0.9 v1.0.9 2026-02-17 14:19:21 +08:00
ThePlasmak 0781dd1eca docs: rebrand from Moltbot/MoltHub to OpenClaw/ClawHub 2026-02-14 23:49:17 +08:00
ThePlasmak 38dc3b3a17 fix: remove Windows-native references from SKILL.md
ClawHub extension whitelist drops .ps1/.cmd files from published packages,
so SKILL.md should not reference scripts that won't be distributed.
v1.0.7
2026-02-14 23:44:17 +08:00
ThePlasmak 1d23de60ff chore: bump version to 1.0.6 v1.0.6 2026-02-14 23:42:16 +08:00
ThePlasmak 39154561a0 chore: add .clawdhubignore to exclude docs from published package 2026-02-14 23:40:29 +08:00
ThePlasmak 8605de9b3a fix: add requires.bins to skill.json, update moltbot→openclaw metadata
- skill.json: added requires.bins (python3, ffmpeg) and platforms field
- SKILL.md: updated metadata key from moltbot to openclaw
- Bumped version to 1.0.5
2026-02-14 23:31:58 +08:00
ThePlasmak 0ea4e07299 Add writing-skills' generated files to .gitignore 2026-01-30 02:45:05 +08:00
ThePlasmak 614cf89195 Bump version to 1.0.4 v1.0.4 2026-01-30 02:32:30 +08:00
ThePlasmak 91e80b03a2 Bump version to sync with MoltHub 2026-01-30 02:28:29 +08:00
ThePlasmak 8b158852b7 chore: bump version to 1.0.2 v1.0.2 2026-01-30 02:12:56 +08:00
ThePlasmak f0a334517d Improve skill discovery, error handling, some copyediting 2026-01-30 02:00:22 +08:00
ThePlasmak d8665415ad Add skill.json 2026-01-30 01:59:51 +08:00
ThePlasmak f19be1f931 Edit README to use "agent" instead of "Moltbot" to reduce future confusion 2026-01-30 01:46:41 +08:00