YouTube MP4 Downloader
download youtube videos to my computer in .mp4 format
subagent1
SUBAGENT 1 – URL Collector Name: URL Intake Final Output: urls.json Sequence of actions 1. Prompt user for one or more YouTube links (accept playlist/CSV). 2. Parse links, remove duplicates, keep the first five valid IDs. 3. Write resulting array to urls.json. SUBAGENT REQUIRED INPUT: {variable1} // user-supplied list of YouTube URLs SUBAGENT FINAL OUTPUT: [urls-json] // the saved urls.json file
subagentX-refined
[subagent1-refined]
subagentXmermaid
graph TD A[Raw User Input] --> B[Parse Raw Input] B --> C{Contains Playlists?} C -->|No| D[Consolidate URLs] C -->|Yes| E[Expand Playlists] E --> F[Extract Video URLs] F --> D D --> G[Limit to 5 URLs] G --> H[Format as JSON Array] H --> I[Write urls.json] I --> J[Final Output: urls.json] subgraph Silo 1 B end subgraph Silo 2 E F end subgraph Silo 3 D G H end subgraph Silo 4 I end
https://static.aiz.ac/1754811051-mermaid/mermaid-1.png