<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xmlns:tt="http://teletype.in/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>AI Lab Show</title><generator>teletype.in</generator><description><![CDATA[AI Lab Show]]></description><image><url>https://img4.teletype.in/files/b6/f8/b6f86e93-cb1b-423d-8182-cfd01f34fb7d.png</url><title>AI Lab Show</title><link>https://teletype.in/@ailabshow</link></image><link>https://teletype.in/@ailabshow?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><atom:link rel="self" type="application/rss+xml" href="https://teletype.in/rss/ailabshow?offset=0"></atom:link><atom:link rel="next" type="application/rss+xml" href="https://teletype.in/rss/ailabshow?offset=10"></atom:link><atom:link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></atom:link><pubDate>Thu, 20 Aug 2026 10:12:00 GMT</pubDate><lastBuildDate>Thu, 20 Aug 2026 10:12:00 GMT</lastBuildDate><item><guid isPermaLink="true">https://teletype.in/@ailabshow/P8bOOdDAjCp</guid><link>https://teletype.in/@ailabshow/P8bOOdDAjCp?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/P8bOOdDAjCp?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Урок: автомонтаж вертикальных роликов через Claude Code</title><pubDate>Thu, 06 Aug 2026 11:29:31 GMT</pubDate><description><![CDATA[Пошаговая сборка с нуля. Человек кладёт снятое видео в папку, пишет одну строку — получает смонтированный ролик с субтитрами, графикой, плашками и музыкой.]]></description><content:encoded><![CDATA[
  <p id="AvEj">Пошаговая сборка с нуля. Человек кладёт снятое видео в папку, пишет одну строку — получает смонтированный ролик с субтитрами, графикой, плашками и музыкой.</p>
  <p id="ODe8">Собрано на практике: каждая «грабля» ниже реально ломала сборку.</p>
  <hr />
  <h2 id="Raqy">Что получится</h2>
  <p id="X5gt">На входе — сырая съёмка «говорящая голова». На выходе — вертикальный ролик 1080×1920: вырезаны паузы и фальш-старты, наложены субтитры, поверх лица живёт графика, в конце плашка с призывом, под всем — музыка.</p>
  <p id="az7n">Время сборки одного ролика: 5-15 минут машинного времени, участие человека — одна строка.</p>
  <hr />
  <h2 id="GYQ7">Что нужно</h2>
  <p id="ERw7">зачем</p>
  <p id="vW9f">сколько стоит</p>
  <p id="Gv9h"><strong>Claude Code</strong></p>
  <p id="Tna0">мозг сборки: читает правила, режет, собирает</p>
  <p id="90bI">подписка Claude, тариф уточнить на сайте</p>
  <p id="tC5l"><strong>Node.js 20+</strong></p>
  <p id="5ycr">среда</p>
  <p id="2SPC">бесплатно</p>
  <p id="6bCV"><strong>ffmpeg</strong></p>
  <p id="B3kw">резка, конвертация, звук</p>
  <p id="jQq7">бесплатно</p>
  <p id="G4Q7"><strong>Remotion</strong></p>
  <p id="FZni">рендер графики поверх видео</p>
  <p id="in5M">бесплатно для личного использования, для компаний — лицензия</p>
  <p id="plr0"><strong>Whisper</strong></p>
  <p id="DMhX">транскрипт с таймингами слов</p>
  <p id="Ulxi">бесплатно, локально</p>
  <p id="6Yfb"><strong>Звук и музыка</strong></p>
  <p id="Hj7b">SFX и BGM</p>
  <p id="eOPN">своё или по подписке</p>
  <p id="0Uhs">⚠️ <strong>Про Remotion честно:</strong> личное использование бесплатно, для команд и компаний нужна лицензия. Проверить условия на их сайте до того, как строить на этом бизнес.</p>
  <hr />
  <h2 id="RmKc">Шаг 1. Установка</h2>
  <p id="TiTa">bash</p>
  <pre id="FdcB">mkdir ~/video-pipeline &amp;&amp; cd ~/video-pipeline
npm init -y
npm i remotion @remotion/cli @remotion/google-fonts @remotion/layout-utils @remotion/media-utils react react-dom
npm i -D typescript@5.9.3 @types/react
brew install ffmpeg</pre>
  <p id="5qoc">🔴 <strong>Грабля номер один.</strong> TypeScript строго версии 5. Семёрка — это новый компилятор на Go, он отдаёт другой формат экспорта, и бандлер Remotion падает с <code>typescript.sys.readFile</code>. Ставить <code>typescript@5.9.3</code> и не поднимать.</p>
  <p id="j8jN">Транскрипт — одно из двух:</p>
  <p id="RJKq">bash</p>
  <pre id="Vafh">brew install openai-whisper      # локально
npx hyperframes transcribe       # качает модель сам</pre>
  <hr />
  <h2 id="jIRm">Шаг 2. Структура папок</h2>
  <pre id="IqY1">video-pipeline/
├── input/          ← сюда видео, РОВНО ОДИН файл
├── guide/          правила монтажа — их читает агент
├── src/pack/       компоненты графики
├── library/
│   ├── sfx/        звуки
│   ├── bgm/        музыка
│   └── media/      скриншоты и фото для вставок
└── out/            готовые ролики</pre>
  <p id="tAla">🔴 <strong>Грабля.</strong> В <code>input/</code> должен лежать <strong>один</strong> файл. Иначе агент однажды возьмёт недоудалённый прошлый ролик, и ты заметишь это только на готовом рендере. В инструкции агенту прописывается: файлов больше одного — остановиться и спросить.</p>
  <hr />
  <h2 id="CpUL">Шаг 3. Правила в <code>guide/</code></h2>
  <p id="yh7c">Ключевая идея всего пайплайна: <strong>агент не импровизирует, он исполняет правила.</strong> Правила лежат текстом в <code>guide/</code> и читаются перед каждой сборкой.</p>
  <p id="IJWE">Что описывать:</p>
  <p id="XUvh"><strong>Ритм и монтаж.</strong> Длина шота, что вырезать (повторы дублей, фальш-старты, обрезанные хвосты слов, паузы), как ставить склейки.</p>
  <p id="ScuI"><strong>Субтитры.</strong> Сколько слов на карточку, регистр, позиция, обводка, свечение, минимальная длительность.</p>
  <p id="5sRY"><strong>Графика.</strong> Какие вставки бывают, когда какую доставать, сколько их на минуту, где им нельзя появляться.</p>
  <p id="22Y8"><strong>Технические цели.</strong> Разрешение, fps, safe-зоны, уровни звука, что должно быть в финальном файле.</p>
  <p id="Kdpw"><strong>Антипаттерны.</strong> Список «так — нет, потому что». Самый полезный файл: он ловит то, что человек замечает глазом, а автомат — нет.</p>
  <p id="gTjF">🔴 <strong>Главное правило про правила:</strong> числа должны быть в <strong>кадрах</strong>, а не в секундах. «0.5 секунды» при пересчёте накапливает ошибку, и к концу ролика субтитры уезжают. 24 fps → 0.5с = 12 кадров, так и писать.</p>
  <hr />
  <h2 id="o9jq">Шаг 4. Компоненты графики</h2>
  <p id="BCzu">Здесь главная ошибка новичка, и она стоит недели.</p>
  <p id="b6SY"><strong>Описание словами не работает.</strong> Если в правилах написано «карточка со скруглением 28px и подложкой из стекла», агент каждый раз пишет её заново, за пять минут, на ходу. Получается белый прямоугольник с текстом.</p>
  <p id="SeE7"><strong>Нужен готовый код.</strong> Компоненты пишутся один раз и лежат в <code>src/pack/</code>. Агент их импортирует, а не изобретает.</p>
  <p id="M6nO">Минимальный набор, который закрывает 90% роликов:</p>
  <ul id="jwGb">
    <li id="sfN5"><strong>субтитры</strong> с обводкой и свечением;</li>
    <li id="7QqG"><strong>карточка кода</strong> с шапкой, подсветкой, печатью по символам;</li>
    <li id="DkSy"><strong>чипы</strong> — короткие подписи, всплывающие по ходу речи;</li>
    <li id="wDfm"><strong>счётчик</strong> — цифры прокручиваются;</li>
    <li id="KaMk"><strong>вставка-картинка</strong> — карточка над или под лицом;</li>
    <li id="ftKG"><strong>финальная плашка</strong> с призывом.</li>
  </ul>
  <p id="l5Nk">🔴 <strong>Грабля.</strong> Шрифты грузятся асинхронно. Без явного ожидания первые кадры отрендерятся системным шрифтом — на видео это видно, и потом не чинится. Нужен <code>delayRender</code> до готовности всех шрифтов.</p>
  <p id="XbIF">🔴 <strong>Грабля с кириллицей.</strong> Три русских слова не всегда влезают в строку даже на минимальном кегле: «ГЕНЕРИРУЕТ ИЗОБРАЖЕНИЯ БЕСПЛАТНО» — это 1555 пикселей при ширине кадра 1080. Значит кегль подбирается <strong>замером ширины</strong>, а карточка при необходимости режется. Иногда выходит одно слово на карточку, и это нормально.</p>
  <hr />
  <h2 id="xwQM">Шаг 5. Звук</h2>
  <p id="eppv">Три вещи, которые слышно сразу.</p>
  <p id="pseK"><strong>SFX кладутся в WAV, не в MP3.</strong> У MP3 плавающая тишина в начале файла, и звук на цифре приезжает с опозданием в пару кадров. Это заметно.</p>
  <p id="WhwC"><strong>Тишину в начале обрезать в ноль</strong>, а все файлы категории нормализовать к одному пику. Тогда громкость выставляется одним коэффициентом и работает предсказуемо.</p>
  <p id="ZtoC"><strong>Ротация.</strong> Минимум 3-4 файла на категорию. Один и тот же «вжух» двенадцать раз за ролик читается как дефект.</p>
  <p id="b8vo"><strong>Музыка</strong> — инструментал без вокала, ровная динамика без дропов, свободная середина. Голос живёт в 200 Гц — 4 кГц; если там мелодия, она дерётся с речью даже на тихом уровне. Помогает мягкий провал на 1.2 кГц и 2.6 кГц: музыка на слух почти не меняется, а голос читается.</p>
  <p id="AdaZ"><strong>Без дакинга.</strong> Всё просто тише голоса. Голос не в лимитер. Чисто и тихо лучше, чем громко и зажато.</p>
  <hr />
  <h2 id="UkZk">Шаг 6. Инструкция для агента</h2>
  <p id="B62y">Один файл в корне — <code>PROMPT.md</code>. В нём порядок работы:</p>
  <ol id="23QL">
    <li id="7Ywv">Найти исходник в <code>input/</code>, проверить fps и разрешение.</li>
    <li id="WZ6o">Сделать транскрипт с таймингами <strong>слов</strong>, а не фраз.</li>
    <li id="tZGG">Разложить речь по смысловым блокам.</li>
    <li id="Uh2o">Вырезать брак: повторы, фальш-старты, паузы.</li>
    <li id="Tj9q">Собрать субтитры и графику.</li>
    <li id="i7vV">Отрендерить.</li>
    <li id="Qrix"><strong>Прогнать автопроверки. Нашёл дефект — починить и пересобрать.</strong></li>
  </ol>
  <p id="v1m6">🔴 <strong>Обязательно поставить потолок итераций.</strong> Без него агент будет шлифовать до упора и отдаст либо перешлифованное, либо ничего. Три круга, дальше — отдать как есть и перечислить нерешённое.</p>
  <p id="AA6C">🔴 <strong>Транскрипт со словарём.</strong> Обычный Whisper на русской речи ломает английские названия: «мобин» превращается в «мобильн». Список названий передаётся в <code>--initial_prompt</code>, и распознавание становится точным. Самая дешёвая правка во всём пайплайне.</p>
  <hr />
  <h2 id="PAVy">Шаг 7. Автопроверки</h2>
  <p id="YEu9">То, что отличает рабочий пайплайн от игрушки. Скрипт проверяет ролик перед сдачей и <strong>блокирует</strong> сборку при дефекте.</p>
  <p id="M6c7">Что проверять:</p>
  <ul id="nCOQ">
    <li id="cxXU">нет шотов и слоёв короче секунды;</li>
    <li id="ayIg">нет окон без движения картинки дольше трёх секунд;</li>
    <li id="9p16">субтитры влезают в кадр, не пересекают лицо, длятся не меньше минимума;</li>
    <li id="zpPZ">уровни звука в цели, пик не клипует;</li>
    <li id="z2CA">ничего важного не попало в зоны, которые перекроет интерфейс площадки;</li>
    <li id="8WPZ">нет недетерминированных значений в коде.</li>
  </ul>
  <p id="HX1x">🔴 <strong>Грабля.</strong> Проверка, которая молча проходит на пустых данных, хуже отсутствующей. У нас была проверка насыщенности, которая возвращала ноль кадров и давала зелёный. Каждая проверка должна падать, если ей нечего проверять.</p>
  <hr />
  <h2 id="Yq34">Шаг 8. Запуск</h2>
  <pre id="jUJR">Смонтируй ролик по PROMPT.md. Режим: оверлей. Стиль: premium.
В отчёте: элементов на кадре в среднем и максимуме, какой трек взял.</pre>
  <p id="trjh">Всё. Одна строка.</p>
  <p id="3Fvv">🔴 <strong>Грабля.</strong> Поменял файлы правил — <strong>перезапусти сессию</strong>. Агент читает их на старте, и в середине работы будет утверждать, что компонента не существует, хотя он уже на диске.</p>
  <hr />
  <h2 id="aBbQ">Чему уделить время, а чему нет</h2>
  <p id="x62O"><strong>Стоит:</strong> правилам и антипаттернам. Они дают 80% качества. Один файл «так — нет, потому что» полезнее десяти новых компонентов.</p>
  <p id="I9xa"><strong>Не стоит:</strong> гнаться за количеством эффектов. Пятьсот готовых анимаций не помогут, если не описано, <strong>когда какую</strong> доставать. Мы это проверили: библиотека была, а результат выходил пустым, потому что триггеров не было.</p>
  <p id="t1qj"><strong>Считать надо элементы на кадре, а не вставки на минуту.</strong> Это разные вещи, и путаница между ними даёт скучный ролик при формально выполненном плане.</p>
  <hr />
  <h2 id="MyCr">Порядок сборки, если начинать сегодня</h2>
  <ol id="tPV3">
    <li id="tuTD">Установка и структура папок — час.</li>
    <li id="PPAP">Один компонент субтитров и тестовый рендер трёх секунд — проверить, что шрифты подхватились.</li>
    <li id="kN4x">Правила ритма и антипаттерны — самая полезная часть.</li>
    <li id="SUv5">Остальные компоненты по мере надобности.</li>
    <li id="ysQR">Автопроверки — когда появится, что проверять.</li>
    <li id="7CHH">Звуковая библиотека — в последнюю очередь, но без неё ролик звучит бедно.</li>
  </ol>
  <p id="Fmmj">Не пытаться собрать всё сразу. Первый рабочий ролик важнее полного набора возможностей.</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/7Bg9fVYzZzp</guid><link>https://teletype.in/@ailabshow/7Bg9fVYzZzp?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/7Bg9fVYzZzp?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>📹 ШПАРГАЛКА: 40+ движений камеры для AI-видео</title><pubDate>Wed, 15 Jul 2026 16:01:42 GMT</pubDate><description><![CDATA[Копируй нужный промт и вставляй в конец описания сцены (Kling, Seedance, Runway и т.д.).]]></description><content:encoded><![CDATA[
  <p id="8CAs">Копируй нужный промт и вставляй в конец описания сцены (Kling, Seedance, Runway и т.д.).</p>
  <p id="lddu"><strong>🔹 БАЗОВЫЕ / СТАТИКА</strong></p>
  <p id="sbO5"><strong>Static shot — статичный кадр</strong><br />Камера неподвижна весь клип.<br /><code>locked-off static shot. Movement: hold one fixed camera position for the full clip. Speed: still and steady. Framing: keep the same angle, height, lens distance and composition. End: finish with the same framing and camera position.</code></p>
  <hr />
  <p id="nG75"><strong>🔹 PAN / TILT (поворот с одной точки)</strong></p>
  <p id="m9Hb"><strong>Pan right — панорама вправо</strong><br />Камера поворачивается по горизонтали слева направо.<br /><code>pan right. Movement: rotate the camera horizontally from left to right from one fixed point. Speed: smooth constant rotation. Framing: keep the horizon level while new space enters from the right side of the frame. End: settle on a clear final composition.</code></p>
  <p id="USzK"><strong>Pan left — панорама влево</strong><br />Поворот по горизонтали справа налево.<br /><code>pan left. Movement: rotate the camera horizontally from right to left from one fixed point. Speed: smooth constant rotation. Framing: keep the horizon level while new space enters from the left side of the frame. End: settle on a clear final composition.</code></p>
  <p id="L1mi"><strong>Whip pan right — резкий панорама-хлыст вправо</strong><br />Быстрый рывок камеры вправо со смазом.<br /><code>whip pan right. Movement: rotate rapidly from the starting direction toward a new target on the right. Speed: fast snap with brief motion blur during the rotation. Framing: begin on one readable composition and land on a second readable target. End: settle into a sharp final frame.</code></p>
  <p id="VtKL"><strong>Whip pan left — резкий панорама-хлыст влево</strong><br />Быстрый рывок камеры влево со смазом.<br /><code>whip pan left. Movement: rotate rapidly from the starting direction toward a new target on the left. Speed: fast snap with brief motion blur during the rotation. Framing: begin on one readable composition and land on a second readable target. End: settle into a sharp final frame.</code></p>
  <p id="eKnt"><strong>Tilt up — наклон вверх</strong><br />Камера поднимает объектив вверх с одной точки.<br /><code>tilt up. Movement: rotate the camera upward from one fixed point. Speed: smooth constant tilt. Framing: keep the vertical subject or architecture centered as the frame travels upward. End: land on the upper target.</code></p>
  <p id="TCig"><strong>Tilt down — наклон вниз</strong><br />Камера опускает объектив вниз с одной точки.<br /><code>tilt down. Movement: rotate the camera downward from one fixed point. Speed: smooth constant tilt. Framing: keep the vertical subject or architecture centered as the frame travels downward. End: land on the lower target.</code></p>
  <hr />
  <p id="s0sG"><strong>🔹 ZOOM / LENS (зум объективом)</strong></p>
  <p id="5nXX"><strong>Slow zoom in — медленный зум-приближение</strong><br />Плавно увеличивает фокусное расстояние, кадр сужается.<br /><code>slow zoom in. Movement: slowly increase lens focal length toward a tighter frame. Speed: gradual and even. Framing: keep the main visual target readable as it becomes larger in frame. End: finish on a stable tighter composition.</code></p>
  <p id="X2mR"><strong>Slow zoom out — медленный зум-отдаление</strong><br />Плавно уменьшает фокусное, кадр расширяется.<br /><code>slow zoom out. Movement: slowly decrease lens focal length toward a wider frame. Speed: gradual and even. Framing: keep the main visual target readable as more surrounding space appears. End: finish on a stable wider composition.</code></p>
  <p id="LH6Z"><strong>Fast zoom in — быстрый зум-приближение</strong><br />Быстрое решительное приближение.<br /><code>fast zoom in. Movement: quickly increase lens focal length toward the main visual target. Speed: quick decisive zoom. Framing: keep the target centered or clearly readable during the scale change. End: finish on a stable tighter composition.</code></p>
  <p id="ywbK"><strong>Fast zoom out — быстрый зум-отдаление</strong><br />Быстрое решительное отдаление.<br /><code>fast zoom out. Movement: quickly decrease lens focal length away from the main visual target. Speed: quick decisive zoom. Framing: keep the target readable as the surrounding space appears. End: finish on a stable wider composition.</code></p>
  <p id="FiyM"><strong>Crash zoom in — резкий зум-удар внутрь</strong><br />Очень быстрый агрессивный наезд.<br /><code>crash zoom in. Movement: snap the lens rapidly toward the main visual target. Speed: very fast and punchy. Framing: keep the target readable through the sudden scale change. End: land on a bold tighter composition.</code></p>
  <p id="2h5s"><strong>Crash zoom out — резкий зум-удар наружу</strong><br />Очень быстрый агрессивный отскок.<br /><code>crash zoom out. Movement: snap the lens rapidly away from the main visual target. Speed: very fast and punchy. Framing: keep the target readable as the surrounding space appears. End: land on a bold wider composition.</code></p>
  <hr />
  <p id="3bpq"><strong>🔹 DOLLY / TRACK (физическое перемещение камеры)</strong></p>
  <p id="oU8G"><strong>Dolly in — наезд вперёд</strong><br />Камера физически едет вперёд к объекту.<br /><code>dolly in. Movement: move the camera physically forward in a straight line toward the main subject. Speed: smooth controlled push. Framing: keep camera height, lens direction and subject position consistent while distance closes. End: finish in a tighter composition.</code></p>
  <p id="kE0Z"><strong>Dolly out — отъезд назад</strong><br />Камера физически едет назад от объекта.<br /><code>dolly out. Movement: move the camera physically backward in a straight line away from the main subject. Speed: smooth controlled retreat. Framing: keep lens direction and camera height consistent while more environment enters frame. End: finish in a wider composition.</code></p>
  <p id="l3eJ"><strong>Truck right — проезд вправо</strong><br />Камера едет вбок вправо по прямой.<br /><code>truck right. Movement: move the camera physically to the right on a straight horizontal path. Speed: smooth constant lateral travel. Framing: keep the lens facing the same direction while the scene slides across frame. End: finish on a clean lateral composition.</code></p>
  <p id="poaS"><strong>Truck left — проезд влево</strong><br />Камера едет вбок влево по прямой.<br /><code>truck left. Movement: move the camera physically to the left on a straight horizontal path. Speed: smooth constant lateral travel. Framing: keep the lens facing the same direction while the scene slides across frame. End: finish on a clean lateral composition.</code></p>
  <p id="B0pS"><strong>Pedestal up — подъём камеры вверх</strong><br />Вся камера едет вертикально вверх.<br /><code>pedestal up. Movement: move the entire camera vertically upward in a straight line. Speed: smooth constant lift. Framing: keep the lens level and pointed in the same direction during the vertical move. End: finish with the higher framing clearly readable.</code></p>
  <p id="pm48"><strong>Pedestal down — опускание камеры вниз</strong><br />Вся камера едет вертикально вниз.<br /><code>pedestal down. Movement: move the entire camera vertically downward in a straight line. Speed: smooth constant descent. Framing: keep the lens level and pointed in the same direction during the vertical move. End: finish with the lower framing clearly readable.</code></p>
  <p id="HsTa"><strong>Slider right — слайдер вправо</strong><br />Небольшой контролируемый сдвиг вправо (параллакс).<br /><code>slider right. Movement: slide the camera a small distance to the right. Speed: slow controlled constant motion. Framing: keep foreground, subject and background layers readable as parallax shifts. End: finish on a refined composition with the new right-side angle visible.</code></p>
  <p id="nXNl"><strong>Slider left — слайдер влево</strong><br />Небольшой контролируемый сдвиг влево (параллакс).<br /><code>slider left. Movement: slide the camera a small distance to the left. Speed: slow controlled constant motion. Framing: keep foreground, subject and background layers readable as parallax shifts. End: finish on a refined composition with the new left-side angle visible.</code></p>
  <p id="bhBU"><strong>Push past / pass-by shot — проход мимо объекта</strong><br />Камера едет вперёд мимо переднего объекта.<br /><code>push past. Movement: move forward past a visible foreground object, edge or opening. Speed: smooth forward glide. Framing: let the foreground pass close to the lens while the space beyond becomes clearer. End: arrive inside or beyond the foreground layer.</code></p>
  <hr />
  <p id="CwmG"><strong>🔹 ФИЗИЧЕСКИЕ ДВИЖЕНИЯ / ОРБИТА</strong></p>
  <p id="e3ht"><strong>Arc right — дуга вправо</strong><br />Камера идёт по дуге вокруг объекта вправо.<br /><code>arc right. Movement: move on a shallow curved path around the main subject toward the right side. Speed: smooth measured curve. Framing: keep distance, height and subject readability consistent while the angle changes. End: finish from a new right-side angle.</code></p>
  <p id="RR7o"><strong>Arc left — дуга влево</strong><br />Камера идёт по дуге вокруг объекта влево.<br /><code>arc left. Movement: move on a shallow curved path around the main subject toward the left side. Speed: smooth measured curve. Framing: keep distance, height and subject readability consistent while the angle changes. End: finish from a new left-side angle.</code></p>
  <p id="eVTY"><strong>Orbit clockwise — орбита по часовой</strong><br />Камера кружит вокруг объекта по часовой стрелке.<br /><code>clockwise orbit. Movement: circle clockwise around the main subject at a consistent radius. Speed: smooth controlled orbit. Framing: keep the subject centered while the background rotates around them. End: complete the intended arc or full circle with stable framing.</code></p>
  <p id="jfnR"><strong>Orbit counterclockwise — орбита против часовой</strong><br />Камера кружит вокруг объекта против часовой.<br /><code>counterclockwise orbit. Movement: circle counterclockwise around the main subject at a consistent radius. Speed: smooth controlled orbit. Framing: keep the subject centered while the background rotates around them. End: complete the intended arc or full circle with stable framing.</code></p>
  <hr />
  <p id="m1Hk"><strong>🔹 TRACKING / СЛЕЖЕНИЕ</strong></p>
  <p id="7HBP"><strong>Tracking shot — трекинг за объектом</strong><br />Камера движется вместе с объектом сквозь сцену.<br /><code>tracking shot. Movement: move through the scene with the main subject. Speed: match the subject&#x27;s pace. Framing: keep the subject consistently readable while the environment moves around them. End: maintain a clear moving composition.</code></p>
  <p id="hROs"><strong>Follow shot / over-the-shoulder — слежение со спины</strong><br />Камера идёт позади объекта на высоте плеча.<br /><code>follow shot from behind. Movement: move behind the subject along their route at shoulder height. Speed: match the subject&#x27;s pace. Framing: keep the back, shoulder or head as the foreground guide while the route ahead stays readable. End: continue following with the subject leading the frame.</code></p>
  <p id="lWqQ"><strong>Reverse tracking / walk-and-talk — обратный трекинг</strong><br />Камера едет спиной вперёд перед идущим героем.<br /><code>reverse tracking shot. Movement: move backward in front of the walking subject. Speed: match the subject&#x27;s forward pace. Framing: keep front-facing face and body framing stable as the background moves behind them. End: hold a clear front-facing moving composition.</code></p>
  <p id="5RR4"><strong>Side tracking — боковой трекинг</strong><br />Камера едет параллельно сбоку от объекта.<br /><code>side tracking shot. Movement: move parallel beside the subject along their direction of travel. Speed: match the subject&#x27;s motion. Framing: keep the subject in side profile or three-quarter profile at a stable distance. End: continue the parallel movement with clear horizontal motion.</code></p>
  <p id="oGBb"><strong>Low tracking — нижний трекинг</strong><br />Слежение на уровне земли / ниже пояса.<br /><code>low tracking shot. Movement: move at ground or below-waist height alongside the subject&#x27;s movement path. Speed: match the subject, footsteps or wheels. Framing: keep the low detail readable while the ground plane moves through frame. End: finish with the low perspective clearly maintained.</code></p>
  <p id="8URi"><strong>Vehicle tracking — слежение за транспортом</strong><br />Камера движется вместе с машиной по её маршруту.<br /><code>vehicle tracking shot. Movement: move with the vehicle along its route. Speed: match the vehicle&#x27;s pace. Framing: keep the vehicle stable in frame while the road or environment moves past. End: maintain a clear moving vehicle composition.</code></p>
  <p id="nFnH"><strong>Chase shot — погоня</strong><br />Быстрое динамичное преследование объекта.<br /><code>chase shot. Movement: follow a moving subject quickly along the action route. Speed: fast, reactive and physically close. Framing: keep the subject visible while allowing energetic reframing. End: stay connected to the subject in motion.</code></p>
  <hr />
  <p id="T9Hh"><strong>🔹 РУЧНАЯ / НА ТЕЛЕ</strong></p>
  <p id="XCm8"><strong>Handheld shot — съёмка с рук</strong><br />Живая камера с естественной тряской.<br /><code>handheld shot. Movement: hold the camera at human operator height with natural body movement. Speed: responsive and organic. Framing: keep the subject readable while the frame has subtle sway and micro-adjustments. End: finish with a natural handheld composition.</code></p>
  <p id="jkzG"><strong>Body-mounted camera / Snorricam — камера на теле</strong><br />Камера закреплена на герое, фон движется вокруг него.<br /><code>body-mounted Snorricam. Movement: keep the camera fixed relative to the subject&#x27;s torso or face while the subject moves. Speed: match the subject&#x27;s body motion. Framing: keep the subject close, centered and facing the camera as the background moves around them. End: finish with the subject still locked in frame.</code></p>
  <p id="AbeF"><strong>First-person view — вид от первого лица</strong><br />Камера = глаза героя, видны руки/тело.<br /><code>first-person view. Movement: move forward at human eye height from the character&#x27;s perspective. Speed: natural walking or reaching pace. Framing: use visible hands, arms or body edges as the viewer&#x27;s physical reference. End: arrive at the next point of action from the same point of view.</code></p>
  <hr />
  <p id="32iP"><strong>🔹 DRONE / CRANE (кран и дрон)</strong></p>
  <p id="aZ9p"><strong>Crane up — кран вверх</strong><br />Плавный подъём сквозь открытое пространство.<br /><code>crane up. Movement: travel smoothly upward through open space. Speed: slow controlled vertical lift. Framing: keep the subject or location readable as the camera rises. End: finish with the higher scale clearly visible.</code></p>
  <p id="G25Z"><strong>Crane down — кран вниз</strong><br />Плавный спуск сквозь пространство.<br /><code>crane down. Movement: travel smoothly downward through open space. Speed: slow controlled vertical descent. Framing: keep the subject or location readable as the camera descends. End: finish with the lower subject or destination clearly visible.</code></p>
  <p id="Girq"><strong>Drone push in — наезд дроном</strong><br />Дрон летит вперёд к объекту.<br /><code>drone push in. Movement: fly smoothly forward through open space toward the subject or destination. Speed: controlled aerial glide. Framing: keep the route and destination readable as the camera approaches. End: arrive at a closer aerial composition.</code></p>
  <p id="IBVF"><strong>Drone pull back — отлёт дроном</strong><br />Дрон летит назад, раскрывая пейзаж.<br /><code>drone pull back. Movement: fly smoothly backward away from the subject or destination. Speed: controlled aerial retreat. Framing: keep the subject readable as more landscape appears. End: finish on a wider aerial composition.</code></p>
  <p id="M6mZ"><strong>Helicopter shot — вертолётный облёт</strong><br />Высотный аэрокадр по широкой траектории.<br /><code>helicopter-style aerial shot. Movement: move from high altitude along a broad gradual flight path. Speed: steady controlled aerial motion. Framing: keep the landscape or distant moving subject readable at wide scale. End: finish on a stable high-altitude composition.</code></p>
  <hr />
  <p id="8ZJp"><strong>🔹 СПЕЦЭФФЕКТЫ / SPECIALS</strong></p>
  <p id="hYRQ"><strong>Tilt-shift — эффект миниатюры</strong><br />Съёмка сверху с узкой полосой резкости (игрушечный вид).<br /><code>tilt-shift miniature view. Movement: hold or glide from a high angled view over the scene. Speed: small precise movement. Framing: keep a narrow band of sharp focus across the key subject area with soft blur above and below. End: finish with the miniature-scale view intact.</code></p>
  <p id="j7XV"><strong>Infinite zoom — бесконечный зум</strong><br />Непрерывный наезд к центру.<br /><code>infinite zoom. Movement: zoom continuously inward toward the exact center target. Speed: smooth accelerating zoom. Framing: keep the circular target centered as it expands. End: finish when the next visual world fills the frame.</code></p>
  <p id="3Qz8"><strong>Earth zoom out — зум из космоса</strong><br />Отдаление от улицы до масштаба планеты.<br /><code>earth zoom out. Movement: pull upward from the starting point through street, city, landscape and planet scale. Speed: rapid expanding zoom out. Framing: keep the original location centered as scale grows. End: finish on a planet-scale view with the starting point still implied at center.</code></p>
  <p id="3Xwc"><strong>Time-lapse — таймлапс</strong><br />Статичная камера, время летит вперёд.<br /><code>locked-camera time-lapse. Movement: hold one fixed camera position while time moves rapidly forward. Speed: fast time compression with a stable camera. Framing: keep the same composition and horizon as motion passes through the frame. End: finish from the same camera angle with visible passage of time.</code></p>
  <p id="pyWA"><strong>Pass-through objects — проход сквозь объект</strong><br />Камера проходит сквозь поверхность/преграду в пространство за ней.<br /><code>pass-through movement. Movement: move forward toward a visible object, surface or barrier and continue into the space beyond. Speed: smooth centered glide. Framing: keep the opening or surface centered as the transition point. End: arrive inside the revealed space beyond.</code></p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/zVZEEBkAXFu</guid><link>https://teletype.in/@ailabshow/zVZEEBkAXFu?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/zVZEEBkAXFu?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Монтаж видео на ИИ по одному промту - весь пайплайн</title><pubDate>Mon, 13 Jul 2026 10:21:25 GMT</pubDate><media:content medium="image" url="https://img2.teletype.in/files/19/3b/193bda32-7b2b-4125-b4eb-e60ef3b718eb.png"></media:content><description><![CDATA[<img src="https://img1.teletype.in/files/cc/32/cc327b8d-fd53-4a96-a90c-a6850b7ea0db.jpeg"></img>👋 Вы просили в комментах - вот оно. Как я превратил обычный talking-head в тот самый анимированный «Vox»-монтаж - одним промтом в Google Omni перекрасил весь фон в движущийся бумажный коллаж, а лицо и голос остались нетронутыми.]]></description><content:encoded><![CDATA[
  <p id="mXBu">👋 Вы просили в комментах - вот оно. Как я превратил обычный talking-head в тот самый анимированный «Vox»-монтаж - одним промтом в Google Omni перекрасил весь фон в движущийся бумажный коллаж, а лицо и голос остались нетронутыми.</p>
  <p id="twaD">Без After Effects. Без монтажёра. Только клип и промт. ⚡</p>
  <h3 id="gmjp">🤖 Что вообще такое Google Omni</h3>
  <p id="rCjG">Google Omni (видео-модель Gemini) - это видеоредактор, который работает по промту. Даёшь ему клип + текстовую инструкцию, и он перегенерирует видео под неё: меняет фон, добавляет motion-графику, перекрашивает всё целиком. Всё из слов.</p>
  <ul id="IQon">
    <li id="2t7U">🚫 Нет таймлайна</li>
    <li id="Wpb6">🚫 Нет ключевых кадров</li>
    <li id="clgp">🚫 Нет слоёв</li>
  </ul>
  <p id="wYQe">Главный ключ к этому ролику 👇</p>
  <p id="d64c">🔒 Ты говоришь модели трогать <strong>только фон</strong> и не касаться человека. Именно это держит картинку живой, а не «плывущей» - твоё видео остаётся твоим, а ИИ просто строит мир позади тебя.</p>
  <p id="oF6H">💡 Я гоняю Omni через https://arvixai.net  - загрузил, вписал промт, готово. Ноль настройки.</p>
  <h3 id="fNiN">🎬 Шаг 1 - Начни с клипа</h3>
  <p id="dxYA">Здесь ты ничего не генеришь с нуля. Берёшь готовый клип. 📤</p>
  <ul id="VKCl">
    <li id="6FfG">🎙️ Лучше всего заходит talking-head, где ты говоришь в камеру (подкаст-стиль, микрофон в кадре = мгновенное доверие)</li>
    <li id="BRmO">💡 Держи просто и со светом - плоский однотонный фон идеален (ИИ его всё равно заменит)</li>
    <li id="F1HD">⏱️ 10 секунд или меньше за один проход. Длинный сценарий? Разбей на части и склей потом</li>
  </ul>
  <p id="MH5n">Загрузи этот клип в Omni. Это твоя точка старта. ✅</p>
  <h3 id="IjOv">🗞️ Шаг 2 — Стиль «Vox», разобранный по косточкам</h3>
  <p id="sdUd">Тот самый вид, который все копируют - это стиль объяснялок Vox, анимированный бумажный коллаж:</p>
  <ul id="wqLL">
    <li id="sske">📰 Состаренная газетная бумага + бумага в клетку, текстура ксерокопии</li>
    <li id="6WKQ">✂️ Halftone-вырезки (старые фото, гравюры, иконки), которые выскакивают и въезжают, как рваная бумага</li>
    <li id="GXCe">✏️ Рисованные каракули - круги, стрелки, звёзды - дорисовываются в такт словам</li>
    <li id="mjCm">🖍️ Жирные ключевые слова в грубых блоках-маркерах (жёлтый / красный)</li>
    <li id="P0pE">⚡ Быстро, плотно, «редакционно» - каждую секунду что-то движется</li>
  </ul>
  <p id="gJOd">Магия в том, что это выглядит рукодельным и информативным, поэтому каждое предложение попадает визуально. Omni строит весь этот мир позади тебя из одного промта.</p>
  <h3 id="BBEg">🔑 Шаг 3 - Промт (тот самый, который я реально использовал)</h3>
  <p id="xFuZ">Не урезанная версия - это настоящий промт из ролика. Он редактирует <strong>только фон</strong> и держит меня + мой звук залоченными. 👇</p>
  <p id="Al8M"><em>(промт оставляю в оригинале — он должен быть на английском)</em></p>
  <p id="U46I">BACKGROUND-ONLY EDIT. Treat the speaking man as a locked, frozen foreground layer (like a green-screen key). Do NOT modify him or his audio: face, body, hands, mouth, lip movement, voice, words and speech timing stay 100% identical to the source, frame for frame. Do not re-time his mouth, do not slow, speed up, echo, repeat or re-synthesise the audio. Keep original playback speed exactly. Behind him, build a DENSE, fast, high-energy &quot;Vox&quot;-style animated paper-collage — off-white aged newsprint + grid-paper texture, many halftone/duotone torn-paper cut-outs continuously sliding, popping and stacking in, plus hand-drawn black scribble arrows, circles, stars and squiggles animating on. Something happening every second. Imagery matches what he says, appearing on HIS RIGHT (left of screen). Timed beats: 0.0–2.2s (&quot;Video editors are cooked&quot;): a halftone cut-out of an old film-editing machine / timeline with a thick black scribbled X slashed through it, plus scattered paper scraps flying in. Keyword &quot;COOKED&quot; in a rough RED highlighter block. 2.9–6.6s (&quot;Google just dropped an AI that edits video from one line of text&quot;): the Google &quot;G&quot; logo as a torn-paper cut-out popping in, halftone hands/newspaper cut-outs, small sparkles. Keywords &quot;GOOGLE&quot; then &quot;AI&quot; — &quot;AI&quot; in a YELLOW highlighter block. 7.3–9.8s (&quot;and the proof is on your screen right now&quot;): a retro halftone TV / monitor cut-out whose screen shows a tiny copy of him, with a hand-drawn arrow pointing to it. Keyword &quot;PROOF&quot; in a YELLOW highlighter block. TEXT RULE: the only text allowed is those exact short keywords — &quot;COOKED&quot;, &quot;GOOGLE&quot;, &quot;AI&quot;, &quot;PROOF&quot; — spelled EXACTLY, uppercase, bold clean sans-serif. Do NOT write any other words, sentences or labels, and never invent or misspell text; if unsure, show no text rather than gibberish. Only the background behind the locked foreground man changes; he and his audio are never altered.</p>
  <p id="8h6n"></p>
  <h3 id="fj36">🛠️ Шаг 4 - Адаптируй под СВОЙ клип</h3>
  <p id="8bEO">Верхний и нижний абзацы оставь как есть (они лочат человека + контролируют текст). Меняй только среднюю секцию с таймингом сцен. 👇</p>
  <ol id="IzyI">
    <li id="zV58">📝 Расшифруй свой клип - отметь, когда произносится каждая ключевая фраза (начало–конец в секундах). Это твои тайм-коды сцен.</li>
    <li id="5MdD">✍️ Опиши каждую сцену: <code>тайм-код (&quot;что он говорит&quot;): [картинка-коллаж] + Keyword &quot;WORD&quot; in a [цвет] block.</code></li>
    <li id="HjYS">🎯 Подбирай картинку под слова - говоришь «Google»? Логотип Google. Говоришь «монтаж»? Перечёркнутый таймлайн. Делай буквально.</li>
    <li id="NnBQ">🔤 Ключевые слова - 1–2 сильных слова, заглавными. Короткие слова выживают, предложения превращаются в кашу.</li>
    <li id="hlkm">➡️ Ставь все картинки на одну сторону, чтобы ничего не наезжало на тебя.</li>
  </ol>
  <h3 id="3a3f">✅ 5 правил, которые заставляют это работать</h3>
  <ul id="9zqb">
    <li id="sHc8">🔒 <strong>Залочь человека + звук в промте.</strong> Как только разрешишь редактировать весь кадр - он перетаймит твой рот и заэхоит голос. «Только фон» - это вся суть.</li>
    <li id="Ne1N">🔤 <strong>Не давай Omni писать твои субтитры.</strong> Он каждый раз коверкает примерно 1 букву. Только короткие ключевые слова - а чистые субтитры + озвучку добавляй потом, в CapCut.</li>
    <li id="kKHf">🎬 <strong>Режиссируй по сценам.</strong> «Сделай в стиле Vox» = каша. Говори, какая картинка, где и когда.</li>
    <li id="sfLz">⚡ <strong>Держи плотность.</strong> Проси «что-то происходит каждую секунду», иначе будет пусто.</li>
    <li id="ndbb">✂️ <strong>Максимум 10 сек за проход.</strong> Длинные сценарии разбивай и склеивай потом.</li>
  </ul>
  <h3 id="ZRTZ">🎬 Где это реально делать → Arcads</h3>
  <p id="jmoN">Omni живёт внутри Arvix  самое простое место, чтобы его запустить. Без настройки, без установки. 👇</p>
  <ol id="yMLg">
    <li id="7KBu">📤 Загрузи свой клип</li>
    <li id="a0Ot">🎬 Выбери видео-монтаж Omni</li>
    <li id="TKuw">🔑 Вставь промт из Шага 3 (со своими сценами)</li>
    <li id="rP6b">⚡ Генерь → скачивай → добавляй субтитры + озвучку</li>
  </ol>
  <p id="wmPS">👉 Начать тут: <a href="https://arvixai.net" target="_blank">https://arvixai.net</a> </p>
  <p id="dtrm"></p>
  <h3 id="Bs7h">🚀 Хочешь всю систему целиком?</h3>
  <p id="p8qo">Это лишь один кусок большого метода - как построить ИИ-креатора и превращать такой контент в доход.</p>
  <p id="FsZd">Подписывайся- покажу ещё ИИ-монтажи, которых никто не показывает. 👇</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/FnbrQa59bNo</guid><link>https://teletype.in/@ailabshow/FnbrQa59bNo?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/FnbrQa59bNo?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Пост 13.07.2026</title><pubDate>Mon, 13 Jul 2026 09:11:58 GMT</pubDate><description><![CDATA[Presented in the style of raw, unprocessed iPhone handheld footage mixing vertical and horizontal shots, with all camera settings on automatic, no color grading or effects in post. The footage carries the operator's real sense of breathing, slight irregular handheld shake, autofocus hunting and brief moments of losing focus, and automatic white balance drifting naturally with the kitchen lighting. The overall image is flat and slightly washed out, preserving authentic lens flare, slight motion blur, edge compression and other smartphone-capture qualities. Only natural in-scene ambient sound is used (refrigerator motor hum, boiling, kitchen knife, oil splatter, steam, bare feet on the floor, fabric rustle, the silence of night) — no BGM...]]></description><content:encoded><![CDATA[
  <hr />
  <p id="AISq">Presented in the style of raw, unprocessed iPhone handheld footage mixing vertical and horizontal shots, with all camera settings on automatic, no color grading or effects in post. The footage carries the operator&#x27;s real sense of breathing, slight irregular handheld shake, autofocus hunting and brief moments of losing focus, and automatic white balance drifting naturally with the kitchen lighting. The overall image is flat and slightly washed out, preserving authentic lens flare, slight motion blur, edge compression and other smartphone-capture qualities. Only natural in-scene ambient sound is used (refrigerator motor hum, boiling, kitchen knife, oil splatter, steam, bare feet on the floor, fabric rustle, the silence of night) — no BGM, no dialogue, no subtitles, no text. Every shot changes framing and angle to avoid monotony. Shot in an authentic slice-of-life handheld style.</p>
  <p id="7MfR"><strong>Wardrobe:</strong> an adult woman wearing the silver shiny chain-fringe strappy bodysuit from the reference image1 , paired with black lace-up high-heeled sandals, her smooth skin shimmering with a fine sheen under the light.</p>
  <p id="GBeG"><strong>cut1 (wide, from the rear at an angle):</strong> A modern kitchen late at night, a large window revealing the night view outside. The refrigerator door is open, its cyan-white cold light illuminating the woman&#x27;s back and the silver chain bodysuit. She slightly turns her head, searching the shelf for ingredients, the chains swaying gently with her movement. Ambient sound: refrigerator motor hum, the silence of night.</p>
  <p id="G85P"><strong>cut2 (low angle, from inside the refrigerator):</strong> She leans her upper body forward into the fridge, the cyan-white cold light illuminating her face, collarbone and silver chains from below. Her dark long hair falls forward with gravity. Her right hand with black-painted nails pulls out bacon and cheese. The silver chain bodysuit glints in the cold light. Ambient sound: packaging being pulled out, cold air flowing.</p>
  <p id="IjEG"><strong>cut3 (close-up, overhead):</strong> A large pot boils violently, a bundle of spaghetti drops into the water, white foam and steam surge up fiercely, the heat hitting the silver chains. Ambient sound: violent boiling, noodles entering water.</p>
  <p id="DRMA"><strong>cut4 (close-up, from the upper diagonal):</strong> On a wooden cutting board, the black-nailed hand holds down the bacon, the kitchen knife cutting rhythmically. The silver chains sway gently with the arm&#x27;s movement. Ambient sound: the rhythmic sound of the knife striking the board.</p>
  <p id="DXJl"><strong>cut5 (close-up, from the upper diagonal):</strong> In the frying pan, bacon sizzles in oil, grease splatters up, steam rises and hits the woman&#x27;s arm and the silver chains. Ambient sound: bacon frying, oil splatter.</p>
  <p id="Q0Ly"><strong>cut6 (close-up, from the rear at an angle):</strong> She tucks her hair behind her ear, the skin at the nape of her neck and the silver chains slightly damp in the steam. Her side profile enters the frame. Ambient sound: the pot boiling, steam.</p>
  <p id="RxP1"><strong>cut7 (close-up, overhead):</strong> In a glass bowl, a whisk stirs egg, cheese and black pepper, the yellow liquid interweaving with the hand&#x27;s movement and the silver chains. Ambient sound: the whisk tapping the bowl.</p>
  <p id="Vam2"><strong>cut8 (extreme close-up, close to the floor):</strong> Bare feet (wearing only the black high-heeled sandals) walk across the kitchen floor, light reflecting off the shoe surface and the silver chains. Ambient sound: the faint sound of heels touching the floor, the silence of night.</p>
  <p id="PE5B"><strong>cut9 (close-up, directly from behind):</strong> The silver chain bodysuit stretches between her shoulder blades, the back muscles faintly surfacing as she leans forward to stir the pot, the chains glinting with her movement. Ambient sound: the pot boiling, steam.</p>
  <p id="1MVt"><strong>cut10 (close-up):</strong> Tongs lift the spaghetti, the long strands tracing an arc through the steam, glistening droplets falling, landing on the silver chains. Ambient sound: noodles being lifted, water droplets.</p>
  <p id="FjkW"><strong>cut11 (close-up, face):</strong> In the heat, her wrist brushes across her forehead, sweat thinly glimmering. Her eyes narrow slightly, breath escaping between her lips, her front hair blown by air. The silver chains rise and fall on her chest with her breathing. Ambient sound: faint breath, distant oil splatter.</p>
  <p id="BmJz"><strong>cut12 (close-up, from the upper diagonal):</strong> The spaghetti is tossed into the frying pan, entwining with the bacon and grease. Ambient sound: noodles dropping into the pan.</p>
  <p id="Q7eM"><strong>cut13 (medium shot, from the front slightly above):</strong> She gently pinches the chest area of the silver chain bodysuit, slowly pulling it away to cool off, steam rising, her face tilting slightly upward, eyes narrowing. The chains settle back against her skin. Ambient sound: a quiet gap between the boiling.</p>
  <p id="04MJ"><strong>cut14 (close-up, high angle over the shoulder from behind):</strong> From her shoulders to the back of her head enters the frame, the silver chains glinting between her shoulder blades. One hand tilts the glass bowl, the egg-and-cheese liquid slowly flowing over the spaghetti, the other hand quickly stirring with tongs. Ambient sound: liquid entwining, tongs stirring.</p>
  <p id="DSjx"><strong>cut15 (close-up):</strong> The tongs roll up the carbonara and plate it onto a white dish, the cream sauce, bacon and noodles beautifully glossy under the warm light. Ambient sound: plating.</p>
  <p id="kyn2"><strong>cut16 (close-up, shallow depth of field, direct side profile):</strong> The finished plate of carbonara, black pepper grains slowly falling from the grinder, dancing through the air and piling onto the pasta. The black-nailed hand holding the grinder enters from above then slowly disappears, leaving only the dish bathed in warm amber light. Ambient sound: the grinding of the pepper mill gradually stopping, fading into the silence of night.</p>
  <p id="qXTn">The footage shows an authentic, unprocessed handheld video quality, a documentary-level sense of natural imperfection, with no color grading or effects. All camera behavior conforms to the physical characteristics of automatic iPhone shooting.</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/cHWpnFoAkvJ</guid><link>https://teletype.in/@ailabshow/cHWpnFoAkvJ?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/cHWpnFoAkvJ?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>🔁 Петли в Claude Code — полный пайплайн (spec → build → review)</title><pubDate>Tue, 07 Jul 2026 11:28:44 GMT</pubDate><description><![CDATA[<img src="https://img1.teletype.in/files/02/30/02304ab5-69ce-4bcc-bb99-1167d4a50525.png"></img>Три скилла, которые гоняют задачу по кругу, пока она не будет доведена до идеала. Ты ставишь задачу один раз — дальше нейросеть сама генерит, проверяет себя и переделывает.]]></description><content:encoded><![CDATA[
  <p id="AgWN">Три скилла, которые гоняют задачу по кругу, пока она не будет доведена до идеала. Ты ставишь задачу один раз — дальше нейросеть сама генерит, проверяет себя и переделывает.</p>
  <hr />
  <h2 id="K0je">Как это работает</h2>
  <ul id="4Odu">
    <li id="42j1"><strong>spec</strong> — расспрашивает тебя о задаче и пишет чёткое тех-задание.</li>
    <li id="I9Uu"><strong>build</strong> — собирает строго по этому ТЗ, без отсебятины.</li>
    <li id="Xq4K"><strong>review</strong> — сверяет результат с ТЗ и возвращает на доработку, если что-то не так.</li>
  </ul>
  <p id="oQtU">Связка <code>build ⇄ review</code> крутится по кругу, пока каждый пункт ТЗ не будет выполнен.</p>
  <hr />
  <h2 id="yqvK">Шаг 1. Создай три скилла</h2>
  <p id="HKjC">Открой Claude Code и по очереди вставь три инструкции ниже. После каждой — сохрани скилл.</p>
  <h3 id="zX20">Скилл 1 — spec</h3>
  <pre id="eGjg">Create a Claude Code skill called &quot;spec&quot;. When I run /spec, interview me about
the feature or app I want to build. Ask one focused question at a time until you
fully understand the goal, the must-have requirements, the constraints, and what
&quot;done&quot; looks like. Do not start building. When you have enough, write a clear,
detailed spec and save it to specs/&lt;name&gt;.md. The spec must include: the objective,
the exact requirements, the edge cases to handle, and a concrete definition of done.</pre>
  <h3 id="Si7X">Скилл 2 — build</h3>
  <pre id="j9Gg">Create a Claude Code skill called &quot;build&quot;. When I run /build, read the spec in
specs/&lt;name&gt;.md and build exactly what it describes. Do not add features, refactor
unrelated code, or invent requirements that aren&#x27;t in the spec. When you finish,
list which spec requirements you covered so the review step can check them.</pre>
  <h3 id="gtje">Скилл 3 — review</h3>
  <pre id="aCR0">Create a Claude Code skill called &quot;review&quot;. When I run /review, compare the current
build against specs/&lt;name&gt;.md. Go requirement by requirement and list every gap, bug,
or missing piece, naming the exact spec item each one fails. If anything fails, write
the specific fixes needed and hand them back so /build can address them. Only pass the
build when every requirement in the spec is fully met.</pre>
  <hr />
  <figure id="j08R" class="m_original">
    <img src="https://img1.teletype.in/files/02/30/02304ab5-69ce-4bcc-bb99-1167d4a50525.png" width="1244" />
  </figure>
  <h2 id="HDA2">Шаг 2. Запусти петлю</h2>
  <p id="Sfro">Пропиши свою задачу и вызови все три скилла по очереди:</p>
  <pre id="bjYq">/spec /build /review</pre>
  <ul id="dAGv">
    <li id="Lggr"><code>/spec</code> — задаёт тебе вопросы и пишет ТЗ.</li>
    <li id="cxNA"><code>/build</code> — собирает по ТЗ.</li>
    <li id="xHAj"><code>/review</code> — проверяет и, если есть недочёты, возвращает в <code>/build</code>.</li>
  </ul>
  <p id="0k0d">Связка <code>build → review → build</code> повторяется, пока <code>review</code> не подтвердит, что все требования выполнены.</p>
  <figure id="QmXn" class="m_original">
    <img src="https://img1.teletype.in/files/8a/3c/8a3c9e7b-fc91-437a-8c0d-8451ec01dce8.png" width="1260" />
  </figure>
  <hr />
  <h2 id="pHh2">Шаг 3. Поставь лимит, чтобы не сжечь кредиты</h2>
  <p id="GLbt">Чтобы петля не крутилась бесконечно, задай максимум кругов:</p>
  <pre id="7pFT">MAX_TURNS=[количество кругов]</pre>
  <p id="q4MB">Например, <code>MAX_TURNS=5</code> — петля сделает не больше 5 проходов и остановится. Начни с небольшого значения (3–5), чтобы контролировать расход.</p>
  <hr />
  <h2 id="hy6J">Готово</h2>
  <p id="7Lcm">Петля крутится сама. Ты только ставишь задачу и ждёшь результат.</p>
  <p id="Ez1s"><strong>Важно:</strong> петля — не магия. На сложных багах помогает чёткое ТЗ в <code>spec</code> и адекватный лимит кругов, чтобы модель не начала ломать то, что уже работает. Чем точнее ТЗ — тем меньше кругов и меньше расход.</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/eoSVmNw9vSx</guid><link>https://teletype.in/@ailabshow/eoSVmNw9vSx?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/eoSVmNw9vSx?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>🎬 Как собирать премиальные cinematic-ролики</title><pubDate>Tue, 07 Jul 2026 11:18:03 GMT</pubDate><description><![CDATA[Гайд по созданию luxury-роликов через AI — без съёмочной группы, локаций и бюджета. Только AI и монтаж.]]></description><content:encoded><![CDATA[
  <h2 id="wEXQ">Простой пайплайн от идеи до готового видео</h2>
  <p id="Yn3q"><em>Гайд по созданию luxury-роликов через AI — без съёмочной группы, локаций и бюджета. Только AI и монтаж.</em></p>
  <hr />
  <h2 id="cfC1">📌 Что понадобится</h2>
  <p id="6FdC"><strong>NanoBanana 2</strong> — делает кадры (картинки). <strong>Kling</strong> — оживляет кадры, превращает их в видео. <strong>Premiere / CapCut / DaVinci</strong> — монтаж. <strong>Artlist / Epidemic Sound</strong> — музыка и звуки.</p>
  <p id="ia2u">Правило простое: сначала картинка в NanoBanana 2 → потом эта картинка в Kling двигается → потом всё собираем в монтаже.</p>
  <hr />
  <h1 id="2V7Z">🧱 Этап 1 — Сценарий и раскадровка</h1>
  <p id="amzn">Самая частая ошибка новичка — сразу генерить красивые кадры без плана. Получается набор картинок, который не складывается в историю.</p>
  <p id="D9Zg">Сначала распиши ролик по сценам с таймингом: сцена 1 (0:00–0:15) — что происходит, сцена 2 (0:15–0:30) — что происходит, и так далее.</p>
  <p id="d1bD">Потом внутри каждой сцены чередуй планы по крупности — это и есть «киношность». Общий план показывает, где мы. Средний — объект в обстановке. Крупный — деталь или эмоцию. Макро — фактуру, каплю, текстуру.</p>
  <p id="xa02"><strong>Главное правило: не ставь два одинаковых плана подряд.</strong> Общий → крупный → макро → средний. Если все кадры одинаково широкие — ролик мёртвый.</p>
  <hr />
  <h1 id="64IF">🎨 Этап 2 — Генерация кадров (NanoBanana 2)</h1>
  <p id="iOPo">NanoBanana 2 хорошо читает длинные подробные промпты. Опиши в кадре: что за план и что в нём, какой главный объект, какое окружение и свет, какой цвет, и что НЕ должно появиться.</p>
  <p id="WaPh"><strong>Три слова, которые делают картинку «киношной»</strong> — добавляй их в каждый кадр: <code>anamorphic lens</code>, <code>ARRI Alexa 35 color science</code>, <code>organic 35mm film grain</code>. Без них картинка выглядит как обычный сток.</p>
  <p id="SZh1"><strong>Цвет — сердце luxury.</strong> Именно он отличает дорогое от дешёвого. Держи всю картинку в одной палитре. Для тёплых кадров пиши <code>warm cream-amber, golden-hour light, soft shadows</code>. Для холодных, например для производства, пиши <code>cool steel-grey, clean daylight</code>.</p>
  <p id="wGP0"><strong>Важно про безопасность:</strong> никогда не вставляй логотипы реальных брендов (Apple, Rolls-Royce и подобные). Делай «просто luxury» без чужих марок — так и юридически чисто, и AI не исказит чужой логотип.</p>
  <p id="dLBt">Примеры готовых промптов для картинок:</p>
  <p id="bCqs">Тёплая комната на закате. «Cinematic interior, vertical 9:16, luxury living room at sunset. Low boucle sofa, walnut cabinet, stone coffee table. Warm golden-hour light through sheer curtains, dust motes in the light. Warm cream-amber colors, anamorphic lens, ARRI Alexa 35 color science, organic film grain. No people, no text.»</p>
  <p id="sI0B">Современная холодная фабрика. «Cinematic interior, vertical 9:16, modern hi-tech factory. New CNC machines, clean epoxy floor, brushed steel, LED lighting. Cool daylight, fine dust in the light. Cool steel-grey colors, anamorphic lens, ARRI Alexa 35, film grain. No faces, no text, no old machinery.»</p>
  <p id="yM0s">Крупный план материала. «Extreme macro, vertical 9:16, luxury materials in warm light. Leather, linen, brass edge and stone side by side. Warm sunset light, very shallow focus. Warm cream-amber colors, ARRI Alexa 35, organic film grain. No people, no text.»</p>
  <hr />
  <h1 id="0Rtq">🎥 Этап 3 — Оживление кадров (Kling)</h1>
  <p id="rJTr">Главное, что нужно понять: <strong>Kling — это не NanoBanana, и правила у него другие.</strong></p>
  <p id="kTHG">В NanoBanana можно писать сложные длинные промпты про свет, цвет и материалы. В Kling пиши <strong>только обычным текстом и только про движение</strong>. Никакого цвета и материалов — Kling уже видит их из загруженной картинки. И держи промпт коротким, длинные Kling не принимает.</p>
  <p id="FK5T">В Kling-промпте описывай четыре вещи: что делает камера (медленно наезжает, отъезжает, едет вбок, облетает), что движется в кадре (человек, машина, вода), какая атмосфера (пыль в свете, пар, тени от пальм) и что НЕ должно происходить.</p>
  <p id="rOUO"><strong>Разнообразь движение камеры — не только наезд.</strong> Везде делать «зум» скучно. Пробуй отъезд с поворотом, облёт дугой, перевод фокуса с одной точки на другую, проезд камеры вдоль объекта.</p>
  <p id="XAX3"><strong>Всегда ставь режим High Quality</strong>, особенно где люди, руки, вода и машины — иначе плывёт.</p>
  <p id="iYwU">Про ползунок креатива простыми словами. Ставь низкий (примерно 0.3–0.4) на статичные кадры, мелкие предметы, руки крупно. Средний (0.4–0.5) на плавные движения камеры и перевод фокуса. Повыше (0.5–0.6) на облёты, движение людей, воду, машины. Если что-то плывёт — понижай креатив и генери заново.</p>
  <p id="WhtW"><strong>Люди в кадре — всегда максимально спокойно.</strong> Никаких поворотов лица к камере, никакой ходьбы, никаких больших жестов. Можно дыхание, наклон головы, одно спокойное движение руки. И всегда прописывай, чем движение заканчивается, иначе Kling зациклит его по кругу.</p>
  <p id="RfYV"><strong>Что оживает всегда без проблем:</strong> свет, шторы, пыль в лучах, пламя свечей, рябь на воде, пузырьки в напитке, далёкая листва за окном, пар, тени от пальм. Начинающим лучше опираться на это.</p>
  <p id="5fsh">Примеры готовых промптов для Kling:</p>
  <p id="ENvG">Заход в комнату. «Very slow push-in into the sunset living room. Sheer curtains drift gently, dust motes float in the warm light. Camera moves smooth and steady. Furniture stays anchored. NO furniture morphing, NO flickering.» Креатив около 0.4, High Quality.</p>
  <p id="orQv">Станок на фабрике. «The cutting head moves steadily along the wood board, fine dust sprays in the cool light. Controlled mechanical motion. NO machine warping, NO board morphing, NO flickering.» Креатив около 0.5, High Quality.</p>
  <p id="aiJ4">Свет по материалам. «Slow focus pull across the materials, focus drifts from leather to brass to stone, a soft warm highlight glides across as the camera barely moves. Materials stay anchored. NO warping, NO morphing, NO flickering.» Креатив около 0.4, High Quality.</p>
  <hr />
  <h1 id="EOlz">✂️ Этап 4 — Монтаж</h1>
  <p id="POCh">Держи ритм нарезки. Кадры с действием показывай коротко, примерно полторы секунды — они читаются быстро. Широкие атмосферные кадры держи подольше, две-три секунды, чтобы зритель успел войти в атмосферу.</p>
  <p id="qNtU">Самое важное для «дорогого» ощущения — короткий звук-переход (whoosh) на каждой склейке. Без него монтаж звучит сухо.</p>
  <p id="dkZ4">Даже если кадры уже сгенерены с цветом, добавь в монтаже один общий проход цветокора, чтобы весь ролик выглядел единым.</p>
  <hr />
  <h1 id="bfj4">✍️ Этап 5 — Текст и субтитры</h1>
  <p id="t3pk">Шрифт решает очень много. Бери спокойные тонкие шрифты вроде Inter Light, Manrope или Neue Haas Grotesk. Избегай Montserrat, Poppins, жирных и курсивных начертаний — они сразу удешевляют картинку.</p>
  <p id="Spl1">Настрой субтитры под luxury: увеличь расстояние между буквами (tracking около +50), цвет тёплый кремовый или чистый белый, лёгкая тень для читаемости, появление и исчезновение плавным затуханием, а не выездом или прыжком. Короткие фразы можно капсом, длинные — обычным регистром.</p>
  <p id="1ogg">И помни: <strong>буквы прямо в видео мы не делаем</strong> — NanoBanana и Kling пишут их криво. Название и логотип всегда добавляем в монтаже поверх готового видео.</p>
  <hr />
  <h1 id="QIJG">🎵 Этап 6 — Музыка и звук</h1>
  <p id="rEcz">Музыка определяет больше половины впечатления. Бери одну дорожку на весь ролик. Она должна тихо начинаться, постепенно нарастать, выходить на самый мощный момент в кульминации и затихать в конце. Ищи по запросам вроде <code>cinematic luxury</code>, <code>emotional strings</code>, <code>premium brand film</code>. Избегай tropical house, lofi, EDM и акустической гитары — они убивают luxury.</p>
  <p id="enZs">Поверх картинки клади три слоя звука. Первый — атмосфера места (город, комната, фабрика). Второй — звук действия (шаг, нож, пар). Третий — акцент на важных моментах. Так ролик оживает.</p>
  <hr />
  <h1 id="cQsm">🎯 Чек-лист перед публикацией</h1>
  <p id="vuiF">Проверь, что кадры чередуются по крупности, что везде в промптах есть anamorphic, ARRI Alexa и film grain, что цвет единый по всему ролику, что движение камеры разное, а не только наезд, что на каждой склейке есть звук-переход, что музыка одна и правильно нарастает, что на каждом кадре есть слои звука, что шрифт спокойный с увеличенным расстоянием между буквами, что нет чужих логотипов и что первые кадры видео чистые для обложки.</p>
  <hr />
  <h1 id="fqvY">💎 Главный принцип</h1>
  <p id="8O1m">Дорого — значит сдержанно. Luxury это не «больше эффектов», а «меньше, но точнее». Мягкий свет, спокойные движения, одна палитра, минимум текста, красивый шрифт и тишина там, где она нужна. Каждый раз, когда хочется добавить эффект, спроси себя: сделал бы так дорогой бренд? Если нет — убери.</p>
  <p id="1Uck"><em>Сохрани гайд и возвращайся к нему. Тренируйся на одной сцене, доводи до идеала, потом масштабируй.</em></p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/2aRHSiX0RMC</guid><link>https://teletype.in/@ailabshow/2aRHSiX0RMC?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/2aRHSiX0RMC?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Как собрать ролик рекламный ролик</title><pubDate>Tue, 07 Jul 2026 11:12:46 GMT</pubDate><description><![CDATA[Ролик вертикальный, формат 9:16, длиной примерно полторы минуты. Делаем по шагам, ничего сложного.]]></description><content:encoded><![CDATA[
  <p id="CyPV">Ролик вертикальный, формат 9:16, длиной примерно полторы минуты. Делаем по шагам, ничего сложного.</p>
  <p id="x2sI">Работаем двумя инструментами. NanoBanana 2 делает картинки — то есть отдельные кадры будущего ролика, и туда же мы возвращаемся, если картинка не понравилась и нужно перегенерировать. Kling оживляет готовую картинку, превращая её в короткое видео. Правило простое: сначала делаем картинку в NanoBanana 2, потом эту же картинку загружаем в Kling, и она начинает двигаться, а в конце всё складываем в монтаже.</p>
  <h2 id="A7Je">Как работать с каждым кадром</h2>
  <p id="pSKm">Сначала берёшь промпт нужного кадра из файла с промптами, вставляешь его в NanoBanana 2 и генеришь картинку. Если результат не нравится, просто жми регенерацию ещё два-три раза и выбирай лучший вариант. Когда картинка готова, загружаешь её в Kling, вставляешь короткий Kling-промпт этого же кадра и обязательно ставишь режим High Quality. На выходе получаешь видео примерно на пять секунд. Когда все кадры оживлены, складываешь видео по порядку в монтаже, добавляешь текст, музыку и звук. Вот и весь процесс.</p>
  <h2 id="maad">Порядок ролика</h2>
  <p id="d8yF">Ролик идёт по сценам одна за другой. Первая сцена — комната на закате, где показываем тёплый свет, мебель, фактуры и руку, которая проводит по дивану. Цвет тёплый, текста нет. Вторая сцена — фабрика: современный цех, станки, сборка мебели. Здесь цвет холодный, а на экране появляется текст «Designed in-house. Produced in-house. UAE». Третья сцена — материалы: раскладка образцов и дизайнер, который выбирает материал. Цвет снова тёплый, текст «Natural stone. Finest fabrics. Exceptional finishes». Четвёртая сцена — вилла у воды: проходим по комнатам, а затем показываем предметы в действии, например нож на кухне, кофе на диване и вещь, летящую в шкаф. Цвет тёплый, здесь идут два длинных текста, они есть в файле с промптами. Пятая сцена — готовые интерьеры: гардеробная, гостиная, столовая. Цвет тёплый, текст «Spaces that reflect individuality, lifestyle and architecture». В финале показываем белый завод в пустыне с оазисом и логотипом</p>
  <p id="5faK">В самом начале при желании можно добавить заставку — вид сверху на террасу с мебелью, где под музыку по очереди появляются девушки.</p>
  <h2 id="eyzT">Главные правила</h2>
  <p id="f3tZ">Весь ролик делаем в тёплом кремово-золотом цвете, и только фабрику — в холодном стально-сером. Это сделано специально, чтобы был контраст между тёплым миром готовой мебели и холодной точностью производства.</p>
  <p id="JtrA">В Kling всегда включай режим High Quality, особенно на кадрах с людьми, руками, водой и машинами, иначе картинка поплывёт. Если что-то всё равно плывёт, немного понизь ползунок креатива и сгенери заново — чем меньше движения, тем меньше поломок. Руки и лицо самое хрупкое, поэтому на таких кадрах креатив ставь пониже, а лицо человека лучше не показывать прямо в камеру, пусть смотрит вниз или в сторону.</p>
  <p id="Uuvq">Текст и буквы прямо в видео мы не делаем никогда, потому что NanoBanana и Kling пишут их криво. Название и логотип добавляем уже в монтаже поверх готового видео.</p>
  <p id="CjiK">Мебель во всех сценах должна выглядеть одинаково. Чтобы этого добиться, сначала сделай один кадр сцены, а потом используй его как образец для остальных кадров этой же сцены — тогда диваны, дерево и камень будут совпадать. И следи, чтобы первый кадр каждого видео был чистым и не смазанным, потому что именно он станет обложкой.</p>
  <h2 id="bTfJ">Звук и музыка</h2>
  <p id="fwST">Музыка одна на весь ролик. В начале она звучит тихо, постепенно набирает силу, самый мощный момент приходится на сцену с виллой, а в конце музыка затихает. Поверх картинки добавь реальные звуки, чтобы было живее: шум цеха на фабрике, плеск воды на вилле, ветер в пустыне.</p>
  <h2 id="nGoJ">Перед тем как выгружать</h2>
  <p id="BIZn">Проверь, что все сцены идут по порядку от первой к финалу, фабрика осталась холодной, а всё остальное тёплым, мебель везде похожа, название и логотип добавлены в монтаже, тексты появляются вовремя и хорошо читаются, музыка нарастает к сцене с виллой и затихает в конце, первые кадры видео чистые для обложки, и нигде ничего не плывёт.</p>
  <h2 id="lUiV">Если застрял</h2>
  <p id="rc09">Если картинка вышла не та, просто перегенерируй её в NanoBanana 2 ещё пару раз. Если в Kling плывут руки или лицо, понизь креатив, поставь High Quality и сгенери заново. Если машины или фуры начинают размножаться, оставь в движении только одну, а остальные пусть стоят. Если буквы выходят кривыми, не пиши текст в видео, а добавь его в монтаже. Если мебель в кадрах разная, используй первый кадр как образец для остальных. А если фабрика выглядит старой, добавь в промпт слова modern, clean, LED, brushed steel.</p>
  <h2 id="oHgx">Примеры промптов для картинок (NanoBanana 2)</h2>
  <p id="QnuA">Пример первый, тёплая комната на закате. «Cinematic interior, vertical 9:16, luxury living room at sunset. Low boucle sofa, walnut veneer cabinet, stone coffee table. Warm golden-hour light through sheer curtains, dust motes in the light, long soft shadows. Warm cream-amber colors, cinematic film look, organic grain. No people, no text.»</p>
  <p id="eoPb">Пример второй, современная холодная фабрика. «Cinematic interior, vertical 9:16, modern hi-tech furniture factory. New precision CNC machines, clean epoxy floor, brushed steel surfaces, LED strip lighting, neat timber stacks. Cool daylight, fine sawdust in the light. Cool steel-grey colors, cinematic film look. No faces, no text, no old worn machinery.»</p>
  <p id="m9yF">Пример третий, крупный план материала. «Extreme macro, vertical 9:16, luxury materials in warm light. Tan leather, linen fabric, brushed brass edge and natural stone touching side by side. Warm sunset light revealing every texture, very shallow focus. Warm cream-amber colors, cinematic film look, organic grain. No people, no text.»</p>
  <h2 id="ExBU">Примеры промптов для оживления (Kling)</h2>
  <p id="Ww3q">Пример первый, медленный заход в комнату. «Very slow push-in into the sunset living room. Sheer curtains drift gently, dust motes float slowly in the warm light, glow deepens softly. Camera moves smooth and steady. Furniture stays anchored. NO furniture morphing, NO flickering, NO objects shifting. Calm warm atmosphere.» Ставь креатив примерно 0.4 и High Quality.</p>
  <p id="mUo5">Пример второй, станок на фабрике. «The CNC cutting head moves steadily along the wood board, fine sawdust sprays and drifts in the cool light, the cut line advances smoothly. Crisp highlight on the clean steel. Controlled mechanical motion. NO machine warping, NO board morphing, NO erratic particles, NO flickering.» Ставь креатив примерно 0.5 и High Quality.</p>
  <p id="wdKf">Пример третий, свет по материалам. «Slow focus pull across the materials, focus drifts from leather to brass to stone, each texture sharpening in turn, a soft warm highlight glides across as the camera barely moves. Materials stay anchored. NO texture warping, NO morphing, NO flickering. Smooth and tactile.» Ставь креатив примерно 0.4 и High Quality.</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/c8NRWZnQM2B</guid><link>https://teletype.in/@ailabshow/c8NRWZnQM2B?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/c8NRWZnQM2B?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Как сделать ролик полностью на ИИ — от кадра до монтажа</title><pubDate>Sat, 04 Jul 2026 14:52:42 GMT</pubDate><media:content medium="image" url="https://img4.teletype.in/files/70/09/70094e13-7daf-4a90-939e-8d4250786b37.png"></media:content><description><![CDATA[<img src="https://img3.teletype.in/files/25/d4/25d4c9ca-563e-43c8-85bf-7d9cbf8de6d8.png"></img>Такое видео не снимается камерой. Герой, фон, движение, монтаж — всё генерируется. Вот как повторить.]]></description><content:encoded><![CDATA[
  <p id="AwYr">Такое видео не снимается камерой. Герой, фон, движение, монтаж — всё генерируется. Вот как повторить.</p>
  <p id="t5Nz"><strong>Шаг 1. Заходишь в Arvix → раздел видео (Google Omni )</strong><br /><strong>Шаг 2. Готовишь фото-основу</strong><br />Заранее генеришь одну фотографию, которая станет основой ролика — ты в студии, на улице, в кадре с продуктом, где угодно. Это твой «якорь»: по нему модель держит лицо и стиль во всех блоках.<br /></p>
  <figure id="nC9l" class="m_original">
    <img src="https://img3.teletype.in/files/25/d4/25d4c9ca-563e-43c8-85bf-7d9cbf8de6d8.png" width="1586" />
  </figure>
  <p id="0sJi"><strong>Шаг 3. Считаешь блоки</strong><br />Одна генерация Omni = максимум 10 секунд. Значит видео режется на блоки по 10 секунд. Нужен ролик на 30 секунд — это три блока. На 20 — два. И так далее.</p>
  <p id="Wzhg"><strong>Шаг 4. Пишешь промпт под каждый блок</strong><br />Разбиваешь свой сценарий на части по 10 секунд и под каждую пишешь отдельный промпт: что в кадре, какое движение, какие эффекты, что говорит герой.</p>
  <p id="fPQX"><strong>Шаг 5. Не пишешь промпты с нуля — адаптируешь</strong><br />Берёшь готовый промпт (хоть мой, хоть чужой рабочий), кидаешь его в любой чат — GPT, Claude — и просишь переписать под свою тематику: «убери это, добавь вот это, поменяй сцену на такую-то». Экономит кучу времени и промпт выходит структурным.</p>
  <p id="w69L"><strong>БЛОК 1 (0–10 сек)</strong></p>
  <pre id="GQTZ">Ultra realistic, photorealistic, cinematic commercial, premium production, hyper detailed, 9:16 vertical. The same man from the reference photo: identical face, short dark hair, beard, clear-frame glasses, black &quot;Arvix&quot; t-shirt, watch. Warm cozy home-studio background with shelf lights, plants, laptop and mug on a wooden desk. Never change his appearance or clothes.

The man speaks to camera in Russian, natural lip-sync, confident tone. He says exactly: &quot;Видел ролик, где двое руферов залезли на шпиль небоскрёба? За сутки его облетел весь интернет. А теперь смотри, как из этого сделать рекламу.&quot;

0-3s: Extreme digital push-in into his eyes, he leans slightly forward, confident half-smile, direct gaze, speaking. Handheld micro-shake. Behind him a volumetric CGI phone screen materializes showing a viral vertical clip: two masked figures on a tall antenna spire above a hazy city.
3-7s: Glowing 3D counters of views, likes and reposts burst and scatter like particles, multiplying fast. Warm cinematic key light. Slow camera drift.
7-10s: Smooth 180-degree orbit around him as he spreads his hands; the viral clip breaks apart into digital elements. Premium grade, no cheap flashes.</pre>
  <hr />
  <p id="L8yf"><strong>БЛОК 2 (10–20 сек)</strong></p>
  <pre id="U5Pd">Ultra realistic, photorealistic, cinematic commercial, premium production, hyper detailed, 9:16 vertical. The same man from the reference photo: identical face, short dark hair, beard, clear-frame glasses, black &quot;Arvix&quot; t-shirt, watch. Warm cozy home-studio background with shelf lights, plants, laptop and mug on a wooden desk. Never change his appearance or clothes.

The man speaks to camera in Russian, natural lip-sync, confident tone. He says exactly: &quot;Правило простое: не гонись за трендом — встрой в него свой продукт. Я взял этот же кадр, ту же атмосферу, тех же героев на высоте, но у меня там флаг Arvix и генерация прямо на ноутбуке. Инфоповод узнают все, а внутри — моя история.&quot;

0-3s: He sits at his desk, calmly gesturing while speaking. A volumetric 3D headline assembles from particles beside him. Slow dolly-in, soft parallax bokeh.
3-7s: Split composition: left an abstract &quot;trend wave&quot; of flying clips; right his reframed shot — the antenna spire with a near-black Arvix flag (lime accents) and a glowing laptop showing live AI generation. Camera rotates, the two streams merge. Warm premium grade.
7-10s: A digital sphere of content forms around him — Arvix interfaces (images, video, music) fly out on smooth trajectories. He looks confidently into the lens, slight head tilt, still speaking.</pre>
  <hr />
  <p id="MS98"><strong>БЛОК 3 (20–30 сек)</strong></p>
  <pre id="oLv2">Ultra realistic, photorealistic, cinematic commercial, premium production, hyper detailed, 9:16 vertical. The same man from the reference photo: identical face, short dark hair, beard, clear-frame glasses, black &quot;Arvix&quot; t-shirt, watch. Warm cozy home-studio background with shelf lights, plants, laptop and mug on a wooden desk. Never change his appearance or clothes.

The man speaks to camera in Russian, natural lip-sync, confident tone. He says exactly: &quot;Люди репостят не рекламу. Они репостят то, что уже на слуху. Ты просто оказываешься внутри волны, которая и так летит. Как я это собрал от кадра до финального видео — выложил полный туториал в телеге. Ссылка в шапке.&quot;

0-3s: Volumetric 3D repost, share and arrow icons rush around him and multiply. Subtle speed ramp: acceleration then smooth deceleration. Handheld micro-movement, warm light.
3-6s: Camera sweeps past him; behind him a large digital &quot;wave&quot; of flying content, he stands calmly inside it, speaking. Warm light streaks emphasize motion.
6-10s: Slow push-in on his face, confident gaze, half-smile. Behind him a final neural network grows with lime Arvix accents. Minimal cinematic lower-third titles appear (leave space for text overlay). Clean settle and soft fade to a lime Arvix logo.</pre>
  <p id="0nvg"><strong>Шаг 6. Генеришь</strong><br />Загружаешь в Omni своё фото-основу, вставляешь промпт блока, выбираешь duration (длительность), запускаешь. Повторяешь для каждого блока.</p>
  <p id="O1Px"><strong>Шаг 7. Собираешь в монтаже</strong><br />Готовые куски склеиваешь по порядку в любом редакторе. На стыках блоков — короткий переход или match cut, чтобы не было рывка. Сверху накидываешь озвучку, музыку, титры.</p>
  <p id="RMVI">Готово — ролик, которого не существовало в реальности.</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/Cb5xQr_oGgv</guid><link>https://teletype.in/@ailabshow/Cb5xQr_oGgv?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/Cb5xQr_oGgv?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Промпты для видео с вершины Empire State Building</title><pubDate>Fri, 03 Jul 2026 11:25:06 GMT</pubDate><media:content medium="image" url="https://img3.teletype.in/files/ae/2d/ae2d2eb5-bc0f-4842-8d30-2b48f3a55a0f.png"></media:content><description><![CDATA[<img src="https://img2.teletype.in/files/16/85/16855e92-7a59-4e63-8fbb-ffcaaa711004.jpeg"></img>Я все делал в Syntx.ai https://arvixai.net Нейросети: Gpt Image 2 и Seedance 2.0 (доступен от подписки PRO и выше) Нужно: референс флага (ну либо просто текст). 
Мой результат ищите в https://t.me/itssamdxb]]></description><content:encoded><![CDATA[
  <figure id="mUc7" class="m_original">
    <img src="https://img2.teletype.in/files/16/85/16855e92-7a59-4e63-8fbb-ffcaaa711004.jpeg" width="768" />
  </figure>
  <p id="fqGx">Я все делал в Syntx.ai <a href="https://arvixai.net" target="_blank">https://arvixai.net</a> Нейросети: Gpt Image 2 и Seedance 2.0 (доступен от подписки PRO и выше) Нужно: референс флага (ну либо просто текст). <br />Мой результат ищите в <a href="https://t.me/itssamdxb" target="_blank">https://t.me/itssamdxb</a> </p>
  <p id="jkbf">1.Подготавливаем фотографии.<br />(Раздел ИЗОБРАЖЕНИЯ - Gpt Image 2 - Соотношение сторон 16:9 (ну либо вертикальное 9:16) - Детализация среднее - Качество 2к): <br />Стоп кадр можно взять из оригинала </p>
  <figure id="JoM5" class="m_original">
    <img src="https://img1.teletype.in/files/8f/d9/8fd97589-e5f8-4a62-b557-2ce895d866a8.png" width="720" />
  </figure>
  <figure id="OGIk" class="m_original">
    <img src="https://img2.teletype.in/files/9f/94/9f949f74-f5ea-47f4-8604-3a2accbc1bb7.jpeg" width="1200" />
  </figure>
  <p id="m88M">своими словами описал, какое изображение мне нужно получить:</p>
  <p id="79uO"></p>
  <figure id="N6Vf" class="m_original">
    <img src="https://img2.teletype.in/files/9a/4a/9a4a76ef-1c5b-420b-bf73-4c6466357423.png" width="1582" />
  </figure>
  <p id="psrI">смотри какая задача нужно будет взять фото 1 улучшить качество улучшить детализацию вот все снято на очень длинный объектив с вертолета, телеобъектив. Нужно убрать сзади вертолет который прилетает, оставить только небо и заменить флаг чтобы был флаг из фото 2<br /><br />-Также и со вторым кадром:</p>
  <figure id="LsMG" class="m_original">
    <img src="https://img1.teletype.in/files/46/4b/464bcc9d-6c33-4cb3-a76f-1f64854ac6b9.png" width="718" />
  </figure>
  <p id="eYnN"></p>
  <figure id="fqsv" class="m_original">
    <img src="https://img3.teletype.in/files/2b/4c/2b4c0905-66ec-4010-a51b-681fc63f7a0a.png" width="1589" />
  </figure>
  <p id="ZVbV">Use attached image 1 as the reference for camera angle, low-angle framing, the two figures, their outfits and gritty rooftop mood. Use attached image 2 as the reference for the location: the top platform of a very tall antenna tower high above a city skyline, metal grating floor, blue sky.<br />Scene: the same dramatic low-angle shot on the tower-top platform high above the city. On the LEFT, the young woman in a black cat-mask (cat-ear balaclava) and black sleeveless outfit stands holding a large ARVIX flag fully unfurled, waving in the wind in front of her — deep near-black (#080812) flag with a bold lime (#BFFF00) &quot;Arvix&quot; wordmark. On the RIGHT, the young man in a black tank top, face covered by a black balaclava tied at the back, no cap, holds an open MacBook laptop and points at its screen, which glows and shows an AI generation app interface with lime accents. Behind them, the antenna tower rises into the blue sky, city panorama far below.<br />Realistic photo, natural daylight, cinematic, high detail, slightly raw found-footage aesthetic, film grain, 4K. Negative: distorted faces, extra limbs, unreadable logo, blurry text, barbershop chair, table, tools.</p>
  <p id="SniH">2.Создаем видео.<br />Переходим в Раздел Видео - Выбираем Seedance 2.0 - Загружаем начальный кадр и второй кадр, после вставляем промпт </p>
  <p id="9qy2">FORMAT: 16:9 / 12s / 2 parts / hard cut / tech-brand commercial / no dialogue. @Image1 is the first-part reference — two masked figures on the antenna spire fastening the black &quot;Arvix / AI GENERATION&quot; flag. @Image2 is the second-part reference — the wide GoPro view on the observation platform high above the city, the woman holding the Arvix flag and the man working on a MacBook. Match each reference exactly: same characters, same masks, same black outfits, identical flag design and lime &quot;Arvix / AI GENERATION&quot; logo. A single hard cut at 00:06 — no morphing, no dissolve, no transition. Part one ends and part two begins instantly.</p>
  <p id="kD0m">[00:00-00:06] PART 1 — THE FLAG (helicopter telephoto, moving orbit). Scene first: exactly as @Image1 — the top of a tall steel antenna spire against a hazy blue sky. A man in a black balaclava and black outfit, and a woman in a black cat mask, both dressed in black, stand on the narrow spire structure, having just fastened the large black flag to the mast — the flag design references @Image1 exactly, the lime (<code>#BFFF00</code>) &quot;Arvix&quot; wordmark with the small &quot;AI GENERATION&quot; line clearly visible on the deep near-black (<code>#080812</code>) fabric. The flag ripples and snaps in the high-altitude wind, fabric pulling taut then releasing. Camera: extreme long telephoto lens (600mm+) filmed from a helicopter that continuously orbits from left to right around the spire and slowly cranes upward, gradually revealing the vast Manhattan cityscape far below through atmospheric haze — the spire, flag and the two people stay locked in the center of the frame the entire time. Heavy atmospheric compression, subtle heat-shimmer, image softly floating with the long-lens look, shallow depth of field. Around 00:02-00:04, a white television news helicopter flies fast from left to right in the background behind the spire, passing quickly behind the mast and exiting the frame — it enters from the left edge, never spawns in the center. Audio: high wind, layered helicopter rotor thump swelling as the news chopper crosses, flag fabric snapping.</p>
  <p id="j46L">[00:06-00:12] PART 2 — GENERATION ABOVE THE CITY (static wide GoPro). Scene first: exactly as @Image2 — a locked static ultra-wide GoPro-style shot with mild fisheye distortion on the grated observation platform at the very top of the skyscraper, the vast sunny Manhattan skyline and rivers sprawling far below on both sides, red aircraft beacon lights on the platform edge, the white steel antenna tower rising in the center. On the left, the woman in the black cat mask, black tank top and black cargo pants stands holding the large Arvix flag on a pole, fully unfurled and waving in the wind, the lime &quot;Arvix / AI GENERATION&quot; logo clearly readable. On the right, the man in a black balaclava tied at the back and black tank top kneels on the grating with an open MacBook, pointing at its glowing screen which shows the Arvix AI generation app interface with lime accents — images appearing on screen as if generating live. No barber station, no chair, no tools — clean metal grating platform. Around 00:08-00:10, a black helicopter flies fast from left to right, passing very close behind the spire, seen half-side-on as it banks around and behind the platform, crossing the frame in about two seconds — but neither person reacts, calmly staying in their poses. Camera: locked static wide GoPro shot, absolutely no camera movement, natural bright midday daylight. Audio: strong wind, soft MacBook keyboard taps and a subtle digital chime as a generation completes, a fast rotor whoosh rising and fading as the black helicopter passes.</p>
  <p id="9onm">Consistency: same man, same woman, same black cat mask, same black outfits, identical lime &quot;Arvix / AI GENERATION&quot; flag design between parts. Maintain stable facial and body proportions, natural fluid motion, no distortion.</p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@ailabshow/zat3tJmIMA6</guid><link>https://teletype.in/@ailabshow/zat3tJmIMA6?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow</link><comments>https://teletype.in/@ailabshow/zat3tJmIMA6?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=ailabshow#comments</comments><dc:creator>ailabshow</dc:creator><title>Топ 3 промта для создания видео с необычным маникюром</title><pubDate>Wed, 01 Jul 2026 13:43:41 GMT</pubDate><media:content medium="image" url="https://img4.teletype.in/files/77/03/7703709a-ef8f-468b-83de-da381dff7a95.png"></media:content><description><![CDATA[<img src="https://img1.teletype.in/files/0c/7f/0c7fadfb-c0aa-40c5-8924-e125efb8b6b8.jpeg"></img>ПРОМТ 1]]></description><content:encoded><![CDATA[
  <figure id="8uOI" class="m_original">
    <img src="https://img1.teletype.in/files/0c/7f/0c7fadfb-c0aa-40c5-8924-e125efb8b6b8.jpeg" width="1280" />
  </figure>
  <p id="JcWy">ПРОМТ 1 <br /><br /></p>
  <p id="xWXq">Continue from the storyboard. Ultra photorealistic luxury beauty commercial. Hyper-detailed macro cinematography. Fast speed ramps, whip pans, snap zooms, seamless match cuts, shallow depth of field, premium studio lighting, glossy reflections, cinematic color grading, 8K realism.</p>
  <p id="IJgk"><strong>0.0–1.0s – BEFORE</strong></p>
  <p id="GgSN">Extreme macro of neglected natural nails: uneven length, dry cuticles, dull nail surface. Slow rotation of the hand on a black luxury background. Dramatic lighting emphasizes imperfections.</p>
  <p id="mu7n"><strong>1.0–2.0s – CUTICLE PREP</strong></p>
  <p id="x6ZM">Rapid whip-cut into extreme macro. Electric nail drill instantly removes cuticles. Flying nail dust captured in slow motion. Camera circles the fingertip while the tool works. Dynamic speed ramp.</p>
  <p id="pN2F"><strong>2.0–3.0s – SHAPING</strong></p>
  <p id="ZgRo">Hard cut. Nail file rapidly creates elegant almond shape. Macro side angles alternate every fraction of a second. Dust particles illuminated by warm studio light.</p>
  <p id="b10P"><strong>3.0–4.0s – BASE PREP</strong></p>
  <p id="aihi">Fast transitions between cleaning, dehydrator, primer and clear base coat. Brush glides in ultra macro. Glossy reflections. Match cuts synchronized with every brush stroke.</p>
  <p id="fECw"><strong>4.0–5.5s – COLOR APPLICATION</strong></p>
  <p id="opu6">Deep matte burgundy gel polish is applied in smooth cinematic strokes. Camera constantly changes between overhead macro, side macro and ultra close-up of the brush. Rich luxurious texture.</p>
  <p id="JLzs"><strong>5.5–7.0s – GOLD DESIGN</strong></p>
  <p id="IV1W">Highly polished liquid gold lines appear with precise brush movements. Metallic chrome details flow across each nail. Tiny gold heart is added. Macro beauty shots with dramatic reflections.</p>
  <p id="Cfau"><strong>7.0–8.0s – UV CURING</strong></p>
  <p id="P9EP">Hand slides into UV lamp. Blue-violet glow fills the scene. Quick rotating camera move around the fingers. Instant transition as the polish cures.</p>
  <p id="ygSH"><strong>8.0–9.0s – FINAL FINISH</strong></p>
  <p id="cl0p">Top coat applied. Nails become perfectly smooth and luxurious. Lens glides across every nail in extreme macro, highlighting reflections and metallic details.</p>
  <p id="WItE"><strong>9.0–10.0s – AFTER / HERO SHOT</strong></p>
  <p id="nyIl">Epic beauty reveal. The finished manicure matches the reference: matte burgundy nails with elegant gold metallic accents and gold tips. Slow cinematic rotation of the hand over luxurious black satin fabric with subtle gold jewelry bokeh. Premium perfume-commercial aesthetic, crisp macro detail, flawless skin, dramatic warm lighting, luxurious fashion photography, perfect final showcase.<br /><br />ПРОМТ 2 <br /><br /></p>
  <p id="bvwF">Ultra photorealistic luxury beauty commercial. 10-second cinematic speed ramp. Extremely dynamic editing with seamless transitions, whip pans, snap zooms, motion blur, macro cinematography, match cuts, fast camera rotations, handheld energy, high-speed camera, shallow depth of field, premium studio lighting, neon blue and magenta glow, holographic reflections, glossy textures, 8K ultra detail.</p>
  <p id="xF9G"><strong>0.0–0.4s</strong> — Extreme macro of neglected natural nails with dry cuticles and uneven surface. Dark neon background. Slow push-in instantly accelerates into a speed ramp.</p>
  <p id="86CL"><strong>0.4–0.8s</strong> — Hyper-fast whip pan into cuticle pusher. Macro close-up. Metal tool slides across the nail. Dust particles fly toward the lens.</p>
  <p id="UxBB"><strong>0.8–1.2s</strong> — Electric nail drill removes cuticles. Rapid orbit around the fingertip. Sparks of nail dust illuminated by blue and pink light.</p>
  <p id="9OFi"><strong>1.2–1.6s</strong> — Nail clipper trims the free edge. Hard match cut between fingers. Extreme close-up.</p>
  <p id="nq2v"><strong>1.6–2.0s</strong> — High-speed filing. Camera spins 180° while the nail instantly transforms into a long square extension. Flying powder in slow motion.</p>
  <p id="Upug"><strong>2.0–2.4s</strong> — Dehydrator and primer applied. Brush strokes transition through whip cuts synchronized with the music.</p>
  <p id="pU8n"><strong>2.4–2.8s</strong> — Crystal-clear base gel spreads across the nail in ultra macro. Liquid reflections fill the screen.</p>
  <p id="7Knl"><strong>2.8–3.2s</strong> — Hand slides into UV lamp. Neon blue light flashes. Quick rotation around the fingers. Flash transition.</p>
  <p id="iYbS"><strong>3.2–3.6s</strong> — Galaxy pigments appear like a nebula spreading through the nail. Cosmic particles swirl under the transparent gel.</p>
  <p id="2Ng7"><strong>3.6–4.0s</strong> — Electric blue and purple colors blend together. Brush moves in macro while the camera performs aggressive speed ramps and snap zooms.</p>
  <p id="r6Fd"><strong>4.0–4.4s</strong> — Glitter explodes across the surface. Floating particles freeze for a split second before accelerating again.</p>
  <p id="Deyq"><strong>4.4–4.8s</strong> — Neon pink jellyfish begins appearing from the brush strokes as if painted by light itself. Extreme macro.</p>
  <p id="FN4a"><strong>4.8–5.2s</strong> — The jellyfish tentacles grow dynamically across the nail. Camera rotates while following every brush movement.</p>
  <p id="sTwS"><strong>5.2–5.6s</strong> — Tiny glowing stars and holographic flakes instantly appear through seamless match cuts.</p>
  <p id="BvRl"><strong>5.6–6.0s</strong> — Additional jellyfish are painted on neighboring nails. Ultra-fast transitions between every finger.</p>
  <p id="qy5z"><strong>6.0–6.4s</strong> — Thick glossy top coat flows over the design. Liquid reflections move dramatically across the surface.</p>
  <p id="MnRU"><strong>6.4–6.8s</strong> — UV curing again. Neon blue flash fills the frame. Match cut to finished glossy surface.</p>
  <p id="dK7l"><strong>6.8–7.2s</strong> — Lint-free wipe removes the inhibition layer. Mirror-like shine instantly appears.</p>
  <p id="uTwN"><strong>7.2–7.6s</strong> — Extreme macro beauty pass over every nail. Camera glides only millimeters above the surface, revealing microscopic glitter and luminous jellyfish.</p>
  <p id="ppvJ"><strong>7.6–8.0s</strong> — Fast orbit around the entire hand. Neon bokeh streaks across the background during a powerful speed ramp.</p>
  <p id="Aqib"><strong>8.0–8.5s</strong> — Hero macro of a single nail. The glowing jellyfish appears almost alive beneath crystal-clear gel. Cinematic lens flare.</p>
  <p id="JcfZ"><strong>8.5–9.2s</strong> — Dynamic reveal of the complete manicure. Hand slowly rotates while the camera performs a 360° orbit with alternating slow motion and speed ramps.</p>
  <p id="QBfd"><strong>9.2–10.0s</strong> — Final luxury hero shot. The finished manicure perfectly showcases luminous jellyfish suspended inside galaxy-inspired blue, purple, cyan and magenta nails with holographic sparkle. Dark futuristic studio, premium neon lighting, cinematic reflections, flawless skin, ultra-realistic beauty advertising, luxury cosmetics commercial, breathtaking final reveal.</p>
  <p id="NuA1">, 16:9<br /><br /><br />ПРОМТ 3 <br /><br />Ultra photorealistic luxury beauty commercial, hyper-realistic macro cinematography, extreme speed ramp editing, whip pans, snap zooms, crash zooms, seamless match cuts, orbit camera, rotating macro shots, handheld energy, motion blur transitions, shallow depth of field, premium cinematic beauty advertisement, 8K realism, 16:9. Begin with extreme macro of short damaged natural nails with dry cuticles and uneven edges under cold neutral lighting, slow push-in immediately accelerating into an aggressive speed ramp. Electric nail drill removes cuticles while macro dust explodes toward the lens, rapid orbit around the fingertip, ultra close-up cuticle trimming from multiple angles synchronized with fast speed ramps. High-speed nail shaping with flying dust frozen in slow motion before accelerating again, surface buffing with spinning camera and seamless match cuts, glossy primer and dehydrator flowing across the nail with cinematic reflections. Long stiletto extensions instantly appear through seamless morph transitions, crash zooms between every finger, UV curing under glowing purple-blue neon light while the camera performs a smooth 360° orbit. Airbrush sprays vibrant fluorescent pink, yellow and neon green gradients, microscopic paint particles fly toward the lens, macro rotations reveal colors blending seamlessly through rapid match cuts. Glossy black galaxy accents are painted onto selected nails, tiny holographic glitter, stars and sparkling flakes explode across the surface in dramatic slow motion before instantly accelerating. Fine liner brush draws glowing neon electric line art and energy veins with whip-pan transitions between every brush stroke, additional cosmic details appear through seamless jump cuts illuminated by neon reflections. Ultra macro inspection circles every nail revealing microscopic textures, crystal-clear top coat flows with mirror-like reflections, final UV curing pulses with rhythmic purple light while the camera rotates around the fingers. Protective layer is removed, cuticle oil lands in cinematic slow motion, skin instantly becomes hydrated and luxurious. Final reveal shows the hand gracefully rotating while the camera flies between the fingers using speed ramps, whip transitions and dynamic 360° orbits. Epic luxury hero shot featuring long stiletto nails with fluorescent neon pink-yellow-green gradients, deep galaxy black accents, glowing electric line art, holographic sparkles and flawless mirror gloss, dramatic blue-magenta cyberpunk lighting, dark background with colorful bokeh, razor-sharp macro focus, ultra-detailed skin texture, cinematic reflections, premium fashion advertising aesthetic.<br /><br />ПРОМТ СИДЕНС 2 <br /><br /></p>
  <p id="7Bc7">Continue from the storyboard. Ultra photorealistic luxury beauty commercial. Hyper-detailed macro cinematography. Fast speed ramps, whip pans, snap zooms, seamless match cuts, shallow depth of field, premium studio lighting, glossy reflections, cinematic color grading, 8K realism.</p>
  <p id="TsMw">**0.0–1.0s – BEFORE**</p>
  <p id="m81E">Extreme macro of neglected natural nails: uneven length, dry cuticles, dull nail surface. Slow rotation of the hand on a black luxury background. Dramatic lighting emphasizes imperfections.</p>
  <p id="RMjN">**1.0–2.0s – CUTICLE PREP**</p>
  <p id="11AI">Rapid whip-cut into extreme macro. Electric nail drill instantly removes cuticles. Flying nail dust captured in slow motion. Camera circles the fingertip while the tool works. Dynamic speed ramp.</p>
  <p id="P8Hd">**2.0–3.0s – SHAPING**</p>
  <p id="SK86">Hard cut. Nail file rapidly creates elegant almond shape. Macro side angles alternate every fraction of a second. Dust particles illuminated by warm studio light.</p>
  <p id="85CM">**3.0–4.0s – BASE PREP**</p>
  <p id="g4lb">Fast transitions between cleaning, dehydrator, primer and clear base coat. Brush glides in ultra macro. Glossy reflections. Match cuts synchronized with every brush stroke.</p>
  <p id="50Ny">**4.0–5.5s – COLOR APPLICATION**</p>
  <p id="nTEV">Deep matte burgundy gel polish is applied in smooth cinematic strokes. Camera constantly changes between overhead macro, side macro and ultra close-up of the brush. Rich luxurious texture.</p>
  <p id="LxRQ">**5.5–7.0s – GOLD DESIGN**</p>
  <p id="HwE2">Highly polished liquid gold lines appear with precise brush movements. Metallic chrome details flow across each nail. Tiny gold heart is added. Macro beauty shots with dramatic reflections.</p>
  <p id="q1j1">**7.0–8.0s – UV CURING**</p>
  <p id="OUaY">Hand slides into UV lamp. Blue-violet glow fills the scene. Quick rotating camera move around the fingers. Instant transition as the polish cures.</p>
  <p id="9ozF">**8.0–9.0s – FINAL FINISH**</p>
  <p id="BccV">Top coat applied. Nails become perfectly smooth and luxurious. Lens glides across every nail in extreme macro, highlighting reflections and metallic details.</p>
  <p id="l0oo">**9.0–10.0s – AFTER / HERO SHOT**</p>
  <p id="eCO2">Epic beauty reveal. The finished manicure matches the reference: matte burgundy nails with elegant gold metallic accents and gold tips. Slow cinematic rotation of the hand over luxurious black satin fabric with subtle gold jewelry bokeh. Premium perfume-commercial aesthetic, crisp macro detail, flawless skin, dramatic warm lighting, luxurious fashion photography, perfect final showcase.</p>

]]></content:encoded></item></channel></rss>