omni-captions-skills 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/PKG-INFO +14 -3
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/README.md +9 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/README_zh.md +9 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/pyproject.toml +6 -3
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-LaiCut/SKILL.md +1 -4
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-convert/SKILL.md +1 -2
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-download/SKILL.md +1 -2
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-transcribe/SKILL.md +1 -2
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-translate/SKILL.md +1 -2
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.claude-plugin/marketplace.json +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.claude-plugin/plugin.json +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.github/workflows/publish.yml +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.github/workflows/skills-install.yml +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.github/workflows/test.yml +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.gitignore +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/CLAUDE.md +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/LICENSE +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/build.sh +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/lattifai-1.2.2.tar.gz +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/lattifai_captions-0.1.0.tar.gz +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/lattifai_core-0.6.1.tar.gz +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/omnicaptions-0.1.0.tar.gz +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/src/omnicaptions/__init__.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/src/omnicaptions/__main__.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/src/omnicaptions/caption.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/src/omnicaptions/cli.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/src/omnicaptions/config.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/src/omnicaptions/prompts/transcription_dotey.md +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/tests/data/SA1.mp3 +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/tests/data/SA1.vtt +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/tests/data/karaoke_test.json +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/tests/test_cli_convert.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/tests/test_cli_entrypoint.py +0 -0
- {omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/tests/test_import.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omni-captions-skills
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: AI-powered media transcription with Claude Code skills
|
|
5
5
|
Author: LattifAI
|
|
6
6
|
License-Expression: MIT
|
|
@@ -20,12 +20,14 @@ Requires-Dist: google-genai>=1.0.0
|
|
|
20
20
|
Requires-Dist: lattifai-captions>=0.1.6
|
|
21
21
|
Requires-Dist: yt-dlp>=2025.12.08
|
|
22
22
|
Provides-Extra: all
|
|
23
|
-
Requires-Dist:
|
|
23
|
+
Requires-Dist: lattifai[diarization]>=1.3.1; extra == 'all'
|
|
24
|
+
Requires-Dist: pytest>=8.0.0; extra == 'all'
|
|
25
|
+
Requires-Dist: ruff>=0.4.0; extra == 'all'
|
|
24
26
|
Provides-Extra: dev
|
|
25
27
|
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
26
28
|
Requires-Dist: ruff>=0.4.0; extra == 'dev'
|
|
27
29
|
Provides-Extra: laicut
|
|
28
|
-
Requires-Dist: lattifai[diarization]>=1.3.
|
|
30
|
+
Requires-Dist: lattifai[diarization]>=1.3.1; extra == 'laicut'
|
|
29
31
|
Description-Content-Type: text/markdown
|
|
30
32
|
|
|
31
33
|
# omni-captions-skills
|
|
@@ -94,6 +96,15 @@ Vibe coding 就是不用自己写代码的编程方式。
|
|
|
94
96
|
|
|
95
97
|
Standard transcription gives "approximate" timestamps. LaiCut uses [LattifAI](https://lattifai.com/) Lattice-1 model to match text precisely to audio waveforms, achieving **word-level accuracy**.
|
|
96
98
|
|
|
99
|
+
**Install LaiCut:**
|
|
100
|
+
```bash
|
|
101
|
+
# Using uv (recommended, auto-configures package index)
|
|
102
|
+
uv pip install "omni-captions-skills[laicut]"
|
|
103
|
+
|
|
104
|
+
# Using pip
|
|
105
|
+
pip install "omni-captions-skills[laicut]" --extra-index-url https://lattifai.github.io/pypi/simple/
|
|
106
|
+
```
|
|
107
|
+
|
|
97
108
|
**Supported languages:** English, Chinese, German, and mixed
|
|
98
109
|
|
|
99
110
|
**Recommended workflow:** Align before translate (translated text doesn't match original audio)
|
|
@@ -64,6 +64,15 @@ Vibe coding 就是不用自己写代码的编程方式。
|
|
|
64
64
|
|
|
65
65
|
Standard transcription gives "approximate" timestamps. LaiCut uses [LattifAI](https://lattifai.com/) Lattice-1 model to match text precisely to audio waveforms, achieving **word-level accuracy**.
|
|
66
66
|
|
|
67
|
+
**Install LaiCut:**
|
|
68
|
+
```bash
|
|
69
|
+
# Using uv (recommended, auto-configures package index)
|
|
70
|
+
uv pip install "omni-captions-skills[laicut]"
|
|
71
|
+
|
|
72
|
+
# Using pip
|
|
73
|
+
pip install "omni-captions-skills[laicut]" --extra-index-url https://lattifai.github.io/pypi/simple/
|
|
74
|
+
```
|
|
75
|
+
|
|
67
76
|
**Supported languages:** English, Chinese, German, and mixed
|
|
68
77
|
|
|
69
78
|
**Recommended workflow:** Align before translate (translated text doesn't match original audio)
|
|
@@ -64,6 +64,15 @@ Vibe coding 就是不用自己写代码的编程方式。
|
|
|
64
64
|
|
|
65
65
|
普通转录的时间戳只是"大概",LaiCut 使用 [LattifAI](https://lattifai.com/) Lattice-1 模型将文本与音频波形精确匹配,实现**词级精度**。
|
|
66
66
|
|
|
67
|
+
**安装 LaiCut:**
|
|
68
|
+
```bash
|
|
69
|
+
# 使用 uv(推荐,自动配置包索引)
|
|
70
|
+
uv pip install "omni-captions-skills[laicut]"
|
|
71
|
+
|
|
72
|
+
# 使用 pip
|
|
73
|
+
pip install "omni-captions-skills[laicut]" --extra-index-url https://lattifai.github.io/pypi/simple/
|
|
74
|
+
```
|
|
75
|
+
|
|
67
76
|
**支持语言:** 英语、中文、德语及混合
|
|
68
77
|
|
|
69
78
|
**推荐工作流:** 先对齐再翻译(翻译文本与原始音频不匹配,无法对齐)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "omni-captions-skills"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "AI-powered media transcription with Claude Code skills"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -37,10 +37,10 @@ dev = [
|
|
|
37
37
|
"ruff>=0.4.0",
|
|
38
38
|
]
|
|
39
39
|
laicut = [
|
|
40
|
-
"lattifai[diarization]>=1.3.
|
|
40
|
+
"lattifai[diarization]>=1.3.1",
|
|
41
41
|
]
|
|
42
42
|
all = [
|
|
43
|
-
"
|
|
43
|
+
"omni-captions-skills[dev,laicut]",
|
|
44
44
|
]
|
|
45
45
|
|
|
46
46
|
[project.scripts]
|
|
@@ -60,3 +60,6 @@ target-version = "py310"
|
|
|
60
60
|
[tool.ruff.lint]
|
|
61
61
|
select = ["E", "F", "I"]
|
|
62
62
|
ignore = ["E501"]
|
|
63
|
+
|
|
64
|
+
[tool.uv]
|
|
65
|
+
extra-index-url = ["https://lattifai.github.io/pypi/simple/"]
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-LaiCut/SKILL.md
RENAMED
|
@@ -27,10 +27,7 @@ LattifAI's audio-text processing toolkit. Currently supports forced alignment, w
|
|
|
27
27
|
## Setup
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
pip install "
|
|
31
|
-
pip install https://github.com/lattifai/omni-captions-skills/raw/main/packages/omnicaptions-0.1.0.tar.gz
|
|
32
|
-
pip install https://github.com/lattifai/omni-captions-skills/raw/main/packages/lattifai_core-0.6.1.tar.gz
|
|
33
|
-
pip install "lattifai[alignment] @ https://github.com/lattifai/omni-captions-skills/raw/main/packages/lattifai-1.2.2.tar.gz"
|
|
30
|
+
pip install "omni-captions-skills[laicut]"
|
|
34
31
|
```
|
|
35
32
|
|
|
36
33
|
## API Key
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-convert/SKILL.md
RENAMED
|
@@ -35,8 +35,7 @@ omnicaptions convert transcript.md -o output.vtt
|
|
|
35
35
|
## Setup
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
pip install
|
|
39
|
-
pip install https://github.com/lattifai/omni-captions-skills/raw/main/packages/omnicaptions-0.1.0.tar.gz
|
|
38
|
+
pip install omni-captions-skills
|
|
40
39
|
```
|
|
41
40
|
|
|
42
41
|
## Quick Reference
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-download/SKILL.md
RENAMED
|
@@ -43,8 +43,7 @@ Only proceed with the download command after user confirms.
|
|
|
43
43
|
## Setup
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
pip install
|
|
47
|
-
pip install https://github.com/lattifai/omni-captions-skills/raw/main/packages/omnicaptions-0.1.0.tar.gz
|
|
46
|
+
pip install omni-captions-skills
|
|
48
47
|
```
|
|
49
48
|
|
|
50
49
|
## CLI Usage
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-transcribe/SKILL.md
RENAMED
|
@@ -60,8 +60,7 @@ omnicaptions transcribe video.mp4
|
|
|
60
60
|
## Setup
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
pip install
|
|
64
|
-
pip install https://github.com/lattifai/omni-captions-skills/raw/main/packages/omnicaptions-0.1.0.tar.gz
|
|
63
|
+
pip install omni-captions-skills
|
|
65
64
|
```
|
|
66
65
|
|
|
67
66
|
## API Key
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/skills/omnicaptions-translate/SKILL.md
RENAMED
|
@@ -41,8 +41,7 @@ Output: `input_Gemini_zh.srt`
|
|
|
41
41
|
## Setup
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
pip install
|
|
45
|
-
pip install https://github.com/lattifai/omni-captions-skills/raw/main/packages/omnicaptions-0.1.0.tar.gz
|
|
44
|
+
pip install omni-captions-skills
|
|
46
45
|
```
|
|
47
46
|
|
|
48
47
|
## API Key
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/.github/workflows/skills-install.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/lattifai_captions-0.1.0.tar.gz
RENAMED
|
File without changes
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/lattifai_core-0.6.1.tar.gz
RENAMED
|
File without changes
|
{omni_captions_skills-0.1.0 → omni_captions_skills-0.1.1}/packages/omnicaptions-0.1.0.tar.gz
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|