build_video_link
Generate a clickable YouTube link that opens a video at a chosen moment, enabling quick navigation to specific timestamps.
Instructions
Build a YouTube link that opens a video at a specific moment.
Returns a watch URL like https://www.youtube.com/watch?v=&t= so a user can click straight to the moment something is discussed. Pair it with get_transcript(include_timestamps= True) -- read off the [mm:ss] of the relevant block and pass it as start -- to turn "where is X mentioned?" into a clickable link.
Args: video: A YouTube URL (watch, youtu.be, shorts, embed, live) or an 11-character video ID. start: The moment to jump to -- seconds (e.g. 90) or a "mm:ss" / "h:mm:ss" string.
Returns: The watch URL as a string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| video | Yes | ||
| start | Yes |