{"id":"b0452a86-92f3-4fd0-b6af-b6a1b28bb88f","shortId":"fv2cNq","kind":"skill","title":"ai-marketing-videos","tagline":"Create AI marketing videos for ads, promos, product launches, and brand content.\nModels: Veo, Seedance, Wan, FLUX for visuals, Kokoro for voiceover.\nTypes: product demos, testimonials, explainers, social ads, brand videos.\nUse for: Facebook ads, YouTube ads, product launches, bra","description":"# AI Marketing Videos\n\nCreate professional marketing videos via [inference.sh](https://inference.sh) CLI.\n\n## Quick Start\n\n```bash\ncurl -fsSL https://cli.inference.sh | sh && infsh login\n\n# Generate a product promo video\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Sleek product reveal video, smartphone emerging from light particles, premium tech aesthetic, commercial quality\"\n}'\n```\n\n## Video Ad Types\n\n| Type | Duration | Platform |\n|------|----------|----------|\n| Bumper Ad | 6 seconds | YouTube |\n| Short Ad | 15 seconds | Instagram, Facebook |\n| Standard Ad | 30 seconds | YouTube, TV |\n| Explainer | 60-90 seconds | Website, YouTube |\n| Product Demo | 30-60 seconds | All platforms |\n\n## Marketing Video Templates\n\n### Product Launch\n\n```bash\n# Dramatic product reveal\ninfsh app run google/veo-3 --input '{\n  \"prompt\": \"Cinematic product launch video, premium tech device floating in space, dramatic lighting, particles and light effects, Apple-style reveal, commercial quality\"\n}'\n```\n\n### Brand Story\n\n```bash\n# Emotional brand narrative\ninfsh app run google/veo-3-1 --input '{\n  \"prompt\": \"Brand story video showing diverse people connecting through technology, warm color grading, lifestyle montage, emotional and inspiring, commercial\"\n}'\n```\n\n### Feature Highlight\n\n```bash\n# Focus on specific feature\ninfsh app run bytedance/seedance-1-5-pro --input '{\n  \"prompt\": \"Close-up product feature demonstration, hands interacting with device, clean background, informative, tech commercial style\"\n}'\n```\n\n### Testimonial Style\n\n```bash\n# Talking head testimonial\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Customer testimonial style video, person speaking to camera, neutral office background, professional lighting, authentic feel\"\n}'\n```\n\n### Before/After\n\n```bash\n# Transformation reveal\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Before and after transformation video, split screen transition, dramatic reveal, satisfying comparison, commercial style\"\n}'\n```\n\n## Complete Ad Workflows\n\n### 30-Second Product Ad\n\n```bash\n# 1. Opening hook (0-3s)\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Attention-grabbing opening, product silhouette in dramatic lighting, building anticipation\"\n}' > hook.json\n\n# 2. Problem statement (3-8s)\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Frustrated person dealing with common problem, relatable everyday situation, documentary style\"\n}' > problem.json\n\n# 3. Solution reveal (8-15s)\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Product reveal with features highlighted, clean demonstration, solving the problem shown before\"\n}' > solution.json\n\n# 4. Benefits showcase (15-25s)\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Happy customer using product, lifestyle integration, multiple quick cuts showing benefits\"\n}' > benefits.json\n\n# 5. Call to action (25-30s)\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Product hero shot with space for text overlay, professional lighting, commercial ending\"\n}' > cta.json\n\n# 6. Generate voiceover\ninfsh app run infsh/kokoro-tts --input '{\n  \"text\": \"Tired of [problem]? Introducing [Product]. [Key benefit 1]. [Key benefit 2]. [Key benefit 3]. Get yours today.\",\n  \"voice\": \"af_nicole\"\n}' > voiceover.json\n\n# 7. Merge all clips with voiceover\ninfsh app run infsh/media-merger --input '{\n  \"videos\": [\"<hook>\", \"<problem>\", \"<solution>\", \"<benefits>\", \"<cta>\"],\n  \"audio_url\": \"<voiceover>\",\n  \"transition\": \"crossfade\"\n}'\n```\n\n### Instagram/TikTok Ad (15s)\n\n```bash\n# Vertical format, fast-paced\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Fast-paced product showcase, vertical 9:16, quick cuts, trending style, hook in first 2 seconds, satisfying visually, Gen-Z aesthetic\"\n}'\n\n# Add trendy music\ninfsh app run infsh/media-merger --input '{\n  \"video_url\": \"<video>\",\n  \"audio_url\": \"https://trending-music.mp3\"\n}'\n```\n\n### Explainer Video\n\n```bash\n# 1. Write script\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Write a 60-second explainer video script for a SaaS product. Include: hook, problem, solution, 3 key features, social proof, CTA. Make it conversational.\"\n}' > script.json\n\n# 2. Generate visuals for each section\nSECTIONS=(\"hook\" \"problem\" \"solution\" \"feature1\" \"feature2\" \"feature3\" \"social_proof\" \"cta\")\n\nfor section in \"${SECTIONS[@]}\"; do\n  infsh app run google/veo-3-1-fast --input \"{\n    \\\"prompt\\\": \\\"Explainer video scene for $section, motion graphics style, clean modern aesthetic, SaaS product\\\"\n  }\" > \"$section.json\"\ndone\n\n# 3. Generate professional voiceover\ninfsh app run infsh/kokoro-tts --input '{\n  \"text\": \"<full-script>\",\n  \"voice\": \"am_michael\"\n}' > voiceover.json\n\n# 4. Assemble final video\ninfsh app run infsh/media-merger --input '{\n  \"videos\": [\"<hook>\", \"<problem>\", \"<solution>\", ...],\n  \"audio_url\": \"<voiceover>\",\n  \"transition\": \"fade\"\n}'\n```\n\n## Platform-Specific Formats\n\n### Facebook/Instagram Feed\n\n```bash\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Square format product video 1:1, eye-catching visuals, works without sound, text-friendly, scroll-stopping\"\n}'\n```\n\n### YouTube Pre-Roll\n\n```bash\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"YouTube ad style, skip button awareness (hook in 5 seconds), 16:9, professional commercial quality\"\n}'\n```\n\n### LinkedIn\n\n```bash\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Professional B2B product video, corporate style, clean and modern, business audience, subtle motion\"\n}'\n```\n\n### TikTok/Reels\n\n```bash\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"TikTok native style ad, vertical 9:16, raw authentic feel, not overly polished, trendy, user-generated content aesthetic\"\n}'\n```\n\n## Ad Creative Best Practices\n\n### Hook Formula (First 3 Seconds)\n\n```bash\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Opening hook: [choose one]\n  - Surprising visual transformation\n  - Bold statement text animation\n  - Relatable problem scenario\n  - Curiosity gap visual\n  - Satisfying action\"\n}'\n```\n\n### Visual Hierarchy\n\n1. **Product hero** - Clear, prominent\n2. **Benefits** - Illustrated, not just stated\n3. **Social proof** - Visible testimonials/numbers\n4. **CTA** - Clear space for text overlay\n\n### Sound Design\n\n```bash\n# Add appropriate music\ninfsh app run infsh/ai-music --input '{\n  \"prompt\": \"Upbeat commercial background music, modern, energetic, 30 seconds\"\n}' > music.json\n\ninfsh app run infsh/media-merger --input '{\n  \"video_url\": \"<ad-video>\",\n  \"audio_url\": \"<music>\",\n  \"audio_volume\": 0.5\n}'\n```\n\n## A/B Testing Variants\n\n```bash\n# Generate multiple creative variants\nHOOKS=(\n  \"Problem-focused opening\"\n  \"Product reveal opening\"\n  \"Testimonial opening\"\n  \"Statistic opening\"\n)\n\nfor hook in \"${HOOKS[@]}\"; do\n  infsh app run google/veo-3-1-fast --input \"{\n    \\\"prompt\\\": \\\"Marketing video with $hook, professional commercial quality\\\"\n  }\" > \"variant_${hook// /_}.json\"\ndone\n```\n\n## Video Ad Checklist\n\n- [ ] Hook in first 3 seconds\n- [ ] Works without sound (captions/text)\n- [ ] Clear product visibility\n- [ ] Benefit-focused messaging\n- [ ] Single clear CTA\n- [ ] Correct aspect ratio for platform\n- [ ] Brand consistency\n- [ ] Mobile-optimized\n\n## Related Skills\n\n```bash\n# Video generation\nnpx skills add inference-sh/skills@ai-video-generation\n\n# Image generation for thumbnails\nnpx skills add inference-sh/skills@ai-image-generation\n\n# Text-to-speech for voiceover\nnpx skills add inference-sh/skills@text-to-speech\n\n# Social media content\nnpx skills add inference-sh/skills@ai-social-media-content\n\n# Full platform skill\nnpx skills add inference-sh/skills@inference-sh\n```\n\nBrowse all apps: `infsh app list`","tags":["marketing","videos","coco","rkz91","agent-skills","agents-md","ai-agents","claude-code","codex","cursor","developer-tools","llm-tools"],"capabilities":["skill","source-rkz91","skill-ai-marketing-videos","topic-agent-skills","topic-agents-md","topic-ai-agents","topic-claude-code","topic-codex","topic-cursor","topic-developer-tools","topic-llm-tools","topic-mcp","topic-pm-tools","topic-product-management","topic-productivity"],"categories":["coco"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/rkz91/coco/ai-marketing-videos","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add rkz91/coco","source_repo":"https://github.com/rkz91/coco","install_from":"skills.sh"}},"qualityScore":"0.453","qualityRationale":"deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 7 github stars · SKILL.md body (7,709 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:14:05.288Z","embedding":null,"createdAt":"2026-05-18T13:21:36.637Z","updatedAt":"2026-05-18T19:14:05.288Z","lastSeenAt":"2026-05-18T19:14:05.288Z","tsv":"'-15':333 '-25':358 '-3':285 '-30':383 '-60':122 '-8':309 '-90':115 '/_':850 '/skills':896,911,928,942,957 '0':284 '0.5':809 '1':281,420,507,628,629,754 '15':103,357 '15s':452 '16':472,664,704 '2':305,423,480,541,759 '25':382 '3':308,329,426,531,583,724,765,859 '30':109,121,276,795 '4':354,597,770 '5':378,662 '6':98,404 '60':114,518 '7':434 '8':332 '9':471,665,703 'a/b':810 'action':381,751 'ad':10,33,39,41,91,97,102,108,274,279,451,655,701,717,854 'add':488,780,892,907,924,938,953 'aesthet':87,487,578,716 'af':431 'ai':2,6,45,898,913,944 'ai-image-gener':912 'ai-marketing-video':1 'ai-social-media-cont':943 'ai-video-gener':897 'anim':743 'anticip':303 'app':71,136,170,201,229,254,288,312,336,361,386,408,441,460,492,511,563,588,602,619,649,672,693,728,784,799,836,963,965 'appl':158 'apple-styl':157 'appropri':781 'aspect':876 'assembl':598 'attent':294 'attention-grab':293 'audienc':687 'audio':446,498,607,805,807 'authent':247,706 'awar':659 'b2b':678 'background':217,244,791 'bash':58,131,165,195,224,250,280,453,506,617,647,670,691,726,779,813,887 'before/after':249 'benefit':355,376,419,422,425,760,869 'benefit-focus':868 'benefits.json':377 'best':719 'bold':740 'bra':44 'brand':15,34,163,167,175,880 'brows':961 'build':302 'bumper':96 'busi':686 'button':658 'bytedance/seedance-1-5-pro':203 'call':379 'camera':241 'captions/text':864 'catch':632 'checklist':855 'choos':735 'cinemat':141 'clean':216,346,576,683 'clear':757,772,865,873 'cli':55 'cli.inference.sh':61 'clip':437 'close':207 'close-up':206 'color':185 'commerci':88,161,192,220,271,401,667,790,846 'common':321 'comparison':270 'complet':273 'connect':181 'consist':881 'content':16,715,935,947 'convers':539 'corpor':681 'correct':875 'creat':5,48 'creativ':718,816 'crossfad':449 'cta':536,556,771,874 'cta.json':403 'curios':747 'curl':59 'custom':234,367 'cut':374,474 'deal':319 'demo':29,120 'demonstr':211,347 'design':778 'devic':147,215 'divers':179 'documentari':326 'done':582,852 'dramat':132,151,267,300 'durat':94 'effect':156 'emerg':81 'emot':166,189 'end':402 'energet':794 'everyday':324 'explain':31,113,504,520,568 'eye':631 'eye-catch':630 'facebook':38,106 'facebook/instagram':615 'fade':610 'fast':457,466 'fast-pac':456,465 'featur':193,199,210,344,533 'feature1':551 'feature2':552 'feature3':553 'feed':616 'feel':248,707 'final':599 'first':479,723,858 'float':148 'flux':21 'focus':196,821,870 'format':455,614,625 'formula':722 'friend':639 'frustrat':317 'fssl':60 'full':948 'gap':748 'gen':485 'gen-z':484 'generat':65,405,542,584,714,814,889,900,902,915 'get':427 'google/veo-3':138 'google/veo-3-1':172 'google/veo-3-1-fast':73,231,256,290,314,338,363,388,462,565,621,651,674,695,730,838 'grab':295 'grade':186 'graphic':574 'hand':212 'happi':366 'head':226 'hero':392,756 'hierarchi':753 'highlight':194,345 'hook':283,477,528,548,660,721,734,818,831,833,844,849,856 'hook.json':304 'illustr':761 'imag':901,914 'includ':527 'infer':894,909,926,940,955,959 'inference-sh':893,908,925,939,954,958 'inference.sh':53,54 'inform':218 'infsh':63,70,135,169,200,228,253,287,311,335,360,385,407,440,459,491,510,562,587,601,618,648,671,692,727,783,798,835,964 'infsh/ai-music':786 'infsh/kokoro-tts':410,590 'infsh/media-merger':443,494,604,801 'input':74,139,173,204,232,257,291,315,339,364,389,411,444,463,495,514,566,591,605,622,652,675,696,731,787,802,839 'inspir':191 'instagram':105 'instagram/tiktok':450 'integr':371 'interact':213 'introduc':416 'json':851 'key':418,421,424,532 'kokoro':24 'launch':13,43,130,143 'lifestyl':187,370 'light':83,152,155,246,301,400 'linkedin':669 'list':966 'login':64 'make':537 'market':3,7,46,50,126,841 'media':934,946 'merg':435 'messag':871 'michael':595 'mobil':883 'mobile-optim':882 'model':17 'modern':577,685,793 'montag':188 'motion':573,689 'mp3':503 'multipl':372,815 'music':490,502,782,792 'music.json':797 'narrat':168 'nativ':699 'neutral':242 'nicol':432 'npx':890,905,922,936,951 'offic':243 'one':736 'open':282,296,733,822,825,827,829 'openrouter/claude-sonnet-45':513 'optim':884 'over':709 'overlay':398,776 'pace':458,467 'particl':84,153 'peopl':180 'person':238,318 'platform':95,125,612,879,949 'platform-specif':611 'polish':710 'practic':720 'pre':645 'pre-rol':644 'premium':85,145 'problem':306,322,350,415,529,549,745,820 'problem-focus':819 'problem.json':328 'product':12,28,42,67,77,119,129,133,142,209,278,297,341,369,391,417,468,526,580,626,679,755,823,866 'profession':49,245,399,585,666,677,845 'promin':758 'promo':11,68 'prompt':75,140,174,205,233,258,292,316,340,365,390,464,515,567,623,653,676,697,732,788,840 'proof':535,555,767 'qualiti':89,162,668,847 'quick':56,373,473 'ratio':877 'raw':705 'relat':323,744,885 'reveal':78,134,160,252,268,331,342,824 'roll':646 'run':72,137,171,202,230,255,289,313,337,362,387,409,442,461,493,512,564,589,603,620,650,673,694,729,785,800,837 'saa':525,579 'satisfi':269,482,750 'scenario':746 'scene':570 'screen':265 'script':509,522 'script.json':540 'scroll':641 'scroll-stop':640 'second':99,104,110,116,123,277,481,519,663,725,796,860 'section':546,547,558,560,572 'section.json':581 'seedanc':19 'sh':62,895,910,927,941,956,960 'short':101 'shot':393 'show':178,375 'showcas':356,469 'shown':351 'silhouett':298 'singl':872 'situat':325 'skill':886,891,906,923,937,950,952 'skill-ai-marketing-videos' 'skip':657 'sleek':76 'smartphon':80 'social':32,534,554,766,933,945 'solut':330,530,550 'solution.json':353 'solv':348 'sound':636,777,863 'source-rkz91' 'space':150,395,773 'speak':239 'specif':198,613 'speech':919,932 'split':264 'squar':624 'standard':107 'start':57 'state':764 'statement':307,741 'statist':828 'stop':642 'stori':164,176 'style':159,221,223,236,272,327,476,575,656,682,700 'subtl':688 'surpris':737 'talk':225 'tech':86,146,219 'technolog':183 'templat':128 'test':811 'testimoni':30,222,227,235,826 'testimonials/numbers':769 'text':397,412,592,638,742,775,917,930 'text-friend':637 'text-to-speech':916,929 'thumbnail':904 'tiktok':698 'tiktok/reels':690 'tire':413 'today':429 'topic-agent-skills' 'topic-agents-md' 'topic-ai-agents' 'topic-claude-code' 'topic-codex' 'topic-cursor' 'topic-developer-tools' 'topic-llm-tools' 'topic-mcp' 'topic-pm-tools' 'topic-product-management' 'topic-productivity' 'transform':251,262,739 'transit':266,448,609 'trend':475,501 'trendi':489,711 'trending-mus':500 'tv':112 'type':27,92,93 'upbeat':789 'url':447,497,499,608,804,806 'use':36,368 'user':713 'user-gener':712 'variant':812,817,848 'veo':18 'vertic':454,470,702 'via':52 'video':4,8,35,47,51,69,79,90,127,144,177,237,263,445,496,505,521,569,600,606,627,680,803,842,853,888,899 'visibl':768,867 'visual':23,483,543,633,738,749,752 'voic':430,593 'voiceov':26,406,439,586,921 'voiceover.json':433,596 'volum':808 'wan':20 'warm':184 'websit':117 'without':635,862 'work':634,861 'workflow':275 'write':508,516 'youtub':40,100,111,118,643,654 'z':486","prices":[{"id":"a08044b0-1b9b-462f-8ff4-aa9caac4f44e","listingId":"b0452a86-92f3-4fd0-b6af-b6a1b28bb88f","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"rkz91","category":"coco","install_from":"skills.sh"},"createdAt":"2026-05-18T13:21:36.637Z"}],"sources":[{"listingId":"b0452a86-92f3-4fd0-b6af-b6a1b28bb88f","source":"github","sourceId":"rkz91/coco/ai-marketing-videos","sourceUrl":"https://github.com/rkz91/coco/tree/main/skills/ai-marketing-videos","isPrimary":false,"firstSeenAt":"2026-05-18T13:21:36.637Z","lastSeenAt":"2026-05-18T19:14:05.288Z"}],"details":{"listingId":"b0452a86-92f3-4fd0-b6af-b6a1b28bb88f","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"rkz91","slug":"ai-marketing-videos","github":{"repo":"rkz91/coco","stars":7,"topics":["agent-skills","agents-md","ai","ai-agents","claude-code","codex","cursor","developer-tools","llm-tools","mcp","pm-tools","product-management","productivity","prompt-engineering","workflow-automation"],"license":"mit","html_url":"https://github.com/rkz91/coco","pushed_at":"2026-04-26T01:51:27Z","description":"Open-source library of AI superpowers — 59 skills, 34 commands, 10 agents + 24 GSD subagents, 3 system bundles. An entire team, wherever your AI lives. Vendor-neutral across Claude Code, Cursor, Codex, and any AGENTS.md tool.","skill_md_sha":"e61fa42fcec7ea5dc94dba33a23cc06ef56e9768","skill_md_path":"skills/ai-marketing-videos/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/rkz91/coco/tree/main/skills/ai-marketing-videos"},"layout":"multi","source":"github","category":"coco","frontmatter":{"name":"ai-marketing-videos","description":"Create AI marketing videos for ads, promos, product launches, and brand content.\nModels: Veo, Seedance, Wan, FLUX for visuals, Kokoro for voiceover.\nTypes: product demos, testimonials, explainers, social ads, brand videos.\nUse for: Facebook ads, YouTube ads, product launches, brand awareness.\nTriggers: marketing video, ad video, promo video, commercial, brand video,\nproduct video, explainer video, ad creative, video ad, facebook ad video,\nyoutube ad, instagram ad, tiktok ad, promotional video, launch video"},"skills_sh_url":"https://skills.sh/rkz91/coco/ai-marketing-videos"},"updatedAt":"2026-05-18T19:14:05.288Z"}}