docs: require explicit ASR language in transcription commands
This commit is contained in:
@@ -67,7 +67,7 @@ Use this when the video is stored on the Windows host filesystem. Give this kind
|
||||
$SkillTranscription = "$env:LOCALAPPDATA\Temp\vedit-transcription"
|
||||
$Video = "D:\Videos\example.mkv"
|
||||
$VideoDir = Split-Path -Parent $Video
|
||||
uv run --directory $SkillTranscription funasr-nano $Video --track 2 --output-dir $VideoDir
|
||||
uv run --directory $SkillTranscription funasr-nano $Video --track 2 --language zh --output-dir $VideoDir
|
||||
```
|
||||
|
||||
For multiple tracks, run once per track and record each resulting JSON in the index.
|
||||
@@ -87,7 +87,7 @@ Then give the user a Linux shell command for the long transcription step:
|
||||
SKILL_TRANSCRIPTION="$HOME/.hermes/skills/media/video-edit-planner/scripts/transcription"
|
||||
VIDEO="$HOME/videos/example.mkv"
|
||||
VIDEO_DIR="$(dirname "$VIDEO")"
|
||||
uv run --directory "$SKILL_TRANSCRIPTION" funasr-nano "$VIDEO" --track 2 --output-dir "$VIDEO_DIR"
|
||||
uv run --directory "$SKILL_TRANSCRIPTION" funasr-nano "$VIDEO" --track 2 --language zh --output-dir "$VIDEO_DIR"
|
||||
```
|
||||
|
||||
If the user installed the skill somewhere else, adjust `SKILL_TRANSCRIPTION` accordingly.
|
||||
|
||||
Reference in New Issue
Block a user