Quickstart
import { Steps } from ‘@astrojs/starlight/components’;
-
Configure the CLI
Set your API endpoint and authentication token. Get your token from the Veronese dashboard.
Terminal window # Set the API URLveronese config set-url https://veronesebook.com# Set your API tokenveronese config set-token YOUR_API_TOKEN# Verify your configuration and account statusveronese config showveronese status -
Create a series
Organize your transcriptions into series — a series is a collection of related episodes (e.g. a podcast, a project, a notebook).
Terminal window # Create a new seriesveronese series create --title "My Podcast"# List all your series (note the ID for the next step)veronese series list -
Add an episode
Create an episode from any audio or video URL. YouTube, direct audio links, and more are supported.
Terminal window # From a YouTube videoveronese episode create --series <series-id> --url https://youtube.com/watch?v=dQw4w9WgXcQ# From any audio URLveronese episode create --series <series-id> --url https://example.com/podcast.mp3 -
Wait for processing
Transcription happens in the cloud. Poll the episode until it completes.
Terminal window # Poll until ready (default 5-minute timeout)veronese episode poll <episode-id># Set a custom timeout (seconds)veronese episode poll <episode-id> --max-wait 600Output:
Polling episode 42...ingesting ✓transcribing ✓ready ✓ (1m 42s) -
Export your transcript
Download the completed transcript in your preferred format.
Terminal window # Export as Markdownveronese episode export <episode-id> --format md --out transcript.md# View episode details as JSONveronese episode show <episode-id> --json