Contents
  1. Creative briefs and delivery boundaries
  2. Representations for media synthesis
  3. Generation mechanisms and network architectures
  4. Diffusion training and successive sample updates
  5. Conditioning and reference inputs
  6. Sampling controls and repeatability
  7. Selective editing and preservation contracts
  8. Subject identity and style across assets
  9. Speech content, delivery, and local replacement
  10. Music, sound, and contextual layers
  11. Video motion and temporal consistency
  12. Audiovisual correspondence and timing
  13. Inspectable revisions and dependent artifacts
  14. Perceptual quality and creative fit
  15. Evidence across attempts and workflows
  16. Media provenance and verification boundaries
  17. Reference permissions and release responsibility
  18. Check understanding
  19. Open questions
  20. Selected talks
  21. References
  22. Talk library
← All topics

Generative Media

Generative media systems produce images, sound, and video from learned patterns and supplied inputs. A useful result must satisfy more than visual or audible plausibility: it must express the intended idea, preserve accepted details, and survive revision. Generation, creative approval, recorded history, and permission to publish establish different things.

Creative briefs and delivery boundaries

A creative brief specifies intended content, audience, constraints, and deliverables. Preproduction is planning before asset creation; postproduction is editing, assembly, and finishing. Agreeing on scope and revision rounds makes exploration bounded. A generation request can finish successfully while its output still needs selection, correction, or rejection.

A constructed brief for a fictional character, Mira, supplies requirements used throughout the examples.
DeliverableRequirement
StillMira in a garden; retain her approved appearance and the supplied lettering.
Short videoA six-second garden scene for a family audience, with a spoken line and musical cue.
Inputs and deliveryUse cleared character artwork and audio; retain editable assets and review the final export.

Candidates become deliverables through decisions

Example

Generation, selection, and release have different completion boundaries.

The example workflow combines requirements and cleared references, selects candidates, edits and assembles them, then reviews an export. Rejection ends at a revision decision rather than silently authorizing another attempt.
Read the diagram as text
  • Creative brief.
  • Cleared references.
  • Generated candidates.
  • Selected assets.
  • Edited composition.
  • Export review.
  • Approved delivery.
  • Revision decision.
  • Creative briefGenerated candidates: data: requirements.
  • Cleared referencesGenerated candidates: data: reference assets.
  • Generated candidatesSelected assets: selection: acceptable.
  • Generated candidatesRevision decision: selection: none acceptable.
  • Selected assetsEdited composition: edit and compose.
  • Edited compositionExport review: render export.
  • Export reviewApproved delivery: checks pass; release authorized.
  • Export reviewRevision decision: requirements or authority unresolved.

Technical acceptance requirements are observable conditions, such as duration or correct spoken words. Creative approval concerns whether composition, pacing, and tone serve the intended audience. Cheaper candidate creation does not decide the story or make these judgments interchangeable.

Representations for media synthesis

An encoder converts media into an internal representation; a decoder converts a suitable representation into usable media. Representations and information loss explains the shared foundation. For synthesis, the crucial issue is which distinctions survive compression and remain available to generate or edit.

RepresentationMeaning and synthesis consequence
Image latentA learned internal representation, often a smaller spatial grid. A variational autoencoder, or VAE, learns probabilistic encoding and decoding; its latent is neither lossless nor necessarily separated into intuitive controls.
Waveform samplesMeasurements of sound amplitude. Sample rate counts measurements per second, unlike frequency, which counts oscillations per second. At fixed sample rate, twice the duration contains twice as many samples.
SpectrogramA time–frequency representation formed from squared magnitudes of Fourier transforms of windowed audio segments. It exposes changing spectral content but discards phase, so magnitude alone does not support direct exact waveform reconstruction.
Audio codec indicesA learned codec compresses sound into short temporal frames. A codebook is a learned collection of representative vectors; indices select its entries. Several codebooks can describe one codec frame, which spans many waveform samples.
Video frames and latentsA video frame is one image in a timed sequence; frame rate counts frames per second. Spatiotemporal latents compress both spatial detail and time. Their temporal positions need not correspond one-for-one to displayed frames.

Internal representations need compatible decoders

Numerical representations are not interchangeable finished media.

These are separate decoding routes. Continuous image latents, discrete audio-code indices, and spatiotemporal video latents require their corresponding decoders. Compression can discard distinctions before reconstruction.
Read the diagram as text
  • Image latent.
  • Image pixels.
  • Audio-code indices.
  • Waveform samples.
  • Spatiotemporal latent.
  • Video frames.
  • Image latentImage pixels: image decoding.
  • Audio-code indicesWaveform samples: codebook lookup and decoding.
  • Spatiotemporal latentVideo frames: video decoding.

In one Stable Diffusion example, a 512 × 512 × 3 image maps to a 64 × 64 × 4 latent: 786,432 versus 16,384 elements, a 48-fold element-count reduction. This is not a runtime or total-memory speedup. Network activations, numerical precision, and decoding still contribute work.

Compression removes information before subsequent generation can use it. A semantic embedding optimized for comparing images or retrieving matching text is therefore not interchangeable with a reconstruction latent. Media-code indices select acoustic or visual representations; text-token IDs select textual vocabulary entries. Similar numerical containers do not imply compatible meanings or decoders.

Generation mechanisms and network architectures

Sampling draws a candidate from a learned distribution. Training changes model parameters; generation normally holds them fixed while producing an output. Training, fitted state, and inference develops that distinction. Different generation rules can operate on the same kinds of media.

Representation, training signal, and generation-time computation are separate design choices.
MechanismWhat is learnedGeneration-time consequence
Autoregressive predictionPredict each media-code index using earlier indices and supplied context.Successive predictions create dependencies. A decoder turns the completed code representation into media; compressed codes shorten the sequence but introduce reconstruction loss.
Generative adversarial network, or GANA generator learns against a discriminator trained to distinguish generated and training examples.The trained generator maps sampled noise to an output. The discriminator supplies training feedback; it does not approve each deliverable. Balancing the two learners can be difficult.
Denoising diffusionPredict a quantity associated with corrupted training examples, such as their added noise.A sampler repeatedly updates a noisy state using network predictions before producing the output.
Flow matchingPredict a velocity field along paths from noise toward data.A numerical solver follows the learned field. Training-path choice and inference solver remain separate decisions.

A diffusion transformer, or DiT, applies a transformer to patches of noisy image latents and predicts diffusion quantities. It remains an iterative generator. Smaller patches increase sequence length and computation without necessarily increasing parameter count. Architecture names therefore do not determine generation order or operating cost.

Prediction order also differs from playback order. An audio frame can contain several codec indices, and MusicGen interleaves codebook streams so some indices are predicted together while others depend on earlier predictions. One prediction step is not one waveform sample. The underlying sequence mechanism is explained in autoregressive generation.

Diffusion training and successive sample updates

In a noise-predicting latent-diffusion setup, an encoder supplies clean latent z0z_0. A noise schedule determines corruption at timestep tt. The denoiser predicts added noise; the sampler converts that prediction into a sample update. Training adjusts weights to reduce prediction error. Sampling freezes those weights.

zt=αˉtz0+1αˉtϵ,L=ϵϵθ(zt,t)2.z_t=\sqrt{\bar\alpha_t}z_0+\sqrt{1-\bar\alpha_t}\,\epsilon,\qquad L=\|\epsilon-\epsilon_\theta(z_t,t)\|^2. Here ϵ\epsilon is Gaussian noise, αˉt\bar\alpha_t is the schedule's retained-signal factor, and ϵθ\epsilon_\theta is the network prediction with weights θ\theta. The loss compares predicted and actual added noise, not finished-image quality.

One sample changes; trained weights stay fixed

Example

Prediction, sample update, and decoding are distinct operations.

1 / 4 · Initialize

Start a new sample.

The initial latent yields a noise prediction. A sampler uses both to form an updated latent. Remaining scheduled updates yield the final latent, which is decoded into pixels. Earlier states remain visible as history.
Read the diagram as text
  • Trained denoiser. Weights remain fixed.
  • Initial noisy latent.
  • Predicted noise.
  • Updated latent.
  • Final latent.
  • Image decoder.
  • Decoded image.
  • Trained denoiserPredicted noise: predict.
  • Initial noisy latentPredicted noise: noisy input.
  • Initial noisy latentUpdated latent: sampler input.
  • Predicted noiseUpdated latent: sampler update.
  • Updated latentFinal latent: remaining scheduled updates.
  • Final latentImage decoder: latent input.
  • Image decoderDecoded image: pixel reconstruction.
  1. Initialize. Start a new sample. Active: Trained denoiser, Initial noisy latent. New: Trained denoiser, Initial noisy latent.
  2. Predict. The prediction is noise, not an image. Active: Trained denoiser, Initial noisy latent, Predicted noise. New: Predicted noise.
  3. Update. The sampler changes the sample state. Active: Trained denoiser, Initial noisy latent, Predicted noise, Updated latent. New: Updated latent.
  4. Complete. Finish updates before decoding. Active: Trained denoiser, Initial noisy latent, Predicted noise, Updated latent, Final latent, Image decoder, Decoded image. New: Final latent, Image decoder, Decoded image.
Illustrative pseudocode Python-like pseudocode
z = initial_noise(generator)
for t in sampler.timesteps:
    predicted_noise = denoiser(z, t)
    z = sampler.step(predicted_noise, t, z, generator)
image = decoder(z)

Noise makes several clean images compatible with one observation. An ordinary denoiser's clean-image estimate can average these possibilities. Iterative sampling uses locally useful predictions and recomputes them after updates; jumping directly to that average can blur the result. A specially trained one-step generator has a different task.

Flow matching instead learns a velocity field: a direction and rate of change for sample states along a chosen probability path. Its training can avoid simulating a complete trajectory, but generation still follows the learned field with a solver. Diffusion-related paths are possible, not mandatory. Straighter paths can permit more accurate finite-step approximations.

Conditioning and reference inputs

Conditioning makes generation depend on supplied information. A reference image is an existing image used to guide selected properties of a new result. Conditioning and output capabilities provides the shared foundation. Reference inputs can convey identity, style, and composition together, even when only one property was intended.

InputInformation conveyedImportant boundary
Text descriptionRequested content, relationships, and treatment.A prompt expander can match detailed training captions while also introducing creative choices that need review.
Reference imagesParticular subjects, products, or visual treatments.Several references can suggest a composition without guaranteeing fidelity to every supplied item.
Spatial mapsPose maps locate joints; depth maps describe distance structure; edge maps describe boundaries.These encode different spatial constraints and require a model trained to interpret them.
Camera conditionsA sequence of viewpoints and imaging geometry.A viewing trajectory does not specify each object's motion.
Reference audioSpeaker and recording characteristics.Supplying audio at inference is different from changing model parameters through fine-tuning.

Separate references contribute to a shared update

Separate attention paths do not isolate identity from style.

In the IP-Adapter pattern, noisy-image features supply queries to separate text and image attention paths. Encoded conditions supply keys and values. The resulting contributions combine in the diffusion network.
Read the diagram as text
  • Noisy-image features.
  • Encoded text.
  • Encoded image reference.
  • Text attention.
  • Image attention.
  • Combined contribution.
  • Noisy-image featuresText attention: project queries.
  • Noisy-image featuresImage attention: project queries.
  • Encoded textText attention: project keys and values.
  • Encoded image referenceImage attention: project keys and values.
  • Text attentionCombined contribution: text contribution.
  • Image attentionCombined contribution: image contribution.

In cross-attention, the representation being updated supplies queries; separate conditioning representations supply keys and values. Learned compatibility weights mix information into the update. These weights are influences, not enforced scene constraints. Encoders, decoders and cross-attention explains the mechanism.

ControlNet takes a different route: it trains a spatial-control branch connected to a frozen diffusion backbone. Initially zero-valued connections prevent that branch from immediately disturbing the pretrained network. The resulting feature injection can steer structure, but it does not impose exact pose or pixel equalities.

For Mira, a painted reference may unintentionally transfer brush texture when the brief requires a photographic treatment. Specify which properties should persist and which may change, then inspect both. Supported input combinations belong to the particular model interface; independently available controls need not be jointly available.

Sampling controls and repeatability

Classifier-free guidance, or CFG, combines conditioned and unconditioned predictions without a separate classifier. Training includes dropped conditions so both behaviors are available. During sampling, amplifying their difference changes the output distribution. Stronger guidance can concentrate results and reduce diversity; it is not a probability that the brief will be satisfied.

g=u+s(cu).g=u+s(c-u). At the same sample state and timestep, uu is the unconditioned prediction, cc the conditioned prediction, ss the guidance scale, and gg their guided combination. In this convention, s=1s=1 gives cc; larger values extrapolate beyond it. Scale conventions vary across implementations.

Guidance amplifies a prediction difference

Example

With scale two, the guided prediction extends beyond the conditioned prediction.

Fixed state; guidance scale two

The dashed segment is the conditioned-minus-unconditioned difference.

Scroll sideways if the figure extends beyond the screen.

01.1252.253.3754.501.1252.253.3754.5Prediction component 1 (dimensionless)Prediction component 2 (dimensionless)Unconditioned uConditioned cGuided gDifference c−uucg
  • 1. Unconditioned u
  • 2. Conditioned c
  • 3. Guided g
  • 4. Difference c−u
Read coordinates and regions as data

X: 04.5 dimensionless; Y: 04.5 dimensionless, increasing up. Equal scale on both axes.

Unconditioned u (polyline)

(0, 0); (1, 2)

Conditioned c (polyline)

(0, 0); (2, 3)

Guided g (polyline)

(0, 0); (3, 4)

Difference c−u (polyline)

(1, 2); (2, 3)

u: (0.8, 2.15)

c: (2.15, 2.95)

g: (3.15, 4)

Hold the noisy state and timestep fixed. The explanatory predictions are u=(1,2) and c=(2,3). With s=2, g=u+2(c−u)=(3,4). These coordinates illustrate the combination rule, not measured model geometry or quality.
ControlEffectLimit
Step count and schedulerChoose numerical updates and their schedule.More steps add work; improvements depend on the model and sampler. Some parameters apply only to particular schedulers.
Negative promptSupplies conditioning about unwanted content.Support depends on the pipeline and guidance mode. It is not an exclusion rule.
Starting noise or edit strengthControls how much source structure is disrupted before regeneration.Less noise preserves more guide information, including unwanted artifacts; more noise permits larger changes.

Fewer steps and cheaper steps are different optimizations. Distillation trains a model to approximate a longer generation process with fewer evaluations. Feature caching instead reuses intermediate computation while continuing sample updates. DeepCache periodically refreshes deep features; longer reuse can introduce stale-feature errors. Neither change should inherit the original workflow's acceptance results automatically.

A seed initializes pseudorandom-generator state. Reusing an already-consumed generator does not restart it. Record weights, prompt processing, references, scheduler, timesteps, guidance, dimensions, precision, software, hardware, and execution options alongside randomness. Identical seed numbers across different models do not identify matching content, and fixed seeds do not guarantee identical results across platforms.

Selective editing and preservation contracts

Image-to-image generation uses an existing image to guide a new one. Inpainting fills or replaces a selected region; outpainting extends beyond the original boundary. A mask marks regions for different treatment. Compositing combines source and replacement content into an output, allowing preservation to be implemented separately from generation.

Partial-noise editing deliberately corrupts a guide and resynthesizes it. Inversion instead seeks a noise representation and trajectory that reconstruct a reference under a specified model and sampler. Approximate inversion can accumulate errors, amplified by guidance. Even faithful reconstruction under the original prompt does not establish preservation after changing that prompt.

The seam must respect the protected region

Example

Boundary repair can be permitted without expanding into protected pixels.

Protected and editable

The binary preservation mask is one on the left and zero on the right.

Scroll sideways if the figure extends beyond the screen.

-125811-11357Image x (grid units)Image y (grid units)Protected sourceEditable backgroundRetain sourceReplace
  • 1. Protected source
  • 2. Editable background
Read coordinates and regions as data

X: -111 grid units; Y: -17 grid units, increasing down. Equal scale on both axes.

Protected source (polygon)

(0, 0); (6, 0); (6, 6); (0, 6)

Editable background (polygon)

(6, 0); (10, 0); (10, 6); (6, 6)

Retain source: (3, 3)

Replace: (8, 3)

Permitted seam treatment

The protected region remains unchanged.

Scroll sideways if the figure extends beyond the screen.

-125811-11357Image x (grid units)Image y (grid units)Protected sourceEditable backgroundPermitted seam bandRetain sourceSeam
  • 1. Protected source
  • 2. Editable background
  • 3. Permitted seam band
Read coordinates and regions as data

X: -111 grid units; Y: -17 grid units, increasing down. Equal scale on both axes.

Protected source (polygon)

(0, 0); (6, 0); (6, 6); (0, 6)

Editable background (polygon)

(6, 0); (10, 0); (10, 6); (6, 6)

Permitted seam band (polygon)

(6, 0); (7, 0); (7, 6); (6, 6)

Retain source: (3, 3)

Seam: (6.5, -0.4)

Both panels use the same image grid. The left region retains the character and lettering; the right permits replacement. The second panel permits seam treatment only on the editable side. Regions describe an edit contract, not generated photographic results.

For Mira's background correction, retain the original on a separate layer and place generated content behind a visibility mask. This non-destructive arrangement preserves access to the source. Recognizable appearance, perceptual similarity, and exact decoded-pixel equality remain different requirements. Correction, undo, and recovery explains why retained versions matter.

y=mx+(1m)r.y=m\odot x+(1-m)\odot r. Here xx is the source array, rr the replacement, yy the composite, and \odot elementwise multiplication. The binary mask uses m=1m=1 for protected pixels. Under unchanged coordinates and representation, protected entries in yy equal those in xx.

Exact preservation needs an export contract: fixed dimensions, decoding, channel order, bit depth, color conversion, alpha handling, and coordinates. Avoid unintended resampling, quantization, or lossy encoding. Compare the decoded export, not only the working composite. Equal decoded pixels do not imply identical file bytes or identical appearance in every viewer.

Illustrative pseudocode Python-like pseudocode
source = decode_with_contract(source_file, contract)
export = decode_with_contract(export_file, contract)
assert source.shape == export.shape
assert protected.dtype == bool
assert protected.shape == source.shape[:2]
assert array_equal(source[protected], export[protected])

A local edit can require surrounding changes: removing an object may also require changing its reflection, while a replacement background can conflict with retained shadows. Fine hair exposes imperfect mask boundaries. If those pixels are protected, either revise the permitted region explicitly or accept the resulting limitation; silently expanding the edit violates the contract.

Subject identity and style across assets

Identity consistency preserves distinguishing subject characteristics while allowing pose, setting, expression, or delivery to change. Style concerns visual treatment; composition concerns arrangement. Subject-driven generation must satisfy both subject fidelity and the requested variation. DreamBooth demonstrates this separation, including failures where context alters appearance or reference settings are copied.

RouteWhat changesCreator's decision
Reference conditioningA trained model receives a new reference at generation time.A direct starting point for recurring-character edits; inspect whether incidental style or layout also transfers.
Subject adaptationParameters are adapted using subject examples; DreamBooth associates the subject with an identifier and class noun.Requires adaptation work and checks for lost variation, changed class behavior, and copied context.
Low-Rank Adaptation, or LoRAA frozen weight matrix receives an update expressed as two smaller learned matrices.Compact storage and fewer trainable parameters make adaptations easier to manage; the method itself guarantees neither identity fidelity nor disentanglement.

A useful character review records intended invariants and allowed variations for each asset. For Mira, distinguishing facial and costume traits remain fixed while pose and environment vary. Select references that expose those traits, including relevant views, then check whether the output invented unseen features or copied an unwanted background. Reference quality is a hypothesis to test, not an automatic identity guarantee.

Resembling a subject is not itself evidence of memorization. Training-data extraction concerns outputs unusually close to particular training examples, including their distinguishing composition. Extraction research has recovered such examples, but its counts depend on attack budget and matching criteria. A new depiction sharing a person or category is a different claim.

Speech content, delivery, and local replacement

Speech synthesis separates words, pronunciation, speaker characteristics, and prosody: pitch patterns, emphasis, pauses, and timing. A phoneme is a speech-sound unit that distinguishes words. Pronouncing the right words does not determine their emotional delivery. Speech Synthesis Markup Language exposes several controls separately, but processors can interpret them differently.

Reference-conditioned speech uses an audio example as inference context. Fine-tuning changes parameters. These interventions can be combined: a workshop listening comparison preferred the combined result, while still noting an intonation mismatch. Speaker resemblance and appropriate delivery therefore need separate listening judgments.

Local speech generation can fill a masked acoustic interval using text and surrounding sound. Voicebox retains durations of unchanged speech sounds while predicting durations for replacement sounds. New words may need a different interval length. Acoustic-context preservation does not imply sample-exact preservation after decoding; inspect both joins and the resulting utterance.

A codec decoder reconstructs waveform samples from generated codes. Some other systems produce a spectrogram and use a vocoder, a waveform synthesizer, to make it audible. AudioLM illustrates a hierarchy in which compact semantic tokens support longer structure and acoustic tokens retain voice and recording detail. Local acoustic detail alone cannot enforce a global script.

Streaming output does not imply streaming input. A model may require the complete text before emitting audio, making long responses wait despite rapid first-audio generation afterward. Conversational timing and interruption belong to Voice and Real-Time AI; an edited speech asset instead needs explicit content, duration, and delivery checks.

Music, sound, and contextual layers

Musical control includes rhythm, the pattern of events through time, and timbre, the sound qualities distinguishing sources with similar pitch and loudness. A genre description leaves many choices unresolved. Specify a cue's rhythmic role, instrumentation, recurrence, duration, and entry or exit points; verify which requirements the chosen interface actually supports.

Melody conditioning can supply more structure than text. MusicGen uses a chromagram, a time-varying pitch-class representation, reduced to dominant bins to discourage reproducing the reference recording. This is not an exact score. A plausible timbre, recognizable melody, and coherent full-song structure remain separate achievements.

Generate a part against retained music

A complementary layer can change without replacing every part.

Existing stems form the conditioning mix. A contextual generator produces a new stem, which joins retained stems in a revised mix.
Read the diagram as text
  • Retained stems.
  • Conditioning mix.
  • New complementary stem.
  • Revised mix.
  • Retained stemsConditioning mix: mix for context.
  • Conditioning mixNew complementary stem: condition generation.
  • Retained stemsRevised mix: retain parts.
  • New complementary stemRevised mix: add part.

Stems are separately represented musical parts combined into a finished mix. Contextual generation can add a complementary stem while retaining existing parts. StemGen learns this relationship by conditioning on a mixture that excludes the target stem. Layer-level revision therefore differs from regenerating the whole mix.

Continuation uses preceding audio as context, but local coherence does not establish the intended long-range recurrence or ending. For Mira's cue, retain approved parts and inspect the replacement's entrance, exit, background continuity, and relationship to the spoken line. Complete playback remains necessary even when individual segments sound convincing.

Video motion and temporal consistency

A shot is a continuous visual segment. Temporal consistency means coherent appearance, state, and relationships across time while allowing intended change. Plausible individual frames can still contain jumping characters or disappearing walls. Consistency within a shot and recognizable identity across cuts require different observations.

Temporal compression and temporal interaction are distinct. W.A.L.T compresses video across space and time, then alternates spatial and spatiotemporal attention windows. These connections exchange information across frames while limiting computation; they do not explicitly certify object identity or physically correct motion.

Video Diffusion Models alternates within-frame processing with temporal attention at spatial locations; a grid location is not a persistent object identity. Its continuation method retains clean conditioning frames while sampling new ones. Noisy counterparts used internally do not replace those accepted frames. Extension adds future frames; interpolation fills between known frames. Repeated boundaries can still accumulate drift.

A storyboard review tracks state changes instead of judging each frame independently.
SituationContinuity requirement
Mira passes behind a treeAfter occlusion, distinguishing features and plausible position should remain consistent.
The camera moves around MiraChanged viewpoint must be distinguished from movement of Mira herself.
A new clip extends the shotInspect the boundary for changes in subject, background, motion, and event state.

Camera conditioning describes a viewing trajectory, not the motion of every object. A static clip may score well on consistency while failing a walking requirement. Conversely, convincing movement is a media-quality observation, not validation of a physical simulator. Predictive environment behavior belongs to World Models.

Audiovisual correspondence and timing

Audiovisual synchronization connects sound and pictures on a shared time reference. Onset is when an event starts; offset is when it ends. A fixed timing displacement differs from drift that grows through playback. Semantic, temporal, and spatial correspondence explains why matching time and matching meaning are separate relationships.

Production routeDependencyIndependent check
Native audiovisual outputOne generation workflow produces picture and sound; Veo documentation provides an example.Availability of native audio does not establish synchronization accuracy.
Video-conditioned soundFoley—effects matched to visible actions—uses picture as context. FoleyCrafter separates semantic and temporal control.Check both the sound's identity and its timing.
Speech-conditioned lip generationFace video is changed to correspond to supplied speech.Wav2Lip uses a synchronization-specific training signal because attractive whole-face reconstruction can underweight mouth errors.
Separate tracks assembled in editingPicture, speech, effects, and music receive explicit positions in a composition.Recheck event correspondence after moving or replacing a track.

A longer line breaks an unchanged composition

Example timings

Speech can outlast mouth motion and overlap a previously following cue.

Composition v106 media secondsDuration 6 media seconds
Mouth motion v113 media secondsDuration 2 media secondsWithin Composition v1
Speech v113 media secondsDuration 2 media secondsWithin Composition v1
Musical cue v133.4 media secondsDuration 0.4 media secondsWithin Composition v1
Composition v2: speech replaced06 media secondsDuration 6 media seconds
Mouth motion: retained13 media secondsDuration 2 media secondsWithin Composition v2: speech replaced
Speech v2: longer13.5 media secondsDuration 2.5 media secondsWithin Composition v2: speech replaced
Musical cue: retained33.4 media secondsDuration 0.4 media secondsWithin Composition v2: speech replaced
Alternative compositions share media seconds, not generation latency. In the revision, only speech duration changes. Mouth motion ends earlier and the cue overlaps speech. Parentage identifies each composition; overlapping tracks must not be summed as elapsed time.
Read the diagram as text
  • Composition v1. 0 to 6 media seconds; duration 6 media seconds.
  • Mouth motion v1. 1 to 3 media seconds; duration 2 media seconds. Parent: Composition v1.
  • Speech v1. 1 to 3 media seconds; duration 2 media seconds. Parent: Composition v1.
  • Musical cue v1. 3 to 3.4 media seconds; duration 0.4 media seconds. Parent: Composition v1.
  • Composition v2: speech replaced. 0 to 6 media seconds; duration 6 media seconds.
  • Mouth motion: retained. 1 to 3 media seconds; duration 2 media seconds. Parent: Composition v2: speech replaced.
  • Speech v2: longer. 1 to 3.5 media seconds; duration 2.5 media seconds. Parent: Composition v2: speech replaced.
  • Musical cue: retained. 3 to 3.4 media seconds; duration 0.4 media seconds. Parent: Composition v2: speech replaced.

An audio spike at a visible door closure verifies only a timing coincidence. It could be the wrong effect. Likewise, lip motion generated for one recording may no longer fit a replacement. Retiming—changing playback timing—can preserve overall duration while changing internal correspondence, so matching clip endpoints is insufficient.

Inspectable revisions and dependent artifacts

An inspectable workflow retains references, candidates, selected assets, edits, compositions, and exports. A creative plan can be approved before execution, but that approval concerns direction rather than unseen output. Editing supplied footage also requires selecting and ordering available moments; it cannot assume every missing event can be invented.

Conventional composition supplies explicit control where generation is unnecessary. Frame-based authoring fixes layout, lettering, and timing; duration equals frame count divided by frame rate. Sound mixing combines separately retained audio tracks. Generation can create supporting assets while the composition determines their placement.

New dependencies require a new review

Example

Earlier approval remains attached to the earlier export.

1 / 4 · Accepted version

Retain its exact artifacts.

This application policy retains old artifacts and review records. Replacing speech produces export v2 and a pending review. Approval is added only after the required checks and reviewer decision.
Read the diagram as text
  • Still A.
  • Speech v1.
  • Export v1.
  • Approval of v1.
  • Speech v2.
  • Export v2.
  • v2 pending-review record. Retained after review.
  • Approval of v2.
  • Still AExport v1: used by.
  • Speech v1Export v1: used by.
  • Export v1Approval of v1: reviewed version.
  • Still AExport v2: reused by.
  • Speech v2Export v2: used by.
  • Export v2v2 pending-review record: requires review.
  • v2 pending-review recordApproval of v2: checks pass; reviewer approves.
  1. Accepted version. Retain its exact artifacts. Active: Still A, Speech v1, Export v1, Approval of v1. New: Still A, Speech v1, Export v1, Approval of v1.
  2. Replacement. Add new speech. Active: Still A, Speech v1, Export v1, Approval of v1, Speech v2. New: Speech v2.
  3. New export. Review does not transfer. Active: Still A, Speech v1, Export v1, Approval of v1, Speech v2, Export v2, v2 pending-review record. New: Export v2, v2 pending-review record.
  4. New decision. Preserve the review history. Active: Still A, Speech v1, Export v1, Approval of v1, Speech v2, Export v2, v2 pending-review record, Approval of v2. New: Approval of v2.

Each attempt should retain enough information to inspect the result and identify affected derivatives.

  • Inputs and configurationReference identities, prompt and preprocessing, model and adapter versions, sampler settings, and randomness.
  • Artifacts and editsSaved output identity, parent assets, human edits, and the composition or export that used them.
  • ReviewArtifact version, criterion, observation, reviewer, and decision time.

Retain rejected branches and earlier accepted versions instead of overwriting them. Frame.io's version stacks illustrate access to previous revisions, but stack order can change; newest is not synonymous with approved. A saved artifact is also stronger evidence of what was reviewed than instructions to regenerate a potentially different result.

For the example workflow, changing speech creates a new dependent export and renews its timing and content checks. The old export's approval remains historical. Preview inspection does not replace final-export inspection: a demonstrated agent sampled frames before rendering, which cannot establish every brief visual defect, audio issue, or export transformation.

Perceptual quality and creative fit

A rubric names criteria and explains how to judge them. Oracles, rubrics and human judgments covers the general method. Creative media can have several acceptable outputs: literal counts and colors do not settle artistic meaning, and intended departures from realism need not be defects.

Record the observation and its location before deciding what it means.
CriterionRelevant evidencePossible next action
Image and edit fidelityInspect composition, lettering, protected regions, and mask boundaries at delivery resolution.Repair the local defect or renegotiate the edit region.
Speech content and deliveryListen for correct words, pronunciation, voice, intonation, and replacement joins.Separate a wording correction from a delivery revision.
Music and soundListen through the cue's structure, recurrence, entrances, and ending.Revise the affected layer while retaining accepted parts.
Video behaviorA convincing still can come from a motionless clip that fails a walking instruction.Evaluate motion separately from appearance consistency.
Audiovisual agreementA correctly timed effect may represent the wrong event.Check semantic correspondence separately from onset alignment.
Creative fitDistinguish the creator's preference from audience suitability and the intended meaning.Record the preference and its reason rather than treating taste as factual correctness.

Full-resolution inspection, complete playback, and explicit checks around edits form a practical review policy. Sparse frame samples support faster feedback but leave gaps between observations. Automated checks should identify which criterion they address and which intervals they inspected; passing one check does not cover the rest of the rubric.

Evidence across attempts and workflows

Compare workflows on matched briefs, references, and edit requests using declared generation and selection budgets. Controlled offline comparisons supplies the general design. For creative judgments, compare outputs from the same prompt on specific criteria. Record reviewer disagreement and cover the identities, languages, styles, durations, and motion cases relevant to the intended use.

An all-attempt ledger should distinguish generated candidates, rejected candidates, revisions, accepted deliverables, and unresolved outcomes. Proposed accounting should include failed work and correction effort. Define whether acceptance means a usable candidate or a completed brief; changing that denominator changes the reported quantity.

The selected result hides rejected work

Example

Acceptance accounting needs the full attempt history.

The proposed ledger includes rejection, correction, acceptance, and unresolved outcomes. A revision endpoint records further work without assuming it will succeed.
Read the diagram as text
  • All candidates.
  • Rejected candidates.
  • Selected candidate.
  • Edited export review.
  • Accepted deliverable.
  • Further revision required.
  • Unresolved outcome.
  • All candidatesRejected candidates: selection: rejected.
  • All candidatesSelected candidate: selection: retained.
  • Selected candidateEdited export review: edit and assemble.
  • Edited export reviewAccepted deliverable: criteria met.
  • Edited export reviewFurther revision required: repair needed.
  • Edited export reviewUnresolved outcome: judgment incomplete.
cost per accepted deliverable=cost of all attempts, revisions, and reviewaccepted deliverables.\text{cost per accepted deliverable}=\frac{\text{cost of all attempts, revisions, and review}}{\text{accepted deliverables}}. Use a declared workload and observation window. With no accepted deliverables, report the cost and zero acceptances separately; the ratio is undefined.
Proxy measurements answer narrower questions than deliverable acceptance.
MeasurementInputs and aggregationInterpretation boundary
Fréchet Inception Distance, or FIDCompares means and covariances of image features from real and generated collections.Lower distance means closer fitted feature distributions. It contains no prompt or protected-region reference and cannot certify an individual image.
Fréchet Audio Distance, or FADCompares fitted audio-embedding distributions against a background music collection.No paired clean recording is needed, but a background distribution is. The original metric misses long-distance temporal changes and does not establish compliance with a musical brief.
CLIP-based correspondenceCompares image and text embeddings; CLIPScore was developed for caption evaluation.Compatibility is not exhaustive instruction checking. Counts, relations, protected regions, and nonliteral meaning require additional assessment.
LPIPS perceptual distanceCompares learned features of an image and a paired reference.Perceptual closeness does not establish semantic correctness or equal pixels.

Judges can learn shortcuts. One video-evaluator project attributed confident errors to training negatives that made polish and artificial artifacts easier to recognize than the intended quality dimensions. Separately, a CLIP-scored drawing game rewarded handwritten prompt text. These failures motivate criterion-specific validation rather than assuming a plausible score measures the intended task.

Changing training data can change both appearance and prompt following. Stable Video Diffusion separately studied captioning and filtering interventions under fixed training settings. Such comparisons support the tested interventions and populations; they do not turn training loss or a selected demonstration into evidence that Mira's particular motion and identity requirements are reliable.

Media provenance and verification boundaries

Provenance records origin and transformation history. References, generated candidates, edits, and exports are distinct entities connected by activities and responsible contributors. Lineage and proportionate audit evidence develops that foundation. A changing latest-version pointer is not a sufficient identity for the particular export someone reviewed.

MechanismWhat it addressesRemaining limit
Internal revision recordWhich sources and operations produced an asset.Completeness and truth depend on recording practices.
Signed Content CredentialsBind provenance assertions to an asset and support integrity and signer checks.A valid binding does not establish depicted truth or publication rights.
Embedded watermarkCarries an origin signal within content.Removal, spoofing, and detector coverage limit what can be inferred.
Statistical detectorEstimates synthetic origin from content signals.False positives, false negatives, and changing inputs prevent universal conclusions.

Asset history and assertion integrity differ

Example

Redistribution can separate content from recorded history.

Derivation connects media versions. Signed assertions bind claims to an export; validation checks the binding and signer. Redistribution may retain or omit credentials. Neither branch establishes depicted truth.
Read the diagram as text
  • Source asset.
  • Edited export.
  • Signed assertions.
  • Binding and signer validation.
  • Copy with credentials.
  • Copy without credentials.
  • Source assetEdited export: derivation: edit.
  • Signed assertionsEdited export: asset binding.
  • Signed assertionsBinding and signer validation: signed claims.
  • Edited exportBinding and signer validation: bound asset.
  • Edited exportCopy with credentials: redistribution retains metadata.
  • Edited exportCopy without credentials: redistribution omits metadata.

The C2PA version 2.2 explainer describes signed assertions, asset binding, and trust in the signer. Successful validation concerns those particular records and bindings. Metadata can disappear during export or redistribution, and histories can be incomplete. Missing credentials therefore do not establish fabrication, just as intact credentials do not prove that a depicted event occurred.

Reference permissions and release responsibility

Rights clearance establishes applicable authority for a proposed use. Likeness means a recognizable depiction of someone; voice reproduction can raise related concerns. Rights, restrictions and decision authority explains why authority depends on the material, operation, and purpose. Public access and attribution do not establish every necessary permission.

For the example workflow, assign a reviewer and retain evidence for each boundary.
Material and operationEvidence to establishDecision owner
Reference upload or model adaptationApplicable license, confidentiality restrictions, provider terms, and secondary-use conditions.Input owner and service reviewer.
Recognizable person or voiceAuthority covering the intended creation and distribution; an asset license may leave another person's rights unaffected.Responsible rights reviewer.
Incorporated music or other assetsThe permitted operation and distribution scope for each component.Asset owner or designated reviewer.
Final export and publishing channelVersion-specific approval, unresolved restrictions, and applicable disclosure requirements.Named release owner.

Creative Commons explicitly distinguishes its copyright licenses from third-party publicity, privacy, and personality rights. Separately, the U.S. Copyright Office's January 2025 report treats copyrightability as a case-specific human-authorship question. It recognizes protectable human expression in some AI-assisted work while finding prompts alone generally insufficient at the technological stage examined. Neither source clears a particular production.

Clear references before their proposed use, retain human creative decisions, and review the exact export before release. Creative approval and release authority should be recorded separately. A provenance record, watermark, or provider ownership statement cannot substitute for the missing license, consent, contract, or use-specific decision.

Open questions

  1. Independent identity and style control remains difficult because references can carry both. Progress would preserve distinguishing subject traits across new treatments without copying incidental backgrounds, demonstrated on held-out variations rather than selected examples. This matters when one character must support many creative directions.

  2. Long-video continuation must retain state through repeated boundaries and occlusion despite bounded context. Progress would measure identity and object-state errors as continuation length grows, including reappearance cases. Short coherent clips alone cannot establish whether a reusable production workflow will remain consistent.

  3. Aesthetic evaluators must represent different legitimate preferences without confusing taste with constraint violations. Progress would preserve criterion-specific disagreements and predict intended users' choices on unseen briefs, including deliberately nonliteral work. A single aggregate score obscures both creative plurality and evaluator shortcuts.

  4. Precise audiovisual repair must accommodate changed speech while preserving unaffected timing. The difficulty is that lip generation depends on the final audio and local duration changes can alter internal correspondence. Progress would demonstrate bounded repairs that pass content, synchronization, and unchanged-region checks on the exported result.

Follow the curated reading path through the speakers and demonstrations behind this entry.

23 min

AI Engineer World's Fair 2026 · 2026

Evaling Video Slop

Maor Bril

Cited in this entry

Provides concrete evaluator failures and reasons to inspect replaceable clips before full assembly.

Watch talk

Explore more talks

The rest of the library, beyond the curated path. Cited talks support this entry; reviewed transcripts were processed in full. Metadata candidates have not been reviewed as sources or verified as topic members.

48 matching talks

TalkSpeakerEventYear
Gorkem YurtsevenAI Engineer World's Fair 20252025
Ziv IlanAI Engineer Europe 20262026
Keegan McCallumAI Engineer World's Fair 20262026
Linus LeeAI Engineer Summit 20232023
Nick HeinerAI Engineer World's Fair 20262026
Brendan O'DonoghueAI Engineer Europe 20262026
Robotics: why now?

Transcript reviewed

Quan Vuong, Jost Tobias SpringenbergAI Engineer World's Fair 20252025
Jedrick Kosinski, ComfyAnonymousAI Engineer World's Fair 20252025
Raia HadsellAI Engineer Europe 20262026
Chad Bailey, Brian JohnsonAI Engineer World's Fair 20252025
Kelvin MaAI Engineer World's Fair 20252025
Ending AI Slop

Transcript reviewed

Thais Castello BrancoAI Engineer World's Fair 20262026
Don't be data poor

Transcript reviewed

Anuj IravaneAI Engineer World's Fair 20262026
Doug GuthrieAI Engineer World's Fair 20252025
Ronan McGovernAI Engineer World's Fair 20252025
Ahmed AhresAI Engineer World's Fair 20262026
Paige BaileyAI Engineer Europe 20262026
Sangwu LeeAI Engineer World's Fair 20262026
Veo 3 for developers

Cited in this entry

Paige BaileyAI Engineer World's Fair 20252025
HTML Is All Agents Need

Cited in this entry

James RussoAI Engineer World's Fair 20262026
MuhtesemAI Engineer Summit 20252025
Joseph NelsonAI Engineer Summit 20232023
Siddharth AhujaAI Engineer World's Fair 20252025
Logan KilpatrickAI Engineer World's Fair 20252025
Dax RaadAI Engineer Code 20252025
Patrick LöberAI Engineer Europe 20262026
Alex DuffyAI Engineer World's Fair 20252025
Angus J. McLeanAI Engineer Europe 20262026
Sunny MadraAI Engineer World's Fair 20242024
Paige Bailey, Guillaume Vernade, Ian BallantyneAI Engineer Europe 20262026
Cat Wu, Thariq Shihipar, Simon WillisonAI Engineer World's Fair 20262026
Karina NguyenAI Engineer Summit 20252025
Dmytro (Dima) DzhulgakovAI Engineer World's Fair 20242024
Defying Gravity

Metadata candidate

Kevin HouAI Engineer Code 20252025
Gabriel Jorge MenezesAI Engineer World's Fair 20262026
AI Engineer Summit 20252025
Guillaume VernadeAI Engineer Europe 20262026
Randall HuntAI Engineer World's Fair 20252025
Proactive Agents

Metadata candidate

Kath KorevecAI Engineer Code 20252025
See, Hear, Speak, Draw

Metadata candidate

Logan Kilpatrick, Simón FishmanAI Engineer Summit 20232023
Lars GrammelAI Engineer Summit 20232023
Rob CheungAI Engineer World's Fair 20242024
Barr YaronAI Engineer World's Fair 20262026
Travis FrisingerAI Engineer World's Fair 20252025
Diego Rodriguez, Eugene, Jonas Bauer, Shijia Liao, David Vorick, Alex AtallahAI Engineer World's Fair 20252025
Stefania DrugaAI Engineer Summit 20252025
Todd FisherAI Engineer World's Fair 20262026
Eugene CheahAI Engineer Summit 20252025

References

Coverage and source review
Processed transcripts
28 processed in full · 6 in the curated path
Automated source review
Passed
Metadata candidates
26 unreviewed; not verified topic membership
Corpus version
1bd8e407b26a07b33815594e1b2db5f41827119a2b3cb6fbf240f9fc571fc767

Automated review checks source support; it is not publication approval.

A synthesis of selected conference talks and technical references. Citations link to the source material; they do not imply that every talk on this subject is included.

  1. Classifier-Free Diffusion Guidance

    Ho and Salimans; conditional-dropout training, equation 6 sampling rule and discussion of diversity.

  2. RePaint: Inpainting using Denoising Diffusion Probabilistic Models

    Sections 4.1–4.2; equations 8a–8c; Algorithm 1; expansion-mask examples. Mask convention follows equation 8c and Algorithm 1; introductory prose in section 4.1 reverses the labels.

  3. Photoshop: Add Layer Masks

    Add a mask that shows or hides the entire layer; Add a layer mask that hides part of a layer; Apply a layer mask from another layer.

  4. Adobe: Create a concrete brief to share out in the discovery phase

    Discovery, audience, project scope and revision expectations; applicable to framing the chapter's constructed creative brief.

  5. Building an Agentic Video Editor for Mass Consumer

    Reelful places approval of a creative plan after media understanding and before editing execution.

  6. The State of Generative Media Today

    The speaker distinguishes falling marginal production cost from the continuing need for storytelling and creativity.

  7. Perceptual Evaluations: Evals for Aesthetics — Diego Rodriguez, Krea.ai

    Aesthetic metrics should account for the intended user's opinion as well as perceptual properties of the medium.

  8. Building Generative Image & Video Models at Scale

    Learned autoencoder latents reduce memory requirements while preserving grid structure useful to the generative network.

  9. Auto-Encoding Variational Bayes

    Kingma and Welling; sections 2.2–2.4 and the variational-autoencoder construction.

  10. The Sampling Theorem

    The Scientist and Engineer's Guide to Digital Signal Processing, chapter 3, Sampling Theorem; Figures 3-3 through 3-5.

  11. SciPy Signal Processing: Short-Time Fourier Transform

    Spectral Analysis; Short-Time Fourier Transform, equations 8–10; Inverse STFT and Dual Windows; legacy spectrogram comparison.

  12. High Fidelity Neural Audio Compression

    Sections 3.1–3.4; section 4.5.1 and Table 1; section 4.6.

  13. Remotion: The fundamentals

    React components, video properties and compositions; production vocabulary and conventional composition within a generative workflow.

  14. Photorealistic Video Generation with Diffusion Models

    Sections 3–4.4; a concrete video representation and generation architecture.

  15. ComfyUI Workshop with ComfyAnonymous and Jedrick Kosinski

    The Stable Diffusion example samples a compressed spatial representation instead of full-resolution pixels.

  16. How Google DeepMind is researching the next Frontier of AI for Gemini — Raia Hadsell, VP of Research

    The talk presents unified multimodal embeddings as a retrieval companion to generation, encoding concepts across different presentations into a shared semantic space.

  17. Taming Transformers for High-Resolution Image Synthesis

    Esser et al.; sections on the learned codebook, autoregressive ordering and conditional synthesis.

  18. Generative Adversarial Nets

    Goodfellow et al., 2014; adversarial-net formulation, algorithm and theoretical-results assumptions.

  19. Denoising Diffusion Probabilistic Models

    Sections 2–3.4; equations 4, 11, and 14; Algorithms 1 and 2.

  20. Flow Matching for Generative Modeling

    Original paper, sections 2 through 4. Conceptual comparison with denoising diffusion, without a mathematical derivation.

  21. Scalable Diffusion Models with Transformers

    Sections 3.1–3.2 and experimental diffusion configuration; distinguishes representation, backbone architecture and generation rule.

  22. Simple and Controllable Music Generation

    Sections 2.1–2.4 and 3.3; music representation, prediction order, reference control and separate evaluation criteria.

  23. High-Resolution Image Synthesis with Latent Diffusion Models

    Original paper, sections 3.1 through 3.3 and task evaluations. Mechanism for latent representations, conditioning, and the cost-quality tradeoff.

  24. Building Generative Image & Video Models at Scale

    A denoiser's clean-image estimate is an ambiguous average, so jumping directly to it produces blur rather than a resolved sample.

  25. IP-Adapter: Text Compatible Image Prompt Adapter for Text-to-Image Diffusion Models

    Sections 3.2.1–3.2.3; generation-time reference inputs and their distinction from subject-specific parameter adaptation.

  26. Training Krea 2 - What matters in generative model training.

    A small LLM can expand user requests into detailed prompts that better match the generator's training-caption distribution.

  27. Black Forest Labs: FLUX, Open Research, and the Future of Visual AI

    Multiple reference images can specify items to compose into one coherent output, rather than describing every item through text.

  28. Adding Conditional Control to Text-to-Image Diffusion Models

    Sections 3.1–3.3; Figures 2–3; spatial-condition encoder and training objective.

  29. CameraCtrl: Enabling Camera Control for Video Diffusion Models

    Sections 3.1–3.2; camera conditioning and its distinction from object-motion instructions.

  30. Text-to-Speech Data Preparation and Fine-tuning Workshop - Ronan McGovern

    In the workshop's listening comparison, reference-audio conditioning makes the base model sound closer to the target speaker, and combining it with fine-tuning gives the speaker's preferred result.

  31. Attention Is All You Need

    Sections 3.2.1–3.2.3; scaled dot-product equation 1 and multi-head construction.

  32. Veo 3 for developers

    The Veo 2 discussion presents reference-powered video as a way to combine subjects and environments, preserve styles, and control character performance.

  33. Diffusers: StableDiffusionSAGPipeline

    StableDiffusionSAGPipeline call parameters; a concrete example of controls whose meaning and availability depend on the implementation.

  34. SDEdit: Guided Image Synthesis and Editing with Stochastic Differential Equations

    Section 3, realism–faithfulness discussion and Proposition 1; Figure 3; Appendix D.2.

  35. Building Generative Image & Video Models at Scale

    Consistency-model distillation targets fewer sampling steps, but predicting the entire trajectory endpoint in one pass may sacrifice quality.

  36. DeepCache: Accelerating Diffusion Models for Free

    Sections 2 and 3.2–3.3; section 4 ablations, Tables 4–6 and Figure 7; section 5 limitations; Appendix Algorithm 1.

  37. Diffusers Reproducibility

    Generator; Deterministic algorithms; Resources warning about reproducibility.

  38. Null-text Inversion for Editing Real Images using Guided Diffusion Models

    Sections 3–4, pivotal inversion and null-text optimization; Figure 3; Appendix B guidance analysis.

  39. Photoshop: Export Settings and Export Location Preferences

    File Settings; Image Size and Resample; Canvas Size; Additional options, Color Space; Scale All.

  40. Magic Editor Under the Hood: Weaving Generative AI into a Billion-User App

    Magic Eraser combines distractor detection, segmentation, inpainting, and device rendering rather than relying on a single model output.

  41. Magic Editor Under the Hood: Weaving Generative AI into a Billion-User App

    A U-Net portrait segmentation model can produce a usable mask while missing fine hair strands; post-model image understanding can refine those boundaries.

  42. DreamBooth: Fine Tuning Text-to-Image Diffusion Models for Subject-Driven Generation

    Sections 3.2–3.3, 4.1–4.3 and 4.5; subject adaptation and limits of identity preservation.

  43. ComfyUI Workshop with ComfyAnonymous and Jedrick Kosinski

    Reference-image editing offers a simpler entry point, while LoRAs provide trainable character or style adaptations and more explicit regional control.

  44. LoRA: Low-Rank Adaptation of Large Language Models

    Sections 4.1–4.2; a brief explanation of compact parameter updates for the creator's adaptation choice.

  45. Extracting Training Data from Diffusion Models

    Section 4.1 memorization/extraction definitions; sections 4.2–4.3 Stable Diffusion and Imagen attacks; Figures 2–3.

  46. Speech Synthesis Markup Language (SSML) Version 1.1

    Sections 1.2–1.4; first-use vocabulary and separation of speech content from delivery controls.

  47. Voicebox: Text-Guided Multilingual Universal Speech Generation at Scale

    Sections 3.4–3.6 and 4; reference speech, interval editing, duration changes and alignment-preserving generation.

  48. AudioLM: a Language Modeling Approach to Audio Generation

    Sections III-B–III-D; IV-D, IV-F–IV-G, and IV-I.

  49. FoleyCrafter: Bring Silent Videos to Life with Lifelike and Synchronized Sounds

    Sections 3.1–3.3 and the paper's evaluation framing; video-conditioned sound as one audiovisual production route.

  50. Why TTS Models Now Look Like LLMs — Samuel Humeau, Mistral

    No: the demonstrated model streams audio after receiving the complete text and a reference voice recording.

  51. Build & deploy AI-powered apps

    The Lyria 3 gallery app demonstrated combining genre, mood, subject matter, and lyric language in a generated music clip.

  52. StemGen: A music generation model that listens

    Introduction and section 2; stems, contextual musical generation and iterative composition.

  53. Fréchet Audio Distance: A Metric for Evaluating Music Enhancement Algorithms

    Sections 3, 4.4, 5.3 and 7; FAD definition, validation population and temporal limitations.

  54. Veo 3 for developers

    Prompt nuance and temporal consistency remain difficult; concrete failure modes include characters jumping between frames and walls disappearing.

  55. Evaling Video Slop

    Prompt alignment and frame consistency do not establish that a video tells the intended story; temporal quality needs explicit evaluation axes.

  56. Video Diffusion Models: Space-time factorized U-Net

    Section 3, Figure 1 and section 3.1. Connectivity interpretation follows the described axes; identity and physical correctness are not architectural guarantees.

  57. Video Diffusion Models

    Section 3.1, equation 7; section 4.3.3, Figure 4 and Table 6; Appendix A.

  58. VBench: Comprehensive Benchmark Suite for Video Generative Models

    Sections 3.1–3.3; media-specific rubric dimensions and criterion-specific pairwise evaluation.

  59. Evaling Video Slop

    Check intermediate generation inputs and individual clips before assembly, and expose evaluation tools to the generating agent.

  60. Evaling Video Slop

    The sound alignment method checks for an audio spike at the timestamp of a visible event, without establishing the sound's semantic identity.

  61. Google AI for Developers: Video generation in the Gemini API

    Veo 3.1 overview on the currently opened video-generation documentation page.

  62. A Lip Sync Expert Is All You Need for Speech to Lip Generation In The Wild

    Sections 3.1–3.3; audio-conditioned visual generation and a concrete synchronization-specific evaluation mechanism.

  63. Veo 3 for developers

    The demonstrated Veo 2 workflow requires planning, clip segmentation, separate audio generation, and editing; the Veo 3 example produces an audiovisual excerpt from one prompt.

  64. Building an Agentic Video Editor for Mass Consumer

    Editing supplied footage requires selection and organization under source constraints, including messy or incomplete material.

  65. Building an Agentic Video Editor for Mass Consumer

    An editing agent can invoke separate generation subprocesses for assets needed by the composition.

  66. PROV-DM: The PROV Data Model

    Introduction; core entities, activities, agents and derivations; section 7 on changing resources.

  67. LangSmith: Feedback data format

    Feedback sources and field table. Supports task-linked judgments with provenance and feedback timing distinct from execution timing.

  68. Frame.io: Version Stacking

    Version creation, prior-version access and version management; inspectable revision workflow.

  69. This video was edited with AI agent. But how?

    The agent feeds sampled composition frames into VisualFeedbackTool and waits for approval before rendering.

  70. Perceptual Evaluations: Evals for Aesthetics — Diego Rodriguez, Krea.ai

    Object counts, colors, and literal realism can miss artistic meaning and may penalize deliberate departures from ordinary appearance.

  71. GANs Trained by a Two Time-Scale Update Rule Converge to a Local Nash Equilibrium

    Section 4, FID definition, equation 6 and Figure 3; Appendix A1 disturbance experiments.

  72. CLIPScore: A Reference-free Evaluation Metric for Image Captioning

    Section 3 metric construction; section 4 caption evaluations; sections 5.3–5.4; Appendix B rescaling.

  73. The Unreasonable Effectiveness of Deep Features as a Perceptual Metric

    Sections 2–3; equation 1; BAPPS 2AFC and JND protocols; Figure 4 and transfer experiments.

  74. Evaling Video Slop

    The first evaluator learned visual polish and artificial artifacts instead of the intended quality axes.

  75. 120k players in a week: Lessons from the first viral CLIP app: Joseph Nelson

    The team used CLIP itself to detect and penalize handwriting-based shortcuts.

  76. Stable Video Diffusion: Scaling Latent Video Diffusion Models to Large Datasets

    Sections 3.1–3.4; Figures 3–4; Appendix B synthetic captioning; Appendix E curation studies.

  77. C2PA and Content Credentials Explainer, version 2.2

    Official version 2.2 explainer, trust and limitations questions, particularly sections 7.2.1 through 7.2.3. Supports provenance as one part of publication review.

  78. NIST AI 100-4: Reducing Risks Posed by Synthetic Content

    Sections 3.1.1–3.2, 4.2, and 5.2–5.5; Appendix F authentication definition.

  79. Creative Commons: Frequently Asked Questions

    FAQ sections on publicity, privacy, personality rights and the distinction between attribution and copyright infringement; a bounded reference-licensing example.

  80. NIST Generative AI Profile: Third-Party Risk

    GOVERN 6.1–6.2; MAP 4.1; MANAGE 3–4; Appendix A.1.3 Third-Party Considerations.

  81. U.S. Copyright Office: Copyright and Artificial Intelligence, Part 2—Copyrightability

    Report conclusion and its expressly time-bounded analysis of U.S. copyrightability; supports recording human creative contributions.

  82. HTML Is All Agents Need

    The recommended workflow combines iterative decomposition with a narrative, frame-by-frame storyboarding, motion authoring, composition, and manual finishing.

  83. Building Generative Image & Video Models at Scale

    A diffusion transformer can use fully bidirectional attention rather than a causal mask, while benefiting from transformer scaling experience.

  84. Building Generative Image & Video Models at Scale

    Guidance can improve prompt-relative sample quality at the cost of diversity and additional model evaluations.

  85. ComfyUI Workshop with ComfyAnonymous and Jedrick Kosinski

    A single image-quality rating can fail to capture different users' preferences; a historical model-rating experiment was reported as unsuccessful.

  86. Black Forest Labs: FLUX, Open Research, and the Future of Visual AI

    Character-consistent image edits can produce storyboard frames that condition a downstream video or animation model.

  87. Why TTS Models Now Look Like LLMs — Samuel Humeau, Mistral

    Frame-level audio codecs turn waveform generation into a sequence-modeling problem while retaining acoustic information that a transcript discards.