📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-03 16:04:10 +00:00
parent 2bf579321a
commit b40381458b
482 changed files with 8324 additions and 2007 deletions
@@ -8,6 +8,20 @@ previous cue, so we keep only newly-added words per cue and emit one line per cu
time. Strips inline <00:00:00.000> word-timing tags and HTML tags.
"""
import sys, re, html
from pathlib import Path
def safe_user_path(path_value, base_dir="."):
"""Resolve a CLI path under the current workspace."""
if base_dir != ".":
raise ValueError("Custom base directories are not supported for CLI paths")
base_path = Path.cwd().resolve()
resolved_path = Path(path_value).expanduser().resolve()
try:
resolved_path.relative_to(base_path)
except ValueError as exc:
raise ValueError(f"Path escapes allowed directory: {path_value}") from exc
return resolved_path
TS=re.compile(r'(\d{2}):(\d{2}):(\d{2})\.\d{3}\s*-->\s*(\d{2}):(\d{2}):(\d{2})')
INLINE=re.compile(r'<[^>]+>')
@@ -21,7 +35,7 @@ def clean(text):
def main():
if len(sys.argv)!=3: sys.exit("usage: vtt_to_transcript.py <in.vtt> <out.txt>")
raw=open(sys.argv[1],encoding='utf-8',errors='replace').read().splitlines()
raw=safe_user_path(sys.argv[1]).open(encoding='utf-8',errors='replace').read().splitlines()
cues=[] # (start_label, text)
i=0; cur=None
while i<len(raw):
@@ -52,7 +66,7 @@ def main():
if new:
out.append(f"{label} {' '.join(new)}")
seen_words=(seen_words+new)[-40:] # bounded window
with open(sys.argv[2],'w',encoding='utf-8') as f:
with safe_user_path(sys.argv[2]).open('w',encoding='utf-8') as f:
f.write('\n'.join(out)+'\n')
print(f"wrote {len(out)} transcript lines -> {sys.argv[2]}")
@@ -19,6 +19,20 @@ Writes $VIDEO_LIBRARY_DIR/<YTID>.md (default ~/video-deepdives/<YTID>.md)
with YAML frontmatter + transcript body. No em dashes or arrows in titles/notes.
"""
import argparse, json, os, sys, datetime
from pathlib import Path
def safe_user_path(path_value, base_dir="."):
"""Resolve a CLI path under the current workspace."""
if base_dir != ".":
raise ValueError("Custom base directories are not supported for CLI paths")
base_path = Path.cwd().resolve()
resolved_path = Path(path_value).expanduser().resolve()
try:
resolved_path.relative_to(base_path)
except ValueError as exc:
raise ValueError(f"Path escapes allowed directory: {path_value}") from exc
return resolved_path
try:
import yaml
except ImportError:
@@ -58,7 +72,7 @@ def main():
body=open(a.transcript,encoding="utf-8").read().strip()
os.makedirs(LIB,exist_ok=True)
path=os.path.join(LIB,f"{a.id}.md")
with open(path,"w",encoding="utf-8") as f:
with safe_user_path(path).open("w",encoding="utf-8") as f:
f.write("---\n")
yaml.safe_dump(fm,f,sort_keys=False,allow_unicode=True,width=100)
f.write("---\n## Transcript\n")