One-off HLS encoding (local video -> HLS renditions + playlist) using Transloadit via the `transloadit` CLI. Prefer builtin templates (`builtin/encode-hls-video@latest`) and download outputs locally via `-o`.
Add this skill
npx mdskills install transloadit/transform-encode-hls-video-with-transloaditProvides clear CLI commands for HLS encoding with good debugging support and template discovery
1---2name: transform-encode-hls-video-with-transloadit3description: One-off HLS encoding (local video -> HLS renditions + playlist) using Transloadit via the `transloadit` CLI. Prefer builtin templates (`builtin/encode-hls-video@latest`) and download outputs locally via `-o`.4---56# Run (Local Input Video)78```bash9npx -y @transloadit/node assemblies create \10 --template builtin/encode-hls-video@latest \11 -i ./input.mp4 \12 -o ./out/ \13 -j14```1516Footnote (discover more builtin templates):17```bash18npx -y @transloadit/node templates list --include-builtin exclusively-latest --fields id,name --json19```2021# Debug If It Fails2223```bash24npx -y @transloadit/node assemblies get <assemblyIdOrUrl> -j25```26
Full transparency — inspect the skill content before installing.