ai-multimodal
Process and generate multimedia content using Google Gemini API for better vision capabilities. Capabilities include analyze audio files (transcription with timestamps, summarization, speech understanding, music/sound analysis up to 9.5 hours), understand images (better image analysis than Claude models, captioning, reasoning, object detection, design extraction, OCR, visual Q&A, segmentation, handle multiple images), process videos (scene detection, Q&A, temporal analysis, YouTube URLs, up to 6 hours), extract from documents (PDF tables, forms, charts, diagrams, multi-page), generate images (
npx skills add majiayu000/claude-skill-registry --skill ai-multimodal-congdon1207-agents-md --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AI Multimodal Process audio, images, videos, documents, and generate images/videos using Google Gemini's multimodal API. ## Setup ```bash export GEMINI_API_KEY="your-key" # Get from https://aistudio.google.com/apikey pip install google-genai python-dotenv pillow ``` ### API Key Rotation (Optional) For high-volume usage or when hitting rate limits, configure multiple API keys: ```bash # Primary key (required) export GEMINI_API_KEY="key1" # Additional keys for rotation (optional) export GEMINI_API_KEY_2="key2" export GEMINI_API_KEY_3="key3" ``` Or in your `.env` file: ``` GEMINI_API_KEY=key1 GEMINI_API_KEY_2=key2 GEMINI_API_KEY_3=key3 ``` **Features:** - Auto-rotates on rate limit (429/RESOURCE_EXHAUSTED) errors - 60-second cooldown per key after rate limit - Logs rotation events with `--verbose` flag - Backward compatible: single key still works ## Quick Start **Verify setup**: `python scripts/check_setup.py` **Analyze media**: `python scripts/gemini_batch_process.py --files <file> --task <analyze|transcribe|extract>` - TIP: When you're asked to analyze an image, check if `gemini` command is available, then use `"<prompt to analyze image>" | gemini -y -m gemini-2.5-flash` command.
- Setup
- API Key Rotation (Optional)
- Quick Start
- Models
- Scripts
- References
- Limits
- Resources
export GEMINI_API_KEY="your-key" # Get from https://aistudio.google.com/apikey pip install google-genai python-dotenv pillow Primary key (required) export GEMINI_API_KEY="key1" Additional keys for rotation (optional) export GEMINI_API_KEY_2="key2" export GEMINI_API_KEY_3="key3"
What does the ai-multimodal skill do?
Process and generate multimedia content using Google Gemini API for better vision capabilities. Capabilities include analyze audio files (transcription with timestamps, summarization, speech understanding, music/sound analysis up to 9.5 hours), understand images (better image analysis than Claude models, captioning, reasoning, object detection, design extraction, OCR, visual Q&A, segmentation, handle multiple images), process videos (scene detection, Q&A, temporal analysis, YouTube URLs, up to 6 hours), extract from documents (PDF tables, forms, charts, diagrams, multi-page), generate images (
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill ai-multimodal-congdon1207-agents-md --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
