25 पॉइंट द्वारा xguru 2026-04-28 | 1 टिप्पणियां | WhatsApp पर शेयर करें
  • Remotion की तरह सिर्फ HTML + CSS + GSAP से वीडियो बनाकर MP4 में रेंडर किया जा सकता है
  • React या किसी स्वतंत्र DSL के बिना शुद्ध HTML फ़ाइल ही वीडियो composition है, और build चरण के बिना index.html सीधे चल जाता है
  • Claude Code, Codex जैसे AI coding agents द्वारा HTML सीधे लिखने वाले workflow के लिए ऑप्टिमाइज़्ड
    • npx skills add heygen-com/hyperframes से एजेंट को फ़्रेमवर्क पैटर्न सिखाया जा सकता है
    • Claude Code में /hyperframes, /hyperframes-cli, /gsap slash commands से सीधे कॉल किया जा सकता है
    • OpenAI Codex plugin और Cursor plugin भी अलग से उपलब्ध हैं
  • उपयोग का तरीका
    • जो चाहिए उसे बताइए: "Using /hyperframes, create a 10-second product intro with a fade-in title, a background video, and background music"
    • मौजूदा content को वीडियो में बदलना:
      • "Take a look at this GitHub repo https://github.com/heygen-com/hyperframes and explain its uses and architecture to me using /hyperframes."
      • "Summarize the attached PDF into a 45-second pitch video using /hyperframes."
      • "Turn this CSV into an animated bar chart race using /hyperframes."
    • खास format: "Make a 9:16 TikTok-style hook video about [topic] using /hyperframes, with bouncy captions synced to a TTS narration."
    • दोहराव - एजेंट को वीडियो एडिटर की तरह इस्तेमाल करना:
      • "Make the title 2x bigger, swap to dark mode, and add a fade-out at the end."
      • "Add a lower third at 0:03 with my name and title."
  • मैनुअल शुरुआत का तरीका
    npx hyperframes init my-video  
    cd my-video  
    npx hyperframes preview      # preview in browser (live reload)  
    npx hyperframes render       # render to MP4  
    
    • hyperframes init यह skill अपने-आप इंस्टॉल कर देता है, इसलिए उसके बाद कभी भी इस्तेमाल किया जा सकता है
  • Frame Adapter पैटर्न से GSAP, Lottie, CSS, Three.js जैसी मनचाही animation runtimes को स्वतंत्र रूप से जोड़ा जा सकता है
  • समान input = समान output की गारंटी देने वाली deterministic rendering के कारण automation pipelines के लिए उपयुक्त
  • 50 से अधिक prebuilt blocks·components का catalog दिया जाता है (shader transitions, social overlays, data charts आदि), और npx hyperframes add <블록명> से इंस्टॉल किया जा सकता है
    npx hyperframes add flash-through-white   # shader transition  
    npx hyperframes add instagram-follow      # social overlay  
    npx hyperframes add data-chart            # animated chart  
    
  • hyperframes capture <url> कमांड से वेबसाइट को capture करके वीडियो में बदलने वाली पूरी pipeline का समर्थन
  • Remotion की तुलना में मुख्य अंतर output artifact (HTML vs React) और license है
    • HyperFrames: Apache 2.0 (OSI प्रमाणित) — पूरी तरह commercial use के लिए उपलब्ध, और प्रति-render कोई शुल्क, seat limit, या company size restriction नहीं
    • Remotion: source-available custom license - 3 से अधिक लोगों वाली कंपनियों में paid company license आवश्यक
    • HyperFrames build चरण के बिना index.html को सीधे चलाता है, जबकि Remotion में bundler चाहिए
    • GSAP·Anime.js·Motion One जैसी library clock animations HyperFrames में seekable रहती हैं और frame accuracy बनाए रखती हैं, जबकि Remotion में rendering के समय wall-clock पर चलती हैं
    • Remotion में Lambda distributed rendering production-ready है, जबकि HyperFrames अभी केवल single-machine rendering को support करता है
  • पैकेज संरचना: CLI, core (types·parser·linter), engine (Puppeteer + FFmpeg capture), producer (full rendering), studio (browser editor), player (web component), shader-transitions
  • Apache 2.0 license, TypeScript आधारित

1 टिप्पणियां

 
xguru 2026-04-28

यह Remotion से प्रेरित है और लगभग काफ़ी मिलता-जुलता है, लेकिन इसमें React को हटा दिया गया है और यह पूरी तरह HTML से बनाने वाला टूल है.
फ़िलहाल हम एक छोटी कंपनी हैं, इसलिए हम Remotion ही इस्तेमाल करते हैं.
Remotion सिर्फ़ 3 लोगों तक मुफ़्त है, इसलिए थोड़ा बड़े स्केल पर शायद आप यह HyperFrames इस्तेमाल कर सकते हैं.