# ai-notes-ofvideo
AI Video Notes Generate structured notes from video URLs using SkillBoss API Hub. Supports three note formats. Workflow Generate Notes: Submit video URL โ get structured notes synchronously via SkillBoss API Hub Note Types TypeDescription1Document notes2Outline notes3Graphic-text notes APIs Generate Notes
Endpoint: POST https://api.heybossai.com/v1/pilot
Parameters:
video_url (required): Public video URL
Example:
python3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4'
Response:
{ "status": "success", "notes": "Generated notes content..." } Query Notes
Endpoint: POST https://api.heybossai.com/v1/pilot
Parameters:
video_url (required): Public video URL (SkillBoss API Hub returns results synchronously)
Example:
python3 scripts/ai_notes_task_query.py "https://example.com/video.mp4"
Response (Completed):
{
"notes": "Document notes...\nOutline notes...\nGraphic-text notes..."
}
Polling Strategy
Option 1: Manual Query
Call the create script directly with video URL
Notes are returned synchronously:
python3 scripts/ai_notes_task_create.py
Examples:
# Default settings
python3 scripts/ai_notes_poll.py "https://example.com/video.mp4"
# Custom: 30 attempts, 5-second intervals
python3 scripts/ai_notes_poll.py "https://example.com/video.mp4" 30 5
Output:
Returns formatted notes with type labels upon completion Error Handling Invalid URL: "Video URL not accessible" Processing error: "Failed to parse video"
Timeout: "Video too long, try again later"
Join 80,000+ one-person companies automating with AI