--- title: YouTube URL Schemes description: created: 2025-07-17T14:15:08 modified: 2025-12-21T07:36:59 canonicalPath: 2025/7/17/youtube-url-schemes draft: false featured: false tags: - Today-I-Learned/url-schemes sources: [] --- Today I learned how to customize YouTube URL schemes to make video sharing more effective: 1. **Watch Links** * Format * Regular version: `https://www.youtube.com/watch?v=` * Short version: `https://youtu.be/` * Query parameters * `t` → Starts the video at a specific timestamp, great for directly jumping to the key moments * For example: * `&t=60` starts the video 1 minute in * `&t=1m30s` starts the video 1 minute and 30 seconds in * Works for both watch link types: * * * The following parameters are unnecessary and can be safely stripped from URLs: * `list` → Shows which **playlist** the video is from * Example: `&list=PLVELbpBnqC0qFKrWNBZupOEV6MX4xt_fM` * `ab_channel` → Shows which **channel** the video is from * Example: `&ab_channel=InspiringSquad` * `https://www.youtube.com/embed/` * Use this to embed videos on websites [^1] * ⭐️ Also, this is helpful for [watching videos without any ads](https://gist.github.com/huaminghuangtw/be2eaee73f155187ca1ed0570b7268a0)! * Example: 2. **Playlist Links** * Format: `https://www.youtube.com/playlist?list=` 3. **Channel Links** * Format: `https://www.youtube.com/channel/@` [^1]: