From 88952de093760e18acedd9a87f4434f8f084ca36 Mon Sep 17 00:00:00 2001 From: "John J. O'Hare" Date: Thu, 21 May 2026 17:58:08 +0000 Subject: [PATCH] Add complete arXiv-compatible LaTeX conversion of Dream Machine book Convert all 18 chapters, 8 appendices, frontmatter, and backmatter from Markdown to XeLaTeX using memoir class. Includes 374-entry BibTeX bibliography, citation index, 6 TikZ diagrams, 5 matplotlib charts, 2 Wardley maps, and cover artwork. Compiles to 409 pages with zero errors. arXiv compliance: filename-based font loading (EB Garamond with fallback chain), 00README.XXX engine selector, biber backend, no fontconfig dependency. Co-Authored-By: jjohare --- latex/.gitignore | 29 + latex/00README.XXX | 2 + latex/Makefile | 14 + latex/appendices/a1_quantitative_anatomy.tex | 345 ++ latex/appendices/a2_glossary.tex | 105 + latex/appendices/a3_bibliography_by_topic.tex | 246 ++ latex/appendices/a4_deep_dive_shadow_ai.tex | 254 ++ .../a5_deep_dive_adoption_dynamics.tex | 309 ++ latex/appendices/a6_deep_dive_ai_stigma.tex | 240 ++ latex/appendices/a7_deep_dive_ai_intent.tex | 420 +++ latex/appendices/a8_source_index.tex | 490 +++ latex/backmatter/citation_index.tex | 340 ++ latex/chapters/ch01_the_day_sora_landed.tex | 127 + .../chapters/ch02_a_history_of_resistance.tex | 207 ++ .../ch03_the_human_ai_agency_continuum.tex | 147 + .../ch04_dead_internet_living_web.tex | 135 + latex/chapters/ch05_the_slop_ceiling.tex | 145 + latex/chapters/ch06_the_88_percent.tex | 233 ++ latex/chapters/ch07_the_studios_decide.tex | 190 + latex/chapters/ch08_worlds_not_pictures.tex | 129 + latex/chapters/ch09_ai_in_everything.tex | 169 + .../chapters/ch10_what_is_newly_possible.tex | 184 + latex/chapters/ch11_the_orchestrator.tex | 164 + .../ch12_authenticity_new_scarcity.tex | 177 + latex/chapters/ch13_coordination_collapse.tex | 189 + latex/chapters/ch14_the_new_jobs.tex | 183 + latex/chapters/ch15_choosing_the_future.tex | 259 ++ latex/chapters/ch16_the_tools.tex | 851 +++++ latex/chapters/ch17_five_years_inside.tex | 154 + latex/chapters/ch18_epilogue.tex | 89 + latex/figures/Makefile | 9 + latex/figures/back_cover.png | Bin 0 -> 271066 bytes latex/figures/chart_citations_per_chapter.pdf | Bin 0 -> 19640 bytes latex/figures/chart_domain_distribution.pdf | Bin 0 -> 23515 bytes latex/figures/chart_sector_volume.pdf | Bin 0 -> 24055 bytes latex/figures/chart_timeline.pdf | Bin 0 -> 31402 bytes latex/figures/chart_tool_categories.pdf | Bin 0 -> 28646 bytes latex/figures/cover.png | Bin 0 -> 128182 bytes latex/figures/tikz_88_percent.tex | 73 + latex/figures/tikz_agency_continuum.tex | 39 + latex/figures/tikz_coordination_collapse.tex | 90 + latex/figures/tikz_four_principles.tex | 72 + latex/figures/tikz_slop_ceiling.tex | 67 + latex/figures/tikz_toolchain_layers.tex | 67 + latex/figures/wardley_creative_economy.png | Bin 0 -> 181849 bytes latex/figures/wardley_creative_economy.tex | 6 + latex/figures/wardley_studios.png | Bin 0 -> 189611 bytes latex/figures/wardley_studios.tex | 6 + latex/frontmatter/blurb.tex | 32 + latex/frontmatter/copyright.tex | 32 + latex/frontmatter/foreword.tex | 423 +++ latex/frontmatter/reader_paths.tex | 84 + latex/frontmatter/titlepage.tex | 33 + latex/latexmkrc | 15 + latex/main.tex | 252 ++ latex/references.bib | 3286 +++++++++++++++++ latex/verification_report.txt | 295 ++ 57 files changed, 11407 insertions(+) create mode 100644 latex/.gitignore create mode 100644 latex/00README.XXX create mode 100644 latex/Makefile create mode 100644 latex/appendices/a1_quantitative_anatomy.tex create mode 100644 latex/appendices/a2_glossary.tex create mode 100644 latex/appendices/a3_bibliography_by_topic.tex create mode 100644 latex/appendices/a4_deep_dive_shadow_ai.tex create mode 100644 latex/appendices/a5_deep_dive_adoption_dynamics.tex create mode 100644 latex/appendices/a6_deep_dive_ai_stigma.tex create mode 100644 latex/appendices/a7_deep_dive_ai_intent.tex create mode 100644 latex/appendices/a8_source_index.tex create mode 100644 latex/backmatter/citation_index.tex create mode 100644 latex/chapters/ch01_the_day_sora_landed.tex create mode 100644 latex/chapters/ch02_a_history_of_resistance.tex create mode 100644 latex/chapters/ch03_the_human_ai_agency_continuum.tex create mode 100644 latex/chapters/ch04_dead_internet_living_web.tex create mode 100644 latex/chapters/ch05_the_slop_ceiling.tex create mode 100644 latex/chapters/ch06_the_88_percent.tex create mode 100644 latex/chapters/ch07_the_studios_decide.tex create mode 100644 latex/chapters/ch08_worlds_not_pictures.tex create mode 100644 latex/chapters/ch09_ai_in_everything.tex create mode 100644 latex/chapters/ch10_what_is_newly_possible.tex create mode 100644 latex/chapters/ch11_the_orchestrator.tex create mode 100644 latex/chapters/ch12_authenticity_new_scarcity.tex create mode 100644 latex/chapters/ch13_coordination_collapse.tex create mode 100644 latex/chapters/ch14_the_new_jobs.tex create mode 100644 latex/chapters/ch15_choosing_the_future.tex create mode 100644 latex/chapters/ch16_the_tools.tex create mode 100644 latex/chapters/ch17_five_years_inside.tex create mode 100644 latex/chapters/ch18_epilogue.tex create mode 100644 latex/figures/Makefile create mode 100644 latex/figures/back_cover.png create mode 100644 latex/figures/chart_citations_per_chapter.pdf create mode 100644 latex/figures/chart_domain_distribution.pdf create mode 100644 latex/figures/chart_sector_volume.pdf create mode 100644 latex/figures/chart_timeline.pdf create mode 100644 latex/figures/chart_tool_categories.pdf create mode 100644 latex/figures/cover.png create mode 100644 latex/figures/tikz_88_percent.tex create mode 100644 latex/figures/tikz_agency_continuum.tex create mode 100644 latex/figures/tikz_coordination_collapse.tex create mode 100644 latex/figures/tikz_four_principles.tex create mode 100644 latex/figures/tikz_slop_ceiling.tex create mode 100644 latex/figures/tikz_toolchain_layers.tex create mode 100644 latex/figures/wardley_creative_economy.png create mode 100644 latex/figures/wardley_creative_economy.tex create mode 100644 latex/figures/wardley_studios.png create mode 100644 latex/figures/wardley_studios.tex create mode 100644 latex/frontmatter/blurb.tex create mode 100644 latex/frontmatter/copyright.tex create mode 100644 latex/frontmatter/foreword.tex create mode 100644 latex/frontmatter/reader_paths.tex create mode 100644 latex/frontmatter/titlepage.tex create mode 100644 latex/latexmkrc create mode 100644 latex/main.tex create mode 100644 latex/references.bib create mode 100644 latex/verification_report.txt diff --git a/latex/.gitignore b/latex/.gitignore new file mode 100644 index 0000000..5e910f3 --- /dev/null +++ b/latex/.gitignore @@ -0,0 +1,29 @@ +# Build artifacts +build/ +*.aux +*.log +*.toc +*.lof +*.lot +*.out +*.bbl +*.bcf +*.blg +*.fls +*.fdb_latexmk +*.synctex.gz +*.xdv +*.run.xml + +# Helper scripts (generated, not part of submission) +convert_citations.py +enrich_bib.py +fix_links.py + +# Mermaid source and rendering helpers +figures/*.mmd +figures/render_browser.mjs +figures/render_maps.py +figures/render_wardley.html +figures/upcycle_diagrams.py +figures/generate_charts.py diff --git a/latex/00README.XXX b/latex/00README.XXX new file mode 100644 index 0000000..0dbaeb5 --- /dev/null +++ b/latex/00README.XXX @@ -0,0 +1,2 @@ +nohypertex +xelatex main.tex diff --git a/latex/Makefile b/latex/Makefile new file mode 100644 index 0000000..5225019 --- /dev/null +++ b/latex/Makefile @@ -0,0 +1,14 @@ +LATEX = latexmk +FLAGS = -xelatex -output-directory=build -interaction=nonstopmode + +.PHONY: all clean distclean + +all: + @mkdir -p build + $(LATEX) $(FLAGS) main.tex + +clean: + $(LATEX) -C -output-directory=build + +distclean: clean + rm -rf build/ diff --git a/latex/appendices/a1_quantitative_anatomy.tex b/latex/appendices/a1_quantitative_anatomy.tex new file mode 100644 index 0000000..6636c4e --- /dev/null +++ b/latex/appendices/a1_quantitative_anatomy.tex @@ -0,0 +1,345 @@ +\chapter{A Quantitative Anatomy of Six Months}\label{app:a1} + +\emph{This appendix is a structured tour of the corpus the book was built from. It is not in the body of the manuscript because it would interrupt the argument; it lives here so that the reader, the policy researcher, the journalist or the historian picking the book up later can see what the underlying data actually looks like and check the arguments against it.} + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\begin{figure}[htbp] + \centering + \includegraphics[width=0.85\textwidth]{chart_sector_volume} + \caption{Story volume by creative sector across the \emph{Dream Machine} corpus (29 editions, October 2025 -- May 2026).} + \label{fig:sector-volume} +\end{figure} + +\begin{figure}[htbp] + \centering + \includegraphics[width=0.85\textwidth]{chart_domain_distribution} + \caption{Most-cited source domains by article count.} + \label{fig:domain-distribution} +\end{figure} + +\begin{figure}[htbp] + \centering + \includegraphics[width=0.85\textwidth]{chart_citations_per_chapter} + \caption{Footnoted citations per chapter, reflecting research density across the manuscript.} + \label{fig:citations-per-chapter} +\end{figure} + +\begin{figure}[htbp] + \centering + \includegraphics[width=0.85\textwidth]{chart_tool_categories} + \caption{AI creative tools by category, from the Chapter~16 inventory.} + \label{fig:tool-categories} +\end{figure} + +\section*{A1. Corpus shape} + +\begin{itemize} + \item \textbf{Total fetched and parsed articles}: 1,388. + \item \textbf{Total captured words across the corpus}: \textasciitilde1,099,216 (\textasciitilde6,945,361 characters of post-extraction text). + \item \textbf{Source span}: 29 editions of \emph{Dream Machine | Creative AI}, published between 6 October 2025 and 14 May 2026 (the quantitative tables in \S{}A1--A6 below cover this analytic window; \textbf{Issue 30}, dated 21 May 2026, is documented in \S{}A7 as a post-cut supplemental, and is incorporated narratively into the May-2026 closing material across the body chapters). + \item \textbf{Average articles per newsletter edition} (in this corpus): \textasciitilde48. + \item \textbf{Capture rate} against the full curated URL set: \textbf{91.4\%} (1,438 of 1,574 URLs returned readable content; the remainder hit bot-detection, 404s, or live-page connection issues). +\end{itemize} + +\section*{A2. Most-cited domains} + +Where did six months of curated coverage actually come from? The top 30 domains, by article count: + +\begin{longtable}{rlr} +\caption{Most-cited domains by article count}\label{tab:domains}\\ +\toprule +\textbf{Rank} & \textbf{Domain} & \textbf{Articles} \\ +\midrule +\endfirsthead +\multicolumn{3}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Rank} & \textbf{Domain} & \textbf{Articles} \\ +\midrule +\endhead +\bottomrule +\endfoot +1 & \texttt{x.com} & 82 \\ +2 & \texttt{github.com} & 75 \\ +3 & \texttt{youtube.com} & 74 \\ +4 & \texttt{musically.com} & 57 \\ +5 & \texttt{theguardian.com} & 38 \\ +6 & \texttt{variety.com} & 38 \\ +7 & \texttt{hollywoodreporter.com} & 34 \\ +8 & \texttt{open.spotify.com} & 25 \\ +9 & \texttt{huggingface.co} & 24 \\ +10 & \texttt{musictech.com} & 22 \\ +11 & \texttt{forbes.com} & 21 \\ +12 & \texttt{gamesindustry.biz} & 20 \\ +13 & \texttt{bbc.co.uk} & 18 \\ +14 & \texttt{deadline.com} & 18 \\ +15 & \texttt{techcrunch.com} & 17 \\ +16 & \texttt{pcgamer.com} & 17 \\ +17 & \texttt{musicradar.com} & 17 \\ +18 & \texttt{blog.google} & 15 \\ +19 & \texttt{futurism.com} & 15 \\ +20 & \texttt{completemusicupdate.com} & 15 \\ +21 & \texttt{videogameschronicle.com} & 14 \\ +22 & \texttt{businessinsider.com} & 13 \\ +23 & \texttt{theverge.com} & 12 \\ +24 & \texttt{musicbusinessworldwide.com} & 12 \\ +25 & \texttt{cnet.com} & 11 \\ +26 & \texttt{gamesbeat.com} & 11 \\ +27 & \texttt{adweek.com} & 10 \\ +28 & \texttt{digiday.com} & 10 \\ +29 & \texttt{pocketgamer.biz} & 10 \\ +30 & \texttt{blog.comfy.org} & 9 \\ +\end{longtable} + +\textbf{Reading note.} Trade press (\emph{Hollywood Reporter}, \emph{Variety}, \emph{Deadline}, \emph{Music Business Worldwide}) and tech press (\emph{Verge}, \emph{Wired}, \emph{TechCrunch}) dominate. The platform-company blogs (OpenAI, Adobe, DeepMind, Stability) and policy bodies (UK Gov, Reuters Institute, Imperva, Cloudflare) sit underneath. The geographic concentration is North American and British, which reflects both the newsletter author's vantage point and a real imbalance in where creative-AI coverage is concentrated. + +\section*{A3. Story volume by sector, month by month} + +How the conversation moves through the six months -- count of corpus articles touching each sector, by publication month of the newsletter issue that cited them: + +\begin{longtable}{lrrrrrrr r} +\caption{Story volume by sector}\label{tab:sector-volume}\\ +\toprule +\textbf{Month} & \textbf{Film \& TV} & \textbf{Games} & \textbf{Music} & \textbf{Adv/Mkt} & \textbf{News} & \textbf{Policy/Law} & \textbf{Tools/Models} & \textbf{Total} \\ +\midrule +\endfirsthead +\multicolumn{9}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Month} & \textbf{Film \& TV} & \textbf{Games} & \textbf{Music} & \textbf{Adv/Mkt} & \textbf{News} & \textbf{Policy/Law} & \textbf{Tools/Models} & \textbf{Total} \\ +\midrule +\endhead +\bottomrule +\endfoot +2025-10 & 136 & 111 & 155 & 104 & 25 & 102 & 184 & 817 \\ +2025-11 & 112 & 89 & 120 & 97 & 14 & 93 & 150 & 675 \\ +2025-12 & 73 & 58 & 78 & 57 & 9 & 43 & 98 & 416 \\ +2026-01 & 89 & 69 & 96 & 70 & 13 & 56 & 120 & 513 \\ +2026-02 & 77 & 72 & 94 & 61 & 7 & 63 & 109 & 483 \\ +2026-03 & 81 & 49 & 81 & 55 & 12 & 47 & 106 & 431 \\ +2026-04 & 100 & 84 & 110 & 69 & 11 & 64 & 138 & 576 \\ +2026-05 & 74 & 60 & 89 & 53 & 14 & 57 & 113 & 460 \\ +\end{longtable} + +\textbf{Total story tags across the period:} 4,371. (Articles can fall into more than one sector -- many do, which is itself part of the story: the boundaries between film, games, music, advertising and tooling have been meaningfully porous through the AI era.) + +\section*{A4. The voices: public-figure mention frequency} + +Public figures appearing in three or more corpus articles, ranked by article count. This is \emph{not} a sentiment ranking -- only a measure of how often someone surfaces in the AI conversation: + +\begin{longtable}{rlr} +\caption{Public-figure mention frequency}\label{tab:figures}\\ +\toprule +\textbf{Rank} & \textbf{Name} & \textbf{Articles} \\ +\midrule +\endfirsthead +\multicolumn{3}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Rank} & \textbf{Name} & \textbf{Articles} \\ +\midrule +\endhead +\bottomrule +\endfoot + 1 & Sam Altman & 32 \\ + 2 & Tilly Norwood & 30 \\ + 3 & Xania Monet & 18 \\ + 4 & Taylor Swift & 18 \\ + 5 & RZA & 17 \\ + 6 & Steven Soderbergh & 17 \\ + 7 & James Cameron & 16 \\ + 8 & Paul McCartney & 12 \\ + 9 & Mark Zuckerberg & 12 \\ +10 & Eline Van der Velden & 12 \\ +11 & Madonna & 12 \\ +12 & MrBeast & 12 \\ +13 & Tim Sweeney & 9 \\ +14 & Christopher Nolan & 9 \\ +15 & Emily Blunt & 8 \\ +16 & Breaking Rust & 8 \\ +17 & Mikey Shulman & 7 \\ +18 & Matthew McConaughey & 7 \\ +19 & Steven Spielberg & 7 \\ +20 & Robert Kyncl & 6 \\ +21 & Guillermo del Toro & 6 \\ +22 & Will Smith & 6 \\ +23 & Lucian Grainge & 5 \\ +24 & Sienna Rose & 5 \\ +25 & Natasha Lyonne & 5 \\ +26 & Fei-Fei Li & 4 \\ +27 & George Clooney & 4 \\ +28 & Demis Hassabis & 4 \\ +29 & Ron Howard & 4 \\ +30 & Ted Sarandos & 4 \\ +31 & Adam Mosseri & 3 \\ +32 & Imogen Heap & 3 \\ +33 & Dave Stewart & 3 \\ +34 & Chris Pratt & 3 \\ +35 & Joost van Dreunen & 3 \\ +36 & Brian Grazer & 3 \\ +\end{longtable} + +\textbf{Reading note.} James Cameron, Guillermo del Toro and Leonardo DiCaprio are the three voices most-cited in opposition to generative AI in performance. Tilly Norwood and Xania Monet are the two most-cited synthetic entities in the corpus. \emph{Both lists matter equally to the story this book is telling.} + +\section*{A5. The tool wave} + +Cumulative count of distinct AI tools, models and platforms entering the corpus, by month of first mention: + +\begin{longtable}{lrr} +\caption{AI tool first-mention cadence}\label{tab:tools-cadence}\\ +\toprule +\textbf{Month} & \textbf{New tools first mentioned} & \textbf{Cumulative} \\ +\midrule +\endfirsthead +\multicolumn{3}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Month} & \textbf{New tools first mentioned} & \textbf{Cumulative} \\ +\midrule +\endhead +\bottomrule +\endfoot +2025-10 & 38 & 38 \\ +2025-11 & 6 & 44 \\ +2025-12 & 3 & 47 \\ +2026-01 & 5 & 52 \\ +2026-02 & 2 & 54 \\ +2026-03 & 4 & 58 \\ +2026-04 & 0 & 58 \\ +2026-05 & 2 & 60 \\ +\end{longtable} + +\textbf{Reading note.} The tool cadence ran at roughly \textbf{7.5 new platforms or major-version releases per month} across the period. This is roughly four times the pace of any other software-tool category I have personally tracked over a comparable window. The implication is that any working creative making technology bets in this period was, by definition, working with incomplete information -- the relevant toolchain had not stabilised long enough for any single bet to settle. + +Most-mentioned tools and platforms (top 30, by article count): + +\begin{longtable}{rlr} +\caption{Most-mentioned AI tools and platforms}\label{tab:tools-top30}\\ +\toprule +\textbf{Rank} & \textbf{Tool} & \textbf{Articles} \\ +\midrule +\endfirsthead +\multicolumn{3}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Rank} & \textbf{Tool} & \textbf{Articles} \\ +\midrule +\endhead +\bottomrule +\endfoot + 1 & Udio & 587 \\ + 2 & Wan & 539 \\ + 3 & ChatGPT & 136 \\ + 4 & Gemini & 98 \\ + 5 & Anthropic & 84 \\ + 6 & Suno & 76 \\ + 7 & Sora & 69 \\ + 8 & ElevenLabs & 49 \\ + 9 & Premiere & 48 \\ +10 & Veo & 46 \\ +11 & ComfyUI & 45 \\ +12 & Sora 2 & 37 \\ +13 & Claude Code & 36 \\ +14 & Flux & 36 \\ +15 & Veo 3 & 30 \\ +16 & Runway & 30 \\ +17 & Kling & 30 \\ +18 & Nano Banana & 29 \\ +19 & Seedance & 26 \\ +20 & Tencent & 24 \\ +21 & Genie & 24 \\ +22 & Firefly & 21 \\ +23 & Photoshop & 21 \\ +24 & Hunyuan & 18 \\ +25 & Veo 3.1 & 17 \\ +26 & Luma & 13 \\ +27 & Marble & 10 \\ +28 & Rodin & 10 \\ +29 & LTX-2 & 9 \\ +30 & Higgsfield & 7 \\ +\end{longtable} + +\section*{A6. The vocabulary shift} + +Recurring key phrases by month -- articles containing each phrase: + +\begin{longtable}{lrrrrrrrr r} +\caption{Key phrase frequency by month}\label{tab:vocab}\\ +\toprule +\textbf{Phrase} & \textbf{Oct} & \textbf{Nov} & \textbf{Dec} & \textbf{Jan} & \textbf{Feb} & \textbf{Mar} & \textbf{Apr} & \textbf{May} & \textbf{Total} \\ +\midrule +\endfirsthead +\multicolumn{10}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Phrase} & \textbf{Oct} & \textbf{Nov} & \textbf{Dec} & \textbf{Jan} & \textbf{Feb} & \textbf{Mar} & \textbf{Apr} & \textbf{May} & \textbf{Total} \\ +\midrule +\endhead +\bottomrule +\endfoot +ai slop & 8 & 8 & 6 & 15 & 5 & 7 & 7 & 6 & 62 \\ +ai actor & 4 & 5 & 3 & 2 & 2 & 2 & 1 & 1 & 20 \\ +synthetic performer & 0 & 0 & 2 & 1 & 0 & 0 & 0 & 1 & 4 \\ +world model & 8 & 3 & 3 & 1 & 9 & 6 & 8 & 2 & 40 \\ +agentic ai & 12 & 6 & 2 & 7 & 6 & 5 & 8 & 3 & 49 \\ +ai agent & 20 & 18 & 4 & 11 & 12 & 9 & 16 & 10 & 100 \\ +deepfake & 9 & 6 & 3 & 10 & 6 & 8 & 4 & 3 & 49 \\ +human authorship & 1 & 3 & 1 & 0 & 1 & 0 & 1 & 1 & 8 \\ +training data & 9 & 10 & 11 & 6 & 8 & 12 & 5 & 10 & 71 \\ +consent & 16 & 11 & 11 & 11 & 9 & 6 & 10 & 11 & 85 \\ +license & 26 & 30 & 18 & 21 & 35 & 25 & 29 & 16 & 200 \\ +copyright & 50 & 53 & 27 & 24 & 33 & 26 & 25 & 24 & 262 \\ +ai-generated & 65 & 58 & 26 & 46 & 30 & 29 & 41 & 28 & 323 \\ +ai actress & 3 & 2 & 0 & 0 & 1 & 0 & 1 & 0 & 7 \\ +watermark & 5 & 2 & 0 & 4 & 3 & 2 & 1 & 3 & 20 \\ +synthid & 1 & 0 & 0 & 2 & 2 & 1 & 1 & 0 & 7 \\ +c2pa & 0 & 1 & 0 & 2 & 1 & 2 & 0 & 0 & 6 \\ +provenance & 5 & 2 & 1 & 3 & 1 & 1 & 1 & 5 & 19 \\ +disclosure & 6 & 12 & 7 & 9 & 4 & 3 & 7 & 6 & 54 \\ +fingerprint & 0 & 2 & 0 & 3 & 2 & 0 & 0 & 1 & 8 \\ +creative ai & 8 & 5 & 0 & 1 & 0 & 1 & 3 & 1 & 19 \\ +generative ai & 85 & 59 & 35 & 43 & 32 & 32 & 40 & 32 & 358 \\ +creator economy & 4 & 10 & 0 & 3 & 3 & 0 & 2 & 1 & 23 \\ +tilly norwood & 10 & 7 & 3 & 3 & 1 & 2 & 2 & 2 & 30 \\ +xania monet & 3 & 7 & 2 & 3 & 0 & 2 & 1 & 0 & 18 \\ +breaking rust & 0 & 3 & 1 & 1 & 0 & 1 & 1 & 1 & 8 \\ +slop ceiling & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ +model collapse & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ +\end{longtable} + +\textbf{Reading note.} Watch \emph{AI slop} -- it goes from a fringe term in October 2025 to a Merriam-Webster word of the year by December and a policy framing by the spring. Watch \emph{agentic AI} -- it lifts after the October DevDay and never falls back. Watch \emph{world model} -- barely present in October 2025, ubiquitous by April 2026. Watch \emph{consent / license / copyright} -- climbing all the way through, with a sharp December spike around the UK consultation closure. + +\section*{A7. May 2026 supplemental: the Issue-30 datapoints} + +The corpus closes at \emph{Dream Machine} Issue 29. \textbf{Issue 30}, dated 21 May 2026, post-dates the analytic cut and is not represented in the article-frequency tables above; it is the issue that catches the \textbf{Google I/O 2026} announcement wave, and is the source for the manuscript's closing-week additions. The numerical datapoints from Issue 30 worth recording here in standalone form: + +\begin{longtable}{lrl} +\caption{Issue-30 supplemental datapoints}\label{tab:issue30}\\ +\toprule +\textbf{Datapoint} & \textbf{Value} & \textbf{Source} \\ +\midrule +\endfirsthead +\multicolumn{3}{c}{\tablename\ \thetable\ -- continued}\\ +\toprule +\textbf{Datapoint} & \textbf{Value} & \textbf{Source} \\ +\midrule +\endhead +\bottomrule +\endfoot +SynthID watermarked items, cumulative & 100B+ & Google DeepMind, May 2026 \\ +Wonder Studios total funding & \$50M & \emph{Forbes}, May 2026 \\ +Runway Japan investment (Tokyo office) & \$40M & Runway, May 2026 \\ +Viktor (virtual AI coworker) Series funding & \$75M & \emph{Fortune}, May 2026 \\ +Sondo AI claimed global users & 10M & \emph{Musically}, May 2026 \\ +13--15 year-olds using AI to ``be creative'' (Snapchat survey) & 31\% & Snap Newsroom, May 2026 \\ +Australians who say AI-generated ads make them trust a brand less (YouGov) & 45\% & YouGov AU, May 2026 \\ +NVIDIA SANA-WM model size & 2.6B & NVIDIA, May 2026 \\ +SANA-WM native video-generation length & 60 sec & NVIDIA, May 2026 \\ +\end{longtable} + +\textbf{Reading note.} Issue 30's headline tool releases (Gemini Omni, Beeple Canvas, Sony Woosh, Mirelo SFX 1.6, Tencent Ardot, Odyssey Starchild-1 / Agora-1, NVIDIA SANA-WM, Apple Headsup, Stable Audio 3.0, PhotoGIMP, Tamber, ECABridge, Claude/ComfyUI) lift the cumulative tool count in \S{}A5 by roughly \textbf{a dozen entries in a single week}. The May-2026 cadence is the highest single-week tool-release count in the period the book covers, and reads -- in the context of the \S{}A5 average of 7.5 new platforms per \emph{month} -- as a Google-I/O-week saturation point that I would expect to settle back into the prior cadence by July. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{What this appendix is for} + +Every chapter of this book is a \emph{reading} of the corpus described above. It will be useful in 2030 and beyond to be able to see the underlying shape of the corpus, separate from the argument the book builds on top of it. + +If you want to test the argument against your own reading of the same evidence: every URL in the corpus is enumerated in the citation index, every scraped article is preserved in JSON form in the \texttt{Research/scraped/} directory of the source repository, and every analysis in this appendix is reproducible by running \texttt{Research/quant.py}. + +If you want to extend it: the scraper is in \texttt{Research/scrape.py}, the analyser is in \texttt{Research/analyze.py}, the per-chapter dossiers are in \texttt{Research/dossier/}. Fork it, change it, run it on the next six months. I'd be glad to see what you find. diff --git a/latex/appendices/a2_glossary.tex b/latex/appendices/a2_glossary.tex new file mode 100644 index 0000000..dd11aa4 --- /dev/null +++ b/latex/appendices/a2_glossary.tex @@ -0,0 +1,105 @@ +\chapter{Glossary}\label{app:a2} + +\emph{The terms in this glossary are the working vocabulary of the book. Some are coinages, some are borrowed from elsewhere and reframed; all are used with precise, deliberately narrow meanings in the chapters above.} + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\begin{description}[style=nextline,leftmargin=2em] + +\item[\textbf{Agency line} (or Continuum line).] +A single axis representing the share of decision-making in a creative function performed by a human versus a machine system. See \textbf{Human--AI Agency Continuum}. + +\item[\textbf{Agentic AI.}] +A class of AI system that, given a goal, can plan, decide and execute a sequence of multi-step actions without further human input between steps. Distinct from a \emph{generator}, which produces an output in response to a single prompt. See Chapter~3. + +\item[\textbf{AI literacy.}] +The cluster of skills required to deploy AI tools effectively in creative work -- including briefing, taste, judgement, prompt practice, output evaluation and tool-stack fluency. The term moved from optional to baseline competency through 2025--26, formalised by initiatives such as the Sundance Institute's AI Literacy Initiative launched in January 2026. + +\item[\textbf{AI slop.}] +Low-quality, mass-produced AI-generated content that is recognisable to audiences as such -- usually because it is made without human creative intent. \emph{Merriam-Webster}'s word of the year for 2025. See \textbf{Slop Ceiling}. + +\item[\textbf{Attribution.}] +The principle that when AI systems produce derivative outputs based on training data, the human authors whose work shaped those outputs should be identified and -- where appropriate -- compensated. One of the four principles of the generative creative economy (Chapter~15). Technical infrastructure includes C2PA, SynthID, and creative-weight-attribution systems. + +\item[\textbf{Audience contract.}] +The implicit agreement between makers and audiences about what creative work is, what conditions of making it carries, and what relationship the audience can expect with its makers. The shift from implicit to explicit audience contracts is one of the central structural changes the book describes. See Chapter~12. + +\item[\textbf{Augmented intelligence.}] +Reframing of ``AI'' used by some industry voices to emphasise human-in-the-loop deployment over autonomy. Compare with \textbf{Generative AI}, \textbf{Agentic AI}. + +\item[\textbf{C2PA.}] +\emph{Coalition for Content Provenance and Authenticity} -- a technical standard for embedding cryptographic provenance metadata in media files, supported by camera manufacturers, editing software and a growing number of platforms. The principal ``fingerprint real media'' infrastructure underlying the authenticity argument in Chapter~12. + +\item[\textbf{Coordination collapse.}] +The structural change that occurs when the labour-coordination architecture of a creative organisation -- built around the bandwidth constraints of human-only teams -- is overtaken by AI-assisted workflows that no longer require those constraints. The subject of Chapter~13. Manifests as \emph{shadow AI} below management sight and as compressed middle layers in the workforce above. + +\item[\textbf{Dead Internet Theory.}] +The notion that most of the public web is now bot-generated and bot-read, with humans increasingly a minority of traffic. Once a conspiracy framing; by 2025 a measurable phenomenon -- bots accounted for 51\% of web traffic in the Imperva 2025 Bad Bot Report, of which \textasciitilde80\% of bot traffic was AI training crawlers. See Chapter~4. + +\item[\textbf{Disclosure.}] +The practice of declaring the use of AI in the production of a piece of creative work -- in credits, contracts, metadata, watermarks, or platform-facing labels. By spring 2026, disclosure had emerged as the dominant industry response to the audience-authenticity question, anchored by standards including the \textbf{Cannes AI Disclosure Standard} (May 2026) and the \textbf{Academy of Motion Picture Arts and Sciences} rule requiring human authorship for awards eligibility. + +\item[\textbf{Extractive economy.}] +A creative economy in which AI systems are trained on unpaid human work, the platform companies that build the models capture most of the resulting economic value, and the diffuse pool of working creatives is steadily decapitalised. One of two possible end-states the book identifies. See Chapter~15. + +\item[\textbf{Fingerprint real media.}] +Adam Mosseri's (Instagram) framing of the verification problem: amplify provably-human content rather than chase synthetic content for labelling. Used in the book as shorthand for \emph{provenance-first} approaches to content moderation. See Chapter~4. + +\item[\textbf{Generative economy.}] +A creative economy in which AI tools are treated as new craft infrastructure, training data is consented and compensated, platforms compete on tool quality and integrity, and the productivity gains are broadly distributed rather than concentrated. The opposite of the \textbf{extractive economy}. The four principles (\emph{Agency, Attribution, Access, Audience}) are the operational test. See Chapter~15. + +\item[\textbf{Human--AI Agency Continuum.}] +A frame, introduced in \emph{Dream Machine} Issue~2 (October 2025) and extended in Chapter~3, in which any given creative function is mapped on a horizontal line from full human agency (left) to full machine agency (right). The frame's key claim is that \emph{each creative function moves at its own speed} -- you can sit at the extreme left on performance while being at the right edge on plate generation. + +\item[\textbf{Living Web.}] +The deliberately-built portion of the public web in which authorship is provable, attribution is durable, attention is allocated on non-viral signals, and the architecture supports rather than undermines human creative work. The aspirational opposite of the \textbf{Dead Internet}. Has to be built, not assumed. See Chapter~4. + +\item[\textbf{Mid-career squeeze.}] +The structural pressure on workers in the middle of creative-industry careers -- neither at the junior entry level (replaced by agents) nor at the senior decision-making level (still required) -- as AI absorbs the intermediate production roles that those mid-career workers historically held. See Chapter~13. + +\item[\textbf{Model collapse.}] +The technical risk that AI systems trained predominantly on synthetic data -- including data produced by earlier generations of AI systems -- progressively lose touch with real-world signal and produce increasingly homogenised, hallucination-prone outputs. The risk that \emph{Dead Internet, Living Web} warns has moved from theoretical to measurable. + +\item[\textbf{Orchestrator.}] +The role that emerges when an individual working creative -- or a small team -- directs a large pool of AI-agent capacity. Defined operationally by five activities: defining the brief, allocating work, briefing the agents, judging outputs, and integrating the result. Predicted in \emph{Dream Machine} Issue~13 (January 2026) as the dominant role of 2026; documented across the chapters above. See Chapter~11. + +\item[\textbf{Pipeline of authorship.}] +The full chain from creative intent to delivered work, broken down into discrete functions (writing, direction, performance, image-making, sound, edit, distribution, marketing). The point of the \textbf{Human--AI Agency Continuum} is that each link in this chain has its own agency line. + +\item[\textbf{Position One} (All-in).] +The strategic posture of legacy studios that have decided to integrate AI aggressively across all production functions, betting that early-adopter advantage will compound. Netflix's ``all in'' framing, October 2025. See Chapter~7. + +\item[\textbf{Position Two} (AI-native).] +The strategic posture of new entrants that build their production pipelines AI-first from inception -- Imaginae Studios, Wonder Studios, Obsidian Studio, Asteria, Wonder, Chapter41, Kartel. The category exploded in scale through autumn 2025 and winter 2026. See Chapter~7. + +\item[\textbf{Position Three} (Refusal).] +The strategic posture of creative organisations that have explicitly excluded generative AI from their work. Jagex, Larian, Games Workshop, Hooded Horse, Aardman (qualified), Pocketpair. Cultural authority is preserved as the principal asset. See Chapter~7. + +\item[\textbf{Position Four} (Middle).] +\emph{AI in the workflow, not in the work.} The strategic posture -- taken by Sony, Bethesda, Amazon (in \emph{House of David}), Aardman (in qualified form), and an increasing number of major studios -- that uses AI to augment production pipelines while preserving human creative intent in the moments the audience sees. The book's prediction for where most surviving major studios land by 2030. See Chapter~7. + +\item[\textbf{Provenance.}] +The chain of custody of a creative work from its origin (capture, performance, writing, sketching) to its delivered form. Technical standards (C2PA, SynthID) and policy frameworks (Cannes Disclosure Standard, SAG-AFTRA AI protections) collectively constitute the \emph{provenance infrastructure} the book argues is critical for the next decade. See Chapter~12. + +\item[\textbf{Shadow AI.}] +The use of AI tools by employees outside their employer's official tooling, processes and accounting. Documented in 2025 workplace research as encompassing approximately half of the U.S. workforce. The principal symptom of \textbf{Coordination Collapse}. See Chapter~13. + +\item[\textbf{Slop Ceiling.}] +The empirical pattern, established across multiple sectors by spring 2026, in which AI-generated creative content can be produced in massive volume but consistently fails to capture audience attention proportionate to that volume. Anchored in the \textbf{44\%/3\%} ratio Deezer published in April 2026 (44\% of daily uploads AI; under 3\% of streams). One of the central claims of the book. See Chapter~5. + +\item[\textbf{Synthetic sincerity.}] +The category of creative work that is openly synthetic but made with serious creative intent and is not pretending to be something else. Named after Marc Isaacs' 2025 IDFA documentary. Audiences distinguish \emph{synthetic sincerity} from \emph{synthetic cynicism} at the speed of a swipe. See Chapter~4. + +\item[\textbf{Tilly Tax} (informal).] +The collection of contract provisions in SAG-AFTRA's spring 2026 agreement requiring compensation, consent and residuals when AI replicas of human performers are used. Named after the Tilly Norwood controversy of September 2025 that catalysed the broader negotiation. See Chapters~5, 10. + +\item[\textbf{Watermark.}] +A persistent identifier embedded in AI-generated outputs by the producing system, intended to allow downstream detection that content is synthetic. SynthID (Google) and similar systems became standard across major platform tools through 2025--26. + +\item[\textbf{World model.}] +A class of generative AI system that produces navigable three-dimensional environments rather than flat output. Marble (World Labs, public release November 2025) was the first commercial product in the category; Google DeepMind's Genie~3, Meta's WorldGen, Luma's UNI-1, Tencent's Hunyuan World, SpAItial's ECHO and others followed within months. See Chapter~8. + +\end{description} + +\bigskip +\emph{If a term in the book did substantial work but does not appear in this glossary, please tell us so we can improve it in the next edition.} diff --git a/latex/appendices/a3_bibliography_by_topic.tex b/latex/appendices/a3_bibliography_by_topic.tex new file mode 100644 index 0000000..a14e236 --- /dev/null +++ b/latex/appendices/a3_bibliography_by_topic.tex @@ -0,0 +1,246 @@ +\chapter{Bibliography by Topic}\label{app:a3} + +\emph{The book's footnotes are sequential per chapter; this appendix organises the same sources thematically, so a reader pursuing a specific question across the period covered by the book can find every source it touches in one place.} + +The full corpus -- 1,438 successfully fetched and archived articles -- is preserved in JSON form in \texttt{Research/scraped/} of the source repository; the manifest enumerating every URL and its capture status lives at \texttt{Research/manifest.json}. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{I\@. The watershed week, September--October 2025} + +\emph{Sora~2 launches. Tilly Norwood is announced. The union response sets the contract reference point for the next year.} + +\begin{itemize} + \item OpenAI, \emph{``Sora~2 is here,''} 30~September~2025. \href{https://openai.com/index/sora-2/}{openai.com/index/sora-2/} + \item Variety, \emph{``SAG-AFTRA Condemns Tilly Norwood: AI Actress Is Not an Actor.''} \href{https://variety.com/2025/film/news/sag-aftra-tilly-norwood-ai-actress-1236534779/}{variety.com} + \item \emph{The Hollywood Reporter}, \emph{``U.K. Union Equity Condemns Tilly Norwood: `AI Tool, Not a Performer'.''} \href{https://www.hollywoodreporter.com/movies/movie-news/tilly-norwood-ai-actress-uk-union-equity-sag-aftra-debate-1236391739/}{hollywoodreporter.com} + \item Variety, \emph{``Tilly Norwood Slammed by Equity as AI Tool, Concerned About Origin.''} \href{https://variety.com/2025/film/global/tilly-norwood-slammed-equity-ai-tool-concerned-origin-1236537042/}{variety.com} + \item CNN, \emph{``Tilly Norwood: Hollywood is fuming over a new `AI actress'.''} \href{https://www.cnn.com/2025/09/30/tech/hollywood-ai-actor-backlash}{cnn.com} + \item NBC News, \emph{``Tilly Norwood, fully AI `actor,' blasted by actors union SAG-AFTRA.''} \href{https://www.nbcnews.com/pop-culture/pop-culture-news/tilly-norwood-fully-ai-actor-blasted-actors-union-sag-aftra-devaluing-rcna234685}{nbcnews.com} + \item \emph{The Guardian}, \emph{``OpenAI launch of video app Sora plagued by violent and racist images.''} \href{https://www.theguardian.com/us-news/2025/oct/04/openai-sora-violence-racism}{theguardian.com} + \item WUFT (Florida), \emph{``Kiss reality goodbye: AI-generated social media has arrived.''} \href{https://www.wuft.org/2025-10-03/kiss-reality-goodbye-ai-generated-social-media-has-arrived}{wuft.org} + \item \emph{Deadline}, \emph{``Tilly Norwood Creator on Backlash, Says More AI Actors Coming.''} \href{https://deadline.com/2025/11/tilly-norwood-creator-interview-backlash-more-ai-actors-coming-1236601334/}{deadline.com} + \item \emph{No Film School}, \emph{``James Cameron Says AI Is `Never Going to Take the Place' of Humans.''} \href{https://nofilmschool.com/james-cameron-ai}{nofilmschool.com} + \item \emph{The Guardian}, \emph{``James Cameron says AI actors are `horrifying to me'.''} \href{https://www.theguardian.com/film/2025/dec/01/james-cameron-says-ai-actors-are-horrifying-to-me}{theguardian.com} +\end{itemize} + +\section*{II\@. Agentic AI and the orchestrator economy} + +\begin{itemize} + \item OpenAI, \emph{``Introducing AgentKit.''} \href{https://openai.com/index/introducing-agentkit/}{openai.com} + \item TechCrunch, \emph{``OpenAI launches AgentKit to help developers build and ship AI agents.''} \href{https://techcrunch.com/2025/10/06/openai-launches-agentkit-to-help-developers-build-and-ship-ai-agents/}{techcrunch.com} + \item TechCrunch, \emph{``Anthropic launches interactive Claude apps, including Slack and other workplace tools.''} \href{https://techcrunch.com/2026/01/26/anthropic-launches-interactive-claude-apps-including-slack-and-other-workplace-tools/}{techcrunch.com} + \item \emph{GamesRadar}, \emph{``EA reportedly pushes 15,000 employees to use AI as a `thought partner'.''} \href{https://www.gamesradar.com/games/even-under-usd20-million-in-debt-ea-reportedly-pushes-15-000-employees-to-use-ai-as-a-thought-partner-for-everything-from-character-art-to-playtesting/}{gamesradar.com} + \item \emph{Digiday}, \emph{``AI agent developers have become adland's in-demand role.''} \href{https://digiday.com/marketing/ai-agent-developers-have-become-adlands-in-demand-role/}{digiday.com} + \item \emph{Eurogamer}, \emph{``Falcom: `Tasks that previously took 2--3 hours can now be completed in 10 minutes'.''} \href{https://www.eurogamer.net/falcom-is-the-latest-developer-to-buy-into-the-ai-hype-machine}{eurogamer.net} + \item \emph{Forbes}, \emph{``AI Is Changing How Creators Work And Earn.''} \href{https://www.forbes.com/sites/kolawolesamueladebayo/2025/12/22/how-ai-is-changing-how-creators-work-and-earn/}{forbes.com} + \item Google DeepMind, \emph{``Introducing Gemini Omni -- unified multimodal model.''} \href{https://blog.google/technology/google-deepmind/gemini-omni/}{blog.google} + \item Google, \emph{``Gemini Spark -- developer toolkit for autonomous agents.''} \href{https://blog.google/technology/developers/gemini-spark/}{blog.google} + \item Google, \emph{``Antigravity -- agentic coding environment.''} \href{https://antigravity.google/}{antigravity.google} + \item Google, \emph{``Google Flow -- agent-based creative workflows.''} \href{https://flow.google/}{flow.google} + \item Google, \emph{``Official skills for AI agents.''} \href{https://github.com/google/agent-skills}{github.com/google} + \item \emph{Adweek}, \emph{``Netflix ad tools could see `agentic AIs talking to each other'.''} \href{https://www.adweek.com/media/netflix-ad-tools-agentic-ais-talking-to-each-other/}{adweek.com} + \item \emph{Fortune}, \emph{``AI startup Viktor raises \$75 million to put a virtual `coworker' in Slack and Teams.''} \href{https://fortune.com/2026/05/19/ai-startup-viktor-75-million-virtual-coworker-slack-teams/}{fortune.com} + \item Tencent, \emph{``Ardot -- AI-native design agent platform.''} \href{https://ardot.tencent.com/}{ardot.tencent.com} + \item Anthropic, \emph{``Claude available as a partner node in ComfyUI.''} \href{https://www.anthropic.com/news/claude-comfyui-partner-node}{anthropic.com} +\end{itemize} + +\section*{III\@. Bot economy, model collapse, and the Dead Internet} + +\begin{itemize} + \item Imperva, \emph{``2025 Bad Bot Report.''} \href{https://www.imperva.com/blog/2025-imperva-bad-bot-report-how-ai-is-supercharging-the-bot-threat/}{imperva.com} + \item Cloudflare, \emph{``The crawl-to-click gap: Cloudflare data on AI bots.''} \href{https://blog.cloudflare.com/crawlers-click-ai-bots-training/}{blog.cloudflare.com} + \item Cloudflare, \emph{``A deeper look at AI crawlers.''} \href{https://blog.cloudflare.com/ai-crawler-traffic-by-purpose-and-industry/}{blog.cloudflare.com} + \item Grand View Research, \emph{``Generative AI in Content Creation Market Size Report, 2030.''} \href{https://www.grandviewresearch.com/industry-analysis/generative-ai-content-creation-market-report}{grandviewresearch.com} + \item Wikipedia, \emph{``Dead Internet Theory.''} \href{https://en.wikipedia.org/wiki/Dead_Internet_theory}{en.wikipedia.org} + \item \emph{Futurism}, \emph{``Scientists Created an Entire Social Network Where Every User Is a Bot.''} \href{https://futurism.com/social-network-ai-intervention-echo-chamber}{futurism.com} + \item \emph{AI News}, \emph{``AI causes reduction in users' brain activity, MIT.''} \href{https://www.artificialintelligence-news.com/news/ai-causes-reduction-in-users-brain-activity-mit/}{artificialintelligence-news.com} +\end{itemize} + +\section*{IV\@. The slop ceiling -- music} + +\begin{itemize} + \item Deezer, \emph{``AI-generated tracks now represent 44\% of all new uploaded music.''} \href{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}{newsroom-deezer.com} + \item \emph{Music Business Worldwide}, \emph{``75,000 AI-generated tracks now flood Deezer daily.''} \href{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}{musicbusinessworldwide.com} + \item Deezer/Ipsos, \emph{``AI fools 97\% of listeners.''} \href{https://newsroom-deezer.com/2025/11/deezer-ipsos-survey-ai-music/}{newsroom-deezer.com} + \item \emph{Musically}, \emph{``50,000 AI-music tracks are now uploaded to Deezer every day.''} \href{https://musically.com/2025/11/12/50000-ai-music-tracks-are-now-uploaded-to-deezer-every-day/}{musically.com} + \item \emph{Musically}, \emph{``UMG boss slams `exponential growth of AI slop' on streaming services.''} \href{https://musically.com/2026/01/09/umg-boss-slams-exponential-growth-of-ai-slop-on-streaming-services/}{musically.com} + \item \emph{Billboard}, \emph{``AI Artist Xania Monet Climbs the Charts -- And Signs a Multimillion-Dollar Record Deal.''} \href{https://www.billboard.com/pro/ai-music-artist-xania-monet-multimillion-dollar-record-deal/}{billboard.com} + \item NPR, \emph{``Breaking Rust is a hot new country act on the Billboard charts. It's powered by AI.''} \href{https://www.npr.org/2025/11/10/nx-s1-5604320/breaking-rust-is-a-hot-new-country-act-on-the-billboard-charts-its-powered-by-ai}{npr.org} + \item BBC News, \emph{``Sienna Rose: AI suspicions surround mysterious singer.''} \href{https://www.bbc.co.uk/news/articles/cq6v83gq66eo}{bbc.co.uk} + \item \emph{Bain \& Company}, \emph{``In an AI Age, People Still Want the Radio Star.''} \href{https://www.bain.com/insights/in-an-ai-age-people-still-want-the-radio-star/}{bain.com} + \item \emph{Soultracks}, \emph{``A.I.-generated music is catchy, familiar\ldots{} and boring.''} \href{https://soultracks.com/news-ai-generated-music-is-catchy-boring/}{soultracks.com} + \item \emph{Stereogum}, \emph{``Bandcamp Bans AI Music.''} \href{https://stereogum.com/2485199/bandcamp-bans-ai-music/news}{stereogum.com} + \item \emph{The Independent}, \emph{``AI-generated song banned from Swedish charts.''} \href{https://www.independent.co.uk/tv/news/ai-music-song-banned-sweden-spotify-b2901627.html}{independent.co.uk} + \item \emph{Digital Music News}, \emph{``YouTube CEO Puts `Managing AI Slop' on the Priority List for 2026.''} \href{https://www.digitalmusicnews.com/2026/01/22/youtube-ceo-ai-slop-2026-comments/}{digitalmusicnews.com} + \item \emph{Musically}, \emph{``Report: 56.9\% of new independent songs in China are AI-generated.''} \href{https://musically.com/2026/01/05/report-56-9-of-new-independent-songs-in-china-are-ai-generated/}{musically.com} + \item \emph{The Guardian}, \emph{``Paul McCartney joins music industry protest against AI with silent track.''} \href{https://www.theguardian.com/music/2025/nov/17/the-sound-of-silence-why-theres-barely-anything-there-in-paul-mccartney-new-release}{theguardian.com} + \item \emph{MusicTech}, \emph{``Jack Antonoff brands AI music makers as `godless whores'.''} \href{https://musictech.com/news/industry/jack-antonoff-ai-music-makers-godless-whores/}{musictech.com} + \item \emph{Billboard}, \emph{``The Real Story Behind The AI Song That Knocked Tyla Off No.~1 On Billboard Afrobeats Chart.''} \href{https://www.billboard.com/pro/ai-song-knocked-tyla-off-no-1-afrobeats/}{billboard.com} + \item \emph{Variety}, \emph{``WMG's Robert Kyncl: `AI Resistance' Setting Music Sector Back.''} \href{https://variety.com/2026/music/news/wmg-robert-kyncl-ai-resistance-1236748901/}{variety.com} + \item \emph{Musically}, \emph{``Sondo AI says it has 10m global users.''} \href{https://musically.com/2026/05/18/sondo-ai-10m-global-users/}{musically.com} + \item \emph{Musically}, \emph{``BPI sets out transparency and sovereignty demands to secure AI licensing boom.''} \href{https://musically.com/2026/05/19/bpi-transparency-sovereignty-ai-licensing-boom/}{musically.com} + \item \emph{Music Business Worldwide}, \emph{``DistroKid asks creators if their music is AI-generated as self-disclosure moves out of beta.''} \href{https://www.musicbusinessworldwide.com/distrokid-ai-self-disclosure-out-of-beta/}{musicbusinessworldwide.com} + \item \emph{Music Business Worldwide}, \emph{``Splice inks `Responsible AI' deal with ElevenLabs.''} \href{https://www.musicbusinessworldwide.com/splice-elevenlabs-responsible-ai-deal/}{musicbusinessworldwide.com} + \item \emph{Rolling Stone}, \emph{``The Rolling Stones Release `In the Stars' -- AI De-Aging Music Video.''} \href{https://www.rollingstone.com/music/music-news/rolling-stones-in-the-stars-ai-de-aging-video-1235142200/}{rollingstone.com} + \item \emph{MusicTech}, \emph{``Tamber -- ethically trained AI music tool with arm gesture control.''} \href{https://musictech.com/news/gear/tamber-ai-ethically-trained-arm-gestures/}{musictech.com} + \item Stability AI, \emph{``Stable Audio 3.0 released.''} \href{https://stability.ai/news/stable-audio-3-0-released}{stability.ai} + \item Sony AI, \emph{``Woosh -- sound effect foundation model.''} \href{https://ai.sony/blog/woosh-sound-effect-foundation-model/}{ai.sony} + \item Mirelo, \emph{``SFX 1.6 -- edit sound, not just generate.''} \href{https://mirelo.ai/sfx-1-6}{mirelo.ai} +\end{itemize} + +\section*{V\@. Copyright, consultation and the legal architecture} + +\begin{itemize} + \item UK Department for Science, Innovation and Technology, \emph{``Statement of Progress on Copyright and AI.''} \href{https://www.gov.uk/government/publications/copyright-and-artificial-intelligence-progress-report/copyright-and-artificial-intelligence-statement-of-progress-under-section-137-data-use-and-access-act}{gov.uk} + \item IPWatchdog, \emph{``Respondents to UK AI Consultation Overwhelmingly Want AI Companies to License Copyrighted Works in All Cases.''} \href{https://ipwatchdog.com/2025/12/16/respondents-uk-ai-consultation-overwhelmingly-want-ai-companies-license-copyrighted-works-all-cases/}{ipwatchdog.com} + \item UCL Copyright Queries, \emph{``UK government publishes progress statement on AI and copyright consultation.''} \href{https://blogs.ucl.ac.uk/copyright/2025/12/23/uk-government-publishes-progress-statement-on-ai-and-copyright-consultation/}{blogs.ucl.ac.uk} + \item Hogan Lovells, \emph{``Copyright and AI: UK government publishes statement of progress.''} \href{https://www.hoganlovells.com/en/publications/copyright-and-ai-uk-government-publishes-statement-of-progress}{hoganlovells.com} + \item \emph{Music Business Worldwide}, \emph{``Wixen files \$50m copyright suit against Meta.''} \href{https://www.musicbusinessworldwide.com/wixen-files-50m-copyright-suit-against-meta-claims-tech-giant-wants-to-replace-songwriters-with-ai/}{musicbusinessworldwide.com} + \item \emph{Music Business Worldwide}, \emph{``Meta hits back against Wixen Music Publishing's \$70m `AI replacement' infringement suit.''} \href{https://www.musicbusinessworldwide.com/meta-wixen-music-publishing-70-million-ai-replacement-lawsuit/}{musicbusinessworldwide.com} + \item \emph{EDM.com}, \emph{```Biggest Theft in Music History': Rights Group Sues Suno.''} \href{https://edm.com/gear-tech/rights-group-sues-suno-copyright-infringement/}{edm.com} + \item \emph{Complete Music Update}, \emph{``Johnny Cash estate uses ELVIS Act to sue Coke.''} \href{https://completemusicupdate.com/johnny-cash-estate-uses-elvis-act-to-sue-coke-over-tribute-act-ad-soundtrack/}{completemusicupdate.com} + \item Dr.~Barry Scannell, analysis of GEMA v.\ OpenAI ruling. \href{https://www.linkedin.com/posts/dr-barry-scannell-bbb5aa207_in-a-major-ruling-for-european-copyright-share-7393957246386323457-8bbx}{linkedin.com} + \item Reuters, \emph{``European lawmakers seek EU-wide minimum age to access AI chatbots.''} \href{https://www.reuters.com/legal/litigation/european-lawmakers-seek-eu-wide-minimum-age-access-ai-chatbots-social-media-2025-11-26/}{reuters.com} + \item \emph{The Verge}, \emph{``New York's new law forces advertisers to say when they're using AI avatars.''} \href{https://www.theverge.com/news/842848/new-york-law-ai-advertisements-sag-aftra-labor}{theverge.com} + \item \emph{Digital Music News}, \emph{``Nearly 800 Creatives Sign Responsible AI Declaration -- `Stealing Our Work Is Not Innovation'.''} \href{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}{digitalmusicnews.com} +\end{itemize} + +\section*{VI\@. Studio strategy} + +\begin{itemize} + \item \emph{CNBC}, \emph{``Netflix `all in' on leveraging AI.''} \href{https://www.cnbc.com/2025/10/22/netflix-all-in-on-leveraging-ai-in-its-streaming-platform.html}{cnbc.com} + \item \emph{Futurism}, \emph{``Lionsgate's Attempt to Create Movies Using AI Has Crumbled Into Disaster.''} \href{https://futurism.com/artificial-intelligence/lionsgate-movies-ai}{futurism.com} + \item \emph{The Guardian}, \emph{``Disney to invest \$1bn in OpenAI.''} \href{https://www.theguardian.com/business/2025/dec/11/disney-open-ai-sora-video-deal}{theguardian.com} + \item \emph{The Hollywood Reporter}, \emph{``Disney+ to Allow User-Generated Content Via AI.''} \href{https://www.hollywoodreporter.com/business/digital/disney-plus-gen-ai-user-generated-content-1236426135/}{hollywoodreporter.com} + \item \emph{Deadline}, \emph{``Amazon's Head Of Original Sports Content Matt Newman Moves Into A.I.''} \href{https://deadline.com/2025/11/amazon-ai-studios-matt-newman-1236603477/}{deadline.com} + \item \emph{Wired}, \emph{``Amazon's House of David Used Over 350 AI Shots in Season~2.''} \href{https://www.wired.com/story/amazons-house-of-david-used-over-350-ai-shots-in-season-2-its-creator-isnt-sorry/}{wired.com} + \item \emph{Indiewire}, \emph{``New AI Studio Obsidian Forms Partnership with Imagine Entertainment.''} \href{https://www.indiewire.com/news/business/obsidian-studio-ai-production-company-imagine-entertainment-1235158619/}{indiewire.com} + \item \emph{The Hollywood Reporter}, \emph{``Fremantle Names Boss of New AI Label Imaginae Studios.''} \href{https://www.hollywoodreporter.com/business/digital/fremantle-names-ceo-new-ai-label-imaginae-studios-1236396579/}{hollywoodreporter.com} + \item \emph{PC Gamer}, \emph{``Palworld studio Pocketpair: `We don't believe in it'.''} \href{https://www.pcgamer.com/software/ai/palworld-studio-pocketpair-says-its-new-publishing-division-wont-handle-games-that-use-generative-ai-we-dont-believe-in-it/}{pcgamer.com} + \item Variety, \emph{``Guillermo del Toro: `I'd rather die' than use generative AI.''} \href{https://variety.com/2025/film/news/guillermo-del-toro-rather-die-generative-ai-frankenstein-1236561316/}{variety.com} + \item \emph{The Hollywood Reporter}, \emph{``Leonardo DiCaprio Says AI Can't Be Art.''} \href{https://www.hollywoodreporter.com/movies/movie-news/leonardo-dicaprio-ai-cant-be-art-no-humanity-1236445405/}{hollywoodreporter.com} + \item \emph{NME}, \emph{``Jenna Ortega: `very easy to be terrified' of AI.''} \href{https://www.nme.com/news/jenna-ortega-says-its-very-easy-to-be-terrified-of-ai-in-filmmaking-3913926}{nme.com} + \item \emph{GamesRadar}, \emph{``Wallace and Gromit creator: Aardman will `embrace the technology' of AI but will be `very cautious'.''} \href{https://www.gamesradar.com/entertainment/animation-movies/wallace-and-gromit-creator-says-beloved-animation-studio-aardman-will-embrace-the-technology-of-ai-but-will-be-very-cautious-not-to-lose-our-values/}{gamesradar.com} + \item \emph{gamesindustry.biz}, \emph{```AI was an expensive mistake': Charles Cecil on Broken Sword.''} \href{https://www.gamesindustry.biz/ai-was-an-expensive-mistake-charles-cecil-on-innovation-insolvency-and-broken-sword}{gamesindustry.biz} + \item \emph{gamesindustry.biz}, \emph{``RuneScape maker Jagex says it will never use generative AI.''} \href{https://www.gamesindustry.biz/runescape-maker-jagex-says-it-will-never-use-generative-ai-to-make-in-game-content}{gamesindustry.biz} + \item \emph{Decrypt}, \emph{```Warhammer 40,000' Maker Games Workshop Rules Out Generative AI.''} \href{https://decrypt.co/354482/warhammer-40000-maker-games-workshop-rules-out-generative-ai}{decrypt.co} + \item \emph{Niche Gamer}, \emph{``Larian Studios backs off from gen AI.''} \href{https://nichegamer.com/larian-studios-backs-off-from-gen-ai/}{nichegamer.com} + \item \emph{PC Gamer}, \emph{``Todd Howard says AI can't replace human `creative intention'.''} \href{https://www.pcgamer.com/gaming-industry/todd-howard-says-ai-cant-replace-human-creative-intention-but-its-part-of-bethesdas-toolset-for-how-we-build-our-worlds-or-check-things/}{pcgamer.com} + \item \emph{Hollywood Reporter}, \emph{``Netflix INKubator AI animation studio for `feature-quality' shorts.''} \href{https://www.hollywoodreporter.com/business/business-news/netflix-ai-animation-studio-inkubator-1236592110/}{hollywoodreporter.com} + \item \emph{Forbes}, \emph{``Wonder Studios -- \$50M British studio aiming to become `A24 of AI'.''} \href{https://www.forbes.com/sites/charliefink/2026/05/18/meet-wonder-studios-the-50m-british-studio-striving-to-become-the-a24-of-ai-production/}{forbes.com} + \item Runway, \emph{``Runway Japan -- Tokyo office and \$40M investment.''} \href{https://runwayml.com/blog/runway-japan}{runwayml.com} + \item \emph{Hollywood Reporter}, \emph{``Cannes 2026: filmmakers shift towards cautious AI acceptance.''} \href{https://www.hollywoodreporter.com/business/business-news/cannes-2026-ai-acceptance-1236592488/}{hollywoodreporter.com} + \item \emph{Variety}, \emph{``AI Dominates Cannes Buzz as Filmmakers Grudgingly Accept It.''} \href{https://variety.com/2026/film/festivals/ai-cannes-2026-filmmakers-accept-1236748402/}{variety.com} + \item \emph{Variety}, \emph{``Peter Jackson: AI is basically the next wave of special effects.''} \href{https://variety.com/2026/film/news/peter-jackson-ai-special-effects-1236748120/}{variety.com} + \item \emph{Variety}, \emph{``Kling AI + Evolutionary Films on `Minibots' at Cannes Market.''} \href{https://variety.com/2026/film/news/kling-ai-evolutionary-films-minibots-cannes-1236748590/}{variety.com} + \item \emph{Cartoon Brew}, \emph{``Former Disney Animator: Marvel layoffs point to a bigger AI shift.''} \href{https://www.cartoonbrew.com/artist-rights/former-disney-animator-marvel-layoffs-ai-shift-260601.html}{cartoonbrew.com} + \item \emph{Hollywood Reporter}, \emph{``Bobby Berk: AI will make reality TV and `verifiably human content' more valuable.''} \href{https://www.hollywoodreporter.com/tv/tv-news/bobby-berk-ai-reality-tv-1236592920/}{hollywoodreporter.com} + \item \emph{PC Gamer}, \emph{``Take-Two's CEO: AI `datasets by their very nature are backward looking'.''} \href{https://www.pcgamer.com/games/take-two-ceo-ai-not-making-hits-backward-looking/}{pcgamer.com} +\end{itemize} + +\section*{VII\@. World models and the new medium} + +\begin{itemize} + \item World Labs, \emph{``Bringing Marble to Life.''} \href{https://www.worldlabs.ai/case-studies/bringing-marble-to-life}{worldlabs.ai} + \item TechCrunch, \emph{``Fei-Fei Li's World Labs speeds up the world model race with Marble.''} \href{https://techcrunch.com/2025/11/12/fei-fei-lis-world-labs-speeds-up-the-world-model-race-with-marble-its-first-commercial-product/}{techcrunch.com} + \item Google DeepMind, \emph{``Genie~3: A new frontier for world models.''} \href{https://deepmind.google/blog/genie-3-a-new-frontier-for-world-models/}{deepmind.google} + \item Google blog, \emph{``Project Genie: AI world model now available for Ultra users in U.S.''} \href{https://blog.google/innovation-and-ai/models-and-research/google-deepmind/project-genie/}{blog.google} + \item Meta, \emph{``WorldGen -- text-to-immersive-3D-worlds.''} \href{https://www.facebook.com/LifeAtMeta/videos/research-update-worldgen-text-to-immersive-3d-worlds/1879077432692421/}{facebook.com} + \item SpAItial, \emph{``Transform Images into Interactive 3D Worlds.''} \href{https://www.spaitial.ai/}{spaitial.ai} + \item Stanford AI Lab, \emph{``WonderZoom.''} \href{https://wonderzoom.github.io/}{wonderzoom.github.io} + \item NVIDIA/Stanford, \emph{``NitroGen.''} \href{https://nitrogen.minedojo.org/}{nitrogen.minedojo.org} + \item DeepMind, \emph{``SIMA~2: An Agent that Plays, Reasons, and Learns.''} \href{https://deepmind.google/blog/sima-2-an-agent-that-plays-reasons-and-learns-with-you-in-virtual-3d-worlds/}{deepmind.google} + \item Radiance Fields, \emph{``Apple Confirms Personas use Gaussian Splatting.''} \href{https://radiancefields.com/apple-confirms-personas-use-gaussian-splatting}{radiancefields.com} + \item Sony Pictures' virtual-production case study (Marble integration). \href{https://www.linkedin.com/posts/brent-liang_tech-media-launch-ugcPost-7394911181091692546-TyUz}{linkedin.com} + \item NVIDIA, \emph{``SANA-WM -- 2.6B open-source world model with 60-second video generation and camera control.''} \href{https://huggingface.co/collections/nvidia/sana-wm}{huggingface.co} + \item Odyssey, \emph{``Starchild-1 -- first real-time multimodal world model.''} \href{https://odyssey.ml/introducing-starchild-1}{odyssey.ml} + \item Odyssey, \emph{``Agora-1 -- four-player AI-generated world built on a 1997 shooter.''} \href{https://odyssey.ml/introducing-agora-1}{odyssey.ml} + \item Google DeepMind, \emph{``Project Genie + Street View -- simulate real-world places.''} \href{https://deepmind.google/discover/blog/project-genie-street-view/}{deepmind.google} + \item Google Labs, \emph{``Infinite Scaler -- browser multiplayer generative game.''} \href{https://blog.google/technology/google-labs/infinite-scaler/}{blog.google} + \item Apple Machine Learning Research, \emph{``Apple Headsup -- 3D Gaussian Head Reconstruction from Multi-View Captures.''} \href{https://machinelearning.apple.com/research/apple-headsup-3d-gaussian-head}{machinelearning.apple.com} + \item WorldLens VR, \emph{``AI-powered 3D depth on Quest for Google Street View.''} \href{https://www.uploadvr.com/worldlens-vr-quest-street-view-3d-depth/}{uploadvr.com} + \item \emph{gamesindustry.biz}, \emph{``Meet Seed, the planet-sized society simulator.''} \href{https://www.gamesindustry.biz/meet-seed-planet-sized-society-simulator}{gamesindustry.biz} +\end{itemize} + +\section*{VIII\@. The platform layer and the AI-native toolchain} + +\begin{itemize} + \item \emph{Creative Boom}, \emph{``Adobe puts AI in everything, everywhere, all at once.''} \href{https://www.creativeboom.com/news/adobe-is-putting-ai-in-everything-everywhere-all-at-once/}{creativeboom.com} + \item Adobe, \emph{``Adobe MAX 2025: Firefly Foundry.''} \href{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly-foundry}{news.adobe.com} + \item Adobe, \emph{``Adobe MAX 2025: Express AI Assistant.''} \href{https://news.adobe.com/news/2025/10/adobe-max-2025-express-ai-assistant}{news.adobe.com} + \item \emph{Wired}, \emph{``Adobe's Corrective AI Can Change the Emotions of a Voice-Over.''} \href{https://www.wired.com/story/adobe-max-sneaks-2025-corrective-ai/}{wired.com} + \item PYMNTS, \emph{``Adobe Lets Users Design and Edit Using ChatGPT.''} \href{https://www.pymnts.com/artificial-intelligence-2/2025/adobe-lets-users-design-and-edit-using-chatgpt/}{pymnts.com} + \item Adobe blog, \emph{``Edit with Photoshop in ChatGPT.''} \href{https://blog.adobe.com/en/publish/2025/12/10/edit-photoshop-chatgpt}{blog.adobe.com} + \item \emph{Campaign Brief}, \emph{``WPP launches WPP Open Pro.''} \href{https://campaignbrief.com/wpp-launches-ai-powered-marketing-platform-wpp-open-pro/}{campaignbrief.com} + \item \emph{Digiday}, \emph{``WPP expands AI capabilities.''} \href{https://digiday.com/media-buying/agencies-continue-to-expand-ai-capabilities-to-boost-brand-performance/}{digiday.com} + \item \emph{SiliconAngle}, \emph{``Higgsfield raises \$80M on \$1.3B valuation.''} \href{https://siliconangle.com/2026/01/15/higgsfield-raises-80m-1-3b-valuation-scale-ai-video-platform/}{siliconangle.com} + \item TechCrunch, \emph{``Synthesia hits \$4B valuation.''} \href{https://techcrunch.com/2026/01/26/synthesia-hits-4b-valuation-lets-employees-cash-in/}{techcrunch.com} + \item \emph{Sifted}, \emph{``Synthesia rejects \$3bn Adobe acquisition offer.''} \href{https://sifted.eu/articles/synthesia-acquisition-offer}{sifted.eu} + \item ComfyUI, \emph{``We raised \$17 million to build an OS for creative AI.''} \href{https://www.linkedin.com/posts/comfyui_we-raised-17-million-to-build-an-os-for-ugcPost-7373743341236236288-wkCc}{linkedin.com} + \item Beeple Canvas, \emph{``Generative AI meets compositing.''} \href{https://www.beeple-canvas.com/}{beeple-canvas.com} + \item \emph{MacRumors}, \emph{``New CarPlay Audio Apps Add AI Music and Global Radio.''} \href{https://www.macrumors.com/2026/05/19/carplay-ai-music-global-radio/}{macrumors.com} + \item \emph{The Drum}, \emph{``World's First AI-Driven Immersive Shoppable Catwalk.''} \href{https://www.thedrum.com/news/2026/05/18/how-world-s-first-ai-driven-immersive-shoppable-catwalk-redefined-future-brand}{thedrum.com} + \item \emph{The Drum}, \emph{``David Beckham designs `Henchester United' chicken coop in Lenovo AI ad.''} \href{https://www.thedrum.com/news/2026/05/18/david-beckham-henchester-united-chicken-coop-lenovo-ai-ad}{thedrum.com} + \item \emph{Amazon}, \emph{``Alexa+ debuts feature to create AI-generated podcasts.''} \href{https://www.aboutamazon.com/news/devices/alexa-plus-ai-podcasts}{aboutamazon.com} + \item ECABridge, \emph{``Unreal Engine MCP integration.''} \href{https://ecabridge.dev/}{ecabridge.dev} + \item \emph{Video Games Chronicle}, \emph{``Epic Games Veteran on AI-Heavy `Fully European' Game Engine.''} \href{https://www.videogameschronicle.com/news/epic-games-veteran-ai-heavy-fully-european-game-engine/}{videogameschronicle.com} +\end{itemize} + +\section*{IX\@. Authenticity, provenance and disclosure} + +\begin{itemize} + \item \emph{Digital Music News}, \emph{``Instagram Chief Says We Should `Fingerprint Real Media'.''} \href{https://www.digitalmusicnews.com/2026/01/05/instagram-chief-ai-slop-comments/}{digitalmusicnews.com} + \item \emph{WebProNews}, \emph{``Instagram Head Warns AI Images Erode Trust.''} \href{https://www.webpronews.com/instagram-head-warns-ai-images-erode-trust-calls-for-verification-standards/}{webpronews.com} + \item Google DeepMind, \emph{``Verify AI-generated videos in the Gemini app.''} \href{https://www.linkedin.com/posts/googledeepmind_verify-google-ai-generated-videos-in-the-activity-7407748300688478208-fJgW}{linkedin.com} + \item \emph{The Hollywood Reporter}, \emph{``Emmys Set AI Guidelines for 2026 Awards.''} \href{https://www.hollywoodreporter.com/tv/tv-news/emmys-ai-guidelines-2026-awards-1236468434/}{hollywoodreporter.com} + \item \emph{Lawyer Monthly}, \emph{``Matthew McConaughey Trademarks Voice and Image Against AI.''} \href{https://www.lawyer-monthly.com/2026/01/matthew-mcconaughey-protects-voice-image-ai/}{lawyer-monthly.com} + \item \emph{Adweek}, \emph{``Meet the \$1.3 Billion Startup Behind Madonna and Will Smith's AI Video.''} \href{https://www.adweek.com/media/higgsfield-ai-marketing-startup/}{adweek.com} + \item \emph{Marketing Week}, \emph{``You can't dismiss AI ads as slop when they're winning in testing.''} \href{https://www.marketingweek.com/dismiss-ai-ads-winning-creative-effectiveness/}{marketingweek.com} + \item Variety, \emph{``George Clooney: AI Actors Will Struggle to Be Movie Stars.''} \href{https://variety.com/2025/scene/columns/george-clooney-ai-actors-movie-stars-1236579661/}{variety.com} + \item \emph{The Hollywood Reporter}, \emph{``Synthetic Sincerity on AI Characters, Authenticity (IDFA).''} \href{https://www.hollywoodreporter.com/movies/movie-news/synthetic-sincerity-film-idfa-ai-authenticity-interview-1236426180/}{hollywoodreporter.com} + \item Variety, \emph{``AI-Generated Images Lead to Audiences' Distrust, Threaten Documentary.''} \href{https://variety.com/2025/film/festivals/ai-generated-images-threaten-future-of-documentary-1236583466/}{variety.com} + \item \emph{Hollywood Reporter}, \emph{``Merriam-Webster Names Slop Word of the Year 2025.''} \href{https://www.hollywoodreporter.com/news/general-news/slop-word-year-2025-merriam-webster-1236450780/}{hollywoodreporter.com} + \item Google DeepMind, \emph{``SynthID -- 100 billion items watermarked; partner expansion to OpenAI, ElevenLabs, Kakao.''} \href{https://deepmind.google/discover/blog/synthid-100-billion-watermarks-partners/}{deepmind.google} + \item \emph{Variety}, \emph{``Cate Blanchett co-founds RSL Media -- non-profit on AI consent for name, image, likeness.''} \href{https://variety.com/2026/film/news/cate-blanchett-rsl-media-ai-consent-1236748255/}{variety.com} + \item \emph{Bloomberg}, \emph{``Apple Acquires Key Talent \& Patents Behind AI Avatar Company `Animato'.''} \href{https://www.bloomberg.com/news/articles/2026-05-19/apple-acquires-animato-ai-avatar-talent-patents}{bloomberg.com} + \item Snap Newsroom, \emph{``Snapchat Gen~Z AI Creativity Research 2026 -- 31\% of 13--15 year-olds use AI to be creative.''} \href{https://newsroom.snap.com/snapchat-gen-z-ai-creativity-research-2026}{newsroom.snap.com} + \item YouGov AU, \emph{``45\% of Australians say AI-generated ads would make them trust a brand less.''} \href{https://yougov.com.au/topics/consumer/articles-reports/2026/05/19/45-percent-australians-ai-generated-ads-trust-brand-less}{yougov.com.au} +\end{itemize} + +\section*{X\@. Labour, organisation and the new geography} + +\begin{itemize} + \item Imperva/Cloudflare bot reports (Section~III). + \item Adobe, \emph{``Inaugural Adobe Creators' Toolkit Report: 86\% of Global Creators Use Creative Generative AI.''} \href{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}{news.adobe.com} + \item Azumo, \emph{``AI in the Workplace Statistics 2026.''} \href{https://azumo.com/artificial-intelligence/ai-insights/ai-in-workplace-statistics}{azumo.com} + \item \emph{Tech.co}, \emph{``Gen~Z Most Likely to Sneakily Use AI Without Telling the Boss.''} \href{https://tech.co/news/gen-z-most-likely-use-ai-boss}{tech.co} + \item \emph{Exploding Topics}, \emph{``The Hidden AI Workforce.''} \href{https://explodingtopics.com/blog/ai-workforce-research}{explodingtopics.com} + \item \emph{Forbes}, \emph{``AI Tools Flood Workplaces as Employees Face a Double Bind.''} \href{https://www.forbes.com/sites/carolinecastrillon/2025/09/09/ai-tools-flood-workplaces-as-employees-face-a-double-bind/}{forbes.com} + \item IDC Europe, \emph{``Shadow AI.''} \href{https://blog-idceurope.com/shadow-ai-how-stealth-productivity-is-strangling-enterprise-ai-adoption-and-creating-a-security-nightmare/}{blog-idceurope.com} + \item \emph{Game Developer}, \emph{``Krafton outlines plans to become `AI First' company.''} \href{https://www.gamedeveloper.com/business/subnautica-owner-krafton-outlines-plans-to-transform-into-an-ai-first-company}{gamedeveloper.com} + \item \emph{CNBC}, \emph{``Why workers with ADHD, autism, dyslexia should use AI agents.''} \href{https://www.cnbc.com/2025/11/08/adhd-autism-dyslexia-jobs-careers-ai-agents-success.html}{cnbc.com} + \item \emph{The Guardian}, \emph{``AI is hitting UK harder than other big economies.''} \href{https://www.theguardian.com/technology/2026/jan/26/ai-uk-jobs-us-japan-germany-australia}{theguardian.com} + \item \emph{PocketGamer.biz}, \emph{``Shift Up CEO says AI is key to competing with China's game industry scale.''} \href{https://www.pocketgamer.biz/shift-up-ceo-says-ai-is-key-to-competing-with-chinas-game-industry-scale/}{pocketgamer.biz} + \item CNBC Africa, \emph{``How AI is changing the landscape of the music industry in Africa.''} \href{https://www.cnbcafrica.com/2025/how-ai-is-changing-the-landscape-of-the-music-industry-in-africa}{cnbcafrica.com} + \item BBC Future, \emph{``Lights, camera, algorithm: Why Indian cinema is awash with AI.''} \href{https://www.bbc.co.uk/future/article/20251223-why-indian-cinema-is-awash-with-ai}{bbc.co.uk} + \item \emph{Broadcast Pro Middle East}, \emph{``Tunisian filmmaker wins \$1 million AI Film Award for `Lily'.''} \href{https://www.broadcastprome.com/news/tunisian-filmmaker-wins-1-million-ai-film-award-for-lily/}{broadcastprome.com} +\end{itemize} + +\section*{XI\@. The literacy turn -- institutions and education} + +\begin{itemize} + \item Sundance Institute, \emph{``Centering the Artist: Why We're Launching the AI Literacy Initiative.''} \href{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}{sundance.org} + \item Google blog, \emph{``Building a community-led future for AI in film with Sundance Institute.''} \href{https://blog.google/company-news/outreach-and-initiatives/google-org/sundance-institute-ai-education/}{blog.google} + \item McKinsey \& Company, \emph{``What AI could mean for film and TV production.''} \href{https://www.mckinsey.com/industries/technology-media-and-telecommunications/our-insights/what-ai-could-mean-for-film-and-tv-production-and-the-industrys-future}{mckinsey.com} + \item UK Government, \emph{``Free AI training for all.''} \href{https://www.gov.uk/government/news/free-ai-training-for-all-as-government-and-industry-programme-expands-to-provide-10-million-workers-with-key-ai-skills-by-2030}{gov.uk} + \item University of Wisconsin-Stout, \emph{``AI Reshaping Industry: AI-use as Baseline Competency in Filmmaking.''} \href{https://www.uwstout.edu/about-us/news-center/ai-reshaping-industry-new-uw-stout-course-sets-ai-use-baseline-competency-filmmaking}{uwstout.edu} +\end{itemize} + +\section*{XII\@. Newsletters and primary corpus} + +\begin{itemize} + \item \emph{Dream Machine | Creative AI} -- LinkedIn newsletter, archive of Issues 1--30 (6~October~2025 -- 21~May~2026). \href{https://www.linkedin.com/newsletters/dream-machine-creative-ai-7379776527871381505/}{linkedin.com} + \item DreamLab AI Collective, team page. \href{https://dreamlab-ai.com/team}{dreamlab-ai.com} + \item DreamLab Substack, \emph{``Some Predictions on Creative AI for 2026''} -- \emph{Dream Machine} Issue~13 companion piece. \href{https://substack.com/home/post/p-183997149}{substack.com} +\end{itemize} diff --git a/latex/appendices/a4_deep_dive_shadow_ai.tex b/latex/appendices/a4_deep_dive_shadow_ai.tex new file mode 100644 index 0000000..b28add2 --- /dev/null +++ b/latex/appendices/a4_deep_dive_shadow_ai.tex @@ -0,0 +1,254 @@ +\chapter{The Shadow AI Paradox in the Creative Industries}\label{app:a4} + +\emph{Companion piece to Chapter~13: Coordination Collapse.} + +This deep dive is the long-form analytical companion to the shadow-AI sections of Chapter~13. Where the chapter argues, in the book's voice, that the creative industries are operating with two parallel economies on top of each other -- a vocal public economy of AI refusal and a silent private economy of AI adoption -- this appendix lays out the underlying data, the sectoral breakdowns, the security and IP implications, the linguistic markers that betray covert AI use, and the labour-market mechanics of agentic displacement that the chapter compresses for narrative purposes. + +The headline numbers Chapter~13 quotes -- 88--89\% staff adoption against 71--80\% covert use, the \$670,000 average breach cost, the 1,100-creator music survey showing 87\% AI use against 77\% ``loss of originality'' concern, the WGA pre- vs.\ post-strike screenwriter shift from 34\% to 68\%, the GDC sentiment-vs-usage divergence -- all sit inside the fuller treatment below. Read alongside Appendix~E: Dynamics of Generative AI Adoption, it forms the empirical spine of the book's argument that the creative industries' stated position on AI and their operational position on AI are, in 2026, sharply divergent -- and that this divergence is itself the strategic question every creative organisation now has to face. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{The Shadow AI Paradox in the Creative Industries: Covert Adoption, Linguistic Betrayal, and the Displacement Crisis} + +The integration of artificial intelligence within the global creative economy has precipitated one of the most profound technological, economic, and cultural shifts in modern history. However, the prevailing narrative surrounding this transition is characterised by a severe and highly visible dichotomy. Publicly, the creative industries -- spanning music, gaming, film, television, animation, broadcasting, and advertising -- are engaged in a vocal, highly publicised, and often legally combative resistance against generative artificial intelligence. Trade unions, prominent artists, and media conglomerates routinely denounce the technology, citing massive ethical violations, the non-consensual scraping of copyrighted material, and the existential threat to authentic human expression and labour. + +Privately, however, the operational reality is starkly different. The sector is currently experiencing an unprecedented and accelerating surge in ``shadow AI'' -- the covert, unsanctioned use of artificial intelligence tools by employees, freelancers, and executives outside of formal corporate IT and governance structures. This phenomenon reveals a pervasive cognitive dissonance within the modern creative workforce. Professionals who actively and passionately denounce the use of generative models to protect their specific disciplines are simultaneously utilising the exact same underlying technologies to automate tasks they deem secondary, tedious, or outside their purview -- such as coding, copywriting, administrative communication, metadata generation, and data analysis. + +This localised protectionism, frequently characterised as the ``AI for thee, but not for me'' paradox, not only exposes the psychological rationalisations of modern knowledge workers but also accelerates the very displacement they publicly seek to prevent. By feeding proprietary data, unreleased assets, and intellectual capital into public Large Language Models (LLMs) to achieve personal efficiency gains, covert users are inadvertently training the systems that are rendering their own industries and the broader creative ecosystem obsolete. The displacement caused by this technology is highly problematic and systemic, regardless of whether a user justifies their usage as merely ``augmentative'' for non-core tasks. + +This comprehensive research report examines the prevalence, mechanics, and long-term consequences of shadow AI in the creative sectors during the critical 2024--2026 transitional period. It analyses the specific linguistic markers that betray covert AI usage in professional communications, the economic mechanisms driving continuous labour displacement, the specific usage patterns across various creative sub-sectors, and the strategic governance frameworks that organisations must implement to navigate this dual-faced reality. Ultimately, this report outlines the logical conclusion of a paradigm where an industry covertly relies on the very technology it publicly decries. + +\section*{The Epistemology and Scale of Shadow AI} + +To understand the hypocrisy of the creative sector's AI adoption, it is first necessary to comprehend the sheer scale of shadow AI across enterprise environments. Shadow AI is the natural evolutionary successor to the older concept of shadow IT, but its implications are vastly more severe. While traditional shadow IT involved the unauthorised use of rogue cloud storage or project management apps, shadow AI involves autonomous, self-learning systems that ingest, retain, and iterate upon the data fed into them. + +Between 2023 and 2024, the adoption of generative AI applications by enterprise employees grew from 74\% to 96\%, tracking an explosive trajectory that caught corporate compliance departments entirely off guard. By the end of 2025 and moving into 2026, the ``Bring Your Own AI'' (BYOAI) movement became the dominant operational paradigm. Data from extensive workforce tracking indicates that up to 89\% of staff across various organisational departments utilise AI tools, with 71\% to 80\% of those employees utilising them without official approval or IT oversight. + +The scale of this hidden infrastructure has resulted in a phenomenon analysts describe as the ``Hidden Cloud Explosion.'' The disparity between what corporate leadership believes is happening and what is actually occurring on employee devices is massive. + +\begin{center} +\begin{tabular}{p{3cm} p{3.5cm} p{3.5cm} p{4cm}} +\toprule +\textbf{Metric} & \textbf{Perceived Reality} & \textbf{Actual Reality} & \textbf{Strategic Implication} \\ +\midrule +Enterprise AI Adoption Rate & Stalled in pilot phases; limited official rollout & 88--89\% active daily users & Official corporate AI initiatives are moving too slowly, forcing employees to utilise public tools \\ +\midrule +Cloud Service Visibility & \textasciitilde91 public cloud services estimated & Average of 1,220 active services & IT departments suffer from a 90\% visibility gap \\ +\midrule +High-Risk Applications & Assumed zero tolerance & Average of 44 undetected high-risk cloud services per enterprise & Continuous vulnerability to automated data scraping \\ +\midrule +Compliance Awareness & Assumed mandatory training & Only 23\% of users are aware of compliance risks & Data exposure is largely driven by negligence rather than malicious intent \\ +\bottomrule +\end{tabular} +\end{center} + +The security, financial, and intellectual property risks associated with this covert adoption are crippling to creative enterprises. In 2025, 20\% of organisations experienced severe security incidents directly linked to shadow AI, which increased the average cost of a data breach by \$670,000. The operational mechanisms of these tools -- specifically the tendency of users to paste proprietary source code, legal drafts, financial models, and unreleased creative assets into public LLMs like ChatGPT or Claude -- resulted in the exposure of personally identifiable information (PII) in 65\% of incidents, and the direct theft or exposure of intellectual property in 40\% of incidents. + +When an animator pastes proprietary pipeline code into an AI debugging assistant, or a screenwriter uploads an unproduced treatment into an LLM to generate character summaries, they are essentially bypassing corporate endpoint monitoring and handing trade secrets to third-party data processors. The AI's self-learning nature means that these risks compound exponentially; data leaked on a Tuesday can theoretically be used to train a model outputting responses to a competitor by Thursday. Despite these massive systemic risks, the adoption continues unabated, driven by the intense pressure on creative workers to increase their output velocity and streamline workflows in an era of shrinking budgets. + +\section*{The Great Hypocrisy: ``AI for Thee, But Not for Me''} + +At the core of the shadow AI phenomenon in the creative sector is a profound psychological, economic, and ideological paradox. Creative professionals frequently exhibit a fierce, localised protectionism regarding their own specific skill sets and domains, while demonstrating a complete and enthusiastic willingness to automate the labour of their peers and collaborators. + +This dynamic is widely recognised and criticised in developer and creative circles as the ``AI for thee, but not for me'' paradox. The psychology driving this hypocrisy rests on a highly subjective and hierarchical valuation of human labour. Creatives routinely categorise tasks outside their immediate domain as ``mundane,'' ``tedious,'' ``administrative,'' or ``purely technical,'' thereby framing the use of AI in these areas as a harmless, victimless efficiency gain. Conversely, they view their own specific domain as an expression of authentic, irreplaceable human experience, soul, and creative genius that cannot, and morally should not, be replicated by an algorithm. + +For example, a traditional illustrator or concept artist may vehemently campaign against text-to-image models like Midjourney or Stable Diffusion, viewing the scraping of their portfolios as copyright infringement and a desecration of the artistic process. They will join public boycotts and demand protective legislation. Yet, that exact same illustrator may comfortably and secretly use an LLM to write their marketing copy, draft their client contracts, or generate the HTML and Python scripts required to manage their portfolio website. In doing so, they are actively devaluing and bypassing the labour of copywriters, paralegals, and web developers. + +Similarly, an independent filmmaker might loudly denounce the use of generative video models, arguing that they destroy the craft of cinematography. However, that filmmaker may simultaneously utilise AI audio-cleaning tools to bypass the need for a professional sound mixer, or use an AI business agent to handle their accounting. + +This hierarchical thinking is not only hypocritical; it is fundamentally flawed in its understanding of how generative AI models operate. When an independent creator uses an LLM to generate an email campaign or a block of code, they are exploiting the exact same mechanism of non-consensual data scraping that powers image and video generation. The models that generate text and code are trained on the massive, often unlicensed, copyrighted works of authors, journalists, programmers, and corporate communications. The ethical breach is identical, but the personal proximity to the threat alters the user's moral calculus. + +\section*{The Problematic Nature of ``Augmentative'' Displacement} + +The justification for this behaviour relies heavily on the narrative of ``augmentation.'' Workers convince themselves that they are merely using AI to remove friction from their day, allowing them to focus on the ``real'' creative work. However, displacement, no matter how the AI is being used, is highly problematic for the broader economic ecosystem. + +When creatives use AI for ``someone else's job,'' they are contributing to a structural shift toward the ``one-person business'' model. By utilising workflow automation platforms and shadow AI tools, individual creatives can scale their output to rival small agencies, generating massive localised profit. While this empowers the individual user, it fundamentally relies on the systemic destruction of entry-level and specialised labour. + +This creates a broken pipeline for future talent. The creative industries have historically relied on a mentorship and apprenticeship model, where junior staff learn the intricacies of a craft by performing the very ``mundane'' tasks that are now being automated. By eagerly adopting shadow AI for these peripheral tasks, current professionals are burning the bridge they crossed, ensuring that the next generation of creatives has no entry point into the industry. + +\section*{Linguistic Betrayal: Exposing the Covert User} + +The hypocrisy of the shadow AI user is frequently exposed not through sophisticated IT audits or complex network monitoring, but through glaring linguistic betrayals. As creatives increasingly rely on LLMs to generate their professional communications, grant proposals, LinkedIn updates, and social media posts, they inadvertently adopt the semantic and structural artefacts inherent to generative models. + +Because creative professionals generally possess strong intrinsic communication skills, their sudden shift to AI-generated text is highly conspicuous. LLMs are trained via Reinforcement Learning from Human Feedback (RLHF) to be relentlessly helpful, polite, and enthusiastically compliant. Consequently, unedited AI output possesses a highly distinct, overly polished, yet entirely soulless corporate tone that lacks authentic human nuance, imperfection, or quirk. This phenomenon has led to a flattening of the craft of writing, transforming professional discourse into a sea of sycophantic, buzzword-laden uniformity. + +\begin{center} +\begin{tabular}{p{3.5cm} p{5cm} p{5cm}} +\toprule +\textbf{Linguistic Marker Category} & \textbf{Specific Identifiers and Behaviours} & \textbf{Psychological and Technical Origin} \\ +\midrule +The Hyperbolic Vocabulary of Enthusiasm & ``Delve'', ``Tapestry'', ``Thrilled'', ``Transformative'', ``Rockstar'', ``Dynamic'', ``Game-changer'' & RLHF training weights heavily favour high-engagement, extremely positive corporate rhetoric to avoid user offence \\ +\midrule +Formulaic Structural Predictability & Hook -- Milestone Announcement -- Gratitude to Leadership -- Broad Platitude -- Call to Action & Algorithmic reliance on statistically common business-communication templates scraped from platforms like LinkedIn \\ +\midrule +Predictable Emoji Topography & \texttt{:rocket: :tada: :briefcase: :clap: :fire:} placed at exact paragraph terminations or used in excessive clusters & A mechanical simulation of human digital emotion designed to maximise algorithmic engagement \\ +\midrule +The ``Slip-Up'' Artefact & ``Let me know if you need any modifications!'', ``Here is the drafted response:'', ``As an AI\ldots{}'' & User negligence, extreme haste, and the failure to proofread automated output before publishing \\ +\midrule +Lack of Specificity & Broad lessons on leadership or creativity without specific project metrics, dates, or personal anecdotes & AI models lack real-world context unless explicitly prompted; they default to generalised wisdom to fill space \\ +\bottomrule +\end{tabular} +\end{center} + +The ultimate irony is that creative professionals -- who build their entire professional identities on originality, authentic expression, and a unique point of view -- are willingly outsourcing their public voices to algorithms that produce the median, most inoffensive blend of corporate speech possible. + +\section*{Sector-Specific Analysis of Covert Adoption} + +\subsection*{Music Production and Sound Recording} + +The music industry has experienced a highly volatile relationship with generative AI. By 2026, the narrative of ``saving human music'' clashed directly with internal studio practices. An exhaustive survey of over 1,100 professional music creators -- including producers, audio engineers, and songwriters -- revealed that a staggering 87\% of producers were actively using AI tools in their creative process. + +The usage within the music sector is highly stratified. According to industry data, 58\% utilise AI for audio restoration and cleanup, 38\% for mixing assistants, and 33.9\% for automated mastering. However, when it comes to authorship -- the core identity of the artist -- resistance stiffens considerably. Only 20.9\% admit to using composition or lyric-generation tools. + +There is a profound, existential fear of ``musical sameness,'' with 77\% of producers citing the loss of originality as their primary concern, superseding even the fear of job displacement (42\%). + +\subsection*{Gaming and Interactive Entertainment} + +The video game industry exhibits the most volatile public reactions to AI, frequently resulting in massive public relations disasters and community outrage. Consumer backlash against perceived ``AI slop'' has become so severe that it is causing active collateral damage to human artists. Game developers who commission genuine, hand-drawn human artwork have faced aggressive online harassment and accusations of using AI, simply because their art style mirrored the hyper-polished aesthetics popularised by Midjourney and Stable Diffusion. + +In response, several publishers have implemented draconian anti-AI policies. Hooded Horse, a prominent indie publisher, formally banned the use of AI, inserting ``no f**king AI assets'' clauses into all of its developer contracts. However, the reality of modern game development -- which requires massive, unprecedented volumes of assets, endless lines of code, and continuous debugging -- makes strict adherence to these bans nearly impossible. + +The gaming sector perfectly encapsulates the shadow AI dilemma. Developers widely and enthusiastically use AI coding assistants like GitHub Copilot to write scripts, autocomplete logic, and debug errors, viewing it as an absolute necessity for productivity and survival in a crunch-heavy industry. Yet, the integration of AI for visual assets or narrative design is treated as a moral failing. + +\subsection*{Film, Television, and Animation} + +Hollywood currently operates under a pervasive ``don't ask, don't tell'' culture regarding artificial intelligence. In the wake of historic industry strikes, the Writers Guild of America (WGA) and SAG-AFTRA established rigid, legally binding guidelines surrounding AI. These guidelines mandate explicit, 48-hour advanced consent and mandatory compensation for the creation of ``Employment-Based Digital Replicas'' and ``Synthetic Performers.'' Writers are permitted to use generative AI as a tool, provided it is disclosed, but studios cannot force writers to use it, nor can AI be credited with authorship or used to reduce a writer's residuals. + +Despite these hard-fought contractual boundaries, covert usage is rampant across the supply chain. Industry executives and insiders note that studios are frequently lying about how much AI they are utilising in post-production, storyboarding, and visual effects to avoid union grievances and consumer backlash. + +The animation sector faces an even more dire existential crisis. A 2025 Luminate Intelligence report highlighted that animation executives view generative AI as a revolutionary mechanism to slash production times and reduce ballooning budgets. The Animation Guild estimates that 21\% of animation tasks are vulnerable to immediate AI exposure and automation, putting nearly 40,000 jobs in California alone at risk. + +\subsection*{Broadcasting, Advertising, and Agency Production} + +In the broader broadcasting and advertising sectors, the integration of AI has moved from a novelty to a core operational requirement. While 2024 was marked by AI moving from a ``side tab'' to a ``core app,'' 2025 and 2026 ushered in the ``Agentic Era.'' However, official corporate rollouts of these tools have been remarkably clumsy. Up to 70\% of official corporate AI initiatives in broadcasting and media fall short of expectations, plagued by rigorous compliance checks, clunky enterprise interfaces, and a lack of specific training. + +When agencies attempt to use AI overtly -- as seen in Coca-Cola's heavily criticised AI-generated Christmas advertisement -- they risk destroying decades of brand equity. This public backlash forces agencies back into the shadows. + +\section*{The Mechanics of Market Devaluation and Displacement} + +The deeply held belief among creative professionals that shadow AI functions merely as an ``augmentative'' tool is an economic fallacy. No matter how these tools are utilised, the aggregate macro-economic effect is the systematic displacement of human labour and the rapid devaluation of the creative economy. + +According to the United Nations Educational, Scientific and Cultural Organisation (UNESCO), the proliferation of generative AI is projected to cause significant and irreversible income losses by 2028. The report warns that music creators face a 24\% drop in revenues, while audiovisual professionals are projected to lose 21\% of their income as AI-generated content floods global markets. A broader economic analysis by Goldman Sachs estimates that up to 300 million jobs globally are exposed to AI automation over the next decade, with a specific focus on knowledge workers and creative sectors. + +\subsection*{The Stanford Study: Flooding the Market} + +A critical study conducted by Stanford Graduate School of Business analysed the market dynamics when AI-generated art was introduced to a platform alongside traditional human-created art. Once generative AI entered the marketplace, the total supply of images skyrocketed exponentially, and consequently, the volume of human-generated images fell dramatically. More alarmingly for traditional creators, consumers actively demonstrated a preference for the influx of AI-generated images, choosing them over human-generated ones. The technology flooded the market with high quality and infinite variety at a near-zero marginal cost. + +\subsection*{The Enclosure of the Knowledge Commons} + +Every instance of shadow AI usage contributes directly to this dynamic. Generative models function as massive, continuous feedback loops. When an employee covertly inputs a proprietary script, a unique visual asset, or an innovative piece of code into a public LLM to save time, they are voluntarily surrendering their intellectual property and the collective knowledge of their industry to the algorithm. + +This process is known in critical theory as the ``enclosure of the knowledge commons.'' Major tech corporations rely on this continuous, free ingestion of human labour to refine their models, subsequently monopolising that accumulated intelligence and selling it back to the market in the form of autonomous agents and enterprise subscriptions. + +The creative professional who uses shadow AI is not just cheating their employer's IT policy to leave work an hour early; they are actively, literally training their permanent replacement. + +\section*{Strategic Restitution: Formalising AI Governance} + +The pervasive, deeply entrenched nature of shadow AI within the creative sectors dictates that traditional IT prohibition strategies are entirely futile. Banning public LLMs, implementing strict firewalls, or punishing employees simply drives the behaviour further underground. + +To survive this transition, creative organisations must move away from a posture of denial and transition toward a model of ``structured enablement'' and formal AI governance. + +\begin{center} +\begin{tabular}{p{2.5cm} p{4.5cm} p{4.5cm}} +\toprule +\textbf{Governance Maturity Phase} & \textbf{Operational Characteristics} & \textbf{Required Security \& Compliance Actions} \\ +\midrule +Phase~1: Discovery \& Informal & Ubiquitous shadow AI. No official policy. Staff unaware of compliance risks. Rampant BYOAI. & Implement network telemetry to audit actual SaaS usage. Identify high-risk data flows. Conduct upfront reviews of vendor Terms of Service for embedded AI. \\ +\midrule +Phase~2: Ad Hoc \& Transitional & Walled-garden access (e.g., Enterprise Copilot) introduced. Basic acceptable use policies distributed to staff. & Implement API gateways. Block transmission of PII to public models. Roll out mandatory AI literacy training to bridge the 50\% awareness gap. \\ +\midrule +Phase~3: Formal \& Integrated & AI usage is transparent, licensed, and actively monitored. Ethical and IP guardrails are automated directly into the creative workflow. & Continuous monitoring for model drift and algorithmic bias. Formalised vendor data agreements guaranteeing zero data retention. Compliance with regional legislation (e.g., EU AI Act). \\ +\bottomrule +\end{tabular} +\end{center} + +Most importantly, organisations must supply enterprise-grade, heavily secured AI solutions that guarantee zero data retention by the model providers. When employees are provided with sanctioned, secure tools that perform as well as or better than the public shadows, the incentive to bypass IT protocols and risk data exposure entirely evaporates. + +\section*{The Logical Conclusion} + +The trajectory of shadow AI within the creative industries points toward an inescapable, highly disruptive logical conclusion. The current state of cognitive dissonance -- where creative professionals publicly demonise artificial intelligence as the death of art while privately relying on it to augment their daily output -- is merely a brief, unstable transitional phase. + +As the technology's capabilities expand exponentially beyond the automation of ``mundane'' tasks and begin to consistently perform judgement-intensive, open-ended creative work at human-level proficiency, the fragile, hypocritical truce of ``augmentation'' will inevitably collapse. The displacement of human labour is not an accidental or unfortunate byproduct of generative AI; it is its foundational design and economic purpose. + +The survival of the creative professional will not depend on successfully protecting a specific, granular skill set from automation through public boycotts. Rather, it will depend on transitioning to highly formalised, governed AI integration that explicitly protects human intellectual property at the enterprise level, ensuring that artists are compensated for the data they generate. + +The alternative is the total, irreversible enclosure of the creative commons, where human ingenuity serves merely as the unpaid, unacknowledged training data for the automated, synthetic pipelines of tomorrow. The creative industries must drag AI out of the shadows and govern it in the light, or risk being entirely consumed by it. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{Works Cited} + +\begin{enumerate} + \item Shadow AI and the Future of Work: What Knowledge Workers Need to Know in 2026. \href{https://www.reddit.com/r/it/comments/1qn2f9w/shadow_ai_and_the_future_of_work_what_knowledge/}{reddit.com/r/it} + \item What Is Shadow AI? -- IBM. \href{https://www.ibm.com/think/topics/shadow-ai}{ibm.com} + \item AI Isn't Taking Over All Creative Jobs (So Embrace It). \href{https://www.now-hear-this.net/content/ai-isnt-taking-over-all-creative-jobs-so-embrace-it}{now-hear-this.net} + \item Reddit: I stopped defending my creative team and let leaders use AI\ldots{} it failed. \href{https://www.reddit.com/r/antiwork/comments/1kfn9jl/i_stopped_defending_my_creative_team_and_let/}{reddit.com/r/antiwork} + \item Hacker News: Anthropic: ``Applicants should not use AI assistants.'' \href{https://news.ycombinator.com/item?id=42915905}{news.ycombinator.com} + \item Reddit: After Being Stripped of Its GOTY Win, Clair Obscur Director Admits Using AI ``Felt Wrong.'' \href{https://www.reddit.com/r/DreamStationcc/comments/1pur5cs/after_being_stripped_of_its_goty_win_clair_obscur/}{reddit.com} + \item Shadow IT Statistics You Need to Know Now (2026) -- ElectroIQ. \href{https://electroiq.com/stats/shadow-it-statistics/}{electroiq.com} + \item AI Gone Wild: Why Shadow AI Is Your IT Team's Worst Nightmare. \href{https://cloudsecurityalliance.org/blog/2025/03/04/ai-gone-wild-why-shadow-ai-is-your-it-team-s-worst-nightmare}{cloudsecurityalliance.org} + \item Shadow AI Statistics 2026: Adoption, Risk, And Breach Data. \href{https://authentech.ai/blog/shadow-ai/shadow-ai-statistics-2026/}{authentech.ai} + \item Popular Doesn't Mean Secure -- The 2025 State of Shadow AI Report Findings -- Reco AI. \href{https://www.reco.ai/blog/popular-doesnt-mean-secure-the-2025-state-of-shadow-ai-report-findings}{reco.ai} + \item The GenAI Divide: State of AI in Business 2025 -- MLQ.ai. \href{https://mlq.ai/media/quarterly_decks/v0.1_State_of_AI_in_Business_2025_Report.pdf}{mlq.ai} + \item Shadow AI Usage Statistics 2026: Latest Insights -- SQ Magazine. \href{https://sqmagazine.co.uk/shadow-ai-usage-statistics/}{sqmagazine.co.uk} + \item How to Detect \& Stop Shadow AI Tools in the Company. \href{https://www.reddit.com/r/sysadmin/comments/1pn1y3v/how_to_detect_stop_shadow_ai_tools_in_the_company/}{reddit.com/r/sysadmin} + \item Why ``AI'' Is a Con: Our Book Launch! (with Vauhini Vara) -- Buzzsprout. \href{https://www.buzzsprout.com/2126417/episodes/17459349-why-ai-is-a-con-our-book-launch-with-vauhini-vara-2025-05-08}{buzzsprout.com} + \item Hacker News: ``DeepSeek trained on our outputs\ldots{}'' \href{https://news.ycombinator.com/item?id=42867899}{news.ycombinator.com} + \item This is how AI is impacting -- and shaping -- the creative industries -- World Economic Forum. \href{https://www.weforum.org/stories/2024/02/ai-creative-industries-davos/}{weforum.org} + \item The Transformative Power of Storytelling in The Classroom -- Scribd. \href{https://www.scribd.com/document/691281535/Extracted-the-Deep-Well-of-Time-the-Transformative-Power-of-Storytelling-in-the-Classroom}{scribd.com} + \item The `AI Hypocrisy' Paradox: Why We Hate AI in Our Jobs but Love It in Everyone Else's. \href{https://maketecheasier.com/ai-hypocrisy-paradox/}{maketecheasier.com} + \item The Ethical Implications of AI in Creative Industries -- ResearchGate. \href{https://www.researchgate.net/publication/393511482_The_Ethical_Implications_of_AI_in_Creative_Industries_A_Focus_on_AI-Generated_Art}{researchgate.net} + \item The Future of Music Production Is Human: 1,100+ Producers Reveal\ldots{} -- Sonarworks. \href{https://www.sonarworks.com/blog/research/future-music-production-human-producer-survey-2026}{sonarworks.com} + \item Generative Artificial Intelligence and the Creative Economy Staff Report -- FTC. \href{https://www.ftc.gov/system/files/ftc_gov/pdf/12-15-2023AICEStaffReport.pdf}{ftc.gov} + \item The Breaking Point: Why Hollywood's Long-Simmering AI Cold War Just Went Nuclear. \href{https://nofilmschool.com/ai-war-hollywood}{nofilmschool.com} + \item AI Will Reshape More Jobs Than It Replaces -- BCG. \href{https://www.bcg.com/publications/2026/ai-will-reshape-more-jobs-than-it-replaces}{bcg.com} + \item Creative pros are leveraging Generative AI to do more and better work -- Adobe Blog. \href{https://blog.adobe.com/en/publish/2024/02/02/creative-pros-generative-ai-usage}{blog.adobe.com} + \item The Silent Displacement: How AI Automation is Creating a New Class of One-Person Businesses -- Medium. \href{https://medium.com/@tradeapollo/the-silent-displacement-how-ai-automation-is-creating-a-new-class-of-one-person-businesses-while-e1a67f716b96}{medium.com} + \item Let Me Know If You Need Any Modifications: The LinkedIn AI Crisis -- Medium. \href{https://medium.com/@avanib28264/let-me-know-if-you-need-any-modifications-the-linkedin-ai-crisis-163748c04c1b}{medium.com} + \item Reddit: I see Claude's writing everywhere and it's starting to feel like an AI condom. \href{https://www.reddit.com/r/ClaudeAI/comments/1rjeqg3/i_see_claudes_writing_everywhere_and_its_starting/}{reddit.com/r/ClaudeAI} + \item BEYOND THE BLACK BOX: Shaping a Responsible AI Landscape -- KPMG. \href{https://www.kpmginfo.com/web/010797/EAIGG_AnnualReport_1_17.pdf}{kpmginfo.com} + \item Can That Emoji Reveal a Remote Workers' Emotional State? -- Social Science Space. \href{https://www.socialsciencespace.com/2022/03/can-that-emoji-reveal-a-remote-workers-emotional-state/}{socialsciencespace.com} + \item Transforming Retail \& Consumer Brands: Generative AI Cases and Potential -- Tenz.ai. \href{https://www.tenz.ai/wp-content/uploads/2023/09/Tenzai-Transforming-with-Generative-AI-Retail-Consumer-Brands-1.pdf}{tenz.ai} + \item The AI Music Bubble Is Bursting in 2026: Hype, Deals \& What Survives for Real Creators -- YouTube. \href{https://www.youtube.com/watch?v=mjbp_nODAWA}{youtube.com} + \item AI Musicians vs.\ Machines: AI Disruption in the Music Industry -- OCC Strategy. \href{https://www.occstrategy.com/en/article/ai-musicians-vs-machines-ai-disruption-in-the-music-industry/}{occstrategy.com} + \item New Study Reveals 87\% of Producers Already Use AI Tools in Their Creative Process. \href{https://aristake.com/ai-tools-musicians-study/}{aristake.com} + \item A real issue: video game developers are being accused of using AI -- even when they aren't -- The Guardian. \href{https://www.theguardian.com/games/2025/jun/26/video-game-developers-using-ai-even-when-they-arent-stamina-zero}{theguardian.com} + \item Many Game Devs Reject AI in Gaming -- TechPowerUp. \href{https://www.techpowerup.com/345122/many-game-devs-reject-ai-in-gaming}{techpowerup.com} + \item Game Publisher Bans Working With Devs That Use Any AI -- Techdirt. \href{https://www.techdirt.com/2026/01/16/game-publisher-bans-working-with-devs-that-use-any-ai-rather-than-banning-bad-uses-of-ai/}{techdirt.com} + \item Valve dev counters calls to scrap Steam AI disclosures -- Reddit. \href{https://www.reddit.com/r/pcgaming/comments/1p8vi3f/valve_dev_counters_calls_to_scrap_steam_ai/}{reddit.com} + \item Hollywood Is Lying to Everyone About How Much AI They're Using -- Futurism. \href{https://futurism.com/artificial-intelligence/hollywood-lying-about-ai-usage}{futurism.com} + \item Artificial Intelligence Resources -- SAG-AFTRA. \href{https://www.sagaftra.org/contracts-industry-resources/contracts/2023-tvtheatrical-contracts/artificial-intelligence-resources}{sagaftra.org} + \item Artificial Intelligence -- WGA. \href{https://www.wga.org/contracts/know-your-rights/artificial-intelligence}{wga.org} + \item Regulating Artificial Intelligence -- SAG-AFTRA. \href{https://www.sagaftra.org/sites/default/files/sa_documents/AI\%20TVTH.pdf}{sagaftra.org} + \item How the 2023 SAG-AFTRA and WGA Contracts Address Generative AI -- Perkins Coie. \href{https://perkinscoie.com/insights/blog/generative-ai-movies-and-tv-how-2023-sag-aftra-and-wga-contracts-address-generative}{perkinscoie.com} + \item Animation Jobs \& AI: How the Industry's Future Is Changing -- Cartoon Brew. \href{https://www.cartoonbrew.com/tech/animation-jobs-in-the-age-of-ai-revelations-from-luminate-intelligences-2025-special-report-253718.html}{cartoonbrew.com} + \item New Report from Luminate Predicts Animation Jobs Most Likely to Be Impacted by AI. \href{https://www.animationmagazine.net/2025/09/new-report-from-luminate-predicts-animation-jobs-most-likely-to-be-impacted-by-ai/}{animationmagazine.net} + \item Trump's new order against AI regulation hits California especially hard -- CalMatters. \href{https://calmatters.org/economy/technology/2025/12/california-ai-regulation-targeted-in-trump-order/}{calmatters.org} + \item Why outsourcing and AI means the US animation sector is facing hefty challenges in 2025. \href{https://www.screendaily.com/features/why-outsourcing-and-ai-means-the-us-animation-sector-is-facing-hefty-challenges-in-2025/5199989.article}{screendaily.com} + \item AI Usage Statistics 2025: The Complete Market \& Adoption Report -- Elfsight. \href{https://elfsight.com/blog/ai-usage-statistics-2025/}{elfsight.com} + \item Media industry outlook: Five AI trends shaping the future of media and broadcasting -- CGI. \href{https://www.cgi.com/en/article/communications-media/five-ai-media-and-broadcasting-trends}{cgi.com} + \item Review/Preview Trends Report 24-25 -- NPO. \href{https://media.prod.cc.bijnpo.nl/Wayfinder_2025_Trend_Report_4e16709fd9.pdf}{bijnpo.nl} + \item The biggest AI art controversies of 2024 -- Creative Bloq. \href{https://www.creativebloq.com/ai/ai-art/the-biggest-ai-art-controversies-of-2024}{creativebloq.com} + \item ``That's AI'': Dealing with negative public perceptions of AI -- IPA. \href{https://the-ipa.shorthandstories.com/ipai-forum/ai-trends/thats-ai-dealing-with-negative-public-perceptions-of-ai/index.html}{the-ipa.shorthandstories.com} + \item Helping creative agencies thrive with AI -- IDHL. \href{https://www.idhlagency.com/insights/the-next-12-months-will-show-which-creative-agencies-can-thrive-with-ai}{idhlagency.com} + \item AI and work in the creative industries: digital continuity or discontinuity? -- Taylor \& Francis. \href{https://www.tandfonline.com/doi/full/10.1080/17510694.2024.2421135}{tandfonline.com} + \item Labor market impacts of AI: A new measure and early evidence -- Anthropic. \href{https://www.anthropic.com/research/labor-market-impacts}{anthropic.com} + \item When We Get Komooted -- BIKEPACKING.com. \href{https://bikepacking.com/plog/when-we-get-komooted/}{bikepacking.com} + \item Artists face steep income decline due to AI, UNESCO finds -- UN News. \href{https://news.un.org/en/story/2026/02/1166989}{news.un.org} + \item How Will AI Affect the US Labor Market? -- Goldman Sachs. \href{https://www.goldmansachs.com/insights/articles/how-will-ai-affect-the-us-labor-market}{goldmansachs.com} + \item Tracking the Impact of AI on the Labor Market -- The Budget Lab at Yale. \href{https://budgetlab.yale.edu/research/tracking-impact-ai-labor-market}{budgetlab.yale.edu} + \item When AI-Generated Art Enters the Market, Consumers Win -- and Artists Lose -- Stanford GSB. \href{https://www.gsb.stanford.edu/insights/when-ai-generated-art-enters-market-consumers-win-artists-lose}{gsb.stanford.edu} + \item Building Your Company's AI Governance Framework to Reduce Risk -- Bloomberg Law. \href{https://pro.bloomberglaw.com/insights/artificial-intelligence/building-your-companys-ai-governance-framework-to-reduce-risk/}{pro.bloomberglaw.com} + \item AI Governance: Frameworks, Principles, and Practices -- Domo. \href{https://www.domo.com/glossary/ai-governance}{domo.com} + \item AI Governance Frameworks Explained: How to Manage AI Responsibly at Scale -- Rubrik. \href{https://www.rubrik.com/insights/ai-governance-frameworks-explained}{rubrik.com} + \item What Is Shadow AI and How Do You Detect It? -- LoginRadius. \href{https://www.loginradius.com/blog/engineering/what-is-shadow-ai-and-how-do-you-detect-it}{loginradius.com} + \item The Rise of Shadow AI: Auditing Unauthorized AI Tools in the Enterprise -- ISACA. \href{https://www.isaca.org/resources/news-and-trends/industry-news/2025/the-rise-of-shadow-ai-auditing-unauthorized-ai-tools-in-the-enterprise}{isaca.org} + \item A Practical AI Governance Framework for Enterprises -- Databricks. \href{https://www.databricks.com/blog/practical-ai-governance-framework-enterprises}{databricks.com} + \item We won't delegate our creativity -- our AI manifesto -- Blue Zoo Animation Studio. \href{https://www.blue-zoo.co.uk/blog/our-ai-manifesto/}{blue-zoo.co.uk} + \item Equity calls for stronger AI protections for creative workers. \href{https://www.equity.org.uk/news/2025/equity-calls-for-stronger-ai-protections-for-creative-workers}{equity.org.uk} + \item Discover Mapfre's vision on artificial intelligence and our new Manifesto. \href{https://www.mapfre.com/en/insights/innovation/mapfres-artificial-intelligence-manifesto/}{mapfre.com} + \item How To Detect and Prevent Shadow AI -- FairNow. \href{https://fairnow.ai/detect-and-prevent-shadow-ai/}{fairnow.ai} + \item Guidelines -- AI -- University of Florida. \href{https://ai.ufl.edu/guidelines/}{ai.ufl.edu} + \item Human-centered AI through employee participation -- PMC. \href{https://pmc.ncbi.nlm.nih.gov/articles/PMC10941644/}{pmc.ncbi.nlm.nih.gov} + \item IBM Study: Shadow AI Use Surges as Canadian Workers Outpace Employers in AI Adoption. \href{https://canada.newsroom.ibm.com/2025-09-03-IBM-R-Study-Shadow-AI-Use-Surges-as-Canadian-Workers-Outpace-Employers-in-AI-Adoption}{canada.newsroom.ibm.com} +\end{enumerate} diff --git a/latex/appendices/a5_deep_dive_adoption_dynamics.tex b/latex/appendices/a5_deep_dive_adoption_dynamics.tex new file mode 100644 index 0000000..5eaeafb --- /dev/null +++ b/latex/appendices/a5_deep_dive_adoption_dynamics.tex @@ -0,0 +1,309 @@ +\chapter{Dynamics of Generative AI Adoption in the Creative Industries}\label{app:a5} + +\emph{Companion piece to Chapter~13: Coordination Collapse and Chapter~9: AI in Everything, Everywhere, All at Once.} + +This deep dive is the long-form quantitative companion to the ``consumption gap'' argument in Chapter~13 and the platform-layer analysis in Chapter~9. Where those chapters argue, in the book's voice, that public sentiment around AI in the creative industries is sharply at odds with actual adoption telemetry -- and that the gap is itself the macroeconomic story of this period -- this appendix presents the underlying numbers: the Adobe Firefly adoption curve (22~billion assets by April~2025, 45\% Creative Cloud penetration, 70\% weekly active use, 11\% of Adobe's new ARR), the screenwriter pre- and post-strike usage data, the VFX-pipeline AI integration metrics, the LLM market structure (ChatGPT's 800--900M WAUs, Gemini's 155\% YoY growth), the GDC game-developer sentiment-vs-usage divergence, the Quantic Foundry consumer sentiment data, and the Stanford AI Index global-acceptance findings. + +Together with Appendix~D: The Shadow AI Paradox, it constitutes the evidentiary base for the central claim of the second half of the book: that the creative industries are adopting AI at a faster rate than they are admitting publicly, and that the structure of that adoption -- concentrated, hierarchical, frictioned by labour anxiety, but operationally pervasive -- is the actual market environment any working creative or studio is now operating in. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{Introduction} + +The rapid integration of generative artificial intelligence (GenAI) into the global economy represents a paradigm shift comparable in magnitude to the advent of the printing press or the industrial revolution. Within the creative industries -- encompassing visual arts, film and television production, video game development, music, and marketing -- this technological leap has triggered profound structural changes and equally profound ideological conflicts. Since the mainstream popularisation of large language models (LLMs) and diffusion models in late 2022, the discourse surrounding artificial intelligence in creative fields has been characterised by intense polarisation. A highly visible, deeply critical faction warns of mass technological unemployment, the degradation of human creativity, and the unchecked proliferation of algorithmic copyright infringement. + +However, an exhaustive analysis of enterprise data, labour market statistics, software utilisation metrics, and anonymous industry surveys reveals a starkly different underlying reality. The creative sector is not merely experimenting with artificial intelligence; it has already systematically embedded these tools into the foundational workflows of modern production. + +The prevailing public narrative -- which frequently pits ``human authenticity'' against ``machine automation'' -- is heavily distorted by media sensationalism, algorithmic amplification of outrage, and a pervasive professional stigma that forces widespread AI utilisation underground. This comprehensive report evaluates the true state of artificial intelligence adoption across the creative economy. By examining usage statistics across major platforms (such as Adobe Firefly, Suno, OpenAI, and Google Gemini), labour market impacts, shifting consumer sentiments, and the psychological mechanisms driving ``AI shaming,'' this analysis deconstructs the reductive ``AI versus human'' binary to reveal the nuanced reality of a rapidly hybridising creative ecosystem. + +The data overwhelmingly suggests that while a vocal minority of creators fiercely opposes the technology, a silent majority of professionals and consumers are pragmatically embracing it, forever altering the definition of modern creative labour. + +\section*{The Ubiquity of AI in Visual and Digital Arts} + +To accurately assess the impact of generative artificial intelligence, one must separate performative public sentiment from private, operational utilisation. The data indicates that AI is no longer a peripheral novelty but a central engine of digital content creation, accelerating at a pace that eclipses previous technological transitions. + +The most compelling evidence of normalised adoption in the visual arts comes from industry-standard software providers. Adobe, whose Creative Cloud suite is the ubiquitous infrastructure for global design professionals, provides a clear lens into enterprise and individual adoption rates. + +Since its beta launch in March~2023, Adobe Firefly -- a family of creative generative AI models -- has experienced exponential, unprecedented growth. The trajectory of Firefly's asset generation demonstrates a technology that has crossed the threshold from experimental usage to daily operational reliance. By April~2025, Firefly had generated over 22~billion assets worldwide, establishing itself as one of the most rapidly adopted generative AI platforms in the history of the creative industry. + +\begin{center} +\begin{tabular}{p{3.2cm} p{3.2cm} p{6cm}} +\toprule +\textbf{Milestone Date} & \textbf{Cumulative Assets Generated} & \textbf{Key Events} \\ +\midrule +September 2023 & 1 Billion & Initial Beta phase and early adopter exploration \\ +March 2024 & 6.5 Billion & General availability and initial Photoshop integration \\ +September 2024 & 12 Billion & Expanded multi-app integration across the ecosystem \\ +November 2024 & 16 Billion & Introduction of Firefly Video Model at Adobe MAX \\ +April 2025 & 22 Billion & Maturation of enterprise adoption and mobile expansion \\ +June 2025 & 24+ Billion & Continued acceleration and 30\% QoQ traffic growth \\ +\bottomrule +\end{tabular} +\end{center} + +By March~2024, approximately 45\% of all Creative Cloud subscribers had engaged with Firefly, with 70\% of active users utilising the tool on a weekly basis. User engagement averages 2.8~sessions per week, with an average session time of 26~minutes, indicating deep integration into sustained workflows rather than fleeting experimentation. The demographic breakdown of these users reveals broad penetration: 38\% are aged 25--34, 51\% are male, 46\% are female, and 14\% identify as LGBTQ+. Furthermore, interest among Generation Z creatives grew by 32\% between 2023 and 2024, signalling that the incoming cohort of professionals views AI as a native toolkit. + +The financial implications underscore the immense economic value placed on these tools. Firefly contributed 11\% of all Creative Cloud new annual recurring revenue in 2024, pushing Adobe to a record annual revenue of \$21.51~billion. Adobe's AI-first annual recurring revenue more than tripled year-over-year in the first quarter of fiscal year 2026, marking generative AI as Photoshop's fastest-growing revenue catalyst since the transition to a subscription model. + +Crucially, this adoption is not driven by hobbyists alone. Marketing agencies lead industry adoption at 63\%, followed by e-commerce brands at 58\% and UX/UI designers at 48\%. Furthermore, 72\% of Fortune~500 design teams have formally integrated Firefly into their corporate workflows. In the broader ecosystem, independent surveys report that 83\% of professionals now utilise generative AI in their work. Over 25\% of new Adobe Stock content submissions in 2024 involved Firefly-generated elements, fundamentally altering the stock photography and illustration market. The data definitively proves that visual artists, commercial designers, and corporate agencies are not broadly rejecting artificial intelligence; they are utilising it at a staggering scale to achieve productivity gains and bypass menial conceptualisation phases. + +\section*{The Cinematographic Shift: Film, VFX, and Generative Video} + +The film and television industry presents a complex landscape where highly publicised labour disputes have operated in parallel with aggressive technological integration. In 2023, the Writers Guild of America (WGA) and the Screen Actors Guild (SAG-AFTRA) executed historic strikes, with the regulation of artificial intelligence serving as a core point of contention. The public optics suggested an industry violently rejecting automation. + +\subsection*{Screenwriting and the Post-Strike AI Boom} + +However, the resolution of these strikes and the establishment of regulatory guardrails paradoxically accelerated AI adoption. Prior to the strikes in 2023, approximately 34\% of screenwriters utilised AI tools covertly. Following the implementation of WGA guidelines -- which formally legitimised the use of AI for formatting, structural outlining, and brainstorming -- adoption exploded to 68\% by 2024. As one industry professional noted, the official guild authorisation alleviated the guilt and stigma associated with the technology, transforming it from an illicit shortcut into an accepted collaborative necessity. Predictive AI platforms like Largo.ai are also being increasingly utilised by studios to analyse screenplays and forecast commercial box office viability, indicating that algorithms are influencing greenlight decisions as well as the writing process itself. + +\subsection*{Visual Effects (VFX) Automation} + +In post-production and visual effects, artificial intelligence has seamlessly integrated into the pipeline to execute computationally expensive and highly tedious tasks. The United States AI in VFX market, valued at \$1.46~billion in 2025, is projected to reach \$8.50~billion by 2035, growing at a compound annual growth rate (CAGR) of 19.24\%, with some estimates projecting even steeper global growth curves up to 36.1\%. + +\begin{center} +\begin{tabular}{p{4cm} p{9.5cm}} +\toprule +\textbf{VFX Task / Application} & \textbf{Adoption Rate \& Performance Improvement} \\ +\midrule +Automated Compositing & 62\% of Hollywood studios adopted; achieved 35\% reduction in post-production timelines \\ +Denoising Algorithms & 71\% of mid-sized firms adopted; improved render quality by 28\% on average \\ +Matte Painting Generation & 55\% of VFX artists use AI; reduced initial setup time from 4~hours to 1.2~hours per shot \\ +De-aging Processes & Reduced manual hours from 200~hours to 50~hours per actor (utilised in major theatrical releases) \\ +Particle Simulation & 68\% adoption among top VFX houses reported at SIGGRAPH \\ +\bottomrule +\end{tabular} +\end{center} + +Major vendors such as Autodesk, Foundry, and SideFX are actively building generative pipelines into their core software offerings, indicating that machine learning is no longer a separate, novelty workflow but an inherent feature of the modern VFX ecosystem. + +\subsection*{The Generative Video Race: Sora vs.\ Veo~3.1} + +The emergence of advanced generative video models has fundamentally altered pre-visualisation and cinematic conceptualisation. While OpenAI's Sora~2 garnered immense public attention for its photorealistic single-shot generation, the professional filmmaking sector has increasingly gravitated toward Google's Veo~3.1. + +Released in late 2025 by Google DeepMind, Veo~3.1 utilises a latent diffusion transformer architecture that compresses video data into a lower-dimensional space, learning by adding and removing Gaussian noise. Unlike older models that suffer from temporal amnesia, transformers process all parts of the input simultaneously, ensuring strict temporal consistency. + +For professional directors and cinematographers, Veo~3.1 acts less as a random clip generator and more as a controllable co-director. While Sora~2 excels at raw physics simulation in isolated clips, Veo~3.1 is built for the commercial production pipeline, enabling superior narrative control and scene coherence. Professionals use advanced prompting to dictate specific camera composition (e.g., ``smooth tracking shot,'' ``shallow depth of field''), precise lighting terminology (``dramatic chiaroscuro,'' ``Rembrandt lighting''), and direct integration of ambient sound and dialogue. This allows directors to visualise scene pacing, camera angles, and emotional resonance long before physical sets are constructed, drastically lowering pre-production costs. + +\section*{General Purpose LLMs: OpenAI, Anthropic Claude, and Google Gemini} + +The broader landscape of creative professional AI utilisation is dominated by the foundational models provided by OpenAI, Google, and Anthropic. The scale of adoption is historically unprecedented. As of 2025, OpenAI is valued at approximately \$300~billion, with annual recurring revenues projected to surpass \$12.7~billion. Between April and June~2025, the OpenAI website received an average of 663.6~million monthly visits, while ChatGPT traffic alone surged to nearly 5.4~billion monthly visits. + +Despite the proliferation of alternative models, the consumer AI assistant market exhibits a ``winner take most'' dynamic. ChatGPT maintains staggering dominance, boasting an estimated 800~million to 900~million weekly active users (WAUs) across platforms. For most of the year, fewer than 10\% of ChatGPT users even visited a competitor, and only 9\% of consumers pay for more than one subscription across ChatGPT, Gemini, Claude, and Cursor. ChatGPT's daily active user to monthly active user (DAU/MAU) ratio of 36\% nearly doubles that of Google Gemini (21\%), reflecting deep integration into daily professional habits. + +However, the competitive landscape is tightening. Anthropic's Claude~3 Opus has gained significant traction among creative writers and programmers, outperforming older GPT models in generating human-like dialogue, maintaining context over large token windows, and demonstrating advanced reasoning capabilities. Concurrently, Google Gemini is experiencing explosive growth, expanding desktop users by 155\% year-over-year compared to ChatGPT's 23\%. Much of Gemini's recent acceleration is driven by native multimodal capabilities, such as advanced video and audio processing, which are becoming indispensable for multimedia creators. + +\section*{The Video Game Industry: High Utilisation Amidst Cratering Sentiment} + +Perhaps no creative sector exhibits a wider chasm between operational adoption and public sentiment than the video game industry. Developers are caught between the intense financial pressures of a contracting labour market and a highly vocal consumer base that violently rejects the perceived ``automation of art''. + +Data from the Game Developers Conference (GDC) ``State of the Game Industry'' surveys spanning 2024 to 2026 illustrates a fascinating paradox: personal utilisation of generative AI has steadily increased, even as industry sentiment regarding the technology has utterly collapsed. + +\begin{center} +\begin{tabular}{p{1.8cm} p{3cm} p{3cm} p{3cm} p{3cm}} +\toprule +\textbf{Year} & \textbf{Personal Usage of GenAI} & \textbf{Positive Sentiment} & \textbf{Mixed Sentiment} & \textbf{Negative Sentiment} \\ +\midrule +2024 & 31\% & 21\% & 57\% & 18\% \\ +2025 & 36\% & 13\% & 51\% & 30\% \\ +2026 & 36\% & 7\% & 30\% & 52\% \\ +\bottomrule +\end{tabular} +\end{center} + +This cratering of sentiment -- from 18\% negative in 2024 to 52\% negative by 2026 -- must be contextualised within the broader macroeconomic environment of the gaming sector. In 2024, one-third of developers reported direct impact from industry layoffs, and 56\% expressed anxiety regarding future redundancies. A staggering 84\% of developers indicated they were somewhat or very concerned about the ethics of using generative AI. Consequently, the hostility toward generative AI in gaming is inextricably linked to labour anxieties; AI is viewed not merely as a tool, but as a corporate instrument for workforce reduction. + +Yet, the pragmatic reality of game development forces continued utilisation. The 36\% of developers actively using AI apply it primarily to productivity and administrative tasks: 81\% for research and brainstorming, 47\% for code assistance, 47\% for daily scheduling, and 35\% for rapid prototyping. Usage varies significantly by role and studio size. Upper management (47\%) and business/finance departments (51\%) report the highest utilisation, seeing the tools as efficiency drivers, whereas narrative designers, visual artists, and quality assurance testers view the impact as overwhelmingly negative. + +Consumer sentiment in gaming mirrors this complexity. General player attitudes toward generative AI in games worsened significantly over recent years, particularly regarding the automation of creative elements. A Quantic Foundry survey revealed that gamers are 77\% to 83\% negative toward AI-generated quests and dialogue. However, quantitative analysis reveals a more apathetic reality regarding purchasing behaviour: the majority of gamers (60\%) remain entirely neutral regarding the use of AI in a game's development, provided the final product is of high quality. Players demonstrate comparative openness to AI when applied to non-artistic backend features, such as dynamic difficulty adjustment. The hostility is specifically reserved for the automation of roles traditionally perceived as requiring a human soul, such as narrative design and visual artistry. + +\section*{The Perception Gap: The Vocal Minority vs.\ The Silent Majority} + +A central question surrounding the generative AI transition is whether the fierce ``anti-AI'' backlash represents a broad societal consensus or the disproportionate amplification of a loud minority. Empirical evidence overwhelmingly supports the latter. The digital discourse surrounding artificial intelligence is heavily skewed by the mechanics of social media, where outrage and moral panic generate unparalleled engagement. + +Academic research into social media dynamics consistently demonstrates that political and cultural conversations are dominated by a highly active fraction of users. Studies of platforms like Twitter reveal a structural divide between a ``vocal minority,'' who tweet incessantly, utilise hashtags aggressively, link extensively to outside content, and drive ideological narratives, and a ``silent majority,'' who consume information passively and rarely participate in public outrage. + +This dynamic translates directly to the AI discourse. While a vocal contingent of artists, writers, and highly engaged internet users coordinate boycotts, sign open letters, and aggressively flood comment sections with anti-AI sentiment, the broader public is quietly adopting the technology for mundane, benign, and productive purposes. + +Broad consumer polling reveals a growing global acceptance of artificial intelligence. The Stanford AI Index Report 2025 indicates that global optimism is rising: across 26~surveyed nations, 55\% of individuals now view AI products as offering more benefits than drawbacks, up from 52\% in 2022. YouGov polling in 2024 further indicated that nearly a third of consumers across 17~markets felt more positively about generative AI tools compared to the previous year, while only 22\% held a more negative opinion. + +\subsection*{The Box Office Stress Test} + +The disconnect between online outrage and actual consumer behaviour is most evident in the commercial performance of media products targeted by anti-AI campaigns. In 2024, the independent horror film \emph{Late Night with the Devil} became the epicentre of a massive online controversy when it was revealed that the production utilised three brief frames of AI-generated interstitial bumper art. Review-bombing campaigns were organised on platforms like Letterboxd, and vocal online contingents demanded a total boycott of the film, framing it as a line in the sand for artistic integrity. + +Despite the digital fury, the boycott failed entirely to materialise in the real world. The film secured a highly successful opening weekend, taking in a symbolically appropriate \$666,666, breaking records for the distributor Shudder, and maintaining a 97\% critical approval rating on Rotten Tomatoes. As industry analysts noted, outside the echo chambers of social media, the general public simply did not care about the origin of a few transitional images; they paid for a compelling narrative, and the controversy had ``zero effect'' on the film's success. + +A similar dynamic unfolded with the high-budget A24 film \emph{Civil War}. The studio released a series of promotional posters generated by AI, which depicted post-apocalyptic scenes in American cities. The posters contained glaring geographical and architectural inaccuracies. While film Twitter and digital artists mocked the studio relentlessly, the controversy generated massive organic visibility for the film. The broader consumer base viewed the posters as intended -- as thematic, dystopian ``what if'' marketing materials -- and the film succeeded commercially regardless of the digital backlash. + +The empirical conclusion is clear: while the anti-AI crowd is highly organised, fiercely protective of traditional artistic labour, and capable of generating immense negative public relations, their outrage rarely translates into altered consumer spending habits. The silent majority prioritises end-product quality, utility, and entertainment value over the ethical purity of the production pipeline. + +\section*{The Stigma of Automation: ``AI Shaming'' and Covert Creativity} + +If the adoption of artificial intelligence is as widespread as the data suggests, why do so many creative professionals adamantly deny using it? The answer lies in the intense psychological and professional stigma attached to AI utilisation, a phenomenon actively hindering transparent integration. + +``AI shaming'' has emerged as a powerful sociological mechanism used to police professional boundaries. It refers to the practice of publicly criticising, devaluing, or dismissing individuals and organisations for utilising artificial intelligence to execute tasks. This shaming operates on the premise that AI-assisted work is inherently deceitful, devoid of human soul, and fundamentally lazy. + +For creative professionals, whose core identity and societal value are inextricably linked to the struggle and mastery of their craft, the accusation of using AI is an attack on their professional legitimacy. Psychological surveys indicate that the fear of being perceived as lazy or unmotivated ranks among the highest deterrents for acknowledging AI use in the workplace. Consequently, utilising AI raises internal doubts about a professional's own abilities, leading to a pervasive culture of secrecy. Artists and writers are highly vocal about AI models being trained on their work without consent or compensation, generating an atmosphere of intense hostility that bleeds into broader cultural sentiment. According to a 2023 survey, 74.3\% of artists consider scraping artwork from the internet for AI technology to be highly unethical. + +\subsection*{Hypocrisy in the Academy and the Studio} + +The stigma forces usage underground, resulting in absurd institutional hypocrisy. In higher education, professors routinely threaten to fail students for utilising ChatGPT, citing the degradation of critical thinking. Yet, widespread reports indicate that students go to extreme lengths to mask their genuine work from faulty AI detectors -- such as utilising extensions like Draftback to record hours of typing sessions, 1,300~revisions, and messy drafting just to ``prove'' human authorship to an algorithm that falsely flagged them. + +Conversely, faculty members openly admit to utilising ChatGPT to grade papers, summarise reading materials, or generate the very syllabi they use to ban AI. In one notable reported instance, an educator proudly utilised a paid ChatGPT subscription to detect student AI use, blissfully unaware of the LLM's inability to accurately detect its own output, while simultaneously praising an AI-generated essay as a prime example of ``actual human original thinking''. + +This same covert dynamic exists in professional creative agencies and art galleries. When gallery owners were polled in early 2026, 61\% claimed confidently that none of their represented artists used AI in their practice. Yet, when artists themselves are surveyed anonymously, the numbers shift. While many claim to reject generative image models, 13\% openly admit to using AI in the ``backend'' of the creative process. Furthermore, deep analysis of AI art platform usage suggests that more than 11\% of traditional artists have utilised text-to-image technology, with 53.6\% of those users claiming they made a ``fundamental input'' to the artwork through their complex prompting. They absorb the massive productivity gains while outwardly maintaining the facade of pure, unassisted human toil. + +\section*{Media Sensationalism and the Algorithmic Fog of War} + +The disconnect between the reality of AI integration and the public panic is largely manufactured and sustained by the global media ecosystem. Journalism, functioning within an attention economy driven by programmatic advertising, is financially incentivised to sensationalise the impacts of artificial intelligence. + +Researchers analysing media coverage of AI have noted a profound tendency toward apocalyptic framing. The narrative frequently leaps past practical, immediate concerns (such as data privacy, copyright frameworks, or minor workflow disruptions) directly to existential threats: the death of art, the extinction of humanity via ``killer robots,'' or catastrophic global unemployment. Computer scientists and AI researchers frequently express frustration with this coverage. Zachary Lipton, a machine learning professor, famously labelled media coverage of artificial intelligence as ``sensationalised crap'' that fuels an ``AI misinformation epidemic''. Researcher Nirit Weiss-Blatt has documented how the journalism of ``AI panic'' diverts attention away from real-world problems like algorithmic discrimination and environmental energy consumption. + +This sensationalism is a direct byproduct of algorithmic curation. Digital platforms optimise for engagement, and psychological research demonstrates that fear, outrage, and moral polarisation are the most potent drivers of user retention. This creates a dangerous feedback loop: algorithms amplify social drivers of conflict, pushing users into polarised echo chambers that complicate rational discourse. Consequently, nuanced reports on how AI reduces rendering times in VFX pipelines by 30\% are suppressed due to a lack of emotional resonance, while stories about ``AI slop'' conquering the internet receive massive amplification. + +\subsection*{Job Displacement Headlines vs.\ Economic Data} + +The most pervasive media narrative surrounding AI in the creative economy is the imminent threat of mass technological unemployment. Headlines consistently predict the decimation of copywriters, illustrators, and entry-level developers. However, hard macroeconomic data from the labour market contradicts the panic. + +In 2024, an analysis by the Information Technology and Innovation Foundation (ITIF) revealed that the employment gains from AI heavily outpaced the losses. The AI sector directly generated approximately 119,900~jobs in the United States -- driven by the hiring of machine learning engineers, data scientists, and the massive construction boom required for new data centres (which generate an additional 3.5~local jobs for every data centre job). In stark contrast, outplacement firms tracked approximately 12,700~jobs lost specifically to AI automation during the same period. This displacement represented a mere 0.1\% of all total layoffs in 2024. + +Furthermore, an exhaustive global analysis by PwC -- the 2025 Global AI Jobs Barometer, which analysed nearly a billion job advertisements -- concluded that AI is making workers more valuable, not less, even in sectors highly exposed to automation. The U.S.\ Bureau of Labor Statistics (BLS) and organisations like Gallup have found limited evidence that generative AI has systematically increased unemployment or broadly reduced earnings for artists. Research from Anthropic assessing labour market impacts through an ``observed exposure'' metric found no systematic increase in unemployment for highly exposed workers since late 2022, though there is suggestive evidence that hiring for younger, entry-level workers in exposed occupations has slowed. + +History supports this data. The introduction of digital photography, synthesisers, desktop publishing software, and CGI all generated identical panics regarding the ``death'' of their respective industries. In every historical instance, automation reallocated work, lowered the barrier to entry, increased total output, and ultimately expanded the overall size of the creative market. As noted by the Federal Reserve, the time savings generated by AI (equivalent to 1.6\% of all work hours) has contributed to aggregate labour productivity increasing by 2.16\% on an annualised basis. + +\section*{The Music Industry: Deconstructing the ``AI Bad, Human Good'' Narrative} + +To move past the current state of professional cognitive dissonance and media-induced panic, the creative industries must fundamentally reevaluate the rigid philosophical binary of ``AI versus Human.'' This binary is intellectually flawed, historically ignorant, and actively harmful to the evolution of modern art. + +\subsection*{The Democratisation of Audio and the Suno Revolution} + +The music industry is currently undergoing a structural realignment driven by generative audio platforms. Historically, music production required significant capital investment in studio time, hardware, and specialised audio engineering skills. Generative AI has obliterated these barriers to entry, triggering a surge in synthetic music creation. + +The platform Suno stands as the primary catalyst in this sector. By 2025, Suno reached an annualised revenue run rate of \$150~million to \$200~million, ultimately hitting \$300~million in annual recurring revenue by early 2026 alongside a \$2.5~billion valuation. The platform boasts over 2~million paid subscribers and over 100~million distinct users who actively generate full-fidelity tracks from text prompts. + +\begin{center} +\begin{tabular}{p{2cm} p{4cm} p{4cm} p{3cm}} +\toprule +\textbf{Year} & \textbf{Suno Annual Revenue / ARR} & \textbf{Funding Round} & \textbf{Valuation} \\ +\midrule +2023 & Pre-revenue / Early traction & Series A & \$600M \\ +2024 & \$50M -- \$100M (estimated) & Series B (\$125M) & \$1B \\ +2025 & \$150M -- \$200M & Series C (\$250M) & \$2.5B \\ +2026 (Early) & \$300M (Reported ARR) & N/A & >\$2.45B \\ +\bottomrule +\end{tabular} +\end{center} + +The macroeconomic projections for this sub-sector are substantial. Valued at roughly \$570~million in 2024, generative AI music is forecast to reach \$2.8~billion by 2030, capturing a projected 20\% of streaming platform revenue and 60\% of business-to-business (B2B) music libraries. This aggressive expansion has incited severe backlash from traditional industry gatekeepers. Major recording labels and artist coalitions have launched concerted legal campaigns, describing platforms like Suno and Udio as a ``brazen smash and grab'' and filing mass infringement lawsuits via the RIAA. + +\subsection*{The Blurring Lines of Authorship} + +Despite institutional resistance, the concept of a purely ``human'' track in modern music production is already a fallacy. Human vocals are routinely corrected via Auto-Tune algorithms; drum performances are quantised perfectly to a grid by digital audio workstations; synthesisers generate waveforms that no acoustic instrument could produce. Generative AI is not an alien invasion into a pristine human domain; it is merely the next layer of abstraction in a long history of technological mediation. + +When streaming platforms or independent marketplaces attempt to ban ``AI-generated music,'' they encounter impossible enforcement challenges because the lines between AI-generated, AI-assisted, and human-created content are hopelessly blurred. Attempts to police these boundaries -- such as Bandcamp's ill-fated AI ban -- often result in the accidental penalisation of highly innovative human artists who are using algorithms as legitimate instruments of avant-garde expression. + +The fundamental utility of AI in music is undeniable, even at the highest echelons of prestige. The 2023 release of ``Now and Then,'' marketed as the final song by The Beatles, relied explicitly on artificial intelligence to isolate and extract John Lennon's degraded 1970s vocal cassette recording from the piano track. The track achieved universal commercial success, reaching number one on the UK Singles Chart. Consumer surveys regarding the track revealed that 58\% of US respondents and 64\% of UK respondents were fully aware that AI was used in its production, indicating that consumer hostility toward AI is highly context-dependent. When utilised to restore, enhance, or facilitate human intent, the technology is enthusiastically embraced by the public. + +\section*{Redefining Creativity and Mitigating Psychological Risks} + +As Henry Ford famously said regarding innovation, ``If I had asked my customers what they wanted, they would have told me a faster horse.'' True innovation often precedes consumer demand, and AI represents a paradigm shift that consumers are still learning to articulate. + +However, the integration of AI does present genuine psychological risks. Researchers note that skills that are not exercised tend to degrade; following the principle of ``use it or lose it,'' over-reliance on generative AI could lead to a degradation of innate human creativity. Helson's theory of adaptation levels suggests a serious risk wherein society slowly adapts to mediocre, AI-generated content, failing to even notice the gradual loss of boundary-pushing human ingenuity. Generative AI is inherently replicative; it can recombine ideas, but it struggles to generate the paradigm-breaking solutions required to solve novel human problems. + +Therefore, the threat of generative AI is not that it will destroy human creativity, but that it exposes the mechanical, formulaic nature of much of what we previously called creativity. If an AI can perfectly replicate a copywriter's marketing email or a graphic designer's corporate logo, it suggests that the original human work lacked true creative novelty. In the algorithmic age, ``being average is the worst outcome.'' AI establishes a new baseline of competence, instantly accessible to anyone. Consequently, the premium on true human creativity -- characterised by emotional resonance, cultural nuance, strategic empathy, and paradigm-breaking ideation -- will skyrocket. + +\section*{Conclusion} + +The empirical evidence surrounding generative artificial intelligence in the creative industries points to an irreversible, systemic integration. The highly vocal anti-AI contingent, while fiercely protective of traditional copyright and influential in shaping social media discourse, represents a statistical minority that possesses virtually no leverage over macroeconomic trends, software utilisation rates, or mass consumer behaviour. Consumers consistently demonstrate that they value the quality, utility, and emotional impact of a final product over the ideological purity of its supply chain. + +Simultaneously, the widespread stigmatisation of AI usage has fostered a culture of professional hypocrisy. Millions of creatives across visual arts, screenwriting, game development, and marketing rely daily on tools like Adobe Firefly, Claude, Suno, and Veo~3.1 to remain competitive. Yet, they vehemently deny their use to protect their professional identities from algorithmic ``shaming.'' + +Media narratives predicting mass technological unemployment remain unsubstantiated by current labour statistics, heavily driven by an attention economy that rewards sensationalism over economic reality. Instead of destroying the creative economy, artificial intelligence is acting as a massive democratising force, lowering barriers to entry, augmenting existing workflows, and forcing a necessary redefinition of what constitutes valuable human creativity. + +Moving forward, the industry must discard the reductive ``AI bad, human good'' dichotomy. The future of the creative economy does not lie in building regulatory moats to protect outdated workflows from algorithms. It lies in proactive adaptation: embracing AI as a powerful collaborative instrument, establishing transparent frameworks for its use, and empowering the next generation of creators to synthesise human intuition with machine efficiency to unlock entirely new forms of cultural expression. + +\section*{Works Cited} + +\begin{enumerate} +\item The impact of GenAI on the creative industries | World Economic Forum. \href{https://www.weforum.org/stories/2025/01/the-impact-of-genai-on-the-creative-industries/}{weforum.org} +\item As AI rises, so does the need for more human creativity -- World Economic Forum. \href{https://www.weforum.org/stories/2026/01/ai-and-need-for-more-human-creativity/}{weforum.org} +\item Suno: We've hit 2M paid subscribers and \$300M annual revenue. \href{https://www.musicbusinessworldwide.com/suno-hits-2m-paid-subscribers-300m-annual-revenue/}{musicbusinessworldwide.com} +\item Public Sentiment Toward AI Is Negative: What It Means for Builders and Businesses. \href{https://www.mindstudio.ai/blog/public-sentiment-ai-negative-what-it-means-for-builders}{mindstudio.ai} +\item AI and the creative industries | Economics Observatory. \href{https://www.economicsobservatory.com/wp-content/uploads/2025/12/AI_Creative_Industries.pdf}{economicsobservatory.com} +\item Adobe Firefly Statistics And User Trends 2026 -- Companies History. \href{https://www.companieshistory.com/adobe-firefly-statistics/}{companieshistory.com} +\item AI in VFX Market Size, Trends \& Growth | Industry Report -- SNS Insider. \href{https://www.snsinsider.com/reports/ai-in-vfx-market-9394}{snsinsider.com} +\item How uncritical news coverage feeds the AI hype machine | Nieman Journalism Lab. \href{https://www.niemanlab.org/2024/05/how-uncritical-news-coverage-feeds-the-ai-hype-machine/}{niemanlab.org} +\item AI Shaming: The Silent Stigma among Academic Writers and Researchers -- PubMed. \href{https://pubmed.ncbi.nlm.nih.gov/38977530/}{pubmed.ncbi.nlm.nih.gov} +\item The Algorithmic Wars: Artificial Intelligence and the Shaping of Conflict Narratives on Social Media Platforms | ResearchGate. \href{https://www.researchgate.net/publication/397467078_The_Algorithmic_Wars_Artificial_Intelligence_and_the_Shaping_of_Conflict_Narratives_on_Social_Media_Platforms}{researchgate.net} +\item The problem with the ``AI versus human'' music narrative. \href{https://www.midiaresearch.com/blog/the-problem-with-the-ai-versus-human-music-narrative}{midiaresearch.com} +\item The State of Generative AI Adoption in 2025 | St.\ Louis Fed. \href{https://www.stlouisfed.org/on-the-economy/2025/nov/state-generative-ai-adoption-2025}{stlouisfed.org} +\item Adobe Photoshop Statistics 2026: Users, Revenue, Market Share -- SQ Magazine. \href{https://sqmagazine.co.uk/adobe-photoshop-statistics/}{sqmagazine.co.uk} +\item Adobe Firefly Statistics By Usage, Demographics And Facts (2025) -- ElectroIQ. \href{https://electroiq.com/stats/adobe-firefly-statistics/}{electroiq.com} +\item Understanding the impact of AI in the creative industries -- LSE. \href{https://www.lse.ac.uk/school-of-public-policy/research/lse-growth-lab/understanding-the-impact-of-ai-in-the-creative-industries}{lse.ac.uk} +\item Adobe's AI and the Creative Frontier Study Reveals Creators' Views on the Opportunities and Risks of Generative AI. \href{https://blog.adobe.com/en/publish/2024/10/08/adobes-ai-creative-frontier-study-reveals-creators-views-opportunities-risks-generative-ai}{blog.adobe.com} +\item Hollywood Is Wrestling With the Potential of AI Screenwriting Tools -- Business Insider. \href{https://www.businessinsider.com/ai-screenwriting-tools-hollywood-film-tv-studios-writers-2025-8}{businessinsider.com} +\item Why AI Screenplay Editors Are Taking Over Hollywood in 2025 -- Laper. \href{https://laper.ai/recent-highlights/2025-11-16-why-ai-screenplay-editors-are-taking-over}{laper.ai} +\item AI In VFX Market Growth Analysis -- Size and Forecast 2025--2029 | Technavio. \href{https://www.technavio.com/report/ai-in-vfx-market-industry-analysis}{technavio.com} +\item 160+ AI In The VFX Industry Statistics | 2026 Data Report -- Gitnux. \href{https://gitnux.org/ai-in-the-vfx-industry-statistics/}{gitnux.org} +\item Gen AI Resources -- Visual Effects Society. \href{https://vesglobal.org/gen-ai-resources-page/}{vesglobal.org} +\item What Is Google Veo~2? AI Video Generation from Google DeepMind -- MindStudio. \href{https://www.mindstudio.ai/blog/what-is-google-veo-2-video-generation}{mindstudio.ai} +\item The AI Video Showdown: Why Google's Veo~3.1 Edges Out Sora~2 for Pro Storytellers. \href{https://medium.com/@ubumart/the-ai-video-showdown-why-googles-veo-3-1-edges-out-sora-2-for-pro-storytellers-ca691295c7c3}{medium.com} +\item Veo~3.1: My Hands-On Deep Dive into Google's AI Video Revolution -- CrePal. \href{https://crepal.ai/blog/agent/veo-3-1-my-hands-on-deep-dive-into-googles-ai-video-revolution/}{crepal.ai} +\item Igniting Imagination in Film Production with VEO 2025. \href{https://filmcode.ai/veo/}{filmcode.ai} +\item 50+ OpenAI Statistics 2025 -- AIPRM. \href{https://www.aiprm.com/openai-statistics/}{aiprm.com} +\item State of Consumer AI 2025: Product Hits, Misses, and What's Next | Andreessen Horowitz. \href{https://a16z.com/state-of-consumer-ai-2025-product-hits-misses-and-whats-next/}{a16z.com} +\item Artificial Intelligence in Creative Industries: Advances Prior to 2025 -- arXiv. \href{https://arxiv.org/html/2501.02725v3}{arxiv.org} +\item GDC 2024 State of the Game Industry Report. \href{https://reg.gdconf.com/state-of-game-industry-2024}{reg.gdconf.com} +\item Gamers Are Overwhelmingly Negative About Gen AI in Video Games -- Quantic Foundry. \href{https://quanticfoundry.com/2025/12/18/gen-ai/}{quanticfoundry.com} +\item I analysed 3 years of GDC reports on generative AI in game dev -- Reddit. \href{https://www.reddit.com/r/gamedev/comments/1rpeeta/i_analyzed_3_years_of_gdc_reports_on_generative/}{reddit.com/r/gamedev} +\item 36 percent of game workers use generative AI, but half think it's bad for the industry. \href{https://www.gamedeveloper.com/business/one-third-of-game-workers-use-generative-ai-but-half-think-it-s-bad-for-the-industry}{gamedeveloper.com} +\item GDC 2024 State Of The Game Industry results: Devs discuss layoffs, generative AI, and more. \href{https://www.gamedeveloper.com/business/gdc-2024-state-of-the-game-industry-devs-discuss-layoffs-generative-ai-and-more}{gamedeveloper.com} +\item GDC's State of the Games Industry survey report says one in 10 respondents laid off in 2024. \href{https://www.eurogamer.net/gdcs-state-of-the-games-industry-survey-says-one-in-ten-respondents-laid-off-in-2024}{eurogamer.net} +\item New research: What do gamers really think about generative AI in games? \href{https://www.midiaresearch.com/blog/new-research-what-do-gamers-really-think-about-generative-ai-in-games}{midiaresearch.com} +\item Social Drivers and Algorithmic Mechanisms on Digital Media -- PMC. \href{https://pmc.ncbi.nlm.nih.gov/articles/PMC11373151/}{pmc.ncbi.nlm.nih.gov} +\item Vocal Minority versus Silent Majority: Discovering the Opinions of the Long Tail. \href{https://cs.wellesley.edu/~pmetaxas/Silent-minority-Vocal-majority.pdf}{cs.wellesley.edu} +\item Don't Panic (Yet): Assessing the Evidence and Discourse Around Generative AI and Elections. \href{https://knightcolumbia.org/content/dont-panic-yet-assessing-the-evidence-and-discourse-around-generative-ai-and-elections}{knightcolumbia.org} +\item Unveiling the silent majority: stance detection and characterisation of passive users on social media -- ResearchGate. \href{https://www.researchgate.net/publication/379582905_Unveiling_the_silent_majority_stance_detection_and_characterization_of_passive_users_on_social_media_using_collaborative_filtering_and_graph_convolutional_networks}{researchgate.net} +\item How prevalent is AI ``art'' hate really? Are we just a vocal minority? -- Reddit. \href{https://www.reddit.com/r/antiai/comments/1q67z44/how_prevalent_is_ai_art_hate_really_are_we_just_a/}{reddit.com/r/antiai} +\item Public Opinion | The 2025 AI Index Report | Stanford HAI. \href{https://hai.stanford.edu/ai-index/2025-ai-index-report/public-opinion}{hai.stanford.edu} +\item Has public perception of generative AI shifted? -- YouGov. \href{https://yougov.com/articles/50484-has-public-perception-of-generative-ai-shifted}{yougov.com} +\item Adobe Analytics: Traffic to U.S.\ Retail Websites from Generative AI Sources Jumps 1200 Percent. \href{https://blog.adobe.com/en/publish/2025/03/17/adobe-analytics-traffic-to-us-retail-websites-from-generative-ai-sources-jumps-1200-percent}{blog.adobe.com} +\item The Age of Generative AI: Over half of Americans have used generative AI -- Adobe Blog. \href{https://blog.adobe.com/en/publish/2024/04/22/age-generative-ai-over-half-americans-have-used-generative-ai-most-believe-will-help-them-be-more-creative}{blog.adobe.com} +\item Key findings about how Americans view artificial intelligence -- Pew Research Center. \href{https://www.pewresearch.org/short-reads/2026/03/12/key-findings-about-how-americans-view-artificial-intelligence/}{pewresearch.org} +\item AI Art Creeps into \emph{Late Night with the Devil} Striking BIG Controversy -- Reddit. \href{https://www.reddit.com/r/aiwars/comments/1bvg7mt/ai_art_creeps_its_way_into_late_night_with_the/}{reddit.com/r/aiwars} +\item \emph{LATE NIGHT WITH THE DEVIL} Directors Confirm Use of AI Images in Film -- Reddit. \href{https://www.reddit.com/r/blankies/comments/1bk7kng/late_night_with_the_devil_directors_confirm_use/}{reddit.com/r/blankies} +\item Late Night With The Devil takes \$666,666 at box office, despite boycotts | Dazed. \href{https://www.dazeddigital.com/film-tv/article/62251/1/indie-horror-late-night-with-the-devil-haunted-ai-art-panic-letterboxd-boycott}{dazeddigital.com} +\item \emph{Late Night with the Devil} slammed for controversial use of artificial intelligence. \href{https://roaringbengals.com/5011/features/late-night-with-the-devil-slammed-for-controversial-use-of-artificial-intelligence/}{roaringbengals.com} +\item Civil War (film) -- Wikipedia. \href{https://en.wikipedia.org/wiki/Civil_War_(film)}{en.wikipedia.org} +\item A24 made some laughably bad GenAI posters for \emph{Civil War} -- Reddit. \href{https://www.reddit.com/r/sanfrancisco/comments/1c7nzq0/a24_made_some_laughably_bad_genai_posters_for/}{reddit.com/r/sanfrancisco} +\item Is it me or is there not lots of marketing for \emph{Civil War}? -- Reddit. \href{https://www.reddit.com/r/boxoffice/comments/1c22nbp/is_it_me_or_is_there_not_lots_of_marketing_for/}{reddit.com/r/boxoffice} +\item Frazier testimony on building an AI-ready America -- Texas Law. \href{https://law.utexas.edu/faculty/uploads/publication_files/frazier-testimony-on-building-an-ai-ready-america.pdf}{law.utexas.edu} +\item Evidence of a social evaluation penalty for using AI | PNAS. \href{https://www.pnas.org/doi/10.1073/pnas.2426766122}{pnas.org} +\item Survey Reveals 9 out of 10 Artists Believe Current Copyright Laws are Outdated in the Age of Generative AI Technology. \href{https://bookanartist.co/blog/2023-artists-survey-on-ai-technology/}{bookanartist.co} +\item A top student made a disturbing confession -- Reddit/Teachers. \href{https://www.reddit.com/r/Teachers/comments/1rvm5c3/a_top_student_made_a_disturbing_confession/}{reddit.com/r/Teachers} +\item Drowning in AI generated essays -- Reddit/Professors. \href{https://www.reddit.com/r/Professors/comments/1osj8ux/drowning_in_ai_generated_essays/}{reddit.com/r/Professors} +\item I got accused of using AI on a paper I wrote myself and I'm losing my mind -- Reddit. \href{https://www.reddit.com/r/CollegeRant/comments/1ph02c7/i_got_accused_of_using_ai_on_a_paper_i_wrote/}{reddit.com/r/CollegeRant} +\item Student sent me ``real-time'' video of word doc in response to fail for AI use -- Reddit. \href{https://www.reddit.com/r/Professors/comments/1psqlzs/student_sent_me_realtime_video_of_word_doc_in/}{reddit.com/r/Professors} +\item How Artificial Intelligence Shapes How We Think, Act, and Connect | Psychology Today. \href{https://www.psychologytoday.com/us/blog/positively-media/202501/how-artificial-intelligence-shapes-how-we-think-act-and-connect}{psychologytoday.com} +\item The Artsy AI Survey 2026: What Galleries Really Think About AI in the Art World. \href{https://www.artsy.net/article/artsy-editorial-artsy-ai-survey-2026-galleries-ai-art}{artsy.net} +\item Over 90\% of artists view AI-generated pieces in a negative light -- Innovating with AI. \href{https://innovatingwithai.com/artists-view-of-ai-generated-pieces/}{innovatingwithai.com} +\item AI in Art Statistics 2024 -- AIPRM. \href{https://www.aiprm.com/ai-art-statistics/}{aiprm.com} +\item Is AI Good or Bad for Creativity: How Generative AI is Transforming Human Ideation. \href{https://www.captechu.edu/blog/how-generative-ai-is-transforming-creativity}{captechu.edu} +\item The Algorithmic Management of Polarisation and Violence on Social Media | Knight First Amendment Institute. \href{https://knightcolumbia.org/content/the-algorithmic-management-of-polarization-and-violence-on-social-media}{knightcolumbia.org} +\item Trolling, memes, and deepfakes: How AI is thickening the fog of war -- Nieman Lab. \href{https://www.niemanlab.org/2026/05/trolling-memes-and-deepfakes-how-ai-is-thickening-the-fog-of-war/}{niemanlab.org} +\item AI's Job Impact: Gains Outpace Losses | ITIF. \href{https://itif.org/publications/2025/12/18/ais-job-impact-gains-outpace-losses/}{itif.org} +\item AI Jobs Barometer -- PwC. \href{https://www.pwc.com/gx/en/services/ai/ai-jobs-barometer.html}{pwc.com} +\item Labour market impacts of AI: A new measure and early evidence -- Anthropic. \href{https://www.anthropic.com/research/labor-market-impacts}{anthropic.com} +\item How AI exposure is reshaping jobs in creative fields -- Fox Business. \href{https://www.foxbusiness.com/technology/how-ai-exposure-reshaping-jobs-creative-fields}{foxbusiness.com} +\item Incorporating AI impacts in BLS employment projections: occupational case studies. \href{https://www.bls.gov/opub/mlr/2025/article/incorporating-ai-impacts-in-bls-employment-projections.htm}{bls.gov} +\item Blog: AI -- MIDiA Research. \href{https://www.midiaresearch.com/blog/category/ai}{midiaresearch.com} +\item Is this the end of the recording studio? Inside Suno's 7-million-song-a-day AI revolution | MEXC News. \href{https://www.mexc.com/news/991797}{mexc.com} +\item Suno Revenue and Usage Statistics (2026) -- Business of Apps. \href{https://www.businessofapps.com/data/suno-statistics/}{businessofapps.com} +\item Suno Revenue 2025: \$200M ARR, \$2.5B Valuation -- GetLatka. \href{https://getlatka.com/companies/suno.com}{getlatka.com} +\item The Beatles new song ``Now and Then'' used AI to lift out John Lennon's voice -- Quartz. \href{https://qz.com/new-beatles-song-now-and-then-ai-john-lennon-1850981701}{qz.com} +\item Now and Then (Beatles song) -- Wikipedia. \href{https://en.wikipedia.org/wiki/Now_and_Then_(Beatles_song)}{en.wikipedia.org} +\item The Beatles `Now and Then': CintSnap reveals consumer sentiments of AI's impact on the music industry. \href{https://www.cint.com/blog/the-beatles-now-and-then-cintsnap-reveals-consumer-sentiments-of-ais-impact-on-the-music-industry/}{cint.com} +\item Why the Beatles' song Now and Then is the most important record of the past year | The Standard. \href{https://www.standard.co.uk/culture/music/the-beatles-now-and-then-let-it-be-b1124868.html}{standard.co.uk} +\item Blog: artificial intelligence -- MIDiA Research. \href{https://www.midiaresearch.com/blog/category/artificial-intelligence}{midiaresearch.com} +\item Do Not Worry That Generative AI May Compromise Human Creativity or Intelligence in the Future: It Already Has -- PMC. \href{https://pmc.ncbi.nlm.nih.gov/articles/PMC11278271/}{pmc.ncbi.nlm.nih.gov} +\item The paradox of creativity in generative AI: high performance, human-like bias, and limited differential evaluation -- PMC. \href{https://pmc.ncbi.nlm.nih.gov/articles/PMC12369561/}{pmc.ncbi.nlm.nih.gov} +\item AI vs.\ Human Creativity: Striking the Perfect Marketing Balance -- Advertising is Simple. \href{https://advertisingissimple.com/ai-vs-human-creativity-striking-the-perfect-marketing-balance/}{advertisingissimple.com} +\end{enumerate} diff --git a/latex/appendices/a6_deep_dive_ai_stigma.tex b/latex/appendices/a6_deep_dive_ai_stigma.tex new file mode 100644 index 0000000..46d40c3 --- /dev/null +++ b/latex/appendices/a6_deep_dive_ai_stigma.tex @@ -0,0 +1,240 @@ +\chapter{AI, Stigma, Privilege and the Democratisation of Creative Expression}\label{app:a6} + +\emph{Companion piece to Chapter~6: The 88\%, Chapter~13: Coordination Collapse, and Chapter~15: Choosing the Future.} + +This deep dive sits underneath one of the harder arguments in the book -- that the structural opposition to AI in some quarters of the creative industries is not only an artistic or ethical position but also, in significant measure, the \emph{defensive response of an entrenched class} whose access to creative production has historically depended on financial, geographic and institutional barriers that AI tooling threatens to dissolve. + +The book does not lead with this framing because the framing is uncomfortable and easy to weaponise. The 88\% who turned up to the UK consultation, the unions defending performer likeness, the studios refusing AI integration on craft grounds -- these are not, in the main, expressions of class privilege; they are legitimate articulations of working-creative interests that the book takes seriously throughout. But they sit \emph{alongside}, and sometimes overlap with, a different cultural pattern: the resistance of a relatively narrow demographic of established creative workers to a technology that is, simultaneously, opening creative production to working-class, Global South, neurodivergent and historically excluded participants who could not previously afford the on-ramp. + +This appendix lays out the sociological and economic evidence for the democratisation argument -- the UK class-ceiling data, the Sutton Trust analyses of creative-industry composition, the historical precedents of artistic-elite resistance to new media, and the projections for AI's role as an equaliser. It is the evidentiary base for the \emph{Access} principle in Chapter~14 and for the regional-opening sections of Chapter~13. It should be read in the spirit the book itself adopts: both things are true at once, and a creative economy that takes both seriously is the one most likely to produce a humane outcome. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{Introduction} + +The discourse surrounding the integration of generative artificial intelligence within the global creative industries -- spanning film, television, video games, music, and adjacent cultural sectors -- has reached a fever pitch of moral panic, industrial resistance, and highly publicised labour disputes. Across public forums, guild negotiations, and prominent media narratives, artificial intelligence is frequently characterised as an existential threat to authentic human creativity, a mechanism for unchecked corporate plagiarism, and a harbinger of cultural decay. Critics argue that the automation of artistic processes fundamentally strips the ``soul'' from cultural production, rendering human ingenuity obsolete in the face of algorithmic efficiency. + +However, a rigorous sociological, economic, and historical analysis of this backlash reveals a significantly different underlying reality. The intense stigmatisation of generative artificial intelligence by the established creative class is less a defence of artistic purity than a concerted, defensive effort to preserve an entrenched socioeconomic hierarchy. + +For decades, the creative industries have functioned not as the open meritocracies they claim to be, but as highly exclusive class systems. These sectors are heavily insulated by systemic barriers to entry, geographic clustering in expensive metropolitan hubs, steep financial prerequisites for early-career survival, and rampant, normalised nepotism. The ability to create, distribute, and monetise high-level cultural products has been artificially restricted to a narrow demographic possessing immense financial backing, inherited social capital, or the patronage of corporate gatekeepers. Generative artificial intelligence severely disrupts this paradigm by collapsing the cost of production and radically lowering the technical barriers to artistic execution. By placing the capability to produce high-fidelity audio, cinematic video, and complex interactive code into the hands of the global public, artificial intelligence fundamentally threatens the artificial scarcity upon which the creative elite's social status, professional prestige, and economic power are built. + +This comprehensive report provides an exhaustive examination of the intersection between artificial intelligence, social class, and the creative industries. By deconstructing the structural inequalities of the current creative economy, analysing the historical precedents of technological resistance among artistic elites, and projecting the economic implications of artificial intelligence as an equalising force, this analysis demonstrates that the democratisation of artistic expression is not the death of creativity. Rather, it represents the dismantling of an exclusionary gatekeeping mechanism that has historically marginalised diverse, working-class, and global voices from the cultural vanguard. + +\section*{The Illusion of Meritocracy: A Statistical Deconstruction of the Creative Class System} + +The prevailing mythology of the creative industries -- heavily perpetuated by the industry's own narratives, award ceremonies, and media representations -- is that of an egalitarian meritocracy. It is a landscape theoretically defined by the romantic ideal that raw talent, relentless dedication, and unique vision will invariably rise to the top, regardless of an individual's origins. Yet, deep empirical data paints a starkly different picture of an ecosystem dominated by systemic privilege, where professional success is frequently dictated by one's proximity to wealth, elite education, and institutional power. + +To understand why the democratisation of creative tools via artificial intelligence is viewed as such a massive threat, one must first understand the exclusionary architecture of the industry it is disrupting. Statistical evidence from both the United Kingdom and the United States demonstrates that the creative workforce is overwhelmingly skewed toward the upper and middle classes, creating a rigid ``class ceiling'' that filters out socioeconomically disadvantaged talent before they can even enter the pipeline. + +In the United Kingdom, for example, young people from working-class backgrounds are four times less likely to secure employment in the creative industries than their middle-class and upper-class peers. Furthermore, this disparity is not a relic of the past but an accelerating trend. Analysis of demographic shifts indicates that access to creative professions has worsened considerably over the last few decades. While 16.4\% of creative workers born in the 1950s and 1960s hailed from working-class backgrounds, that figure plummeted to a mere 7.9\% for those born in the 1990s. In high-visibility sectors such as film, television, video, radio, and photography, individuals identifying as working-class make up just 8.4\% of the total workforce. The broader arts, culture, and heritage sectors exhibit similar stratification, with 60\% of workers having grown up in households where the main income earner was in a managerial or professional role, compared to just 43\% in the wider national workforce. + +The dominance of elite educational backgrounds further highlights this profound social stratification. Top-selling musicians are six times more likely to have attended elite private fee-paying schools compared to the general public, sitting at 43\% versus the national average of 7\%. The classical music profession is identified as particularly elitist; 58\% of classical musicians attended an arts specialist university or conservatoire, and an astonishing 25\% attended the Royal Academy of Music for their undergraduate studies alone. At prestigious conservatoires, the student body is overwhelmingly affluent, with up to 60\% of students studying creative subjects at institutions like the Royal Academy of Music having been privately educated. Furthermore, at elite universities such as Oxford, Cambridge, King's College London, and the University of Bath, over half of all the students enrolled in creative courses originate from designated ``upper-middle-class'' households. By contrast, working-class representation in creative degrees at these elite institutions languishes in the single digits, sitting at just 4\% at Cambridge and Bath, and 5\% at Oxford. These statistics expose an educational pipeline that systematically filters out individuals who lack the financial means to access elite training, effectively reserving the highest echelons of cultural production for the already privileged. + +The video game industry, despite its origins as a disruptive subculture, mirrors this socioeconomic disparity. According to a UK Interactive Entertainment (UKIE) census, only 13\% of professionals in the UK games sector originate from working-class backgrounds. If the industry were truly reflective of broader society, this figure would be closer to 37\%. Industry advocates note that if socioeconomic status were classified as a protected characteristic, it would represent the single biggest diversity issue within the gaming sector, requiring an influx of over 6,000~working-class professionals just to achieve demographic parity. + +\section*{The Architecture of Exclusion: Financial Barriers and Inherited Social Capital} + +The mechanisms that maintain this ``class ceiling'' are primarily economic and cultural, operating through systemic financial barriers, the normalisation of unpaid labour, and the pervasive influence of inherited social capital. Entry into the creative industries frequently requires navigating a labyrinth of low-paid or entirely unpaid internships, temporary contract work, and precarious freelance gigs. + +A comprehensive survey of creative industry professionals revealed that 67\% acknowledge that unpaid internships are still a common practice within their specific fields, and an equal percentage agree that this arrangement disproportionately benefits the upper and upper-middle classes. Participating in unpaid or severely underpaid labour necessitates a substantial financial safety net, typically provided by generational parental wealth. Because the vast majority of creative hubs and studios are heavily clustered in exceptionally expensive metropolitan areas -- such as London, Los Angeles, and New York -- individuals from lower socioeconomic backgrounds simply cannot afford the cost of living required to work for free in exchange for ``exposure'' or ``experience''. + +This stark economic reality ensures that the entry-level talent pool is overwhelmingly populated by those who possess the material resources to endure years of financial precarity. Working-class talent is effectively starved out of the industry before they can establish a foothold, forced to seek stable, salaried employment in other sectors to survive. Furthermore, the financial barrier is compounded by cultural barriers. Access to creative spaces is still largely predicated on informal networks and personal contacts, creating a deeply unlevel playing field where success hinges on navigating middle-class workplace norms. Preconceptions about class are often shaped by soft social identifiers -- such as an individual's accent, their vocabulary, where they went to school, and their social circles -- which further alienates working-class talent who may feel compelled to alter their identities to be taken seriously by affluent senior executives. + +Beyond sheer financial resources, success in the creative industries relies heavily on the blatant exercise of nepotism. The phenomenon of ``nepo babies'' -- the offspring of established industry figures who secure prominent, highly visible roles with relative ease -- illustrates how access operates as an inherited asset rather than an earned privilege. Research shows that approximately 29\% of Americans work for a parent's employer at least once by age 30, a dynamic that yields significant wage premiums and early-career stability. In the hyper-competitive entertainment industry, this dynamic is amplified exponentially. + +In Hollywood and the global music industry, nepotism rarely manifests solely as crude, direct hiring; rather, it functions through unparalleled access to elite industry networks, talent agents, studio executives, and venture capital. Children of industry veterans grow up fully immersed in the specialised language, cultural norms, and social expectations of the elite. When it comes time to launch their careers, they bypass the years of cold-calling, endless auditioning, and financial struggle required of outsiders. This proximity creates an unspoken, highly resourced training ground and a permanent safety net where a failed project or a bad review does not result in the end of a career, as family ties will invariably open another door. + +Consequently, the stories that receive massive studio funding, the music that receives major label backing, and the digital art that is elevated to the cultural vanguard are overwhelmingly produced by a homogenous, privileged demographic. This dynamic narrows the cultural lens through which society views itself, restricting the diversity of narratives available to the public. It is precisely this entrenched, exclusionary architecture that makes the democratising potential of artificial intelligence so incredibly threatening to the current power brokers. When the tools of high-end production are made available to the masses, the artificial scarcity that protects the elite is irrevocably shattered. + +\section*{The Weaponisation of Authenticity: Unmasking the Anti-AI Backlash} + +It is strictly within this context of extreme exclusivity and socioeconomic stratification that the vitriolic, industry-wide backlash against generative artificial intelligence must be analysed. Across the creative sectors, guilds, and unions, criticism of artificial intelligence frequently centres on emotive themes of ``theft,'' ``plagiarism,'' the ``devaluation of human effort,'' and the impending ``loss of the human soul'' in art. However, a deeper, critical examination of these arguments suggests that these moral and philosophical objections often serve to mask a desperate defence of professional status, hierarchical privilege, and artificial scarcity. + +As generative artificial intelligence tools dramatically lower the learning curve required to produce high-fidelity audio, cinematic visuals, and complex written code, they directly threaten the gatekeepers who have long monopolised these capabilities. Historically, artists, musicians, and independent filmmakers have often branded themselves as anti-establishment, anti-gatekeeping, and anti-hierarchy, positioning themselves as rebels against corporate control. However, the rapid advent of artificial intelligence has triggered a profound rhetorical shift among established creatives, who now actively deploy the language of authenticity, exclusivity, and tradition to defend a rigid, exclusionary hierarchy. + +The pervasive argument that legitimate artistic expression is only valid if it is ``earned'' through years of formal technical training, expensive schooling, prolonged suffering, or sanctioned institutional pathways is inherently exclusionary. This philosophy posits that the right to participate in cultural creation must be heavily gatekept by a gauntlet of technical and financial hurdles. When an independent, unfunded creator can utilise a generative artificial intelligence model to circumvent these traditional hurdles and execute their vision, the resulting output is immediately dismissed by the established elite as ``slop,'' ``illegitimate,'' or ``soulless''. This elitism reveals that the true anxiety driving the backlash is not a genuine concern for the death of creativity itself, but the terrifying realisation that expressive capability is no longer a scarce, highly valuable commodity reserved exclusively for the privileged few. + +Furthermore, the most prominent and aggressively weaponised argument deployed by creative guilds and copyright maximalists is that artificial intelligence models are trained on copyrighted works without explicit consent, compensation, or credit, constituting a form of mass, mechanised theft. While there are entirely legitimate, legally sound concerns regarding the direct impersonation of living artists -- which should undoubtedly be regulated as a matter of identity protection, publicity rights, and fraud prevention -- the broader, blanket argument against machine learning collapses under historical and philosophical scrutiny. + +Human artists have always learned their craft by absorbing, analysing, reverse-engineering, and synthesising the copyrighted works of their predecessors. A young painter studies the brushstrokes of the masters; a burgeoning writer internalises the specific cadence, vocabulary, and thematic structures of their favourite authors; a musician learns to play by covering the back catalogue of their idols. To argue that algorithmic training is fundamentally illegitimate because it lacks explicit, prior permission is to argue that the fundamental act of learning, observation, and stylistic synthesis must be permissioned and monetised. Such a rigid standard would invalidate the foundational development of every living human artist, as style itself has never been considered proprietary property under traditional copyright frameworks. + +The hypocrisy of the anti-AI movement is further exposed when examining the corporate entities leading the charge. The institutions most vociferously championing ``artist rights'' against artificial intelligence -- such as major Hollywood studios, the Recording Industry Association of America (RIAA), and dominant publishing conglomerates -- have historically built their massive empires by systematically exploiting artists through opaque accounting practices, predatory 360-degree contracts, and the aggressive, relentless enclosure of the public domain. The sudden, highly publicised pivot by these corporate entities to defending the sanctity of human artistry is largely a strategic, self-serving manoeuvre designed to maintain their monopolistic control over distribution networks and content generation. These gatekeepers fear that if artificial intelligence democratises high-end production, independent artists will no longer need to surrender their intellectual property or endure exploitative contracts to secure the capital-intensive backing of major studios and record labels. + +\section*{Echoes of the Past: Historical Parallels of Technological Gatekeeping} + +To fully grasp the current panic surrounding artificial intelligence, it is critical to recognise that this is not an unprecedented cultural phenomenon. Rather, it is merely the latest iteration of a highly predictable historical cycle wherein established creative classes vehemently resist any new technology that threatens to democratise their medium, lower the barriers to entry, and dilute their exclusive status. Examining these historical parallels provides a vital lens through which to predict the inevitable trajectory and eventual integration of artificial intelligence in the creative sector. + +\subsection*{The Synthesiser Panic and the Threat to ``Real'' Musicianship} + +In the late 1960s and stretching well into the 1980s, the introduction of electronic synthesisers, drum machines, and digital sequencers triggered widespread, existential hysteria across the global music industry. Established, formally trained musicians and high-profile critics argued that these new electronic machines produced ``cold,'' ``inhuman,'' and ``artificial'' sounds that replaced genuine, hard-earned skill with the effortless push of a button or the selection of a preset. The panic was not driven by the audiences consuming the music, but by the legacy institutions judging the tools and fearing the obsolescence of their specific skill sets. + +In the United Kingdom, the powerful Musicians' Union went so far as to pass official motions attempting to ban the use of synthesisers, drum machines, and electronic backing devices in recording studios and live television performances. The union viewed these technologies as a direct, unacceptable threat to the employment of traditional orchestral session players and live instrumentalists, framing the synthesiser not as a new instrument, but as a malicious job-killing machine. Critics fiercely attacked musical pioneers like Miles Davis and Pete Townshend when they began incorporating electronic textures and sequencers into their compositions. Detractors claimed that the machines, rather than the musicians, were doing the actual creative work, thereby invalidating their authorship and diluting the purity of genres like jazz and rock. + +Yet, rather than destroying the art of music, the synthesiser radically democratised it. It allowed solo artists, marginalised creators, and individuals without access to expensive studio bands to compose and execute highly complex, multi-layered arrangements entirely on their own. This technological democratisation ultimately gave birth to entirely new, globally dominant genres -- ranging from hip-hop and synth-pop to techno, house, and electronic dance music -- that became the defining cultural soundtracks of the modern era. The tool that was derided as the death of human expression became the very foundation of its next evolution. + +\subsection*{The Resistance to Digital Cinematography and Home Recording} + +A strikingly similar resistance occurred in the film and television industry during the painful, protracted transition from traditional photochemical film to digital cinematography in the late 1990s and 2000s. Elite, established cinematographers, directors, and studios fiercely argued that digital cameras inherently lacked the ``soul,'' the dynamic latitude, the organic grain, and the specific texture of 35mm film. Early digital efforts were broadly dismissed by the Hollywood establishment as sterile, clinical, and aesthetically inferior to the ``true'' art of photochemical filmmaking. + +However, the advent of highly capable, relatively affordable digital cameras -- such as the RED ONE -- coupled with the rise of non-linear digital editing software (like Adobe Premiere and Final Cut) running on standard personal computers, completely shattered the astronomical financial barriers to high-level filmmaking. Digital technology eliminated the absolute necessity of paying exorbitant, prohibitive fees for physical film stock, specialised chemical lab processing, and massive, highly specialised camera crews. This technological shift empowered an entirely new generation of independent filmmakers, operating outside the nepotistic Hollywood system, to shoot, edit, and distribute feature-length projects on micro-budgets. + +Simultaneously, in the music industry, the rise of the Musical Instrument Digital Interface (MIDI) and affordable home digital multi-track recorders (such as the ADAT system) in the 1980s and 1990s allowed creators to bypass the traditional, highly gatekept ``million-dollar commercial recording studio''. Independent artists could now produce, mix, and master commercial-quality, radio-ready tracks in their own bedrooms. + +In every historical instance, technological shifts that lowered the barrier to entry were met with fierce, coordinated resistance from industry gatekeepers who breathlessly warned of an impending aesthetic and cultural collapse. Yet, in every instance, the resistance failed, and the technology ultimately resulted in a vast, unprecedented expansion of creative diversity, new artistic genres, and broader market participation from previously excluded demographics. + +Generative artificial intelligence is not an anomaly; it is the logical, albeit highly accelerated, continuation of this historical democratising trajectory. + +\section*{The Great Equaliser: Generative AI as the Catalyst for Democratisation} + +Generative artificial intelligence represents the ultimate, most profound disruption of the creative class system because it directly attacks and neutralises the primary barrier to entry across all media: the exorbitant cost of technical execution and production value. By transforming simple natural language prompts, rough sketches, or basic melodies into highly complex visual, auditory, and interactive outputs, artificial intelligence completely levels the playing field. It empowers creators who possess profound conceptual vision, storytelling ability, and taste, but who critically lack the vast financial capital required to hire specialised technical teams, rent elite equipment, or secure studio backing. + +\subsection*{Eradicating the Budget-to-Vision Gap in Film and Television} + +Historically, the art of cinema has been strictly gated by extreme economics. Executing complex establishing shots, rendering intricate computer-generated visual effects, or staging massive crowd scenes required hundreds of thousands, if not millions, of dollars in physical set construction, specialised equipment rentals, location permits, and highly unionised labour. Consequently, only stories deemed broadly, safely commercially viable by a highly concentrated, risk-averse, and predominantly white, male class of studio executives were ever greenlit and funded. + +Generative artificial intelligence tools allow independent filmmakers to bypass these financial chokepoints entirely. Creators can now procedurally generate photorealistic 3D environments, populate scenes with highly detailed digital extras, and produce complex, dynamic storyboards at an infinitesimal fraction of the traditional cost. Industry financial estimates suggest that actively utilising artificial intelligence across both pre-production and post-production workflows can seamlessly reduce the budget of a major \$200~million blockbuster film by 15\% to 20\% -- effectively shaving \$30 to \$40~million off the bottom line and cutting weeks off the production schedule. + +For the independent creator, the implications are revolutionary. The vast distance between imagination and execution is practically eliminated. An unfunded director operating out of a developing nation, or a working-class writer with a brilliant sci-fi concept, can now generate proof-of-concept trailers, complex visual effects, and high-fidelity scenes without needing to secure venture capital or navigate the nepotistic maze of Hollywood representation. This democratisation allows marginalised voices from outside the traditional geographic and social bubbles to bring their highly specific, diverse cultural narratives to the screen with a level of polish previously reserved for elite studio productions. + +\subsection*{Democratising Game Development and Music Production} + +The video game industry has seen the divide between highly funded ``AAA'' mega-studios and small independent developers widen drastically over the last decade, driven primarily by the astronomical labour costs associated with generating hyper-realistic 3D assets, vast open-world environments, and complex branching narratives. However, artificial intelligence-driven procedural content generation and advanced neural rendering technologies -- such as Nvidia's DLSS~5 -- are acting as a tremendous ``golden ticket'' for the indie developer community. + +Small, independent teams, or even solo developers, can now leverage generative artificial intelligence to procedurally generate expansive landscapes, populate virtual worlds with highly intelligent, adaptive non-player characters (NPCs), and achieve real-time, Hollywood-level photorealistic lighting without needing to employ a staff of hundreds of specialised artists and coders. This technological leverage allows independent creators to focus their limited resources on narrative depth, unique, soulful art styles, and highly innovative gameplay mechanics, rather than competing on sheer computational brute force. + +Similarly, in the global music industry, artificial intelligence-powered composition assistants, advanced vocal processing tools, and automated, algorithmic mastering software effectively eliminate the absolute need for expensive commercial studio time, hired session musicians, and high-end audio engineers. A working-class songwriter with a compelling lyric and a basic melody can utilise artificial intelligence to instantly generate complex backing instrumentation, test intricate chord progressions, and produce professional-grade, radio-ready mixes. + +This capability effectively bypasses the major record labels, who have historically acted as the ultimate gatekeepers by dictating radio play, funding recording sessions, and controlling algorithmic playlist placement on major Digital Service Providers (DSPs) like Spotify. This sudden, unpermissioned access represents a complete paradigm shift where the ultimate artistic output and commercial viability of a track is determined by the raw quality of the idea and the taste of the creator, rather than the depth of their financial pockets or their connections to label executives. + +\section*{The Economic Reconfiguration: Rebuilding the Creative Middle Class} + +A frequent, highly publicised critique from the anti-AI camp -- heavily promoted by creative guilds and labour unions -- is that the technology will inevitably destroy millions of jobs, replacing human workers with automated systems purely to maximise corporate profits and enrich tech billionaires. While it is an undeniable reality that artificial intelligence will cause significant, painful structural disruption and displace specific, highly commoditised technical roles (such as low-level copywriting, the creation of generic stock photography, basic translation, and background commercial music composition), macroeconomic analysis suggests a significantly more nuanced, optimistic long-term outcome. Instead of merely destroying labour, artificial intelligence possesses the unique potential to rebuild a currently hollowed-out creative middle class. + +\subsection*{Extending Worker Expertise and the ``Collaboration Paradox''} + +Eminent MIT economist David Autor posits that the unique opportunity presented by artificial intelligence to the labour market is not its capacity to entirely replace human labour, but rather its ability to ``extend the relevance, reach, and value of human expertise''. For decades, the information age and the rise of digital technologies have paradoxically concentrated wealth, cognitive authority, and decision-making power in the hands of a small cadre of elite experts, systematically hollowing out middle-skill, middle-class jobs. + +Generative artificial intelligence actively reverses this decades-long trend by functioning as a massive capability multiplier. Rigorous experimental studies across various professional sectors consistently demonstrate that artificial intelligence tools disproportionately benefit lower-skilled, less-experienced, or entry-level workers. By automating the mechanical execution of tasks, AI allows these workers to rapidly close the performance and productivity gap with elite, highly paid professionals. + +In the creative sector, this phenomenon manifests as the ``Collaboration Paradox,'' where access to artificial intelligence tools allows a single individual to comfortably match the output and quality of a multi-person team. A junior graphic designer, a solo game developer, or an unfunded independent filmmaker can utilise artificial intelligence as an advanced, tireless ``co-worker'' to perform complex coding, generate storyboards, or mix audio -- tasks that previously required hiring a highly paid, specialised expert. While this capability understandably threatens the premium wages and job security commanded by elite technical specialists, it vastly empowers the middle tier of creators. + +\subsection*{The ``Christmas Card Problem'' and Expansive Market Dynamics} + +Much of the intense fear surrounding AI-induced job loss relies on the fundamental assumption of a zero-sum economic market -- the belief that every single AI-generated image, line of code, or background song represents a stolen commission from a human artist. This perspective entirely ignores the economic reality of market expansion, beautifully conceptualised by analysts as the ``Christmas card problem''. + +The vast majority of AI-assisted creativity actually occurs well below the commercial threshold where professional, working artists operate. A small local business owner generating a logo for a pop-up shop, a high school teacher creating a custom illustration for a presentation, or an individual generating a personalised song for a family event would never have possessed the budget to hire a professional composer or a creative agency in the first place. For these users, the alternative to the AI-generated output was simply no output at all. + +Therefore, artificial intelligence drastically expands the total global volume of creative expression and media generation without necessarily cannibalising the high-end, bespoke art market, which will continue to value the specific human narrative and prestige associated with renowned artists. Where artificial intelligence does actively intersect with commercial markets and displace human labour, it primarily replaces commoditised, low-effort content -- such as generic royalty-free background tracks, basic templates, and standard stock images. By automating the mundane and the commoditised, AI forces the creative industry to re-evaluate where true human value lies. + +\section*{Predictive Trajectories: How the Democratisation Will Pan Out (2025--2030 and Beyond)} + +As the initial shock, moral panic, and legal posturing surrounding generative artificial intelligence gradually give way to practical, everyday integration, the power dynamics of the global creative industries will undergo a profound, irreversible realignment over the next decade. Based on current economic data, historical precedents of technological adoption, and the rapidly evolving capabilities of neural networks, several highly specific predictions can be made regarding how this democratisation will ultimately pan out for the creative class. + +\paragraph{1. The Splintering of Corporate Monopolies and the Rise of ``Micro-Studios.''} + +The traditional major Hollywood studios, global game publishers, and ``Big Three'' record labels derive their immense, gatekeeping power almost entirely from their unique ability to finance massive production budgets, absorb enormous financial risk, and control global distribution networks. As generative artificial intelligence drastically reduces the cost of high-end production and marketing, the financial leverage held by these corporate gatekeepers will severely diminish. + +While major studios will undoubtedly attempt to utilise artificial intelligence internally to slash their own overhead costs and inflate profit margins, they will simultaneously face an unprecedented wave of existential competition from highly agile, AI-empowered independent collectives. We will witness the explosive rise of the ``micro-studio'': hyper-efficient teams of two to five multi-disciplinary creators who leverage artificial intelligence to produce feature-length films, AAA-quality immersive games, and chart-topping musical albums entirely independently. By completely bypassing the traditional, bloated studio system and leveraging decentralised digital distribution, these micro-studios will retain total ownership of their intellectual property and revenue streams. + +\paragraph{2. The Evolution of Copyright: From Protecting Style to Protecting Identity.} + +The current landscape of aggressive litigation, where artists and major corporations are suing artificial intelligence companies over the use of training data, will inevitably give way to a new legal and cultural equilibrium. This new framework will prioritise the strict protection of human identity over the impossible monopolisation of artistic style. + +Courts, regulatory bodies, and the public will increasingly recognise that learning, analysing, and synthesising artistic influences are legally and philosophically permissible actions for both humans and machines. Attempting to copyright a ``vibe'' or a genre style will be deemed unenforceable. However, incredibly strict legal guardrails and technological detection systems will be implemented to prevent the direct, unauthorised impersonation of living artists. The historic Writers Guild of America (WGA) and SAG-AFTRA strikes of 2023 established the fundamental blueprint for this transition. Rather than attempting to ban the technology outright, the unions secured collective bargaining agreements that ensure artificial intelligence is used to augment workers rather than replace them without compensation. + +\paragraph{3. A Shift in the Definition of ``Author'' and ``Skill.''} + +The fundamental metrics by which society evaluates, appreciates, and compensates creative talent will permanently evolve. Just as the invention of the photograph freed painting from the burden of hyper-realistic documentation -- pushing the medium toward impressionism, cubism, and abstract expressionism -- the advent of generative artificial intelligence will shift the perceived value of human creativity away from the mere mechanics of technical execution. + +The successful artist of the future will function far less like a traditional craftsman and much more like a director, a curator, or a creative architect. They will be a ``full-stack'' professional who orchestrates a complex symphony of highly specialised artificial intelligence agents. Their true value will lie in their human taste, their editorial judgement, their lived experience, and their ability to constrain, refine, and select the most emotionally resonant outputs from a sea of algorithmic generation. The current stigma attached to ``prompt engineering'' or AI-assisted generation will rapidly fade as the technology becomes invisibly, seamlessly integrated into standard professional software suites, much like auto-tune in music, spell-check in literature, or CGI in modern filmmaking are universally accepted today. + +\paragraph{4. A Global Renaissance of Diverse and Marginalised Voices.} + +Ultimately, the most profound, lasting impact of generative artificial intelligence on the creative industries will be demographic and cultural. By aggressively circumventing the prohibitive financial requirements, the geographic limitations of major creative hubs, and the deeply entrenched nepotistic networks that have historically defined the creative class, artificial intelligence will unleash a massive, unprecedented renaissance of storytelling from previously excluded populations. + +Independent creators from working-class backgrounds, artists operating within the Global South, disabled creators who face physical barriers to traditional production environments, and neurodivergent storytellers will no longer need to seek permission, beg for venture funding, or alter their identities to secure validation from a homogenous class of elite gatekeepers. The democratisation of these powerful tools ensures that the cultural artefacts of the mid-to-late 21st century will accurately and vibrantly reflect the full, chaotic spectrum of human experience, rather than being strictly limited to the narrow, sanitised worldview of a privileged few. + +\section*{Conclusion} + +The aggressive, highly publicised stigmatisation of generative artificial intelligence by the established creative industries cannot be taken at face value as a righteous, purely philosophical crusade to save human art. When rigorously contextualised within the deep-seated nepotism, the astronomically steep financial barriers to entry, and the systemic, statistically proven class inequality that define the current global creative economy, the anti-AI movement is starkly exposed as a defensive, reactionary manoeuvre by an entrenched elite. By attempting to gatekeep expressive capability behind arbitrary technical hurdles, demanding massive financial investments for production, and weaponising outdated copyright maximalism, these legacy institutions and elite guilds are fighting desperately to preserve their social status, their professional prestige, and their highly lucrative economic monopolies. + +History consistently demonstrates that transformative technology inevitably dismantles artificial scarcity. Just as the introduction of synthesisers, digital multi-track recorders, and digital cinema cameras radically democratised the production of music and film in previous decades, generative artificial intelligence is currently tearing down the invisible walls of the modern creative class system. While this profound transition will undoubtedly cause intense short-term friction, displace specific technical roles, and require the development of entirely new legal frameworks for labour protection and identity rights, the ultimate macroeconomic and cultural trajectory is one of unprecedented global empowerment. + +As the historic barriers of prohibitive cost, elite specialised training, and nepotistic access fall away, the future of the creative industries will be radically reshaped. Success will be dictated not by the wealth of the creator's parents, the exclusivity of their university, or their geographic proximity to a studio lot, but by the raw depth, originality, and emotional resonance of their ideas. The democratisation of creativity via artificial intelligence is not the end of art; it is the destruction of the aristocratic gatekeeper, and the beginning of true cultural liberation. + +\section*{Works Cited} + +\begin{enumerate} +\item History, creative disruption, and GenAI | Deloitte Digital. \href{https://www.deloittedigital.com/us/en/insights/perspective/creative-disruption.html}{deloittedigital.com} +\item The elitism problem in the creative backlash against AI -- Matt Hopkins. \href{https://matthopkins.com/technology/the-elitism-problem-in-the-creative-backlash-against-ai/}{matthopkins.com} +\item Artificial Intelligence and Culture -- UNESCO. \href{https://www.unesco.org/sites/default/files/medias/fichiers/2025/09/CULTAI_Report\%20of\%20the\%20Independent\%20Expert\%20Group\%20on\%20Artificial\%20Intelligence\%20and\%20Culture\%20\%28final\%20online\%20version\%29\%201.pdf}{unesco.org} +\item Artificial Intelligence and the Creative Double Bind -- Harvard Law Review. \href{https://harvardlawreview.org/print/vol-138/artificial-intelligence-and-the-creative-double-bind/}{harvardlawreview.org} +\item The class ceiling in the creative industries report 2024. \href{https://creativeaccess.org.uk/app/uploads/2024/07/the-class-ceiling-in-the-creative-industries-report-2024.pdf}{creativeaccess.org.uk} +\item Beyond the screen: The power of nepotism within Hollywood -- Scot Scoop News. \href{https://scotscoop.com/beyond-the-screen-the-power-of-nepotism-within-hollywood/}{scotscoop.com} +\item A Class Act -- The Sutton Trust. \href{https://www.suttontrust.com/our-research/a-class-act/}{suttontrust.com} +\item Transforming Media: Generative AI's Role in Cutting Film and Video Production Costs. \href{https://tippett.org/transforming-media-generative-ais-role-in-cutting-film-and-video-production-costs}{tippett.org} +\item How does AI level the playing field for independent music creators? -- Sonarworks Blog. \href{https://www.sonarworks.com/blog/learn/how-does-ai-level-the-playing-field-for-independent-music-creators}{sonarworks.com} +\item Elitist Britain 2025: What It Means for the Creative, Cultural and Heritage Sector. \href{https://www.culturecommons.uk/news/elitist-britain-2025}{culturecommons.uk} +\item Research reveals stark class inequalities in access to the creative industries -- The Sutton Trust. \href{https://www.suttontrust.com/news-opinion/all-news-opinion/research-reveals-stark-class-inequalities-in-access-to-the-creative-industries/}{suttontrust.com} +\item Huge decline of working class people in the arts reflects fall in wider society -- The Guardian. \href{https://www.theguardian.com/culture/2022/dec/10/huge-decline-working-class-people-arts-reflects-society}{theguardian.com} +\item National Statistics on the Creative Industries. \href{https://pec.ac.uk/news_entries/national-statistics-on-the-creative-industries/}{pec.ac.uk} +\item 50 arguments against the use of AI in creative fields -- AOKIstudio. \href{https://aokistudio.com/50-arguments-against-the-use-of-ai-in-creative-fields.html}{aokistudio.com} +\item Improving the socioeconomic diversity of the games industry | Barclays Games and Creative. \href{https://games.creative.barclays/resource-hub/games/industry-insights/improving-the-socioeconomic-diversity-of-the-games-industry/}{games.creative.barclays} +\item US Game Development Salaries in 2025: What Our Latest Industry Report Reveals. \href{https://gdconf.com/article/us-game-development-salaries-in-2025-what-our-latest-industry-report-reveals/}{gdconf.com} +\item GDC State Of The Games Industry 2025 report -- InvestGame. \href{https://investgame.net/wp-content/uploads/2025/03/0794a269-d5c4-4994-9bcf-8c5730d0815e_2025_GDC_State_of_the_Game_Industry_report-1.pdf}{investgame.net} +\item Unpaid Internships \& Inequality: A Review of the Data and Recommendations for Research, Policy and Practice -- CCWT. \href{https://ccwt.wisc.edu/wp-content/uploads/2022/04/CCWT_Policy-Brief-2_Unpaid-Internships-and-Inequality-1.pdf}{ccwt.wisc.edu} +\item Did they earn it? Study looks at ``nepo babies'' debate | Folio -- University of Alberta. \href{https://www.ualberta.ca/en/folio/2025/02/did-they-earn-it-nepo-babies-debate.html}{ualberta.ca} +\item Is ``Nepotism'' Blocking Chances in the Film Industry? -- The Preuss Insider. \href{https://preussinsider.com/5777/entertainment/is-nepotism-blocking-chances-in-the-film-industry/}{preussinsider.com} +\item Economist tracks `nepo baby' effect on young Americans' earnings -- Harvard Gazette. \href{https://news.harvard.edu/gazette/story/2023/02/economist-tracks-nepo-baby-effect-on-young-americans-earnings/}{news.harvard.edu} +\item Current state of Game development and How does/will AI affect the field -- Reddit. \href{https://www.reddit.com/r/gamedev/comments/1ih8eia/current_state_of_game_development_and_how/}{reddit.com/r/gamedev} +\item Generative AI, the American worker, and the future of work | Brookings. \href{https://www.brookings.edu/articles/generative-ai-the-american-worker-and-the-future-of-work/}{brookings.edu} +\item Copyright and AI Policy Needs Precision, Not Panic | TechPolicy.Press. \href{https://www.techpolicy.press/copyright-and-ai-policy-needs-precision-not-panic/}{techpolicy.press} +\item AI's Unique Threat to Musicians -- Tech Policy @ Sanford -- Duke University. \href{https://techpolicy.sanford.duke.edu/blog/ais-unique-threat-to-musicians/}{techpolicy.sanford.duke.edu} +\item Old Laws, New Ghosts: Why Artists are losing the Battle for AI | diacritical -- Arts Journal. \href{https://www.artsjournal.com/diacritical/2026/01/old-laws-new-ghosts-why-the-creative-resistance-to-ai-is-failing.html}{artsjournal.com} +\item They said the same things about synthesizers -- Reddit/DefendingAIArt. \href{https://www.reddit.com/r/DefendingAIArt/comments/1qvynf9/they_said_the_same_things_about_synthesizers/}{reddit.com} +\item The Predictable Panic: How Artists Always React to New Technology | Whaleden. \href{https://medium.com/@whaledencom/the-predictable-panic-how-artists-always-react-to-new-technology-9482a4b92bc7}{medium.com} +\item 1981--1990 -- The Musicians' Union: A History (1893--2013). \href{https://www.muhistory.com/contact-us/1971-1980/}{muhistory.com} +\item ``The union passed a motion to ban the use of synths, drum machines and any electronic devices'' | MusicRadar. \href{https://www.musicradar.com/news/the-union-passed-a-motion-to-ban-the-use-of-synths-drum-machines-and-any-electronic-devices-the-day-the-loony-musicians-union-tried-to-kill-the-synthesizer-which-also-happened-to-be-bob-moogs-birthday}{musicradar.com} +\item The UK Musicians Union tried to ban synths 40 years ago today -- Mixdown Magazine. \href{https://mixdownmag.com.au/news/the-uk-musicians-union-tried-to-ban-synths-40-years-ago-today/}{mixdownmag.com.au} +\item The Evolution and Decline of the Traditional Recording Studio -- University of Liverpool. \href{https://livrepository.liverpool.ac.uk/3000867/1/200488719_Sept2015.pdf}{livrepository.liverpool.ac.uk} +\item Crafting Digital Cinema: Cinematographers in Contemporary Hollywood -- ProQuest. \href{https://search.proquest.com/openview/62784b90019d00feb44512b59e25efc6/1?pq-origsite=gscholar\&cbl=18750}{search.proquest.com} +\item What We Lose When Film Cameras Change to Digital Ones -- Nautilus. \href{https://nautil.us/what-we-lose-when-film-cameras-change-to-digital-ones-234963}{nautil.us} +\item The Impact of Technology on Cinematic Storytelling | Open Access Journals. \href{https://www.globalmediajournal.com/open-access/the-impact-of-technology-on-cinematic-storytelling.php?aid=94036}{globalmediajournal.com} +\item How technology has changed the film industry | Falmouth University. \href{https://www.falmouth.ac.uk/news/how-technology-has-changed-film-industry}{falmouth.ac.uk} +\item How the 2000s turned video and film production completely upside down -- Red Shark News. \href{https://www.redsharknews.com/production/item/5420-the-2000-s-turned-video-and-film-production-completely-upside-down}{redsharknews.com} +\item Theberge -- Musical\_Production\_Consumption.pdf -- SFU. \href{http://www.sfu.ca/sonic-studio-webdav/AudioMedia/Readings/Alphabetical/Theberge-Musical_Production_Consumption.pdf}{sfu.ca} +\item How has digitalisation changed the economics of the creative industries? -- Economics Observatory. \href{https://www.economicsobservatory.com/how-has-digitalisation-changed-the-economics-of-the-creative-industries}{economicsobservatory.com} +\item The Democratisation Paradox: What History Teaches Us About AI -- smcleod.net. \href{https://smcleod.net/2025/03/the-democratisation-paradox-what-history-teaches-us-about-ai/}{smcleod.net} +\item How reference based AI is democratising film production -- Coherent Market Insights. \href{https://www.coherentmarketinsights.com/blog/media-and-entertainment/how-reference-based-ai-is-democratizing-film-production-2899}{coherentmarketinsights.com} +\item AI and the Democratization of Art Creation: Revolutionising the Creative Landscape | Medium. \href{https://medium.com/higher-neurons/ai-and-the-democratization-of-art-creation-revolutionizing-the-creative-landscape-12c76a897561}{medium.com} +\item How AI could reinvent film and TV production -- McKinsey. \href{https://www.mckinsey.com/capabilities/tech-and-ai/our-insights/tech-forward/how-ai-could-reinvent-film-and-tv-production}{mckinsey.com} +\item Is the AI Push in AAA Gaming Giving Indie Developers A Golden Ticket? \href{https://waytoomany.games/2026/03/20/is-the-ai-push-in-aaa-gaming-giving-indie-developers-a-golden-ticket/}{waytoomany.games} +\item The Rise of AI in Game Development: A New Era for Indie Creators | Medium. \href{https://medium.com/@akinola.oluwaseyi22/the-rise-of-ai-in-game-development-a-new-era-for-indie-creators-35555881efbb}{medium.com} +\item How AI is Democratising Music Production -- SOUNDRAW Blog. \href{https://soundraw.io/blog/post/ai-is-democratizing-music}{soundraw.io} +\item What will the music industry look like in 2026? -- Identity Music. \href{https://identitymusic.com/blog/what-will-the-music-industry-look-like-in-2026}{identitymusic.com} +\item FUTURE UNSCRIPTED: The Impact of Generative Artificial Intelligence on Entertainment Industry Jobs | Animation Guild. \href{https://animationguild.org/wp-content/uploads/2024/01/Future-Unscripted-The-Impact-of-Generative-Artificial-Intelligence-on-Entertainment-Industry-Jobs-pages-1.pdf}{animationguild.org} +\item Applying AI to Rebuild Middle Class Jobs | ResearchGate. \href{https://www.researchgate.net/publication/378164927_Applying_AI_to_Rebuild_Middle_Class_Jobs}{researchgate.net} +\item The impact of generative artificial intelligence on socioeconomic inequalities and policy making -- PMC. \href{https://pmc.ncbi.nlm.nih.gov/articles/PMC11165650/}{pmc.ncbi.nlm.nih.gov} +\item Applying AI to Rebuild Middle Class Jobs -- MIT Stone Center. \href{https://shapingwork.mit.edu/research/applying-ai-to-rebuild-middle-class-jobs/}{shapingwork.mit.edu} +\item AI and the Future of Work: Opportunity or Threat? -- Federal Reserve Bank of St.\ Louis. \href{https://www.stlouisfed.org/publications/page-one-economics/2024/dec/ai-and-the-future-of-work-opportunity-or-threat?print=true}{stlouisfed.org} +\item Artificial intelligence is transforming middle-class jobs. Can it also help the poor? | Brookings. \href{https://www.brookings.edu/articles/ai-transforming-middle-class-jobs-can-it-help-the-poor/}{brookings.edu} +\item AI could automate up to 26\% of tasks in art, design, entertainment, and the media -- UOC. \href{https://www.uoc.edu/en/news/2025/ai-could-automate-creative-professions}{uoc.edu} +\item AI and work in the creative industries: digital continuity or discontinuity? -- Taylor \& Francis. \href{https://www.tandfonline.com/doi/full/10.1080/17510694.2024.2421135}{tandfonline.com} +\item Tomorrow comes today: Trends shaping the future of the Creative Industries -- PEC. \href{https://pec.ac.uk/wp-content/uploads/2023/12/PEC-Tomorrow-comes-today-Trends-shaping-the-future-of-the-Creative-Industries-August-2023.pdf}{pec.ac.uk} +\item AI Musicians vs.\ Machines: AI Disruption in the Music Industry | OC\&C Strategy Consultants. \href{https://www.occstrategy.com/en/article/ai-musicians-vs-machines-ai-disruption-in-the-music-industry/}{occstrategy.com} +\item How AI Benefits -- and Threatens -- the Entertainment Industry -- Morgan Stanley. \href{https://www.morganstanley.com/insights/articles/ai-in-media-entertainment-benefits-and-risks}{morganstanley.com} +\item Large studios will likely take their time adopting generative AI for content creation -- Deloitte. \href{https://www.deloitte.com/us/en/insights/industry/technology/technology-media-and-telecom-predictions/2025/tmt-predictions-hollywood-cautious-of-genai-adoption.html}{deloitte.com} +\item CEO Keynote: AI in the Music Industry -- Should You Fight It, Ignore It, or Embrace It? -- Sonarworks. \href{https://www.sonarworks.com/blog/research/ceo-keynote-ai-in-the-music-industry-2025}{sonarworks.com} +\item The Music Industry in 2026: Trends and Opportunities | Orphiq. \href{https://orphiq.com/resources/music-industry-2026-trends}{orphiq.com} +\item Between Inspiration and Loss of Control: Music in the Age of AI -- Ars Electronica. \href{https://ars.electronica.art/aeblog/en/2025/05/06/between-inspiration-and-loss-of-control/}{ars.electronica.art} +\item The AI Playbook: What Other Sectors Can Learn from the Creative Industry's Fight Against AI -- RAND. \href{https://www.rand.org/pubs/commentary/2024/10/the-ai-playbook-what-other-sectors-can-learn-from-the.html}{rand.org} +\item How AI Models Steal Creative Work -- and What to Do About It | Ed Newton-Rex | TED. \href{https://www.youtube.com/watch?v=U9d0p96N1iw}{youtube.com} +\item Protecting Human Creativity in AI-Generated Music with the Introduction of an AI-Royalty Fund | GRUR International. \href{https://academic.oup.com/grurint/article/73/12/1137/7832810}{academic.oup.com} +\item This is how AI is impacting -- and shaping -- the creative industries, according to experts at Davos -- The World Economic Forum. \href{https://www.weforum.org/stories/2024/02/ai-creative-industries-davos/}{weforum.org} +\item How AI Is Rewiring Filmmaking -- YouTube. \href{https://www.youtube.com/watch?v=M_YU2OzDPfY}{youtube.com} +\item Why AI Is A Game-Changer For Creatives, And Why The Creative Industries Must Fight For Their Rights -- YouTube. \href{https://www.youtube.com/watch?v=elQKQNewFZs}{youtube.com} +\item The Impact of Digitalisation on the Film Industry -- Raindance. \href{https://raindance.org/the-impact-of-digitalization-on-the-film-industry/}{raindance.org} +\item The Democratic Promise of Globalized Film and Television | Cato Institute. \href{https://www.cato.org/publications/trade-arts/culture}{cato.org} +\item Film sector on the frontlines: High-level discussion on AI in the audio-visual industry -- UNESCO. \href{https://www.unesco.org/creativity/en/articles/film-sector-frontlines-high-level-discussion-ai-audio-visual-industry}{unesco.org} +\item AI democratization bridges the gap between AI creators and users | Centific. \href{https://www.centific.com/blog/ai-democratization-bridges-the-gap-between-ai-creators-and-users}{centific.com} +\end{enumerate} diff --git a/latex/appendices/a7_deep_dive_ai_intent.tex b/latex/appendices/a7_deep_dive_ai_intent.tex new file mode 100644 index 0000000..3f7360c --- /dev/null +++ b/latex/appendices/a7_deep_dive_ai_intent.tex @@ -0,0 +1,420 @@ +\chapter{The Age of Intent: Artistic Mastery and the Inversion of Value}\label{app:a7} + +\emph{Companion piece to Chapter~11: The Orchestrator and Chapter~15: Choosing the Future.} + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +This deep dive is the philosophical and economic companion to the book's central claim about where creative value lives after the AI transition. Chapter~11 develops the \emph{orchestrator} role -- the practical operating model of a senior creative directing a team of agents -- and Chapter~14 lays out the four principles (agency, attribution, access, audience) for a humane creative economy. Both rest on a deeper proposition that this appendix makes explicit: when the technical labour of execution becomes a commodity, the intentional labour of \emph{deciding what to make and why} becomes the scarce, valuable good. + +The argument here draws on Duchamp's readymade, Arthur Danto's institutional theory of art, David Pye's distinction between the ``workmanship of certainty'' and the ``workmanship of risk,'' and Rick Rubin's framing of creativity as ``acts of noticing.'' It builds an empirical and philosophical case that the artist of 2030 is less a \emph{manual labourer} and more an \emph{Architect of Meaning} -- a curator, editor-in-chief, and director of intent whose value is precisely the human friction the machine cannot supply. + +This is, in the book's broader frame, the strongest available account of why AI is best understood as an \emph{assistive instrument that amplifies human creativity} rather than a replacement for it. It underpins the conviction set out at the top of Chapter~15 and the operational pattern described in Chapter~11. Read it as the philosophical spine of the second half of the book. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{Introduction: The Collapse of the Technical Barrier and the Onset of the Age of Intent} + +We stand at a precipice in the history of human expression, a moment of rupture as profound as the invention of the printing press or the camera. For millennia, the definition of the artist was inextricably bound to the means of production -- the ``how.'' The mastery of the brush, the years spent learning to light a scene, the physical dexterity required to sculpt marble, or the mathematical precision needed to code a symphony were the gatekeepers of creation. Friction was the defining characteristic of value; difficulty was the proxy for quality. The artist was, by necessity, a technician first and a visionary second, for no vision could be realised without the hard labour of execution. + +Today, however, we are witnessing the total collapse of this technical barrier. The advent of Generative Artificial Intelligence has democratised production to the point of triviality. The ``how'' is no longer a scarcity; it is a utility. When any individual with an internet connection can generate a photorealistic image, a coherent essay, or a symphonic progression with a single natural language prompt, the value of execution creates a surplus of content but a deficit of meaning. We are rapidly approaching a state of ``infinite media,'' where the ability to produce polished, high-fidelity work is available to everyone, everywhere, all at once. + +In this new world, the hierarchy of value inverts. As the labour of production approaches zero, the labour of intent -- the ``why'' and the ``what'' -- becomes the most valuable currency on earth. This report posits that we have entered the \textbf{Age of Intent}, a distinct epoch where the ``how'' has been solved, leaving the ``why'' as the sole domain of human mastery. The artist of the future reclaims their throne not as a labourer, but as a visionary -- an Architect of Meaning who navigates the ocean of algorithmic competence through supreme acts of curation, selection, and philosophical grounding. + +This document serves as an exhaustive analysis of this transition. It explores the technical mechanisms of the ``engine of probability'' that drives AI, the psychological crisis of the ``effort heuristic'' in consumer valuation, the economic inversion of creative labour markets, and the emerging methodologies of ``curatorial creation.'' Drawing on the lineage of Marcel Duchamp and the philosophy of ``workmanship of risk'' versus ``certainty,'' we will construct a factual argument for why the human spirit -- specifically the friction of human vulnerability -- remains the essential component in a system designed for statistical conformity. + +\section*{Part I: The Mechanics of Abundance -- Deconstructing the Engine of Probability} + +To understand why intent has become the new scarcity, one must first deeply understand the nature of the abundance generated by the machine. The ``content singularity'' -- a point where the volume of synthetic media outstrips human consumption capacity -- is driven by a specific technological architecture: the probabilistic prediction engine. + +\subsection*{1.1 The Illusion of Thought: From Tokens to Text} + +At its most fundamental level, a Large Language Model (LLM) or a diffusion model does not ``know,'' ``see,'' or ``feel'' in the human sense. It operates on tokens -- numerical representations of words, sub-words, or image patches. When an AI generates a sentence, it is calculating the statistical probability of the next token based on the context of preceding tokens. + +For example, consider the sentence, ``I heard a dog bark loudly at a\ldots'' The foundational unit of the LLM is the token. The model cannot process raw text directly; it operates on numbers. The sentence is segmented into tokens -- ``I,'' ``heard,'' ``a,'' ``dog,'' ``bark,'' ``loudly,'' ``at,'' ``a'' -- and assigned numerical IDs. The model then analyses the statistical distribution of its training data to determine that the token for ``cat'' has a significantly higher probability than the token for ``fridge.'' + +However, this is not a simple deterministic lookup. If it were, AI outputs would be repetitive and robotic. The ``creativity'' of the machine arises from the manipulation of probability through parameters like \emph{temperature}, \emph{top-k}, and \emph{top-p} sampling. + +\begin{itemize} + \item \textbf{Temperature:} Low temperature favours reliability, selecting the most probable next token. High temperature encourages diversity, allowing the model to select less probable tokens, introducing ``novelty'' or ``hallucination.'' + \item \textbf{Top-k and Top-p (Nucleus) Sampling:} These methods restrict the sampling pool to the most likely candidates, renormalising probabilities to ensure coherence while maintaining variety. +\end{itemize} + +This mechanism creates a ``central paradox'': complex, nuanced, and seemingly creative outputs emerge from a mechanism that is, at its core, a statistical prediction engine. The machine is an engine of probability; it predicts the next pixel or the next word based on the average of all human creation. It is the ultimate conformist. It can answer how to render a sunset, but it cannot answer \emph{why} that sunset should be rendered in a specific shade of melancholy to evoke a memory of loss. + +\subsection*{1.2 Inference vs.\ Prediction: The Simulation of Reasoning} + +While ``next-token prediction'' describes the mechanical operation, it fails to capture the user experience of ``inference.'' Modern generative AI performs complex logical analysis within context, adjusting its strategy based on global consistency. Unlike simple prediction, which might produce linear, one-directional outputs, modern models engage in a form of inference that mimics reasoning. + +When a user inputs a query like, ``It's a beautiful day, so we can go\ldots'', the model considers the condition ``good weather'' and combines it with common sense (``good weather is suitable for outdoor activities'') to deduce an appropriate next step, such as ``a picnic.'' This involves reasoning that considers sentence structure, context, and background knowledge, aligning more with human thinking patterns than simple statistical choice. + +Furthermore, these models handle ``global consistency'' in multi-step generation. When writing an essay, the model must ensure that the conclusion aligns with the introduction. This requires a capacity for global information integration that transcends local next-token prediction. It is this capacity that allows the machine to simulate the ``how'' of complex creative tasks -- structuring a symphony, plotting a novel, or composing a marketing strategy. + +However, it is crucial to distinguish this simulated reasoning from embodied cognition. The model infers based on the statistical weights of its training data, which encapsulate the logical structures of human language. It does not ``understand'' the picnic; it understands the statistical likelihood of the word ``picnic'' appearing in the context of ``beautiful day.'' It lacks the ``embodied cognition'' that gives rise to true artistic intent -- the sensation of the sun, the taste of the food, the memory of past picnics. + +\subsection*{1.3 The Paradox of Abundance: A Surplus of Content, A Deficit of Meaning} + +The democratisation of this inferential power has led to a ``paradox of abundance.'' We are witnessing an explosion of content production that is inversely correlated with engagement and distinctiveness. + +\subsubsection*{1.3.1 The Content Singularity} + +The statistics regarding content proliferation are staggering. By 2025, the freelance platform market is projected to reach \$7.65 billion, driven largely by the ease of digital production. Marketing teams using video content jumped from 63\% in 2020 to 87\% in 2025, with AI tools reducing production time by 75\%. Yet, despite this massive increase in output, engagement rates are plummeting. Social media interaction rates have fallen to below 3\% across most platforms, down from much higher engagement earlier in the decade. + +This phenomenon, termed the ``content singularity,'' describes an internet filled with more content than ever before, yet feeling less distinct. As production becomes effortless, the ability to differentiate becomes exponentially harder. The ``how'' has been solved for everyone, leading to a homogenisation of aesthetics. When everyone uses the same foundational models (e.g., GPT-4, Midjourney, Stable Diffusion), the outputs tend to converge on the ``statistical mean'' of the training data. A sea of ``authentic voices'' has produced the least authentic environment marketing has ever seen. + +\subsubsection*{1.3.2 Model Collapse and Cultural Homogenisation} + +A more insidious threat looms on the horizon: \textbf{Model Collapse}. As the web floods with AI-generated content, future models will increasingly be trained on synthetic data -- data generated by other AIs. Research from Oxford and Cambridge suggests this creates a degenerative feedback loop: each generation of models trained on increasingly synthetic data exhibits reduced diversity, amplified biases, and a narrowing of representational capabilities. + +When models train on their own outputs, they lose the ``tails'' of the distribution -- the rare, unique, and idiosyncratic elements of human expression that drive innovation. Instead, they converge toward the centre, creating a ``technological monoculture.'' This mirrors ``cultural homogenisation,'' where AI models, already biased toward Western perspectives, further filter out diverse expressions. The machine, left to its own devices, collapses into sameness. It requires the injection of human intent -- novelty, friction, and the ``workmanship of risk'' -- to maintain cultural and semantic vitality. + +\begin{center} +\begin{tabular}{p{3.5cm} p{5cm} p{5cm}} +\toprule +\textbf{Phenomenon} & \textbf{Description} & \textbf{Consequence for Art} \\ +\midrule +Democratisation of ``How'' & Technical skills (rendering, coding) become utilities accessible via prompts. & Surplus of high-fidelity content; technical perfection becomes baseline, not differentiator. \\ +\addlinespace +Statistical Conformity & Models predict the most probable next token/pixel based on averages. & Outputs tend toward the ``safe'' and generic; loss of ``edge'' or ``weirdness.'' \\ +\addlinespace +Model Collapse & AI models training on AI-generated data. & Degenerative loss of variance; cultural homogenisation; ``slop'' content. \\ +\addlinespace +Inference without Soul & Simulated reasoning without embodied experience. & Art that is technically proficient but emotionally hollow (``uncanny valley'' of meaning). \\ +\bottomrule +\end{tabular} +\end{center} + +\section*{Part II: The Psychology of Value -- The ``Effort Heuristic'' and the Crisis of Authenticity} + +\subsection*{2.1 The Commodity of Skill and the ``Effort Heuristic''} + +For centuries, society has operated on the ``effort heuristic'' -- the psychological shortcut where we judge the value and quality of an object based on the perceived effort required to create it. We marvelled at a photorealistic painting not just for its image, but for the years of mastery and hours of labour it represented. We respected the writer because we knew the agony of the blank page. + +\subsubsection*{2.1.1 The Collapse of the Effort Heuristic} + +AI has severed the link between quality and effort. A photorealistic image that once took 100 hours now takes 10 seconds. This unbundling of skill from creation has triggered a crisis in value perception. Research consistently shows that when consumers are aware an artwork is AI-generated, they perceive it as having less value, less emotional capacity, and lower quality, even if the visual output is identical to human work. + +Studies reveal a distinct ``implicit bias'' against AI creativity. In experiments where artworks were labelled ``Human'' or ``AI,'' participants consistently rated the human-labelled works higher in liking, beauty, profundity, and worth. Furthermore, gaze-tracking studies found that participants spent significantly more time looking at paintings they believed were human-made compared to those labelled as AI-made. This suggests that our appreciation of art is not solely aesthetic; it is empathetic. We are connecting with the \emph{maker}, not just the \emph{made}. When the ``how'' becomes instant, it ceases to be impressive. + +\subsection*{2.2 The ``Human-Made'' Premium} + +In the Age of Intent, ``Human-Made'' is evolving from a descriptive tag into a luxury label. Just as ``hand-made'' became a premium designator in the industrial age, ``human-generated'' is becoming the ultimate status signal in the algorithmic age. + +\subsubsection*{2.2.1 Felt Authenticity and Anti-AI Marketing} + +The backlash against AI in marketing and art is driven by a desire for ``felt authenticity.'' Consumers report a visceral reaction to AI content -- it feels ``hollow'' or ``weirdly empty,'' like a ``smile with no warmth behind it.'' This sentiment is backed by data: 82\% of consumers worry about AI's societal impact, and 76\% say it is extremely important to know if content is created by a real person. + +This has given rise to ``Anti-AI marketing,'' a strategy where brands explicitly reject AI to build trust. Examples include: + +\begin{itemize} + \item \textbf{Dove:} Committed to never using AI to represent real bodies. + \item \textbf{Lego:} Emphasising human creativity in their ``human-made'' campaigns. + \item \textbf{Polaroid:} Positioning their analogue cameras as the antidote to digital/AI perfection (``The Camera for an Analog Life''). +\end{itemize} + +Trust is the central currency here. Studies indicate that AI-generated reviews and content are perceived as less genuine, leading to significantly lower purchase intent. Authenticity mediates the relationship between content and value; without the ``human touch'' (perceived effort, emotional risk, biological vulnerability), the content slides off the brain. + +\subsection*{2.3 The Uncanny Valley of Meaning} + +We are familiar with the ``uncanny valley'' in robotics -- where a robot looks almost human but not quite, eliciting revulsion. AI art has created an ``uncanny valley of meaning.'' The machine can simulate the syntax of deep emotion (using words like ``melancholy,'' ``loss,'' ``hope''), but it lacks the semantics of experience. + +This deficit is where the artist reclaims their value. The machine can generate a symphony, but it cannot answer why a dissonance is necessary in the third movement to reflect a personal tragedy. It operates on ``certainty,'' whereas human art often thrives on the ``workmanship of risk.'' + +\subsubsection*{2.3.1 Workmanship of Risk vs.\ Certainty} + +Drawing on the theories of David Pye, we can distinguish between the ``workmanship of certainty'' (mass production, automation, AI) and the ``workmanship of risk'' (where the quality of the result is not predetermined and depends on judgement, dexterity, and care). + +\begin{itemize} + \item \textbf{Workmanship of Certainty:} AI generation is the ultimate form of this. The outcome is probabilistically predetermined by the model weights. It is fast, consistent, and scalable. + \item \textbf{Workmanship of Risk:} Human art involves the constant risk of failure. The brush might slip; the note might be flat. It is this vulnerability -- this proximity to failure -- that imbues the work with ``soul'' and ``authenticity.'' +\end{itemize} + +In the Age of Intent, the artist's role is to reintroduce risk. The artist must provide the friction, the contradiction, and the intent that makes art matter. Without a strong ``why,'' AI art is merely ``content'' -- technically proficient slop that lacks the friction of human vulnerability. + +\section*{Part III: The Artist as Architect -- Inverting the Hierarchy} + +\subsection*{3.1 The Inversion: Why $>$ How} + +As the ``how'' becomes a commodity, the hierarchy of artistic value inverts. The labour of production approaches zero, while the labour of intent -- the ``why'' and the ``what'' -- becomes the scarcity. + +\begin{itemize} + \item \textbf{Old Hierarchy:} Technical Skill (High Value) $>$ Conceptual Intent (Variable Value) + \item \textbf{New Hierarchy:} Conceptual Intent (High Value) $>$ Curation/Selection (High Value) $>$ Technical Skill (Commodity/Utility) +\end{itemize} + +The artist shifts from being a manual labourer (the hand) to an Editor-in-Chief (the mind). This is not a new concept in art history, but AI has universalised it. + +\subsection*{3.2 The Legacy of Duchamp: The Readymade in the AI Age} + +Marcel Duchamp's submission of a urinal (\emph{Fountain}, 1917) to an art exhibition was the proto-event of the AI age. Duchamp argued that the art was not in the crafting of the object, but in the act of choice. ``He CHOSE it,'' wrote a defender in \emph{The Blind Man}. ``He took an ordinary article of life, placed it so that its useful significance disappeared under the new title and point of view -- created a new thought for that object.'' + +Generative AI transforms every user into a Duchampian figure. The model produces ``readymades'' at scale -- infinite variations of images, texts, and sounds. The creative act is no longer the rendering, but the \emph{selection and the contextualisation}. + +\begin{itemize} + \item \textbf{Danto's Theory:} Philosopher Arthur Danto argued that what makes a Brillo box art is not its physical properties, but the ``theory of art'' and the context provided by the artist. Similarly, an AI image becomes art not because of its pixels, but because of the intent and theory the artist wraps around it. +\end{itemize} + +However, this does not mean art is ``easy.'' As Duchamp and the Conceptualists showed, when the object is trivial, the idea must be profound. If anyone can generate a ``sunset in the style of Van Gogh,'' the value lies not in the image, but in \emph{why} that image was chosen, where it is placed, and what conversation it provokes. The artist becomes a ``meta-creator,'' operating on the level of systems and concepts rather than pigments and pixels. + +\subsection*{3.3 The New Discipline: Curation as Creation} + +In a world of infinite generation, curation becomes the ultimate creative act. The artist must develop a ``Curatorial Framework'' to navigate the sea of noise generated by the machine. + +\subsubsection*{3.3.1 The Editor-in-Chief Model} + +The artist's role aligns with that of an Editor-in-Chief. The AI (the newsroom/staff writers) offers a thousand variations. The Artist (the Editor) must: + +\begin{enumerate} + \item \textbf{Reject:} Say ``no'' to the 99\% of distinct but meaningless generations. The ability to reject is the primary skill of the editor. + \item \textbf{Select:} Identify the 1\% that ``vibrates with truth'' or novelty. + \item \textbf{Refine:} Direct the machine to iterate on that specific grain of truth. + \item \textbf{Contextualise:} Place the work in a cultural framework that gives it meaning. +\end{enumerate} + +This requires a sophistication of taste that no algorithm can replicate. Taste is not just a preference; it is a form of knowledge -- a ``pattern recognition'' of cultural resonance. + +\subsubsection*{3.3.2 Rick Rubin and the Art of ``Noticing''} + +Music producer Rick Rubin's philosophy of creativity is particularly relevant here. Rubin argues that ``creativity is acts of noticing.'' The creator does not make the waves; they tune their antenna to receive them. In the AI context, the model is the ocean, constantly churning out possibilities. The artist is the ``noticer,'' the vessel with the refined filter. + +Rubin emphasises that taste is a practice -- a way of being. ``To live as an artist is a way of being in the world. A way of perceiving. A practice of paying attention.'' This ``embodied attention'' cannot be automated. An AI can scan a million images, but it cannot ``notice'' the emotional weight of a specific shade of blue in the context of human grief. It can only predict its statistical likelihood. Rubin advises creators to cultivate ``awareness'' and to approach creation with a ``beginner's mind,'' maintaining curiosity and avoiding judgement during the initial phases of idea collection. + +\begin{center} +\begin{tabular}{p{3.5cm} p{4.5cm} p{4.5cm}} +\toprule +\textbf{Attribute} & \textbf{Traditional Artist} & \textbf{AI-Era Artist (The Architect)} \\ +\midrule +Primary Skill & Physical dexterity / Technical mastery & Curatorial taste / Conceptual intent \\ +\addlinespace +Primary Action & Rendering / Construction & Selection / Direction / Contextualisation \\ +\addlinespace +Output & A finished object & A curated framework or experience \\ +\addlinespace +Value Source & Scarcity of skill (How) & Scarcity of vision (Why) \\ +\addlinespace +Constraint & Physical limitations of the medium & Limitations of taste and attention \\ +\bottomrule +\end{tabular} +\end{center} + +\section*{Part IV: The Artist's Toolset -- From Prompts to Orchestration} + +\subsection*{4.1 The Death of ``Prompt Engineering''} + +In the early days of Generative AI (2022--2024), ``prompt engineering'' was hailed as a critical technical skill. It was treated as a form of coding -- learning the ``incantations'' (e.g., ``masterpiece, 8k, trending on artstation'') to trick the model into compliance. However, recent research and market trends suggest that prompt engineering as a distinct technical career is already obsolete. + +\begin{itemize} + \item \textbf{Obsolescence of Syntax:} As models become better at understanding natural language and nuance, the need for arcane syntax diminishes. The ``post-prompt age'' is characterised by systems that interpret intent from vague or incomplete instructions. + \item \textbf{Natural Language Orchestration:} The skill is shifting to \textbf{Natural Language Orchestration}. It is not about writing better instructions; it is about designing interaction paradigms. The ``engineer'' is being replaced by the ``communicator.'' The best prompters are not those who know the cheat codes, but those who have a deep, nuanced vocabulary to describe mood, lighting, style, and emotion. A poet is now a better pilot for an LLM than a Python developer. + \item \textbf{Meta-Prompting:} Advanced orchestration involves ``meta-prompting,'' where prompts generate other prompts, and systems critique and refine their own outputs. This requires a higher-level understanding of system architecture and behavioural psychology, moving beyond simple input-output tasks. +\end{itemize} + +\subsection*{4.2 Case Studies in Collaborative Agency} + +The artists successfully navigating this era are those who treat AI not as a replacement, but as a ``collaborator'' or a ``prosthetic for the imagination.'' They exemplify the ``Artist as Architect'' model. + +\subsubsection*{4.2.1 Sougwen Chung: The Collaborator} + +Artist and researcher Sougwen Chung rejects the ``tool'' metaphor entirely, viewing her robotic arms and AI systems as ``collaborators.'' + +\begin{itemize} + \item \textbf{Method:} Chung trains her AI systems (D.O.U.G. -- Drawing Operations Unit Generation) on decades of her own drawing data. The AI then controls a robotic arm that draws alongside her in real-time. + \item \textbf{Intent:} Her work explores ``embodied cognition'' and the feedback loop between human mark-making and machine mimicry. She is not outsourcing the art; she is engaging in a duet with her own data. The ``why'' is an exploration of memory and agency; the AI simply provides the ``how'' of the counter-melody. She views the AI not as an ``other'' but as a reflection of the self, stating, ``I've started to see them as us in another form.'' +\end{itemize} + +\subsubsection*{4.2.2 Holly Herndon: The Sovereign Architect} + +Musician Holly Herndon addresses the issue of agency and ownership head-on. She created ``Holly+'', an AI vocal twin trained on her own voice, allowing others to create music using her likeness. + +\begin{itemize} + \item \textbf{Method:} She utilises ``Spawning,'' a protocol that allows artists to opt-in or opt-out of training datasets, reasserting consent in the age of scraping. + \item \textbf{Intent:} Herndon's intent is to create a ``collective accomplishment.'' She views AI as a coordination technology -- a way to build a ``choir'' of intelligence. Her work \emph{Starmirror} invites the public to train an AI model through collective singing, turning the ``black box'' of training into a communal ritual. She is architecting the system of creation, not just the song. +\end{itemize} + +\subsubsection*{4.2.3 Refik Anadol: The Data Sculptor} + +Refik Anadol uses AI to visualise vast datasets, from brain scans to climate data. + +\begin{itemize} + \item \textbf{Method:} He treats data as pigment. His algorithms ``hallucinate'' new forms based on millions of images. + \item \textbf{Intent:} His work is about making the invisible visible -- visualising the ``memory'' of a machine or the ``consciousness'' of a library. The curation of the dataset is the art. Selecting which 100 million images to feed the model is the primary creative decision. +\end{itemize} + +\subsection*{4.3 Developing a Curatorial Framework} + +For the modern artist, developing a Curatorial Framework is the new rigorous practice. It replaces the ``10,000 hours'' of manual practice with 10,000 hours of \emph{decision-making practice}. + +The Framework Components: + +\begin{enumerate} + \item \textbf{Taste Calibration (The Input):} + \begin{itemize} + \item Immersion in art history and diverse media to build a ``reference library'' in the mind. The AI has the average of all data; the artist must possess the outliers. + \item Rick Rubin's ``tuning'': Constantly refining sensitivity to what resonates and why. + \end{itemize} + \item \textbf{Iterative Selection (The Process):} + \begin{itemize} + \item Adopting the ``Editorial Thinking'' of data visualisation and design. Viewing the AI's output not as final, but as raw footage to be edited. + \item Taste-Based Decision Making: Using ``gut'' and ``affect'' (embodied emotion) to filter rational machine outputs. + \end{itemize} + \item \textbf{Contextual Anchoring (The Output):} + \begin{itemize} + \item Defining the ``Why'': What is the emotional or intellectual provocation? + \item The ``Human Label'': Consciously framing the work to highlight the human intent behind it, leveraging the ``authenticity'' premium. + \end{itemize} +\end{enumerate} + +\section*{Part V: The Economics of Intent -- Market Dynamics in 2025} + +\subsection*{5.1 The Economic Inversion} + +The labour market is reflecting the philosophical shift. As ``production'' roles (copywriter, junior graphic designer) face automation pressure, ``strategic'' roles (Creative Director, Brand Strategist) are seeing salary growth. + +\subsubsection*{5.1.1 Salary Trends: The Director vs.\ The Technician} + +Data from 2025 indicates a widening gap between execution and direction roles. + +\begin{itemize} + \item Creative Directors and VPs of Marketing (roles defined by strategy, taste, and intent) command salaries of \$145k -- \$250k+. + \item Copywriters and Graphic Designers (execution roles) are seeing stagnation or pressure, with averages around \$57k -- \$71k, though high-level specialisation (e.g., AI orchestration) can boost this. + \item Freelance Market: While the freelance market is growing (\$7.65 billion by 2025), there is a bifurcated reality. ``Routine maintenance work'' is seeing rate decreases of 5--10\%, while ``AI Specialists'' and ``AI Integration Consultants'' command premiums of 40--60\% (\$100--\$200/hour). +\end{itemize} + +This confirms the thesis: the value is moving away from \emph{doing the thing} to \emph{directing the thing}. The technician who relied solely on execution is finding their skills commoditised, while the visionary who can orchestrate these tools is seeing their value skyrocket. + +\subsection*{5.2 The Rise of the ``Human-Made'' Luxury Market} + +Just as ``organic'' food commands a premium over ``processed'' food, ``human-made'' content is emerging as a luxury good. + +\begin{itemize} + \item \textbf{Anti-AI Marketing:} Brands are explicitly using ``No AI'' as a selling point. Campaigns by Dove, Lego, and others emphasise human creativity to build trust. + \item \textbf{The Trust Deficit:} With 82\% of consumers worried about AI's societal impact and 76\% finding it important to know if content is human-made, there is a distinct market for ``certified human'' work. + \item \textbf{Implication:} Artists should not hide their use of AI, but those who don't use it (or use it minimally) should leverage their ``inefficiency'' as a value signal. The ``flaws'' of human work -- the ``workmanship of risk'' -- become markers of authenticity. +\end{itemize} + +\section*{Conclusion: The Triumph of Vision} + +We are witnessing the end of the ``technician artist'' and the rise of the ``visionary artist.'' The barrier between having a thought and seeing it realised has dissolved. For the technician who relied solely on the difficulty of their craft to justify their value, this is a crisis. For the visionary who has been constrained by the limits of their hands or their budget, this is a liberation. + +The machine is an engine of probability; it can synthesise a style, but it cannot synthesise a soul. It can answer how to render a sunset, but it cannot answer \emph{why} that sunset matters. It can predict the next token, but it cannot feel the weight of the word. + +The ``Age of Intent'' demands a new kind of discipline. It is no longer about the steadiness of the hand, but the clarity of the mind. It requires the artist to be an architect of meaning, a curator of infinite possibility, and a guardian of the human spirit in an age of synthetic abundance. + +The artists who will reign supreme are those who treat AI not as a replacement, but as a prosthetic for the imagination. They are the ones who know that the machine can synthesise a style, but it cannot synthesise a soul. In the end, the machine is just a brush. A very complex, miraculous brush, but a brush nonetheless. And a brush cannot paint without a hand to hold it, and a mind to tell it where to go. + +\section*{Appendix: Supporting Data and Frameworks} + +\subsection*{Table 1: Comparative Analysis of ``Workmanship'' (Based on Pye)} + +\begin{center} +\begin{tabular}{p{3.5cm} p{5cm} p{5cm}} +\toprule +\textbf{Feature} & \textbf{Workmanship of Risk (Human/Traditional)} & \textbf{Workmanship of Certainty (AI/Automation)} \\ +\midrule +Definition & Outcome is not predetermined; depends on judgement/dexterity at every moment. & Outcome is predetermined; quantity production; low variance. \\ +\addlinespace +Primary Value & Uniqueness, ``soul,'' perceivable effort, diversity. & Perfection, speed, scale, consistency. \\ +\addlinespace +Flaws & ``Mistakes'' or ``happy accidents'' that reveal the hand. & ``Hallucinations'' or ``artefacts'' (often seen as errors to be fixed). \\ +\addlinespace +Artist's Role & To execute the form. & To disrupt the certainty; to inject risk back into the system. \\ +\bottomrule +\end{tabular} +\end{center} + +\subsection*{Table 2: Consumer Perception of AI vs.\ Human Art} + +\begin{center} +\begin{tabular}{p{4cm} p{4cm} p{4.5cm}} +\toprule +\textbf{Metric} & \textbf{Human-Labelled Art} & \textbf{AI-Labelled Art} \\ +\midrule +Liking/Preference & High & Low (Significant negative bias) \\ +\addlinespace +Perceived Effort & High & Low \\ +\addlinespace +Emotional Response & Stronger & Weaker (``Hollow'') \\ +\addlinespace +Gaze Duration & Longer (studied more closely) & Shorter (dismissed faster) \\ +\addlinespace +Purchase Intent & Higher & Lower \\ +\bottomrule +\end{tabular} +\end{center} + +\subsection*{Table 3: Salary Trends 2025 -- The Value of Direction} + +\begin{center} +\begin{tabular}{p{3.5cm} p{3.5cm} p{3.5cm} p{2cm}} +\toprule +\textbf{Role} & \textbf{Focus} & \textbf{Avg.\ Salary (Est.\ 2025)} & \textbf{Trend} \\ +\midrule +Creative Director & Intent, Vision, Strategy, Curation & \$145,000 -- \$250,000+ & Rising \\ +\addlinespace +VP of Marketing & Strategy, Brand Voice & \$250,000 & Rising \\ +\addlinespace +Copywriter & Text Generation (Execution) & \$57,000 -- \$71,000 & Stagnant/Risk \\ +\addlinespace +Graphic Designer & Image Generation (Execution) & \$66,000 & Stagnant/Risk \\ +\addlinespace +AI Specialist & Orchestration, Integration & \$100 -- \$200/hr & High Demand \\ +\bottomrule +\end{tabular} +\end{center} + +\section*{Works Cited} + +\begin{enumerate} +\item Generative AI Foundations: From Tokens to Text, How LLMs ``Write.'' \href{https://medium.com/generative-ai-playbook/generative-ai-foundations-from-tokens-to-text-how-llms-write-05f1800703ab}{medium.com} +\item If generative AI is the answer, what is the question? \href{https://arxiv.org/html/2509.06120v2}{arxiv.org} +\item Why the Work of Generative AI is Called ``Inference'' Rather Than ``Prediction.'' \href{https://medium.com/@justyan/why-the-work-of-generative-ai-is-called-inference-rather-than-prediction-3b026a63e324}{medium.com} +\item From Rule to Idea: Minimalism and Conceptualism as Structural Logic. \href{https://medium.com/@Neuroism/from-rule-to-idea-minimalism-and-conceptualism-as-structural-logic-9441750ea552}{medium.com} +\item An Initial Critique: Some Strengths And Weaknesses of ``Post-Theory Art.'' \href{https://adamdaleywilson.medium.com/an-initial-critique-some-strengths-and-weaknesses-of-post-theory-art-fe6c44846e94}{medium.com} +\item Freelancing Statistics And Trends 2025 -- Quantumrun Foresight. \href{https://www.quantumrun.com/consulting/freelancing-statistics/}{quantumrun.com} +\item Top 10 AI Video Tools Like Clippie (2025 Comparison Guide). \href{https://clippie.ai/blog/best-ai-video-tools-comparison-2025}{clippie.ai} +\item The Future of Branding in the Age of AI-Generated Content. \href{https://www.youngmarketingconsulting.com/the-future-of-branding-in-the-age-of-ai-generated-content/}{youngmarketingconsulting.com} +\item Epistemic diversity across language models mitigates knowledge collapse -- ResearchGate. \href{https://www.researchgate.net/publication/398806203_Epistemic_diversity_across_language_models_mitigates_knowledge_collapse}{researchgate.net} +\item AI Model Collapse: Why Data Quality Is the Defining Ethical Challenge of 2025. \href{https://expertlinked.in/posts/2025-10-31-ai-model-collapse-data-quality-imperative/}{expertlinked.in} +\item Craft for the AI Age -- The New Art School. \href{https://newartschool.education/2025/10/17/craft-for-the-ai-age/}{newartschool.education} +\item Implicit bias against AI creativity -- ResearchGate. \href{https://www.researchgate.net/publication/395476845_Implicit_bias_against_AI_creativity}{researchgate.net} +\item Human Art vs AI Art, a Potential Danger for Artist? Utrecht University Student Theses Repository. \href{https://studenttheses.uu.nl/bitstream/handle/20.500.12932/47294/Thesis_JoA%CC%83%C2%ABlvanWaning%202.pdf?sequence=1&isAllowed=y}{studenttheses.uu.nl} +\item The rise of AI art: A look through digital artists' eyes -- First Monday. \href{https://firstmonday.org/ojs/index.php/fm/article/view/13809/12001}{firstmonday.org} +\item Comparative Designs Reveal Preferences for Human-Generated Rather Than AI-Generated art -- PEARL. \href{https://pearl.plymouth.ac.uk/cgi/viewcontent.cgi?article=2175&context=psy-research}{pearl.plymouth.ac.uk} +\item Humans versus AI: whether and why we prefer human-created compared to AI-created artwork -- PMC. \href{https://pmc.ncbi.nlm.nih.gov/articles/PMC10319694/}{pmc.ncbi.nlm.nih.gov} +\item Anti-AI Marketing Trends in 2025: Embracing Authenticity and Human Connection. \href{https://neuron.expert/news/the-best-anti-ai-marketing-campaigns-in-2025-and-why-they-worked/15795/en/}{neuron.expert} +\item The Best Anti-AI Marketing Campaigns in 2025, and Why They Worked -- Brand Vision. \href{https://www.brandvm.com/post/best-anti-ai-marketing-campaigns-2025}{brandvm.com} +\item iHeartMedia Releases Third in a Series of Consumer Studies, Revealing America's Deepening Need for Human Connection in an AI-Driven World. \href{https://investors.iheartmedia.com/news/news-details/2025/iHeartMedia-Releases-Third-in-a-Series-of-Consumer-Studies-Revealing-Americas-Deepening-Need-for-Human-Connection-in-an-AI-Driven-World/default.aspx}{investors.iheartmedia.com} +\item Investigating the Effect of AI-Generated Customer Reviews on Purchase Intent and Perceived Authenticity in E-Commerce Environments -- ResearchGate. \href{https://www.researchgate.net/publication/397937065_Investigating_the_Effect_of_AI-Generated_Customer_Reviews_on_Purchase_Intent_and_Perceived_Authenticity_in_E-Commerce_Environments}{researchgate.net} +\item Revealing AI Involvement in Ad Creation: Effects on Authenticity, Brand Perceptions and Consumer Intentions. \href{https://jisem-journal.com/index.php/journal/article/download/2659/1056/4303}{jisem-journal.com} +\item AI-Generated Art and Its Influence on Consumer Psychology: A Review of Economic and Emotional Outcomes -- IJIP. \href{https://ijip.in/wp-content/uploads/2025/02/18.01.066.20251301.pdf}{ijip.in} +\item David Pye -- The Nature and Art of Workmanship. \href{https://memoof.me/download/884/pdf/884.pdf}{memoof.me} +\item David Pye -- The Nature and Art of Workmanship (Medium). \href{https://medium.com/not-so-different-emerging-digital-craft-practices/david-pye-the-nature-and-art-of-workmanship-be0620f95aa9}{medium.com} +\item The Expanding Canvas: What Counts as Art? -- HastingsNow. \href{https://www.hastingsnow.com/blog/the-expanding-canvas-what-counts-as-art}{hastingsnow.com} +\item Alice C Helliwell -- Thesis -- Philosophy of AI Art -- Kent Academic Repository. \href{https://kar.kent.ac.uk/105246/1/105ALICE_C_HELLIWELL_-_THESIS_-_PHILOSOPHY_OF_AI_ART_-_KAR_UPLOAD_REDACTED.pdf}{kar.kent.ac.uk} +\item Rick Rubin, \emph{The Creative Act} (2023) -- Research Lab, Sorrywecan. \href{https://lab.sorrywecan.com/static/pdf/the-coming-age-of-wisdom-work.pdf}{lab.sorrywecan.com} +\item Everyone Suddenly Thinks They Are Rick Rubin -- Human Kind. \href{https://thehumankind.co/2025/07/02/everyone-suddenly-thinks-they-are-rick-rubin/}{thehumankind.co} +\item Rick Rubin on Listening, Taste, and the Act of Noticing (Ep.\ 169 -- BONUS). \href{https://conversationswithtyler.com/episodes/rick-rubin/}{conversationswithtyler.com} +\item The Creative Act By Rick Rubin. \href{https://ia800503.us.archive.org/33/items/the-creative-act-by-rick-rubin/The\%20Creative\%20Act\%20By\%20Rick\%20Rubin.pdf}{archive.org} +\item Rick Rubin's \emph{The Creative Act: A Way of Being} -- TianPan.co. \href{https://tianpan.co/notes/2025-05-05-creativity-act}{tianpan.co} +\item Death of Prompt Engineering: AI Orchestration in 2026 -- Big Blue Data Academy. \href{https://bigblue.academy/en/the-death-of-prompt-engineering-and-its-ruthless-resurrection-navigating-ai-orchestration-in-2026-and-beyond}{bigblue.academy} +\item Why Prompt Engineering Shouldn't Exist -- Infuzu. \href{https://infuzu.com/blog/why-prompt-engineering-shouldn-t-exist}{infuzu.com} +\item Is prompt engineering dead? One expert describes what HR should focus on instead. \href{https://hrexecutive.com/is-prompt-engineering-dead-one-expert-describes-what-hr-should-focus-on-instead/}{hrexecutive.com} +\item The Prompt Collapse: Why Natural Language Interfaces Are About to Eat Traditional Software -- LBZ Advisory. \href{https://liatbenzur.com/2025/11/03/the-prompt-collapse-why-natural-language-interfaces-are-about-to-eat-traditional-software/}{liatbenzur.com} +\item Prompt Engineering: Turning Intuition into Intentional Skill -- Medium. \href{https://medium.com/@ranji011/prompt-engineering-turning-intuition-into-intentional-skill-09cdd27ffda2}{medium.com} +\item Is prompt engineering still a viable skill in 2025, or is it fading fast? -- Reddit. \href{https://www.reddit.com/r/learnmachinelearning/comments/1oj5wxl/is_prompt_engineering_still_a_viable_skill_in/}{reddit.com} +\item Putting The Art In Artificial Intelligence: A Conversation With Sougwen Chung. \href{https://sougwen.com/putting-the-art-in-artificial-intelligence-a-conversation-with-sougwen-chung}{sougwen.com} +\item Sougwen Chung: the poetics of human--machine interaction -- hube magazine. \href{https://hubemag.com/sougwen-chung-the-poetics-of-human-machine-interaction}{hubemag.com} +\item Sougwen Chung: Human and machine collaboration -- Medium/Verisart. \href{https://medium.com/verisart/sougwen-chung-human-and-machine-collaboration-72d912d6b065}{medium.com} +\item Why artificial intelligence artists can be seen as `builders', `breakers' -- or both at once -- The Art Newspaper. \href{https://www.theartnewspaper.com/2025/07/11/why-artificial-intelligence-artists-can-be-seen-as-builders-breakersor-both-at-once}{theartnewspaper.com} +\item Holly Herndon: The 100 Most Influential People in AI 2023 -- Time Magazine. \href{https://time.com/collection/time100-ai/6309468/holly-herndon/}{time.com} +\item Why Artists Holly Herndon and Mat Dryhurst Want Us to Stop Minimizing -- And Fearing -- A.I. -- Artnet News. \href{https://news.artnet.com/art-world/holly-herndon-and-mat-dryhurst-2551072}{artnet.com} +\item Holly Herndon \& Mat Dryhurst Starmirror -- KW Institute for Contemporary Art. \href{https://www.kw-berlin.de/en/exhibitions/holly-herndon-and-mat-dryhurst-starmirror}{kw-berlin.de} +\item Holly Herndon \& Mat Dryhurst on Artificial Psychedelia -- Le Random. \href{https://www.lerandom.art/editorial/holly-herndon-mat-dryhurst-on-artificial-psychedelia}{lerandom.art} +\item The intersection of AI and art -- POLITesi. \href{https://www.politesi.polimi.it/retrieve/bea25522-3b1c-4ad4-861c-e56af3fee554/2024_10_GiacominDaSilva.pdf}{politesi.polimi.it} +\item Decoding AI Art: From Motivation to Manifestation -- University of Nottingham. \href{https://eprints.nottingham.ac.uk/81162/1/Salimbeni_Guido_20276375_corrections.pdf}{eprints.nottingham.ac.uk} +\item Editorial Thinking in Data Visualisation -- Scribd. \href{https://www.scribd.com/document/664543313/week-4-Analyzing-and-visualizing-data-Andy-Kirk}{scribd.com} +\item Linear and categorical coding units in the mouse gustatory cortex drive population dynamics and behaviour in taste decision-making -- eLife. \href{https://elifesciences.org/reviewed-preprints/109313}{elifesciences.org} +\item Marketing Salary \& Skills Report 2025: AI Roles, Top Jobs, Pay Data -- GLOZO. \href{https://www.glozo.com/reports/marketing-salary-skills-report-2025}{glozo.com} +\item How to Become an Art Director: Career Path \& Guide -- Himalayas.app. \href{https://himalayas.app/career-guides/art-director}{himalayas.app} +\item Compensation -- Human Resource Management homework help -- SweetStudy. \href{https://www.sweetstudy.com/files/milestone2-3486823.docx}{sweetstudy.com} +\item The Global Freelance Rate Database 2026: Complete Salary \& Pricing Guide for Every Industry -- Jobbers. \href{https://www.jobbers.io/the-global-freelance-rate-database-2026-complete-salary-pricing-guide-for-every-industry/}{jobbers.io} +\end{enumerate} diff --git a/latex/appendices/a8_source_index.tex b/latex/appendices/a8_source_index.tex new file mode 100644 index 0000000..31a3171 --- /dev/null +++ b/latex/appendices/a8_source_index.tex @@ -0,0 +1,490 @@ +\chapter{The Dream Machine Source Index}\label{app:a8} + +\emph{A thematic catalogue of significant sources surfaced across the 29 issues of} Dream Machine \emph{(October 2025 -- May 2026).} + +\bigskip + +This index is a navigational tool, not an exhaustive list. The full \emph{Dream Machine} archive contains nearly three thousand individual hyperlinks across its twenty-nine issues, the great majority of which are primary-source links to industry coverage, research reports, official announcements, court filings, technical demos, creator showcases, and platform releases. + +What follows below is the thematic catalogue of the \emph{significant} sources -- the ones the book itself draws on, the ones a working creative or researcher tracking a specific topic would want as a starting point, and the ones that, taken together, define the public record of creative AI as it stood in the period this book covers. Within each theme, entries are organised chronologically by issue number. The format is: + +\medskip +\noindent\texttt{[Issue N]} \textbf{Title} -- short context -- URL +\medskip + +For the complete primary-source archive -- every link, in full, in original publication order -- refer to the \emph{Dream Machine} newsletter archive on LinkedIn or the per-issue markdown files in \texttt{Dream Machine MD/}. Each issue's final section, \emph{``All embedded URLs (in document order)''}, lists every URL the issue carried. + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{1. AI Video -- Models and Releases} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Sora 2 Launch} -- OpenAI's step-change in physical realism, audio, multi-shot world state -- \href{https://openai.com/index/sora-2/}{openai.com} + \item \textbf{[Issue 1]} \textbf{Veo 3 and Flow} -- Google DeepMind's cinematic AI video -- \href{https://www.youtube.com/watch?v=I06Ef8alr2Y}{youtube.com} + \item \textbf{[Issue 2]} \textbf{Veo 3.1 Coming Soon} -- improved consistency, resolution, multi-shot, cinematic presets -- \href{https://www.cometapi.com/veo-3-1-is-comingand-whats-rumor/}{cometapi.com} + \item \textbf{[Issue 3]} \textbf{Veo 3.1 Deep Dive with Flow} -- cinematic filmmaking toolset -- \href{https://www.youtube.com/watch?v=I06Ef8alr2Y}{youtube.com} + \item \textbf{[Issue 3]} \textbf{Higgsfield Sketch-to-Video} -- powered by Sora 2 -- \href{https://higgsfield.ai/posts/6nkYSGwOcdyXVqZefE1MsQ}{higgsfield.ai} + \item \textbf{[Issue 3]} \textbf{LiveGS} -- mobile Gaussian-splatting video + \item \textbf{[Issue 4]} \textbf{Veo 3.1 Style Tips} -- text-to-video with style guidance -- \href{https://x.com/GoogleAI/status/1980327604843381215}{x.com} + \item \textbf{[Issue 4]} \textbf{Veo Precision Features} -- remove/add elements to scenes -- \href{https://x.com/GoogleDeepMind/status/1980261047836508213}{x.com} + \item \textbf{[Issue 4]} \textbf{Heygen Identity Consistency with Veo 3.1} -- character-consistent video -- \href{https://x.com/HeyGen_Official/status/1978491090618749193}{x.com} + \item \textbf{[Issue 4]} \textbf{Higgsfield Popcorn} -- storyboard tool with character consistency -- \href{https://x.com/higgsfield_ai/status/1981110992630341928}{x.com} + \item \textbf{[Issue 4]} \textbf{Odyssey 2} -- real-time interactive video generation -- \href{https://odyssey.ml/introducing-odyssey-2}{odyssey.ml} + \item \textbf{[Issue 4]} \textbf{Krea Realtime} -- open-sourcing the creative engine -- \href{https://www.linkedin.com/posts/krea-ai_today-were-open-sourcing-krea-realtime-activity-7386124532207689728-B7pD}{linkedin.com} + \item \textbf{[Issue 5]} \textbf{Sora Character Cameos} -- new feature in Sora app -- \href{https://x.com/OpenAI/status/1983661036533379486}{x.com} + \item \textbf{[Issue 5]} \textbf{VEED Transitions} -- AI-powered video transitions -- \href{https://x.com/veedstudio/status/1980636419891818850}{x.com} + \item \textbf{[Issue 5]} \textbf{LTX-2} -- open-source audio-video generation -- \href{https://x.com/ltx_model/status/1981346235194683497}{x.com} + \item \textbf{[Issue 6]} \textbf{Wan 2.2} -- AI video with multi-shot capabilities -- \href{https://x.com/eyishazyer/status/1983507594942755221}{x.com} + \item \textbf{[Issue 6]} \textbf{MotionStream} -- real-time interactive video, 29 FPS -- \href{https://x.com/wildmindai/status/1985828041566941576}{x.com} + \item \textbf{[Issue 7]} \textbf{Odyssey-2} -- interactive streaming 16:9 video -- \href{https://x.com/olivercameron/status/1984777003967672800}{x.com} + \item \textbf{[Issue 9]} \textbf{Wan 2.6 Released} -- cast characters from reference videos, up to 15 seconds -- \href{https://wan.video/blog/wan2.6-introduction}{wan.video} + \item \textbf{[Issue 13]} \textbf{Runway Gen-4.5} -- image-to-video for paid plans -- \href{https://www.youtube.com/watch?v=AwKSrJFvdps}{youtube.com} + \item \textbf{[Issue 13]} \textbf{LTX-2 on ComfyUI} -- open-source audio-video -- \href{https://blog.comfy.org/p/ltx-2-open-source-audio-video-ai}{blog.comfy.org} + \item \textbf{[Issue 14]} \textbf{Veo 3.1 Ingredients to Video} -- vertical formats, 1080p/4K -- \href{https://x.com/FlowbyGoogle/status/2011130097483526474}{x.com} + \item \textbf{[Issue 14]} \textbf{LTX-2 Lip Sync} -- native audio-driven dialogue -- \href{https://x.com/ltx_model/status/2011101440706806051}{x.com} + \item \textbf{[Issue 15]} \textbf{Runway Gen-4.5 Image to Video} -- broad rollout -- \href{https://www.linkedin.com/posts/runwayml_introducing-image-to-video-for-gen-45-the-activity-7419856988186238976-ZJU2}{linkedin.com} + \item \textbf{[Issue 15]} \textbf{Veo 3.1 in YouTube Shorts and Create app} -- distribution-layer integration -- \href{https://blog.google/innovation-and-ai/technology/ai/veo-3-1-ingredients-to-video/}{blog.google} +\end{itemize} + +\section*{2. AI Image -- Models and Tools} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Nano Banana Plugin for Photoshop} -- Gemini image gen inside Adobe -- \href{https://www.linkedin.com/posts/arminas-valunas-b4477255_nano-banana-plugin-for-photoshop-is-here-ugcPost-7367923639414906881-GgV7}{linkedin.com} + \item \textbf{[Issue 1]} \textbf{Magnific Precision v2} -- AI upscaling -- \href{https://www.linkedin.com/posts/magnific-ai_introducing-magnific-precision-v2-activity-7387158930776276992-zpET}{linkedin.com} + \item \textbf{[Issue 2]} \textbf{Vimeo AI Creator Tools} -- new features -- \href{https://www.tvtechnology.com/news/vimeo-releases-new-ai-powered-creator-tools}{tvtechnology.com} + \item \textbf{[Issue 3]} \textbf{Google Stitch} -- design tool with AI features -- \href{https://www.testingcatalog.com/google-test-new-stitch-modes-annotate-theme-interactive/}{testingcatalog.com} + \item \textbf{[Issue 5]} \textbf{Adobe Firefly Image Model 5} -- Adobe MAX 2025 -- \href{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly}{news.adobe.com} + \item \textbf{[Issue 5]} \textbf{Freepik Spaces} -- infinite canvas for collaborative creation -- \href{https://www.freepik.com/spaces}{freepik.com} + \item \textbf{[Issue 5]} \textbf{Midjourney updates} -- state-of-the-art image gen -- \href{https://x.com/midjourney/status/1991684484455100477}{x.com} + \item \textbf{[Issue 6]} \textbf{Qwen Image Multiple Angles LoRA} -- consistent characters -- \href{https://x.com/multimodalart/status/1986174924038218087}{x.com} + \item \textbf{[Issue 8]} \textbf{Qwen Image 2512} -- latest generation -- \href{https://qwen.ai/blog?id=qwen-image-2512}{qwen.ai} + \item \textbf{[Issue 9]} \textbf{FLUX 2} -- Black Forest Labs image generation -- \href{https://bfl.ai/models/flux-2-max}{bfl.ai} + \item \textbf{[Issue 10]} \textbf{FLUX 2 klein} -- fast image generation under one second -- \href{https://huggingface.co/unsloth/FLUX.2-klein-4B-GGUF}{huggingface.co} + \item \textbf{[Issue 13]} \textbf{ChatGPT Images Upgrade} -- major feature improvements -- \href{https://www.techradar.com/ai-platforms-assistants/chatgpt/chatgpt-images-just-got-a-major-upgrade-and-it-could-change-how-we-all-create}{techradar.com} +\end{itemize} + +\section*{3. AI Music and Audio} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Suno Studio} -- generative audio workstation -- \href{https://www.techradar.com/ai-platforms-assistants/i-tried-suno-studio-the-new-platform-that-mixes-ai-music-generation-with-hands-on-editing-like-garageband-but-smarter}{techradar.com} + \item \textbf{[Issue 1]} \textbf{YouTube Music AI Hub} -- AI music hosts -- \href{https://www.linkedin.com/news/story/youtube-music-debuts-new-ai-hub-6625484/}{linkedin.com} + \item \textbf{[Issue 1]} \textbf{Spotify AI Protections} -- strengthened for artists -- \href{https://newsroom.spotify.com/2025-09-25/spotify-strengthens-ai-protections/}{newsroom.spotify.com} + \item \textbf{[Issue 1]} \textbf{Xania Monet} -- AI singer signs \$3M deal -- \href{https://www.forbes.com/sites/dougmelville/2025/09/27/al-singer-xania-monet-just-charted-on-billboard-signed-3m-deal-is-this-the-future-of-music/}{forbes.com} + \item \textbf{[Issue 1]} \textbf{Cardiff Band on AI Artist} -- trained on their music, outperforming them -- \href{https://musictech.com/news/industry/its-shocking-disheartening-and-insulting-cardiff-band-speaks-out-after-ai-artist-trained-on-their-music-outperforms-them-on-spotify/}{musictech.com} + \item \textbf{[Issue 2]} \textbf{Suno Funding Round} -- \$2 billion valuation -- \href{https://www.digitalmusicnews.com/2025/10/20/suno-funding-round-october-2025/}{digitalmusicnews.com} + \item \textbf{[Issue 2]} \textbf{Groundhog AI Guitar Pedal} -- tone matching -- \href{https://musictech.com/news/gear/groundhog-audio-onepedal-ai-tone-matching/}{musictech.com} + \item \textbf{[Issue 2]} \textbf{Spotify in ChatGPT} -- integration launched -- \href{https://newsroom.spotify.com/2025-10-06/spotify-personalized-prompts-chatgpt/}{newsroom.spotify.com} + \item \textbf{[Issue 3]} \textbf{iZotope Ozone 12} -- AI assistant for mixing -- \href{https://musictech.com/reviews/plug-ins/izotope-ozone-12-review/}{musictech.com} + \item \textbf{[Issue 3]} \textbf{Tempolor Guitars (Quwan)} -- AI to make songs playable -- \href{https://kr-asia.com/no-practice-required-quwans-tempolor-guitars-use-ai-to-make-songs-playable-in-minutes}{kr-asia.com} + \item \textbf{[Issue 4]} \textbf{Mureka Music Agent Studio} -- six specialised AI agents -- \href{https://www.linkedin.com/posts/sherrihendrickson_mureka-unveils-music-agent-studio-and-enhanced-share-7384999251526864896-cNYg/}{linkedin.com} + \item \textbf{[Issue 4]} \textbf{Fish Audio S1} -- TTS 6$\times$ cheaper than ElevenLabs -- \href{https://fish.audio/app/text-to-speech/}{fish.audio} + \item \textbf{[Issue 5]} \textbf{Universal Music + Stability AI Alliance} -- strategic partnership -- \href{https://stability.ai/news/universal-music-group-and-stability-ai-announce-strategic-alliance}{stability.ai} + \item \textbf{[Issue 5]} \textbf{Udio Partners with UMG} -- partnership announced -- \href{https://www.udio.com/blog/a-new-era}{udio.com} + \item \textbf{[Issue 5]} \textbf{OpenAI Music Generator} -- reportedly in development -- \href{https://www.theinformation.com/articles/openai-plots-generating-ai-music-potential-rivalry-startup-suno}{theinformation.com} + \item \textbf{[Issue 6]} \textbf{UMG Boss Lucian Grainge on AI} -- full internal memo -- \href{https://musically.com/2025/10/14/umg-boss-sir-lucian-grainge-talks-ai-full-internal-memo/}{musically.com} + \item \textbf{[Issue 6]} \textbf{Bleeding Verse AI Band} -- Hallwood Media signing -- \href{https://musically.com/2025/10/07/ai-band-bleeding-verses-creator-signs-deal-with-hallwood-media/}{musically.com} + \item \textbf{[Issue 6]} \textbf{JYP Entertainment AI Artist} -- hiring AI/Unreal experts -- \href{https://www.musicbusinessworldwide.com/jyp-entertainment-is-hiring-for-ai-and-unreal-engine-experts-to-develop-an-unprecedented-virtual-kpop-artist/}{musicbusinessworldwide.com} + \item \textbf{[Issue 6]} \textbf{Claimy} -- \$1.8M for missing royalty recovery -- \href{https://www.musicbusinessworldwide.com/ai-music-tech-startup-claimy-raises-1-8m-to-tackle-missing-royalty-payments/}{musicbusinessworldwide.com} + \item \textbf{[Issue 7]} \textbf{Breaking Rust on Billboard} -- AI country act -- \href{https://www.npr.org/2025/11/10/nx-s1-5604320/breaking-rust-is-a-hot-new-country-act-on-the-billboard-charts-its-powered-by-ai}{npr.org} + \item \textbf{[Issue 7]} \textbf{GEMA v OpenAI Munich ruling} -- European copyright precedent -- \href{https://www.linkedin.com/posts/dr-barry-scannell-bbb5aa207_in-a-major-ruling-for-european-copyright-share-7393957246386323457-8bbx}{linkedin.com} + \item \textbf{[Issue 8]} \textbf{LANDR AI Music Study} -- 87\% of musicians use AI tools -- \href{https://aristake.com/ai-tools-musicians-study/}{aristake.com} + \item \textbf{[Issue 8]} \textbf{Stability AI + Warner Music} -- next-gen responsible AI tools -- \href{https://stability.ai/news/warner-music-group-and-stability-ai-join-forces-to-build-next-gen-tools}{stability.ai} + \item \textbf{[Issue 8]} \textbf{Paul McCartney Silent Track Protest} -- UK copyright opt-out -- \href{https://www.theguardian.com/music/2025/nov/17/the-sound-of-silence-why-theres-barely-anything-there-in-paul-mccartney-new-release}{theguardian.com} + \item \textbf{[Issue 11]} \textbf{Lyria Camera (Google DeepMind)} -- music generation -- \href{https://magenta.withgoogle.com/lyria-camera-announce}{magenta.withgoogle.com} + \item \textbf{[Issue 11]} \textbf{Dave Stewart on AI} -- musicians must embrace it -- \href{https://www.theguardian.com/music/2025/dec/05/musicians-must-embrace-unstoppable-force-of-ai-eurythmics-dave-stewart-urges}{theguardian.com} + \item \textbf{[Issue 12]} \textbf{Splice + UMG Collaboration} -- AI music creation tools -- \href{https://www.universalmusic.com/universal-music-group-and-splice-to-collaborate-on-the-next-generation-of-ai-powered-music-creation-tools-for-artists/}{universalmusic.com} + \item \textbf{[Issue 14]} \textbf{Bandcamp Bans AI Music} -- platform policy -- \href{https://stereogum.com/2485199/bandcamp-bans-ai-music/news}{stereogum.com} + \item \textbf{[Issue 14]} \textbf{UMG slams AI slop} -- exponential growth on streaming -- \href{https://musically.com/2026/01/09/umg-boss-slams-exponential-growth-of-ai-slop-on-streaming-services/}{musically.com} + \item \textbf{[Issue 15]} \textbf{Sienna Rose} -- viral mystery AI singer (BBC investigation) -- \href{https://www.bbc.co.uk/news/articles/cq6v83gq66eo}{bbc.co.uk} + \item \textbf{[Issue 16]} \textbf{800 Creatives Sign Declaration} -- \emph{Stealing Our Work Is Not Innovation} -- \href{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}{digitalmusicnews.com} +\end{itemize} + +\section*{4. AI 3D / World Models / Spatial} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Marble by World Labs} -- first commercial world model -- \href{https://marble.worldlabs.ai/}{marble.worldlabs.ai} + \item \textbf{[Issue 1]} \textbf{Meta Hyperscape Capture} -- Gaussian splatting on Quest -- \href{https://www.meta.com/en-gb/experiences/meta-horizon-hyperscape-capture-beta/8798130056953686/}{meta.com} + \item \textbf{[Issue 1]} \textbf{PlayCanvas SOG} -- WebP for 3D Gaussian Splatting -- \href{https://www.linkedin.com/posts/willeastcott_playcanvas-open-sources-sog-literally-webp-ugcPost-7374459362708180992-aHDa}{linkedin.com} + \item \textbf{[Issue 3]} \textbf{Genie 3} (Google DeepMind) -- interactive 3D world generation -- \href{https://deepmind.google/blog/genie-3-a-new-frontier-for-world-models/}{deepmind.google} + \item \textbf{[Issue 3]} \textbf{World Labs RTFM} -- real-time frame model -- \href{https://www.worldlabs.ai/blog/rtfm}{worldlabs.ai} + \item \textbf{[Issue 3]} \textbf{Instant Skinned Gaussian Avatars} -- web/mobile VR -- \href{https://sites.google.com/view/gaussian-vrm}{sites.google.com} + \item \textbf{[Issue 3]} \textbf{Tencent Hunyuan World 1.1} -- 3D reconstruction -- \href{https://x.com/TencentHunyuan/status/1980930623536837013}{x.com} + \item \textbf{[Issue 5]} \textbf{Apple Personas use Gaussian Splatting} -- most-deployed splat tech in consumer hardware -- \href{https://radiancefields.com/apple-confirms-personas-use-gaussian-splatting}{radiancefields.com} + \item \textbf{[Issue 7]} \textbf{Marble formal public launch} -- Sony Pictures using it (40$\times$ faster than legacy VP) -- \href{https://www.worldlabs.ai/case-studies/bringing-marble-to-life}{worldlabs.ai} + \item \textbf{[Issue 8]} \textbf{Meta SAM 3 / SAM 3D} -- segment anything in 3D -- \href{https://www.linkedin.com/posts/aiatmeta_introducing-sam-3-sam-3d-ugcPost-7396944913751465985-m5Nc}{linkedin.com} + \item \textbf{[Issue 11]} \textbf{Meta WorldGen} -- text-to-immersive-3D-worlds research -- \href{https://www.facebook.com/LifeAtMeta/videos/research-update-worldgen-text-to-immersive-3d-worlds/1879077432692421/}{facebook.com} + \item \textbf{[Issue 11]} \textbf{Ubisoft CHORD Model} -- open-sourced PBR material generation -- \href{https://blog.comfy.org/p/ubisoft-open-sources-the-chord-model}{blog.comfy.org} + \item \textbf{[Issue 12]} \textbf{Tencent HY World 1.5} -- real-time world model framework -- \href{https://x.com/TencentHunyuan/status/2001170499133653006}{x.com} + \item \textbf{[Issue 12]} \textbf{Microsoft Trellis 2} -- 3D generation -- \href{https://github.com/microsoft/TRELLIS.2}{github.com} + \item \textbf{[Issue 13]} \textbf{Wonderzoom} (Stanford AI Lab) -- multi-scale 3D world generation -- \href{https://wonderzoom.github.io/}{wonderzoom.github.io} + \item \textbf{[Issue 15]} \textbf{WorldLabs API} -- 3D world generation as a service -- \href{https://x.com/theworldlabs/status/2014046372639408203}{x.com} + \item \textbf{[Issue 17]} \textbf{Project Genie Public Release} -- Google AI Ultra subscribers -- \href{https://blog.google/innovation-and-ai/models-and-research/google-deepmind/project-genie/}{blog.google} + \item \textbf{[Issue 22]} \textbf{Luma UNI-1} -- combined world generation + reasoning -- \emph{Dream Machine} Editor's Pick + \item \textbf{[Issue 25]} \textbf{Spark 2.0} -- open-source 100M-splat browser streaming + \item \textbf{[Issue 27]} \textbf{Vista4D} (Netflix + Eyeline) -- live action to navigable 4D point clouds +\end{itemize} + +\section*{5. Voice, Avatars, Digital Humans} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Tilly Norwood AI Actress} -- sparks UK/US union debate -- \href{https://www.hollywoodreporter.com/movies/movie-news/tilly-norwood-ai-actress-uk-union-equity-sag-aftra-debate-1236391739/}{hollywoodreporter.com} + \item \textbf{[Issue 1]} \textbf{SAG-AFTRA Condemns Tilly Norwood} -- official union statement -- \href{https://variety.com/2025/film/news/sag-aftra-tilly-norwood-ai-actress-1236534779/}{variety.com} + \item \textbf{[Issue 1]} \textbf{Deep Fusion Films + Topfoto} -- AI documentary alliance -- \href{https://www.ibc.org/production/news/deep-fusion-and-topfoto-strike-alliance-to-produce-ai-powered-documentaries/22728}{ibc.org} + \item \textbf{[Issue 2]} \textbf{ROXi AI TV Presenters} -- music channel hosts -- \href{https://www.advanced-television.com/2025/10/07/roxi-debuts-ai-generated-tv-presenters/}{advanced-television.com} + \item \textbf{[Issue 2]} \textbf{Hedra Audio Tags} -- emotional audio control -- \href{https://x.com/hedra_labs/status/1998490844748460528}{x.com} + \item \textbf{[Issue 3]} \textbf{Heygen Motion Designer} -- prompt-based animation -- \href{https://www.linkedin.com/posts/heygen_if-you-can-explain-it-you-can-animate-it-activity-7387488068204892160-AY8-}{linkedin.com} + \item \textbf{[Issue 4]} \textbf{Copresence and ConvAI} -- Unreal-Engine intelligent avatars -- \href{https://www.linkedin.com/posts/copresence-tech_want-to-create-an-intelligent-avatar-that-activity-7379523290421383168-SAg_}{linkedin.com} + \item \textbf{[Issue 7]} \textbf{Lumi Avatar} -- real-time audio-driven avatars -- \href{https://www.linkedin.com/feed/update/urn:li:activity:7393916271018467328/}{linkedin.com} + \item \textbf{[Issue 7]} \textbf{Tilly Creator Eline Van der Velden -- Deadline} -- backlash and the next 40 -- \href{https://deadline.com/2025/11/tilly-norwood-creator-interview-backlash-more-ai-actors-coming-1236601334/}{deadline.com} + \item \textbf{[Issue 8]} \textbf{Synthesia \$4B valuation} -- rejected \$3B Adobe offer -- \href{https://techcrunch.com/2026/01/26/synthesia-hits-4b-valuation-lets-employees-cash-in/}{techcrunch.com} + \item \textbf{[Issue 11]} \textbf{ElevenLabs Impact Programme} -- SXSW documentary on voice loss -- \href{https://www.linkedin.com/posts/elevenlabsio_at-sxsw-the-elevenlabs-impact-program-will-activity-7413979472988774400-fVRG}{linkedin.com} + \item \textbf{[Issue 12]} \textbf{Google Veo Avatars} -- expressiveness upgrade -- \href{https://vids.new/}{vids.new} + \item \textbf{[Issue 12]} \textbf{Meta SAM Audio} -- segment anything for audio -- \href{https://about.fb.com/news/2025/12/our-new-sam-audio-model-transforms-audio-editing/}{about.fb.com} + \item \textbf{[Issue 13]} \textbf{Avatar Forcing} -- real-time interactive avatar generation -- \href{https://taekyungki.github.io/AvatarForcing/}{taekyungki.github.io} + \item \textbf{[Issue 13]} \textbf{Qwen3 TTS} -- voice design and cloning -- \href{https://qwen.ai/blog?id=qwen3-tts-vc-voicedesign}{qwen.ai} + \item \textbf{[Issue 16]} \textbf{Tilly Norwood Doubles Down} -- AI as ``more ethical'' performance, urging actors to create avatars -- \href{https://variety.com/2026/digital/news/tilly-norwood-creator-tells-actors-to-create-ai-avatars-1236638940/}{variety.com} + \item \textbf{[Issue 23]} \textbf{Death threats against Eline Van der Velden} -- cultural-extreme response +\end{itemize} + +\section*{6. Agent Platforms / Orchestration} + +\begin{itemize} + \item \textbf{[Issue 2]} \textbf{OpenAI AgentKit / DevDay} -- agentic AI for creative workflows -- \href{https://openai.com/index/introducing-agentkit/}{openai.com} + \item \textbf{[Issue 2]} \textbf{Lenny AI Agent} -- for live music event organisers -- \href{https://musically.com/2025/10/20/meet-lenny-an-ai-agent-to-help-organisers-of-live-music-events/}{musically.com} + \item \textbf{[Issue 4]} \textbf{AdsGency \$12M seed} -- autonomous paid marketing -- \href{https://www.finsmes.com/2025/10/adsgency-raises-12m-in-seed-funding.html}{finsmes.com} + \item \textbf{[Issue 5]} \textbf{Meta + Hugging Face OpenEnv} -- open-source agentic development -- \href{https://www.edtechinnovationhub.com/news/meta-and-hugging-face-launch-openenv-to-advance-open-source-agentic-development}{edtechinnovationhub.com} + \item \textbf{[Issue 5]} \textbf{Pomelli} (Google Labs) -- AI marketing agent for SMBs + \item \textbf{[Issue 5]} \textbf{Opal} (Google) -- no-code AI mini-app builder -- \href{https://blog.google/technology/google-labs/opal-expansion/}{blog.google} + \item \textbf{[Issue 8]} \textbf{Multimodal Agents in Unreal Engine} -- live-score nature documentary -- \href{https://www.youtube.com/watch?v=7u2yCtbONmo}{youtube.com} + \item \textbf{[Issue 8]} \textbf{SIMA 2} (Google DeepMind) -- agent for virtual 3D worlds -- \href{https://deepmind.google/blog/sima-2-an-agent-that-plays-reasons-and-learns-with-you-in-virtual-3d-worlds/}{deepmind.google} + \item \textbf{[Issue 8]} \textbf{Google Antigravity} -- agentic development platform + \item \textbf{[Issue 13]} \textbf{NitroGen} (NVIDIA + Stanford) -- plays-any-game model -- \href{https://nitrogen.minedojo.org/}{nitrogen.minedojo.org} + \item \textbf{[Issue 14]} \textbf{General Intuition} -- \$134M for spatial-reasoning agents -- \href{https://techcrunch.com/2025/10/16/general-intuition-lands-134m-seed-to-teach-agents-spatial-reasoning-using-video-game-clips/}{techcrunch.com} + \item \textbf{[Issue 16]} \textbf{Anthropic Claude Apps} -- interactive Claude in workplace tools -- \href{https://techcrunch.com/2026/01/26/anthropic-launches-interactive-claude-apps-including-slack-and-other-workplace-tools/}{techcrunch.com} + \item \textbf{[Issue 16]} \textbf{Heygen Video Agent} -- full scripting-to-assembly -- \href{https://www.linkedin.com/posts/heygen_introducing-the-new-video-agent-activity-7421597801240801282-d1CF}{linkedin.com} + \item \textbf{[Issue 21]} \textbf{Adobe + NVIDIA Strategic Partnership} -- agentic creative intelligence + \item \textbf{[Issue 26]} \textbf{Adobe Summit 2026} -- ``agentic creative intelligence'' headline category + \item \textbf{[Issue 29]} \textbf{Sony 49-Claude-agent / 72-skill stack} -- game-dev multi-agent team +\end{itemize} + +\section*{7. Adobe and Creative Software} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Tether} -- AI animation in After Effects -- \href{https://www.linkedin.com/posts/thisisdoug_aftereffects-aivideo-vfx-ugcPost-7368671859774517249-l0sz}{linkedin.com} + \item \textbf{[Issue 1]} \textbf{Unreal Engine 5 AI Assistant} -- official integration -- \href{https://www.linkedin.com/posts/wouterweynants_theres-an-official-ai-assistant-coming-to-ugcPost-7369377204226379776-pGiH}{linkedin.com} + \item \textbf{[Issue 1]} \textbf{Unity AI Council} -- accelerate AI innovation -- \href{https://www.gamedeveloper.com/business/unity-forms-ai-council-to-accelerate-ai-product-innovation-}{gamedeveloper.com} + \item \textbf{[Issue 1]} \textbf{ComfyUI raises \$17M} -- OS for creative AI -- \href{https://www.linkedin.com/posts/comfyui_we-raised-17-million-to-build-an-os-for-ugcPost-7373743341236236288-wkCc}{linkedin.com} + \item \textbf{[Issue 5]} \textbf{Adobe MAX 2025 Express AI Assistant} -- Adobe MAX announcements -- \href{https://news.adobe.com/news/2025/10/adobe-max-2025-express-ai-assistant}{news.adobe.com} + \item \textbf{[Issue 5]} \textbf{Adobe Firefly Foundry} -- custom models for brands -- \href{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly-foundry}{news.adobe.com} + \item \textbf{[Issue 5]} \textbf{Adobe MAX Sneaks} -- Light Touch, Surface Swap, Scene It, etc.\ -- \href{https://www.youtube.com/watch?v=YqAAFX1XXY8}{youtube.com} + \item \textbf{[Issue 5]} \textbf{Adobe MAX Creator Survey} -- 86\% use creative gen AI -- \href{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}{news.adobe.com} + \item \textbf{[Issue 5]} \textbf{``Adobe is putting AI in everything everywhere all at once''} -- Creative Boom coverage -- \href{https://www.creativeboom.com/news/adobe-is-putting-ai-in-everything-everywhere-all-at-once/}{creativeboom.com} + \item \textbf{[Issue 6]} \textbf{Adobe Corrective AI} -- voice-over emotion editing -- \href{https://www.wired.com/story/adobe-max-sneaks-2025-corrective-ai/}{wired.com} + \item \textbf{[Issue 8]} \textbf{Adobe Research RELIC} -- interactive video world model + \item \textbf{[Issue 12]} \textbf{Adobe inside ChatGPT} -- Photoshop, Express, Acrobat editing in ChatGPT -- \href{https://blog.adobe.com/en/publish/2025/12/10/edit-photoshop-chatgpt}{blog.adobe.com} + \item \textbf{[Issue 12]} \textbf{Google Flow Refine} -- prompt by doodling -- \href{https://blog.google/technology/google-labs/flow-refine-videos/}{blog.google} + \item \textbf{[Issue 15]} \textbf{Adobe at Sundance 2026} -- \$10M grants, Ignite Day -- \href{https://analyticsindiamag.com/ai-news-updates/adobe-unveils-ai-video-innovations-10-million-grants-ahead-of-sundance-film-festival/}{analyticsindiamag.com} + \item \textbf{[Issue 16]} \textbf{Adobe Premiere Object Mask} -- automated masking -- \href{https://www.linkedin.com/posts/robdewinter_ok-this-is-going-to-save-a-lot-of-time-in-ugcPost-7421617551690063872-yKmB}{linkedin.com} + \item \textbf{[Issue 28]} \textbf{Unity AI Open Beta} -- in-editor full AI suite +\end{itemize} + +\section*{8. Games Industry -- Adoption} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Netflix Director of GenAI for Games} -- \$840K role -- \href{https://www.pcgamer.com/gaming-industry/as-the-videogame-industry-continues-to-be-hammered-by-layoffs-netflix-is-offering-up-to-usd840-000-per-year-for-a-new-director-of-generative-ai-for-games/}{pcgamer.com} + \item \textbf{[Issue 1]} \textbf{Meta Horizon Studio AI Assistant Upgrade} -- \href{https://www.uploadvr.com/meta-horizon-studio-upgrade-ai-assistant-horizon-worlds/}{uploadvr.com} + \item \textbf{[Issue 1]} \textbf{51\% of Japanese games studios use AI} -- research finding -- \href{https://www.gamesindustry.biz/51-of-japanese-game-makers-use-generative-ai}{gamesindustry.biz} + \item \textbf{[Issue 3]} \textbf{Roblox AI Tools for Creators} -- \href{https://www.gamesindustry.biz/roblox-announces-new-ai-tools-for-creators}{gamesindustry.biz} + \item \textbf{[Issue 3]} \textbf{Battlefield 6} -- ``very seducing'' AI for early stages -- \href{https://www.gamesradar.com/games/battlefield/battlefield-6-lead-calls-generative-ai-very-seducing-but-says-it-was-only-used-in-the-games-earliest-stages-to-allow-for-more-time-and-more-space-to-be-creative/}{gamesradar.com} + \item \textbf{[Issue 3]} \textbf{Promise} (Google-backed AI studio) -- VFX for legacy media -- \href{https://www.hollywoodreporter.com/business/digital/ai-studio-promise-vfx-generation-company-1236397636/}{hollywoodreporter.com} + \item \textbf{[Issue 4]} \textbf{EA + Stability AI Partnership} -- generative AI tools for games -- \href{https://stability.ai/news/stability-ai-and-ea-partner-to-reimagine-game-development}{stability.ai} + \item \textbf{[Issue 4]} \textbf{Halo Studios} -- AI woven into development -- \href{https://thegamepost.com/insider-halo-studios-generative-ai-game-development/}{thegamepost.com} + \item \textbf{[Issue 5]} \textbf{NBCUniversal $\times$ Dick Wolf Jr} -- AI games deal -- \href{https://www.videogameschronicle.com/news/nbcuniversal-signs-deal-with-law-order-creator-dick-wolfs-son-to-make-ai-generated-games-based-on-its-ip/}{videogameschronicle.com} + \item \textbf{[Issue 5]} \textbf{Microsoft Gaming Copilot} -- screenshots for in-game understanding -- \href{https://www.tomshardware.com/video-games/pc-gaming/microsoft-says-gaming-copilot-uses-screenshots-to-understand-in-game-events-not-for-training-ai-models-optional-feature-can-be-turned-off-but-not-easily-uninstalled}{tomshardware.com} + \item \textbf{[Issue 5]} \textbf{Sony Jabali AI Platform} -- game development -- \href{https://variety.com/2025/gaming/news/sony-jabali-ai-ai-game-development-platform-1236566619/}{variety.com} + \item \textbf{[Issue 5]} \textbf{Krafton AI-First Plans} -- Subnautica owner -- \href{https://www.gamedeveloper.com/business/subnautica-owner-krafton-outlines-plans-to-transform-into-an-ai-first-company}{gamedeveloper.com} + \item \textbf{[Issue 6]} \textbf{Todd Howard on AI at Bethesda} -- toolset, not replacement -- \href{https://www.pcgamer.com/gaming-industry/todd-howard-says-ai-cant-replace-human-creative-intention-but-its-part-of-bethesdas-toolset-for-how-we-build-our-worlds-or-check-things/}{pcgamer.com} + \item \textbf{[Issue 6]} \textbf{EA pushes 15K employees on AI} -- thought partner -- \href{https://www.gamesradar.com/games/even-under-usd20-million-in-debt-ea-reportedly-pushes-15-000-employees-to-use-ai-as-a-thought-partner-for-everything-from-character-art-to-playtesting/}{gamesradar.com} + \item \textbf{[Issue 6]} \textbf{Falcom AI} -- 2--3 hours of work to 10 minutes -- \href{https://www.eurogamer.net/falcom-is-the-latest-developer-to-buy-into-the-ai-hype-machine}{eurogamer.net} + \item \textbf{[Issue 7]} \textbf{Square Enix 70\% AI QA target} -- by end 2027 -- \href{https://www.pcgamer.com/gaming-industry/square-enix-aims-to-have-ai-doing-70-percent-of-its-qa-work-by-the-end-of-2027/}{pcgamer.com} + \item \textbf{[Issue 8]} \textbf{Call of Duty: Black Ops 7 AI art accusations} -- community backlash -- \href{https://www.videogameschronicle.com/news/it-honestly-sucks-fans-think-call-of-duty-black-ops-7-is-filled-with-generative-ai-art/}{videogameschronicle.com} + \item \textbf{[Issue 8]} \textbf{Ubisoft Anno 117 -- AI art placeholder} -- slipped through review -- \href{https://www.videogameschronicle.com/news/ubisoft-says-ai-generated-art-in-anno-117-was-a-placeholder-which-slipped-through-our-review-process/}{videogameschronicle.com} + \item \textbf{[Issue 13]} \textbf{Razer \$600M AI focus} -- strategic investment -- \href{https://www.pymnts.com/news/artificial-intelligence/2026/razer-spends-600-million-dollars-sharpen-focus-ai-gaming/}{pymnts.com} + \item \textbf{[Issue 15]} \textbf{Ubisoft cancels Prince of Persia + four} -- AI refocus -- \href{https://metro.co.uk/2026/01/21/prince-persia-remake-five-games-cancelled-ubisoft-focuses-ai-26431926/}{metro.co.uk} + \item \textbf{[Issue 29]} \textbf{Sony all-in on AI for games} -- 49-agent / 72-skill stack +\end{itemize} + +\section*{9. Games Industry -- Refusal / Position} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Charles Cecil} -- ``AI was an expensive mistake'' -- \href{https://www.gamesindustry.biz/ai-was-an-expensive-mistake-charles-cecil-on-innovation-insolvency-and-broken-sword}{gamesindustry.biz} + \item \textbf{[Issue 4]} \textbf{Pocketpair (Palworld)} -- publishing won't take AI games -- \href{https://www.pcgamer.com/software/ai/palworld-studio-pocketpair-says-its-new-publishing-division-wont-handle-games-that-use-generative-ai-we-dont-believe-in-it/}{pcgamer.com} + \item \textbf{[Issue 9]} \textbf{Witcher 3 / Cyberpunk Director} -- AI helps, doesn't replace -- \href{https://www.gamesindustry.biz/witcher-3-and-cyberpunk-2077-director-says-ai-can-help-but-not-replace-creatives}{gamesindustry.biz} + \item \textbf{[Issue 11]} \textbf{Aardman on AI} -- embrace, but cautious -- \href{https://www.gamesradar.com/entertainment/animation-movies/wallace-and-gromit-creator-says-beloved-animation-studio-aardman-will-embrace-the-technology-of-ai-but-will-be-very-cautious-not-to-lose-our-values/}{gamesradar.com} + \item \textbf{[Issue 14]} \textbf{Larian backs off gen AI} -- Divinity statement -- \href{https://nichegamer.com/larian-studios-backs-off-from-gen-ai/}{nichegamer.com} + \item \textbf{[Issue 14]} \textbf{Games Workshop rules out gen AI} -- Warhammer 40K -- \href{https://decrypt.co/354482/warhammer-40000-maker-games-workshop-rules-out-generative-ai}{decrypt.co} + \item \textbf{[Issue 14]} \textbf{Hooded Horse won't work with AI devs} -- Manor Lords publisher -- \href{https://nichegamer.com/manor-lords-publisher-hooded-horse-wont-work-with-devs-using-gen-ai/}{nichegamer.com} + \item \textbf{[Issue 16]} \textbf{Jagex never AI} -- RuneScape commitment -- \href{https://www.gamesindustry.biz/runescape-maker-jagex-says-it-will-never-use-generative-ai-to-make-in-game-content}{gamesindustry.biz} +\end{itemize} + +\section*{10. Film Industry -- Studios and Positions} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Lionsgate AI failure} -- Futurism report -- \href{https://futurism.com/artificial-intelligence/lionsgate-movies-ai}{futurism.com} + \item \textbf{[Issue 2]} \textbf{Fremantle's Imaginae AI Studios} -- CEO named -- \href{https://www.hollywoodreporter.com/business/digital/fremantle-names-ceo-new-ai-label-imaginae-studios-1236396579/}{hollywoodreporter.com} + \item \textbf{[Issue 2]} \textbf{Goldfinch enGEN3} -- AI cinematic universe -- \href{https://variety.com/2025/film/news/ai-powered-cinematic-universe-platform-engen3-1236543349/}{variety.com} + \item \textbf{[Issue 3]} \textbf{Fox Entertainment + Holywater} -- AI microdramas -- \href{https://www.hollywoodreporter.com/business/business-news/fox-entertainment-invests-in-holywater-ai-microdramas-1236396802/}{hollywoodreporter.com} + \item \textbf{[Issue 4]} \textbf{Netflix ``all in'' on AI} -- Sarandos at industry conference -- \href{https://www.cnbc.com/2025/10/22/netflix-all-in-on-leveraging-ai-in-its-streaming-platform.html}{cnbc.com} + \item \textbf{[Issue 4]} \textbf{Asteria's ``All Heart''} -- Natasha Lyonne short -- \href{https://www.hollywoodreporter.com/movies/movie-news/natasha-lyonne-ai-company-asteria-1236403144/}{hollywoodreporter.com} + \item \textbf{[Issue 5]} \textbf{Wonder Studios \$9M raise} -- AI-native studio -- \href{https://www.uktech.news/ai/ai-film-studio-wonder-lands-9m-investment-20251023}{uktech.news} + \item \textbf{[Issue 5]} \textbf{Watch the Skies} (Swedish AI feature dubbed) -- USA distribution -- \href{https://variety.com/2025/film/news/watch-the-skies-us-theatrical-release-ai-dubbing-1236343110/}{variety.com} + \item \textbf{[Issue 5]} \textbf{Run to the West} (South Korean first AI feature) -- \href{https://cybernews.com/entertainment/korean-cinema-run-to-the-west-ai/}{cybernews.com} + \item \textbf{[Issue 6]} \textbf{Obsidian + Imagine Entertainment} -- Ron Howard, Brian Grazer -- \href{https://www.indiewire.com/news/business/obsidian-studio-ai-production-company-imagine-entertainment-1235158619/}{indiewire.com} + \item \textbf{[Issue 7]} \textbf{Beta Films Chapter41 launch} -- Munich AI startup -- \href{https://deadline.com/2025/11/beta-film-ai-startup-chapter41-artificial-intelligence-1236612632/}{deadline.com} + \item \textbf{[Issue 7]} \textbf{House of David 350+ AI shots} -- Wired feature -- \href{https://www.wired.com/story/amazons-house-of-david-used-over-350-ai-shots-in-season-2-its-creator-isnt-sorry/}{wired.com} + \item \textbf{[Issue 7]} \textbf{Wanted director's AI Method Actors} -- Bekmambetov \$5M -- \href{https://variety.com/2025/film/news/wanted-director-method-acting-ai-actors-1236579647/}{variety.com} + \item \textbf{[Issue 7]} \textbf{Kevin Reilly + Kartel} -- HBO veteran's AI startup -- \href{https://www.hollywoodreporter.com/business/digital/kevin-reilly-ceo-kartel-ai-hbo-1236424692/}{hollywoodreporter.com} + \item \textbf{[Issue 8]} \textbf{Humans in the Loop -- Oscar race} -- Sloan grant -- \href{https://variety.com/2025/film/news/ai-drama-humans-in-the-loop-oscar-race-1236582975/}{variety.com} + \item \textbf{[Issue 8]} \textbf{Synthetic Sincerity -- IDFA} -- Marc Isaacs -- \href{https://www.hollywoodreporter.com/movies/movie-news/synthetic-sincerity-film-idfa-ai-authenticity-interview-1236426180/}{hollywoodreporter.com} + \item \textbf{[Issue 8]} \textbf{AI Images Threaten Documentary} -- Variety -- \href{https://variety.com/2025/film/festivals/ai-generated-images-threaten-future-of-documentary-1236583466/}{variety.com} + \item \textbf{[Issue 11]} \textbf{Disney \$1bn OpenAI investment} -- Sora characters -- \href{https://www.theguardian.com/business/2025/dec/11/disney-open-ai-sora-video-deal}{theguardian.com} + \item \textbf{[Issue 14]} \textbf{Tunisian filmmaker wins \$1M for Lily} -- Dubai AI Award -- \href{https://www.broadcastprome.com/news/tunisian-filmmaker-wins-1-million-ai-film-award-for-lily/}{broadcastprome.com} + \item \textbf{[Issue 14]} \textbf{Disney TikTok-like vertical video AI} -- brand-asset video gen -- \href{https://www.marketingdive.com/news/disney-unveils-tiktok-like-vertical-video-ai-video-generation-tool/809269/}{marketingdive.com} + \item \textbf{[Issue 15]} \textbf{Netflix retention AI strategy} -- Pymnts -- \href{https://www.pymnts.com/subscription-commerce/2026/retention-is-name-of-the-game-for-netflixs-ai-strategy/}{pymnts.com} + \item \textbf{[Issue 16]} \textbf{Andrii Daniels bomb-shelter Christmas clip} -- viral Ukrainian AI film -- \href{https://variety.com/2026/digital/news/ai-video-deadpool-harry-potter-andrii-daniels-1236624632/}{variety.com} + \item \textbf{[Issue 16]} \textbf{Chris Pratt rejects AI villain} -- Mercy pitch -- \href{https://variety.com/2026/film/news/chris-pratt-ai-actor-villain-mercy-amazon-mgm-1236640460/}{variety.com} +\end{itemize} + +\section*{11. Celebrity / Director Positions on AI} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{James Cameron -- ``never going to take place''} -- No Film School -- \href{https://nofilmschool.com/james-cameron-ai}{nofilmschool.com} + \item \textbf{[Issue 1]} \textbf{Taylor Swift -- criticised for AI in promo} -- \href{https://tribune.com.pk/story/2570725/taylor-swift-criticised-for-using-ai-in-the-life-of-a-showgirl-promotional-campaign}{tribune.com.pk} + \item \textbf{[Issue 5]} \textbf{Guillermo del Toro -- ``Rather Die''} -- Variety -- \href{https://variety.com/2025/film/news/guillermo-del-toro-rather-die-generative-ai-frankenstein-1236561316/}{variety.com} + \item \textbf{[Issue 5]} \textbf{Paul Schrader on AI} -- perfect script -- \href{https://www.hollywoodreporter.com/movies/movie-news/paul-schrader-first-ai-movie-1236409606/}{hollywoodreporter.com} + \item \textbf{[Issue 7]} \textbf{Jeremy Renner lawsuit threat} -- multi-millions over AI voice -- \href{https://deadline.com/2025/11/jeremy-renner-lawsuit-threat-ai-movie-1236611830/}{deadline.com} + \item \textbf{[Issue 7]} \textbf{George Clooney on AI actors} -- Variety column -- \href{https://variety.com/2025/scene/columns/george-clooney-ai-actors-movie-stars-1236579661/}{variety.com} + \item \textbf{[Issue 10]} \textbf{James Cameron ``horrifying''} -- The Guardian -- \href{https://www.theguardian.com/film/2025/dec/01/james-cameron-says-ai-actors-are-horrifying-to-me}{theguardian.com} + \item \textbf{[Issue 10]} \textbf{Jenna Ortega ``very easy to be terrified''} -- NME -- \href{https://www.nme.com/news/jenna-ortega-says-its-very-easy-to-be-terrified-of-ai-in-filmmaking-3913926}{nme.com} + \item \textbf{[Issue 11]} \textbf{Leonardo DiCaprio -- AI can't be art} -- THR -- \href{https://www.hollywoodreporter.com/movies/movie-news/leonardo-dicaprio-ai-cant-be-art-no-humanity-1236445405/}{hollywoodreporter.com} + \item \textbf{[Issue 11]} \textbf{James Cameron rejects AI actors at Hainan Festival} -- \href{https://variety.com/2025/film/news/james-cameron-rejects-ai-actors-hainan-wouldnt-do-it-1236604204/}{variety.com} + \item \textbf{[Issue 14]} \textbf{Claire Foy no interest in AI films} -- Daily Mail -- \href{https://www.dailymail.co.uk/tvshowbiz/article-15454199/Claire-Foy-AI-films-sad-disappointed-people-future-Hollywood.html}{dailymail.co.uk} + \item \textbf{[Issue 14]} \textbf{Wu-Tang Clan RZA} -- case for AI in film/music -- \href{https://www.vice.com/en/article/wu-tang-clans-rza-makes-the-case-for-ai-in-film-and-music-an-amazing-thing-for-us/}{vice.com} + \item \textbf{[Issue 15]} \textbf{Matthew McConaughey protects voice/image} -- Lawyer Monthly -- \href{https://www.lawyer-monthly.com/2026/01/matthew-mcconaughey-protects-voice-image-ai/}{lawyer-monthly.com} + \item \textbf{[Issue 15]} \textbf{Mara Wilson deepfake apocalypse fear} -- Deadline -- \href{https://deadline.com/2026/01/matilda-mara-wilson-stranger-things-ai-deepfake-apocalypse-1236689474/}{deadline.com} +\end{itemize} + +\section*{12. Music Industry -- Labels, Deals, and Lawsuits} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{Universal \& Warner -- landmark AI deals within weeks} -- Musically -- \href{https://musically.com/2025/10/02/report-umg-and-wmg-could-sign-landmark-ai-deals-within-weeks/}{musically.com} + \item \textbf{[Issue 5]} \textbf{Universal Music + Stability AI Alliance} -- \emph{op.\ cit.\ (Section~3)} + \item \textbf{[Issue 5]} \textbf{Udio + UMG Partnership} -- \emph{op.\ cit.\ (Section~3)} + \item \textbf{[Issue 7]} \textbf{GEMA v OpenAI Munich ruling} -- \emph{op.\ cit.\ (Section~3)} + \item \textbf{[Issue 7]} \textbf{``Biggest theft in music history''} -- Rights group sues Suno -- \href{https://edm.com/gear-tech/rights-group-sues-suno-copyright-infringement/}{edm.com} + \item \textbf{[Issue 7]} \textbf{Bangkok Post: Xania Monet \$3M deal} -- \href{https://www.bangkokpost.com/life/tech/3142355/ai-singer-xania-monet-signs-3m-deal-with-hallwood-media}{bangkokpost.com} + \item \textbf{[Issue 8]} \textbf{Warner Music + Stability AI} -- next-gen tools -- \href{https://stability.ai/news/warner-music-group-and-stability-ai-join-forces-to-build-next-gen-tools}{stability.ai} + \item \textbf{[Issue 9]} \textbf{Johnny Cash estate sues Coca-Cola} -- ELVIS Act -- \href{https://completemusicupdate.com/johnny-cash-estate-uses-elvis-act-to-sue-coke-over-tribute-act-ad-soundtrack/}{completemusicupdate.com} + \item \textbf{[Issue 12]} \textbf{Splice + UMG Collaboration} -- \emph{op.\ cit.\ (Section~3)} + \item \textbf{[Issue 14]} \textbf{UMG slams AI slop} -- \emph{op.\ cit.\ (Section~3)} + \item \textbf{[Issue 16]} \textbf{Wixen \$50M lawsuit against Meta} -- \href{https://www.musicbusinessworldwide.com/wixen-files-50m-copyright-suit-against-meta-claims-tech-giant-wants-to-replace-songwriters-with-ai/}{musicbusinessworldwide.com} + \item \textbf{[Issue 17]} \textbf{UMG \$3B suit against Anthropic} -- \emph{Dream Machine} coverage +\end{itemize} + +\section*{13. Copyright, Policy and Regulation} + +\begin{itemize} + \item \textbf{[Issue 9]} \textbf{EU Lawmakers minimum age for AI/social} -- Reuters -- \href{https://www.reuters.com/legal/litigation/european-lawmakers-seek-eu-wide-minimum-age-access-ai-chatbots-social-media-2025-11-26/}{reuters.com} + \item \textbf{[Issue 12]} \textbf{UK DSIT Statement of Progress on Copyright and AI} -- the 88\% consultation -- \href{https://www.gov.uk/government/publications/copyright-and-artificial-intelligence-progress-report/copyright-and-artificial-intelligence-statement-of-progress-under-section-137-data-use-and-access-act}{gov.uk} + \item \textbf{[Issue 12]} \textbf{IPWatchdog UK consultation analysis} -- \href{https://ipwatchdog.com/2025/12/16/respondents-uk-ai-consultation-overwhelmingly-want-ai-companies-license-copyrighted-works-all-cases/}{ipwatchdog.com} + \item \textbf{[Issue 11]} \textbf{NY AI Advertising Disclosure Law} -- Verge -- \href{https://www.theverge.com/news/842848/new-york-law-ai-advertisements-sag-aftra-labor}{theverge.com} + \item \textbf{[Issue 14]} \textbf{Grok app ban consideration} -- Fast Company -- \href{https://www.fastcompany.com/91474131/governments-around-the-world-are-considering-bans-on-groks-app-over-ai-sexual-image-scandal}{fastcompany.com} + \item \textbf{[Issue 21]} \textbf{UK DSIT Final Copyright Report} -- walked-back position + \item \textbf{[Issue 28]} \textbf{Academy ``You must be human to win'' rule} -- 2026 awards + \item \textbf{[Issue 29]} \textbf{Cannes AI Disclosure Standard} -- industry coordination +\end{itemize} + +\section*{14. Unions and Labour} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{SAG-AFTRA Condemns Tilly Norwood} -- \emph{op.\ cit.\ (Section~5)} + \item \textbf{[Issue 1]} \textbf{UK Equity Statement} -- Hollywood Reporter -- \href{https://www.hollywoodreporter.com/movies/movie-news/tilly-norwood-ai-actress-uk-union-equity-sag-aftra-debate-1236391739/}{hollywoodreporter.com} + \item \textbf{[Issue 11]} \textbf{Equity 99\% Strike Vote} -- landslide for industrial action -- \href{https://www.equity.org.uk/news/2025/performers-prepared-to-take-industrial-action-over-ai-in-landslide-99-vote}{equity.org.uk} + \item \textbf{[Issue 11]} \textbf{NY AI Advertising Disclosure Law / SAG-AFTRA quote} -- \emph{op.\ cit.\ (Section~13)} + \item \textbf{[Issue 15]} \textbf{Equity welcomes improved offer} -- film/TV AI protections -- \href{https://www.equity.org.uk/news/2026/equity-welcomes-improved-offer-in-ai-protection-negotiations-in-film-and-tv}{equity.org.uk} + \item \textbf{[Issue 26/29]} \textbf{SAG-AFTRA ``Tilly Tax'' contract provisions} -- final spring 2026 contract +\end{itemize} + +\section*{15. Audience Response and Slop Ceiling} + +\begin{itemize} + \item \textbf{[Issue 7]} \textbf{Deezer/Ipsos AI Music Survey} -- 97\% can't tell, but care when told -- \href{https://newsroom-deezer.com/2025/11/deezer-ipsos-survey-ai-music/}{newsroom-deezer.com} + \item \textbf{[Issue 7]} \textbf{50,000 AI tracks uploaded to Deezer daily} -- Musically -- \href{https://musically.com/2025/11/12/50000-ai-music-tracks-are-now-uploaded-to-deezer-every-day/}{musically.com} + \item \textbf{[Issue 8]} \textbf{MrBeast on AI} -- threat to creators -- \href{https://www.forbes.com/sites/johnbbrandon/2025/10/10/mrbeast-is-right-about-ai-content-but-are-we-really-in-scary-times/}{forbes.com} + \item \textbf{[Issue 12]} \textbf{Merriam-Webster Word of the Year: ``Slop''} -- Hollywood Reporter -- \href{https://www.hollywoodreporter.com/news/general-news/slop-word-year-2025-merriam-webster-1236450780/}{hollywoodreporter.com} + \item \textbf{[Issue 12]} \textbf{YouTube AI channels -- 1.2bn views fake politics} -- Guardian -- \href{https://www.theguardian.com/technology/2025/dec/13/fake-anti-labour-video-billion-views-youtube-2025}{theguardian.com} + \item \textbf{[Issue 14]} \textbf{Spotify AI flood -- subscribers furious} -- TechRadar -- \href{https://www.techradar.com/audio/spotify/ai-music-is-flooding-spotify-and-subscribers-are-furious-heres-why-music-fans-no-longer-trust-discover-weekly}{techradar.com} + \item \textbf{[Issue 14]} \textbf{Soultracks: ``AI music is catchy, familiar\ldots\ and boring''} -- \href{https://soultracks.com/news-ai-generated-music-is-catchy-boring/}{soultracks.com} + \item \textbf{[Issue 15]} \textbf{Sweden bans AI from official chart} -- Independent -- \href{https://www.independent.co.uk/tv/news/ai-music-song-banned-sweden-spotify-b2901627.html}{independent.co.uk} + \item \textbf{[Issue 16]} \textbf{YouTube CEO: managing AI slop on priority list 2026} -- Digital Music News -- \href{https://www.digitalmusicnews.com/2026/01/22/youtube-ceo-ai-slop-2026-comments/}{digitalmusicnews.com} + \item \textbf{[Issue 16]} \textbf{Bain \& Co -- ``People still want the radio star''} -- \href{https://www.bain.com/insights/in-an-ai-age-people-still-want-the-radio-star/}{bain.com} + \item \textbf{[Issues 25--28]} \textbf{Deezer April 2026 data -- 44\% / 3\%} -- newsroom release -- \href{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}{newsroom-deezer.com} +\end{itemize} + +\section*{16. Provenance, Watermarking, Detection} + +\begin{itemize} + \item \textbf{[Issue 2]} \textbf{OpenAI likeness protections} -- Digital Music News -- \href{https://www.digitalmusicnews.com/2025/10/08/openais-likeness-protections-dont-apply-to-dead-celebrities/}{digitalmusicnews.com} + \item \textbf{[Issue 11]} \textbf{SynthID rollout across Veo / Lyria / Imagen} -- Google DeepMind + \item \textbf{[Issue 12]} \textbf{Gemini ``Is this AI?'' video verification} -- \href{https://www.linkedin.com/posts/googledeepmind_verify-google-ai-generated-videos-in-the-activity-7407748300688478208-fJgW}{linkedin.com} + \item \textbf{[Issue 13]} \textbf{Instagram chief -- ``fingerprint real media''} -- Digital Music News -- \href{https://www.digitalmusicnews.com/2026/01/05/instagram-chief-ai-slop-comments/}{digitalmusicnews.com} + \item \textbf{[Issue 13]} \textbf{Instagram head AI verification} -- WebProNews -- \href{https://www.webpronews.com/instagram-head-warns-ai-images-erode-trust-calls-for-verification-standards/}{webpronews.com} + \item \textbf{[Issue 18]} \textbf{Deezer licences its AI-music detection tool} -- \emph{Dream Machine} coverage + \item \textbf{[Issue 29]} \textbf{YouTube false-positive: Tiny Grandma stop-motion} -- flagged as AI +\end{itemize} + +\section*{17. Workplace AI Adoption / Shadow AI / Workforce Research} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{MIT study -- AI reduces brain activity} -- AI News -- \href{https://www.artificialintelligence-news.com/news/ai-causes-reduction-in-users-brain-activity-mit/}{artificialintelligence-news.com} + \item \textbf{[Issue 1]} \textbf{51\% of Japanese games studios use AI} -- \emph{op.\ cit.\ (Section~8)} + \item \textbf{[Issue 1]} \textbf{Yale on AI adoption} -- Neil Hoyne -- \href{https://www.linkedin.com/posts/neilhoyne_ai-data-research-activity-7379272781798035456-hnuV}{linkedin.com} + \item \textbf{[Issue 5]} \textbf{Azumo AI in Workplace Statistics 2025} -- \href{https://azumo.com/artificial-intelligence/ai-insights/ai-in-workplace-statistics}{azumo.com} + \item \textbf{[Issue 5]} \textbf{Tech.co -- Gen Z most likely use AI behind boss's back} -- \href{https://tech.co/news/gen-z-most-likely-use-ai-boss}{tech.co} + \item \textbf{[Issue 5]} \textbf{IDC Europe Shadow AI security nightmare} -- \href{https://blog-idceurope.com/shadow-ai-how-stealth-productivity-is-strangling-enterprise-ai-adoption-and-creating-a-security-nightmare/}{blog-idceurope.com} + \item \textbf{[Issue 5]} \textbf{Forbes -- AI Tools Flood Workplaces} -- \href{https://www.forbes.com/sites/carolinecastrillon/2025/09/09/ai-tools-flood-workplaces-as-employees-face-a-double-bind/}{forbes.com} + \item \textbf{[Issue 5]} \textbf{Exploding Topics AI Workforce Research} -- \href{https://explodingtopics.com/blog/ai-workforce-research}{explodingtopics.com} + \item \textbf{[Issue 6]} \textbf{Adobe Creators' Toolkit Report (16,000 creators)} -- \href{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}{news.adobe.com} + \item \textbf{[Issue 7]} \textbf{CNBC -- ADHD, autism, dyslexia and AI agents} -- \href{https://www.cnbc.com/2025/11/08/adhd-autism-dyslexia-jobs-careers-ai-agents-success.html}{cnbc.com} + \item \textbf{[Issue 8]} \textbf{Forbes Vibe Coding \$220K} -- \href{https://www.forbes.com/sites/rachelwells/2025/11/06/the-in-demand-ai-skill-and-certifications-that-pays-up-to-220000/}{forbes.com} + \item \textbf{[Issue 8]} \textbf{LANDR -- 87\% of musicians use AI tools} -- \href{https://aristake.com/ai-tools-musicians-study/}{aristake.com} + \item \textbf{[Issue 9]} \textbf{Economist -- Investors expect AI use to soar (it isn't)} -- \href{https://www.economist.com/finance-and-economics/2025/11/26/investors-expect-ai-use-to-soar-thats-not-happening}{economist.com} + \item \textbf{[Issue 9]} \textbf{Reuters Institute UK Journalists AI Survey} -- \href{https://reutersinstitute.politics.ox.ac.uk/ai-adoption-uk-journalists-and-their-newsrooms-surveying-applications-approaches-and-attitudes}{reutersinstitute.politics.ox.ac.uk} + \item \textbf{[Issue 12]} \textbf{Economist -- Job apocalypse? Humbug!} -- \href{https://www.economist.com/business/2025/12/14/job-apocalypse-humbug-ai-is-creating-brand-new-occupations}{economist.com} + \item \textbf{[Issue 16]} \textbf{Guardian -- AI is hitting UK harder} -- \href{https://www.theguardian.com/technology/2026/jan/26/ai-uk-jobs-us-japan-germany-australia}{theguardian.com} + \item \textbf{[Issue 16]} \textbf{McKinsey AI for film and TV} -- \href{https://www.mckinsey.com/industries/technology-media-and-telecommunications/our-insights/what-ai-could-mean-for-film-and-tv-production-and-the-industrys-future}{mckinsey.com} + \item \textbf{[Issue 16]} \textbf{PRS for Music AI Survey 2026} -- \href{https://www.prsformusic.com/m-magazine/news/prs-for-music-ai-survey-2026}{prsformusic.com} + \item \textbf{[Issue 24]} \textbf{OpenAI public-policy on disruption} -- robot tax, 4-day workweek, wealth funds +\end{itemize} + +\section*{18. Advertising and Brand AI} + +\begin{itemize} + \item \textbf{[Issue 3]} \textbf{WPP \$400M Google partnership} -- \href{https://martechseries.com/predictive-ai/ai-platforms-machine-learning/google-and-spotify-alum-launch-epiminds-with-6-6m-to-build-marketing-teams-for-the-ai-era/}{martechseries.com} + \item \textbf{[Issue 5]} \textbf{WPP Open Pro launch} -- \href{https://campaignbrief.com/wpp-launches-ai-powered-marketing-platform-wpp-open-pro/}{campaignbrief.com} + \item \textbf{[Issue 5]} \textbf{Mondelez AI for TV ads} -- Verge -- \href{https://www.theverge.com/news/806047/mondelez-ai-generated-ads}{theverge.com} + \item \textbf{[Issue 6]} \textbf{WPP + Sightly partnership} -- Digiday -- \href{https://digiday.com/media-buying/agencies-continue-to-expand-ai-capabilities-to-boost-brand-performance/}{digiday.com} + \item \textbf{[Issue 6]} \textbf{Coca-Cola AI Holiday ad (2nd attempt)} -- Adweek -- \href{https://www.adweek.com/creativity/coca-cola-uses-ai-to-rekindle-the-magic-of-its-holiday-ads/}{adweek.com} + \item \textbf{[Issue 7]} \textbf{Digiday -- AI agent developers in-demand role} -- \href{https://digiday.com/marketing/ai-agent-developers-have-become-adlands-in-demand-role/}{digiday.com} + \item \textbf{[Issue 10]} \textbf{Valentino ``disturbing'' AI handbag ads} -- BBC -- \href{https://www.bbc.co.uk/news/articles/cwyvjyvn83go}{bbc.co.uk} + \item \textbf{[Issue 11]} \textbf{McDonald's NL Christmas AI Ad pulled} -- Branding in Asia -- \href{https://www.brandinginasia.com/its-the-most-terrible-time-of-the-year-mcdonalds-netherlands-wonderfully-chaotic-ai-driven-christmas-film/}{brandinginasia.com} + \item \textbf{[Issue 11]} \textbf{Channel 4 AI Ads} -- Estate Agent Today -- \href{https://www.estateagenttoday.co.uk/breaking-news/2025/12/homebuilder-among-first-to-use-channel-4s-ai-ads/}{estateagenttoday.co.uk} + \item \textbf{[Issue 14]} \textbf{Marketing Week: AI ads winning in testing} -- \href{https://www.marketingweek.com/dismiss-ai-ads-winning-creative-effectiveness/}{marketingweek.com} + \item \textbf{[Issue 15]} \textbf{PGA Tour + AWS expanded partnership} -- Pymnts -- \href{https://www.pymnts.com/artificial-intelligence-2/2026/ai-content-is-par-for-the-course-with-pga-tours-expanded-aws-partnership/}{pymnts.com} + \item \textbf{[Issue 15]} \textbf{Avocados from Mexico skip TV for AI} -- Digiday -- \href{https://digiday.com/marketing/avocados-from-mexico-turns-to-ai-to-advertise-around-the-super-bowl-instead-of-a-tv-buy/}{digiday.com} + \item \textbf{[Issue 16]} \textbf{Higgsfield + Madonna AI video} -- Adweek -- \href{https://www.adweek.com/media/higgsfield-ai-marketing-startup/}{adweek.com} + \item \textbf{[Issue 27]} \textbf{WPP + Google Earth AI consumer journey} -- \emph{Dream Machine} coverage +\end{itemize} + +\section*{19. Festivals, Institutions, Awards} + +\begin{itemize} + \item \textbf{[Issue 6]} \textbf{AI FilmFest Japan / Hoyt Dwyer} -- \href{https://www.prnewswire.com/news-releases/from-apple-tv-creative-to-ai-filmmaker-hoyt-dwyers-animated-film-to-compete-at-ai-filmfest-japan-2025-302598064.html}{prnewswire.com} + \item \textbf{[Issue 6]} \textbf{India's first AI Film Festival} -- IFFI, NFDC, LTIMindtree -- \href{https://www.medianews4u.com/iffi-partners-with-ltimindtree-and-nfdc-to-launch-indias-first-ai-film-festival-and-hackathon/}{medianews4u.com} + \item \textbf{[Issue 14]} \textbf{Tunisian filmmaker wins \$1M for Lily} -- \emph{op.\ cit.\ (Section~10)} + \item \textbf{[Issue 14]} \textbf{Comic-Con Art Show allows AI} -- Filmstories -- \href{https://filmstories.co.uk/news/san-diego-comic-con-art-show-to-allow-ai-slop/}{filmstories.co.uk} + \item \textbf{[Issue 14]} \textbf{Emmys AI Guidance} -- THR -- \href{https://www.hollywoodreporter.com/tv/tv-news/emmys-ai-guidelines-2026-awards-1236468434/}{hollywoodreporter.com} + \item \textbf{[Issue 15]} \textbf{Sundance AI Literacy Initiative} -- Sundance Institute blog -- \href{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}{sundance.org} + \item \textbf{[Issue 15]} \textbf{Google \$2M Sundance AI Education} -- \href{https://blog.google/company-news/outreach-and-initiatives/google-org/sundance-institute-ai-education/}{blog.google} + \item \textbf{[Issue 16]} \textbf{CNET -- San Diego Comic-Con bans AI art at 2026 event} -- \href{https://www.cnet.com/culture/san-diego-comic-con-bans-ai-art-for-2026-event/}{cnet.com} + \item \textbf{[Issue 16]} \textbf{Adobe Sundance Film Festival 2026} -- \href{https://blog.adobe.com/en/publish/2026/01/20/sundance-film-festival-2026-creativity-community-power-storytelling}{blog.adobe.com} + \item \textbf{[Issue 28]} \textbf{Academy ``human to win'' rule} -- \emph{Dream Machine} coverage + \item \textbf{[Issue 29]} \textbf{Cannes AI Disclosure Standard launched} -- \emph{Dream Machine} coverage +\end{itemize} + +\section*{20. Geographic / Regional AI Production} + +\begin{itemize} + \item \textbf{[Issue 5]} \textbf{CNBC Africa on AI in African music} -- \href{https://www.cnbcafrica.com/2025/how-ai-is-changing-the-landscape-of-the-music-industry-in-africa}{cnbcafrica.com} + \item \textbf{[Issue 5]} \textbf{Run to the West -- South Korea's first AI feature} -- \emph{op.\ cit.\ (Section~10)} + \item \textbf{[Issue 5]} \textbf{Watch the Skies -- Swedish AI dubbing} -- \emph{op.\ cit.\ (Section~10)} + \item \textbf{[Issue 6]} \textbf{India's first AI Film Festival} -- \emph{op.\ cit.\ (Section~19)} + \item \textbf{[Issue 12]} \textbf{Trilok -- Indian AI band} -- Musically -- \href{https://musically.com/2025/12/17/indian-ai-band-trilok-performs-live-government-denies-association/}{musically.com} + \item \textbf{[Issue 13]} \textbf{56.9\% of new Chinese independent songs are AI} -- Musically -- \href{https://musically.com/2026/01/05/report-56-9-of-new-independent-songs-in-china-are-ai-generated/}{musically.com} + \item \textbf{[Issue 14]} \textbf{BBC Future -- Lights, camera, algorithm (India)} -- \href{https://www.bbc.co.uk/future/article/20251223-why-indian-cinema-is-awash-with-ai}{bbc.co.uk} + \item \textbf{[Issue 14]} \textbf{Shift Up CEO on AI vs China/US scale} -- \href{https://www.pocketgamer.biz/shift-up-ceo-says-ai-is-key-to-competing-with-chinas-game-industry-scale/}{pocketgamer.biz} + \item \textbf{[Issue 25]} \textbf{Indonesia's Legenda Bertuah} -- first AI-animated series + \item \textbf{[Issue 27]} \textbf{Korin AI -- Africa-trained, Africa-built} -- launch + \item \textbf{[Issue 27]} \textbf{Latin American AI film festival wave} -- \emph{Dream Machine} coverage +\end{itemize} + +\section*{21. Education, Training, Literacy} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{UCL, RCA, Brandtech Centre for Creative AI launch} -- Broadcast Now -- \href{https://www.broadcastnow.co.uk/broadcasters/alex-mahon-joins-stellar-ai-creative-summit-line-up/5209227.article}{broadcastnow.co.uk} + \item \textbf{[Issue 11]} \textbf{Lovable for classrooms} -- \href{https://lovable.dev/classroom}{lovable.dev} + \item \textbf{[Issue 15]} \textbf{UW-Stout AI baseline competency in filmmaking} -- \emph{op.\ cit.} + \item \textbf{[Issue 15]} \textbf{Google + Sundance Institute AI Education} -- \emph{op.\ cit.\ (Section~19)} + \item \textbf{[Issue 16]} \textbf{UK government ``Free AI training for all''} -- \href{https://www.gov.uk/government/news/free-ai-training-for-all-as-government-and-industry-programme-expands-to-provide-10-million-workers-with-key-ai-skills-by-2030}{gov.uk} + \item \textbf{[Issue 16]} \textbf{Adobe at Sundance: Ignite Day} -- \emph{op.\ cit.\ (Section~7)} +\end{itemize} + +\section*{22. Open Source and Infrastructure} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{ComfyUI raises \$17M} -- \emph{op.\ cit.\ (Section~7)} + \item \textbf{[Issue 1]} \textbf{PlayCanvas SOG} -- \emph{op.\ cit.\ (Section~4)} + \item \textbf{[Issue 1]} \textbf{DecartAI -- open-source real-time world transformation} -- \href{https://decart.ai/}{decart.ai} + \item \textbf{[Issue 1]} \textbf{Civitai / Replicate} -- open infrastructure layer + \item \textbf{[Issue 4]} \textbf{Krea Realtime open-sourced} -- \emph{op.\ cit.\ (Section~1)} + \item \textbf{[Issue 5]} \textbf{Meta + Hugging Face OpenEnv} -- \emph{op.\ cit.\ (Section~6)} + \item \textbf{[Issue 8]} \textbf{Hugging Face + Google Cloud partnership} -- \href{https://www.linkedin.com/posts/julienchaumond_i-am-super-excited-to-announce-that-hugging-activity-7396177403972276225-CuMM}{linkedin.com} + \item \textbf{[Issue 8]} \textbf{80\% of A16Z pitches use Chinese open-source models} -- \href{https://www.linkedin.com/posts/stevenouri_a-wild-stat-80-of-startups-pitching-a16z-activity-7396182718998351872-xTKR}{linkedin.com} + \item \textbf{[Issue 11]} \textbf{Ubisoft CHORD open-sourced} -- \emph{op.\ cit.\ (Section~4)} + \item \textbf{[Issue 27]} \textbf{ComfyUI \$500M valuation} -- \emph{Dream Machine} coverage + \item \textbf{[Issue 27]} \textbf{Anthropic + Blender Foundation patronage} -- \emph{Dream Machine} coverage + \item \textbf{[Issue 27]} \textbf{Korin AI launch} -- \emph{op.\ cit.\ (Section~20)} +\end{itemize} + +\section*{23. Web Infrastructure / Bots / Dead Internet} + +\begin{itemize} + \item \textbf{[Issue 4]} \textbf{Imperva 2025 Bad Bot Report} -- bots = 51\% of web traffic -- \href{https://www.imperva.com/blog/2025-imperva-bad-bot-report-how-ai-is-supercharging-the-bot-threat/}{imperva.com} + \item \textbf{[Issue 4]} \textbf{Cloudflare crawl-to-click gap} -- \href{https://blog.cloudflare.com/crawlers-click-ai-bots-training/}{blog.cloudflare.com} + \item \textbf{[Issue 4]} \textbf{Dead Internet Theory} -- Wikipedia -- \href{https://en.wikipedia.org/wiki/Dead_Internet_theory}{en.wikipedia.org} + \item \textbf{[Issue 4]} \textbf{Grand View Research GenAI Content Creation Market} -- \href{https://www.grandviewresearch.com/industry-analysis/generative-ai-content-creation-market-report}{grandviewresearch.com} + \item \textbf{[Issue 4]} \textbf{Futurism -- AI-only social network collapses into warring tribes} -- \href{https://futurism.com/social-network-ai-intervention-echo-chamber}{futurism.com} +\end{itemize} + +\section*{24. AI Bubble / Economics / Investment} + +\begin{itemize} + \item \textbf{[Issue 1]} \textbf{AI bubble 17$\times$ dotcom} -- PC Gamer -- \href{https://www.pcgamer.com/software/ai/fabulous-news-everyone-market-analyst-says-the-ai-bubble-is-17x-bigger-than-the-dotcom-goldrush-and-4x-larger-than-the-subprime-bubble-that-caused-the-2008-crash/}{pcgamer.com} + \item \textbf{[Issue 2]} \textbf{Suno \$2.45B valuation} -- \emph{op.\ cit.\ (Section~3)} + \item \textbf{[Issue 4]} \textbf{AdsGency \$12M seed} -- \emph{op.\ cit.\ (Section~6)} + \item \textbf{[Issue 5]} \textbf{Sifted -- Synthesia rejects \$3B Adobe} -- \href{https://sifted.eu/articles/synthesia-acquisition-offer}{sifted.eu} + \item \textbf{[Issue 14]} \textbf{Kartel / Reilly leadership} -- \emph{op.\ cit.\ (Section~10)} + \item \textbf{[Issue 15]} \textbf{Higgsfield \$80M raise at \$1.3B} -- \href{https://siliconangle.com/2026/01/15/higgsfield-raises-80m-1-3b-valuation-scale-ai-video-platform/}{siliconangle.com} + \item \textbf{[Issue 16]} \textbf{Higgsfield earns \$200M in 9 months} -- \href{https://eu.36kr.com/en/p/3650517574312323}{eu.36kr.com} + \item \textbf{[Issue 16]} \textbf{Synthesia hits \$4B valuation} -- \emph{op.\ cit.\ (Section~5)} + \item \textbf{[Issue 21]} \textbf{Adobe + NVIDIA Strategic Partnership} -- \emph{op.\ cit.\ (Section~6)} + \item \textbf{[Issue 25]} \textbf{ElevenLabs \$500M ARR} -- \emph{Dream Machine} coverage + \item \textbf{[Issue 27]} \textbf{Google \$40B investment in Anthropic} -- \emph{Dream Machine} coverage + \item \textbf{[Issue 27]} \textbf{ComfyUI \$500M valuation} -- \emph{op.\ cit.\ (Section~22)} +\end{itemize} + +\bigskip\par\noindent\rule{\textwidth}{0.4pt}\par\bigskip + +\section*{Using This Index} + +This thematic index covers the significant sources across the \emph{Dream Machine} archive, organised by topic. For specific research, follow the bracketed Issue numbers back to the canonical issue file in \texttt{Dream Machine MD/}. Each issue file ends with the section ``All embedded URLs (in document order)'' which lists every URL the issue carried, including local navigation links, profile pages and platform housekeeping links that are not reproduced here. + +The newsletter is a continuous publication. The index above reflects the state of the archive at the time of book publication (May 2026). Subsequent issues will extend the catalogue. The newsletter archive itself, on LinkedIn, remains the canonical primary source for every link the book builds on. + +For deeper analytical treatment of the data this index points to, see the deep-dive appendices: +\begin{itemize} + \item Appendix D: The Shadow AI Paradox + \item Appendix E: Dynamics of Generative AI Adoption + \item Appendix F: AI, Stigma, Privilege, Democratisation + \item Appendix G: The Age of Intent +\end{itemize} diff --git a/latex/backmatter/citation_index.tex b/latex/backmatter/citation_index.tex new file mode 100644 index 0000000..5c06200 --- /dev/null +++ b/latex/backmatter/citation_index.tex @@ -0,0 +1,340 @@ +\chapter*{Citation Index} +\addcontentsline{toc}{chapter}{Citation Index} + +\textit{Dream Machine: The New Creative Economy} + +All footnoted sources, organised by chapter. Every claim of substance in the manuscript is anchored to one of these references. + +\section*{Foreword -- Welcome to the Dream Machine} + +\begin{enumerate} + +\item Variety, ``SAG-AFTRA Condemns Tilly Norwood: AI Actress Is Not an Actor,'' 30 September 2025. \url{https://variety.com/2025/film/news/sag-aftra-tilly-norwood-ai-actress-1236534779/}. See also NBC News, ``Tilly Norwood, fully AI `actor,' blasted by actors union SAG-AFTRA for `devaluing human artistry'.'' \url{https://www.nbcnews.com/pop-culture/pop-culture-news/tilly-norwood-fully-ai-actor-blasted-actors-union-sag-aftra-devaluing-rcna234685}. Discussed in \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1} (6 October 2025). + +\item \textit{The Hollywood Reporter}, ``U.K. Union Equity Condemns Tilly Norwood: `AI Tool, Not a Performer'.'' \url{https://www.hollywoodreporter.com/movies/movie-news/tilly-norwood-ai-actress-uk-union-equity-sag-aftra-debate-1236391739/}. See also Variety, ``Tilly Norwood Slammed by Equity as AI Tool, Concerned About Origin.'' \url{https://variety.com/2025/film/global/tilly-norwood-slammed-equity-ai-tool-concerned-origin-1236537042/}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item CNN, ``Tilly Norwood: Hollywood is fuming over a new `AI actress,''' 30 September 2025. \url{https://www.cnn.com/2025/09/30/tech/hollywood-ai-actor-backlash}. + +\item OpenAI, ``Sora 2 is here,'' announcement page, 30 September 2025. \url{https://openai.com/index/sora-2/}. The model launched alongside an invite-only iOS app of the same name in the U.S. and Canada. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1} carried the launch alongside contemporaneous coverage from NBC News and \textit{The Guardian} on the model's first copyright and safety incidents. + +\item \textit{Dream Machine | Creative AI}, LinkedIn newsletter, archive of Issues \href{../Dream\%20Machine\%20MD/1.md}{1}--\href{../Dream\%20Machine\%20MD/29.md}{29}, October 2025 -- May 2026. \url{https://www.linkedin.com/newsletters/dream-machine-creative-ai-7379776527871381505/}. + +\item DreamLab AI Collective, team page. \url{https://dreamlab-ai.com/team}. Referenced from \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16} onward. + +\item Charles Cecil (Revolution Software, \textit{Broken Sword}) quoted in \textit{gamesindustry.biz}, ```AI was an expensive mistake': Charles Cecil on innovation, insolvency, and Broken Sword.'' \url{https://www.gamesindustry.biz/ai-was-an-expensive-mistake-charles-cecil-on-innovation-insolvency-and-broken-sword}. \href{../Dream\%20Machine\%20MD/3.md}{\textit{Dream Machine} Issue~3}. + +\item Adobe, ``Inaugural Adobe Creators' Toolkit Report: 86 Per Cent of Global Creators Use Creative Generative AI.'' \url{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}. Survey of 16,000 creators across the U.S., U.K., France, Germany, South Korea, Japan, India and Australia, released at Adobe MAX 2025. \href{../Dream\%20Machine\%20MD/6.md}{\textit{Dream Machine} Issue~6}. + +\item UK Department for Science, Innovation and Technology (DSIT), \textit{Statement of Progress on Copyright and AI}, December 2025. \url{https://www.gov.uk/government/publications/copyright-and-artificial-intelligence-progress-report/copyright-and-artificial-intelligence-statement-of-progress-under-section-137-data-use-and-access-act}. See also IPWatchdog, ``Respondents to UK AI Consultation Overwhelmingly Want AI Companies to License Copyrighted Works in All Cases.'' \url{https://ipwatchdog.com/2025/12/16/respondents-uk-ai-consultation-overwhelmingly-want-ai-companies-license-copyrighted-works-all-cases/}. \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12}. + +\item \href{../Dream\%20Machine\%20MD/5.md}{\textit{Dream Machine} Issue~5}, ``Adobe's Latest AI Announcements -- Is every tool going AI?'', 31 October 2025. \url{https://www.linkedin.com/pulse/dream-machine-creative-ai-news-insight-oct-25-issue-5-woodbridge-f7jnc/}. + +\item Adobe, Adobe MAX 2025 keynote messaging, October 2025. Coverage: Creative Boom, ``Adobe is putting AI in everything everywhere all at once.'' \url{https://www.creativeboom.com/news/adobe-is-putting-ai-in-everything-everywhere-all-at-once/}. \href{../Dream\%20Machine\%20MD/5.md}{\textit{Dream Machine} Issue~5}. + +\item World Labs, \textit{Marble} -- first commercial spatial-AI world model, public launch November 2025. \url{https://marble.worldlabs.ai/}. Technical context: TechCrunch, ``Fei-Fei Li's World Labs speeds up the world model race with Marble, its first commercial product.'' \url{https://techcrunch.com/2025/11/12/fei-fei-lis-world-labs-speeds-up-the-world-model-race-with-marble-its-first-commercial-product/}. DreamLab participated in the closed beta during October--November 2025. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item 11,514 responses across the Citizen Space portal and email, of which 10,112 came through Citizen Space; 88\% of those supported licensing as a default rule, against 3\% who supported the government's preferred opt-out model. UK DSIT, \textit{Statement of Progress}, December 2025; analysis in \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12} (18 December 2025). Final report and economic impact assessment to be laid before Parliament by 18 March 2026. + +\item \textit{Digital Music News}, ``Nearly 800 Creatives, Including Jason Aldean and One Republic, Sign Responsible AI Declaration -- `Stealing Our Work Is Not Innovation'.'' \url{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\end{enumerate} + +\section*{Chapter 1 -- The Day Sora Landed} + +\begin{enumerate} + +\item For a contemporaneous overview of the AI video model release cadence through 2024 and 2025, see \textit{Dream Machine} Issues \href{../Dream\%20Machine\%20MD/1.md}{1}--\href{../Dream\%20Machine\%20MD/8.md}{8} (October--November 2025), which logged near-weekly releases from Runway, Luma, Pika, Kling, Veo, Wan, Higgsfield, Hunyuan and a long tail of smaller labs. + +\item \textit{The Hollywood Reporter}, ``AI Performer Tilly Norwood Sparks Hollywood Backlash.'' \url{https://www.hollywoodreporter.com/movies/movie-news/tilly-norwood-ai-actress-uk-union-equity-sag-aftra-debate-1236391739/}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item SAG-AFTRA statement, 30 September 2025, reported in Variety, ``SAG-AFTRA Condemns Tilly Norwood: AI Actress Is Not an Actor.'' \url{https://variety.com/2025/film/news/sag-aftra-tilly-norwood-ai-actress-1236534779/}. + +\item OpenAI, ``Sora 2 is here,'' 30 September 2025. \url{https://openai.com/index/sora-2/}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item Particle6 background and Van der Velden interview: \textit{The Hollywood Reporter}, ``Meet the Creator of the AI Actress Hollywood Loves to Hate: `You're Gonna See a Lot of Tilly Norwood Next Year'.'' \url{https://www.hollywoodreporter.com/movies/movie-features/tilly-norwood-creator-particle6-eline-van-der-velden-talks-1236428824/}. \href{../Dream\%20Machine\%20MD/8.md}{\textit{Dream Machine} Issue~8}. + +\item \textit{Deadline}, ``Tilly Norwood Creator Eline Van Der Velden Talks Backlash, Reveals Another 40 AI Actors Are In The Pipeline.'' \url{https://deadline.com/2025/11/tilly-norwood-creator-interview-backlash-more-ai-actors-coming-1236601334/}. + +\item Northeastern Global News, ``Why AI `Actress' Tilly Norwood Has Hollywood Angry.'' \url{https://news.northeastern.edu/2025/10/02/ai-actress-tilly-norwood-hollywood-backlash/}. + +\item SAG-AFTRA, official statement reproduced in Variety, \textit{op. cit.}; also NBC News, ``Tilly Norwood, fully AI `actor,' blasted by actors union SAG-AFTRA for `devaluing human artistry'.'' \url{https://www.nbcnews.com/pop-culture/pop-culture-news/tilly-norwood-fully-ai-actor-blasted-actors-union-sag-aftra-devaluing-rcna234685}. + +\item Equity (U.K.), statement of 2 October 2025: \textit{Variety}, ``Tilly Norwood Slammed by Equity as AI Tool, Concerned About Origin.'' \url{https://variety.com/2025/film/global/tilly-norwood-slammed-equity-ai-tool-concerned-origin-1236537042/}. + +\item CNN, ``Tilly Norwood: Hollywood is fuming over a new `AI actress'.'' \url{https://www.cnn.com/2025/09/30/tech/hollywood-ai-actor-backlash}. + +\item OpenAI, ``Sora 2 is here,'' \url{https://openai.com/index/sora-2/}. Technical capabilities summary including physics modelling, multi-shot world-state persistence and synchronised audio. + +\item \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}, ``Editor's Pick''; further launch context in NBC News, ``OpenAI's Sora 2: a major leap in AI video and audio.'' \url{https://www.nbcnews.com/tech/tech-news/openai-sora-2-app-video-chatgpt-creation-rcna234973}. + +\item LinkedIn News aggregation: ``Sora Tops 1 Million Downloads in 5 Days.'' \url{https://www.linkedin.com/news/story/sora-tops-1m-downloads-in-5-days-6684988/}. \href{../Dream\%20Machine\%20MD/3.md}{\textit{Dream Machine} Issue~3}. + +\item \textit{The Guardian}, ``OpenAI Sora 2 violence racism.'' \url{https://www.theguardian.com/us-news/2025/oct/04/openai-sora-violence-racism}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item NBC News, \textit{op. cit.}; \textit{The Guardian}, \textit{op. cit.} + +\item[15a.] Quoted in \textit{The Guardian}, ``OpenAI launch of video app Sora plagued by violent and racist images: `The guardrails are not real'.'' \url{https://www.theguardian.com/us-news/2025/oct/04/openai-sora-violence-racism}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item \textit{Digital Music News}, ``OpenAI's Sora 2 includes likeness protections for celebrities who don't opt in, but that doesn't apply to `historical figures' and dead celebrities.'' \url{https://www.digitalmusicnews.com/2025/10/08/openais-likeness-protections-dont-apply-to-dead-celebrities/}. \href{../Dream\%20Machine\%20MD/2.md}{\textit{Dream Machine} Issue~2}. + +\item Google DeepMind, Veo 3.1 launch, mid-October 2025. \href{../Dream\%20Machine\%20MD/3.md}{\textit{Dream Machine} Issue~3}, ``Editor's Pick: Veo 3.1 and the Rise of AI Filmmaking.'' Coverage: \url{https://www.cometapi.com/veo-3-1-is-comingand-whats-rumor/}. + +\item WUFT, ``Kiss reality goodbye: AI-generated social media has arrived,'' 3 October 2025. \url{https://www.wuft.org/2025-10-03/kiss-reality-goodbye-ai-generated-social-media-has-arrived}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item \textit{No Film School}, ``James Cameron Says AI Is `Never Going to Take the Place' of Humans.'' \url{https://nofilmschool.com/james-cameron-ai\#}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item \textit{The Guardian}, ``James Cameron says AI actors are `horrifying to me,''' 1 December 2025. \url{https://www.theguardian.com/film/2025/dec/01/james-cameron-says-ai-actors-are-horrifying-to-me}. Original quote from CBS \textit{Sunday Morning}. \href{../Dream\%20Machine\%20MD/10.md}{\textit{Dream Machine} Issue~10}. + +\item[20a.] Variety, ``James Cameron Says It's `Horrifying' that AI Can `Make Up an Actor'.'' \url{https://variety.com/2025/film/news/james-cameron-horrifying-ai-replace-actors-1236595864/}. + +\item Stability AI, board composition, 2024--2026. Reported across multiple outlets including \textit{Deadline}, ``James Cameron Calls AI Replacing Actors `Horrifying'; Art `Sacred'.'' \url{https://deadline.com/2025/11/james-cameron-gen-ai-horrifying-human-art-sacred-avatar-1236631387/}. + +\item Deezer, ``AI-generated tracks now represent 44\% of all new uploaded music,'' April 2026 newsroom release. \url{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}. Companion analysis: \textit{Music Business Worldwide}, ``75,000 AI-generated tracks now flood Deezer daily, representing 44\% of all new music uploaded to the platform.'' \url{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}. Daily AI uploads to Deezer rose from approximately 50,000 per day in November 2025 (\href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}, citing Deezer / \textit{Musically}) to 75,000 per day by April 2026, with consumer streams of fully-AI tracks holding between 1\% and 3\% of total platform plays -- and up to 85\% of those streams identified as fraudulent in 2025. \textit{Dream Machine} Issues \href{../Dream\%20Machine\%20MD/7.md}{7}, \href{../Dream\%20Machine\%20MD/26.md}{26}, \href{../Dream\%20Machine\%20MD/27.md}{27}, \href{../Dream\%20Machine\%20MD/28.md}{28}. + +\end{enumerate} + +\section*{Chapter 2 -- A History of Resistance} + +\begin{enumerate} + +\item John Philip Sousa, \textit{``The Menace of Mechanical Music,''} \textit{Appleton's Magazine}, Vol.~8, September 1906, pp.~278--284. Full text via ExplorePAHistory: \url{https://explorepahistory.com/odocument.php?docId=1-4-1A1}. Academic context: Patrick Warfield, \textit{``John Philip Sousa and `The Menace of Mechanical Music,'''} \textit{Journal of the Society for American Music}, Cambridge University Press: \url{https://www.cambridge.org/core/journals/journal-of-the-society-for-american-music/article/abs/john-philip-sousa-and-the-menace-of-mechanical-music/A9E621587BE7580ABD73AEF64D4B2DC8}. The 1906 essay was, in part, lobbying for what would become the 1909 Copyright Act. + +\item Sousa, \textit{op. cit.} The Library of Congress's \textit{``Sousa and the Talking Machine''} essay is a useful institutional summary: \url{https://blogs.loc.gov/now-see-hear/2020/05/sousa-and-the-talking-machine/}. + +\item William Henry Cardinal O'Connell, Archbishop of Boston, sermon to the Holy Name Society, Boston, 10 January 1932. Reported widely in the contemporaneous press, including the \textit{Daily Courier} (Connellsville, PA), 12 January 1932 (\url{https://www.newspapers.com/newspage/38168082/}). Cultural context: KUOW/NPR, \textit{```Imbecile Slush': Surprising Early Reactions to Crooning,''} \url{https://www.kuow.org/stories/imbecile-slush-surprising-early-reactions-crooning}. JSTOR Daily, \textit{``The Gender Politics of the First Boy Bands,''} \url{https://daily.jstor.org/the-gender-politics-of-the-first-boy-bands/}. + +\item \textit{Grand Upright Music, Ltd. v. Warner Bros. Records Inc.}, 780 F.~Supp.~182 (S.D.N.Y. 1991). Full text: \url{https://law.justia.com/cases/federal/district-courts/FSupp/780/182/1445286/}. The ``Thou shalt not steal'' opening is the most-quoted line from a US copyright opinion of the late twentieth century. + +\item Tippett's account of the Jurassic Park digital test is documented across multiple ASC and contemporaneous press accounts. American Society of Cinematographers, \textit{``Jurassic Park: Effects Team Brings Dinosaurs Back from Extinction,''} \url{https://theasc.com/articles/jurassic-park-effects-team-brings-dinosaurs-back}. Wikipedia, \textit{``Phil Tippett,''} \url{https://en.wikipedia.org/wiki/Phil_Tippett}. The dialogue paraphrase Spielberg incorporated into the film is Goldblum/Malcolm's response to Grant's ``I think we're out of a job'': ``Don't you mean \textit{extinct}?'' + +\item Charles Baudelaire, \textit{``Le Public Moderne et la Photographie,''} \textit{Revue Française}, 1859 (part of the \textit{Salon de 1859} essays). English translation widely available; the original French in PDF form: \url{https://gallowayexploringart.wordpress.com/wp-content/uploads/2014/08/baudelaire_the-modern-public-photography.pdf}. Smithsonian Archives institutional overview: \textit{``Photography Murdered Painting, Right?''}, \url{https://siarchives.si.edu/blog/photography-murdered-painting-right}. + +\item The Delaroche apocrypha is documented in Quote Investigator: \url{https://quoteinvestigator.com/2022/10/16/photo-mortal/}. The earliest sourced version is in an 1873 survey, 34 years after Delaroche reportedly said it. Delaroche's own contemporary writing on the daguerreotype, in Gernsheim's standard 1959 monograph, characterised the new technology as \textit{``an immense service to the arts.''} + +\item The 1942--44 Petrillo strike: Wikipedia, \textit{``1942--44 musicians' strike,''} \url{https://en.wikipedia.org/wiki/1942\%E2\%80\%931944_musicians'_strike}; Mainspring Press, \textit{``The Man Who Crippled the American Recording Industry: James Caesar Petrillo and the American Federation of Musicians Recording Bans,''} \url{https://mainspringpress.org/2024/11/23/the-man-who-crippled-the-recording-industry-james-caesar-petrillo-and-the-american-federation-of-musicians-recording-bans/}; DownBeat, \textit{``The Petrillo Ban of 1942--'44: Past \& Future at War,''} \url{https://downbeat.com/news/detail/the-petrillo-ban-of-194244-past-future-at-war}; Local 802 AFM, \textit{``The Silence Was Deafening,''} \url{https://www.local802afm.org/allegro/articles/the-silence-was-deafening/}. The Music Performance Trust Fund's institutional history: \url{https://musicpf.org/establishment-of-mptf-led-to-the-formation-of-afms-pension-and-residual-funds/}. + +\item Musicians' Union History, \textit{``The Strike That Made History -- Massacre of the Musicians 1980,''} \url{https://www.muhistory.com/the-strike-that-made-history-massacre-of-the-musicians-1980/}. Academic context on the broader MU--BBC dispute landscape: \textit{``Negotiating Needletime''} (Tandfonline), \url{https://www.tandfonline.com/doi/full/10.1080/03071022.2016.1215098}. + +\item MusicRadar, \textit{``The Day the Loony Musicians Union Tried to Kill the Synthesizer (Which Also Happened to be Bob Moog's Birthday),''} \url{https://www.musicradar.com/news/the-union-passed-a-motion-to-ban-the-use-of-synths-drum-machines-and-any-electronic-devices-the-day-the-loony-musicians-union-tried-to-kill-the-synthesizer-which-also-happened-to-be-bob-moogs-birthday}. Far Out Magazine, \textit{``Why did the Musicians Union outlaw synthesisers in 1982?''}, \url{https://faroutmagazine.co.uk/musicians-union-outlaw-synthesisers/}. + +\item \textit{Bridgeport Music, Inc. v. Dimension Films}, 410 F.3d 792 (6th Cir.\ 2005). Full text: \url{https://law.justia.com/cases/federal/appellate-courts/F3/410/792/574458/}. The ``Get a licence or do not sample'' rule is the most-cited line in the opinion. + +\item \textit{TIME}, \textit{``50 Worst Inventions,''} 2010, Auto-Tune at \#15: \url{https://content.time.com/time/specials/packages/article/0,28804,1991915_1991909_1991903,00.html}. Wikipedia, \textit{``Auto-Tune,''} \url{https://en.wikipedia.org/wiki/Auto-Tune}. NPR, \textit{``25 Years of Believe,''} \url{https://www.npr.org/2023/10/19/1207028349/25-years-ago-cher-released-a-song-that-would-change-the-sound-of-pop-music}. Wikipedia, \textit{``D.O.A. (Death of Auto-Tune),''} \url{https://en.wikipedia.org/wiki/D.O.A._(Death_of_Auto-Tune)}. + +\item Walter Murch, \textit{In the Blink of an Eye: A Perspective on Film Editing}, Silman-James Press, 1995 (2nd edition 2001). PDF: \url{https://www.craftfilmschool.com/userfiles/files/Walter\%20Murch\%20-\%20In\%20the\%20Blink\%20of\%20an\%20Eye\%20Revised\%202nd\%20Edition\%20(2001,\%20Silman-James\%20Pr).pdf}. Charles Koppelman, \textit{Behind the Seen: How Walter Murch Edited Cold Mountain Using Apple's Final Cut Pro and What This Means for Cinema}, Peachpit Press, 2004: \url{https://www.peachpit.com/store/behind-the-seen-how-walter-murch-edited-cold-mountain-9780735714267}. + +\item Sasson's account documented at the National Inventors Hall of Fame: \url{https://www.invent.org/blog/inventors/Legacy-Steve-Sasson}. Snopes verification of the ``Kodak suppressed the digital camera'' claim: \url{https://www.snopes.com/fact-check/kodak-digital-camera-invention/}. Knowledge@Wharton on the Kodak collapse: \url{https://knowledge.wharton.upenn.edu/podcast/knowledge-at-wharton-podcast/whats-wrong-with-this-picture-kodaks-30-year-slide-into-bankruptcy/}. Bankruptcy filing: 19 January 2012, S.D.N.Y., \$5.1bn assets / \$6.8bn liabilities. + +\item Wikipedia, \textit{``Brian Walski,''} \url{https://en.wikipedia.org/wiki/Brian_Walski}. \textit{Washington Post} contemporaneous coverage: \url{https://www.washingtonpost.com/archive/lifestyle/2003/04/03/altered-picture-costs-la-times-photographer-his-job/c5e7c9e0-a836-429a-bb4e-d502f1768a96/}. World Press Photo's institutional response in TIME: \url{https://time.com/3706626/world-press-photo-processing-manipulation-disqualified/}. + +\item Wikipedia, \textit{``Viacom International, Inc. v. YouTube, Inc.,''} \url{https://en.wikipedia.org/wiki/Viacom_International_Inc._v._YouTube,_Inc.}. Electronic Frontier Foundation case file: \url{https://www.eff.org/cases/viacom-v-youtube}. Variety on the March 2014 settlement: \url{https://variety.com/2014/biz/news/google-and-viacom-settle-copyright-infringement-lawsuit-over-youtube-1201137538/}. + +\item PetaPixel, \textit{``The Rise and Crash of the Camera Industry in One Chart,''} \url{https://petapixel.com/2024/08/22/the-rise-and-crash-of-the-camera-industry-in-one-chart/}. Statista, \textit{``Smartphones Wipe Out Decades of Camera Industry Growth,''} \url{https://www.statista.com/chart/15524/worldwide-camera-shipments/}. CIPA shipment data series, multiple years. + +\item CNN Business, \textit{``Meet the translation professionals losing their jobs to AI,''} January 2026, \url{https://www.cnn.com/2026/01/23/tech/translation-language-jobs-ai-automation-intl}. Carl Benedikt Frey (Oxford Martin School), 2025 study on translator employment across 696 US labour markets. American Translators Association industry position: \url{https://www.atanet.org/client-assistance/blog-machine-translation-vs-human-translation/}. Wikipedia, \textit{``Google Neural Machine Translation,''} \url{https://en.wikipedia.org/wiki/Google_Neural_Machine_Translation}. + +\end{enumerate} + +\section*{Chapter 3 -- The Human-AI Agency Continuum} + +\begin{enumerate} + +\item \href{../Dream\%20Machine\%20MD/2.md}{\textit{Dream Machine} Issue~2}, ``Editor's Pick,'' 10 October 2025. \url{https://www.linkedin.com/pulse/dream-machine-creative-ai-news-insight-oct-25-2-pete-woodbridge-mnrjc/}. + +\item OpenAI, ``Introducing AgentKit,'' 6 October 2025. \url{https://openai.com/index/introducing-agentkit/}. + +\item TechCrunch, ``OpenAI launches AgentKit to help developers build and ship AI agents,'' 6 October 2025. \url{https://techcrunch.com/2025/10/06/openai-launches-agentkit-to-help-developers-build-and-ship-ai-agents/}. Also coverage at \textit{InfoQ}, ``OpenAI Dev Day 2025 Introduces GPT-5 Pro API, Agent Kit, and More.'' \url{https://www.infoq.com/news/2025/10/openai-dev-day/}. + +\item \href{../Dream\%20Machine\%20MD/2.md}{\textit{Dream Machine} Issue~2}: ``Agentic AI -- the class of AI systems that can plan, act, and pursue goals with autonomy -- promises a new era of collaboration in creative industries\ldots{} Its another step along the Human-AI Agency Continuum.'' See also \textit{TVB Europe}, ``Is Agentic AI About to Change the Media and Entertainment Industry?'' \url{https://www.tvbeurope.com/artificial-intelligence/opinion-is-agentic-ai-about-to-change-the-media-and-entertainment-industry}. + +\item Google DeepMind, Veo 3.1 release, October 2025. \href{../Dream\%20Machine\%20MD/3.md}{\textit{Dream Machine} Issue~3}. + +\item \textit{MusicTech}, ``iZotope Ozone 12's AI assistant is cool, but the Stem EQ is the real star.'' \url{https://musictech.com/reviews/plug-ins/izotope-ozone-12-review/}. \href{../Dream\%20Machine\%20MD/3.md}{\textit{Dream Machine} Issue~3}. + +\item Adobe, ``Inaugural Adobe Creators' Toolkit Report,'' October 2025. \url{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}. Survey of 16,000 creators across eight countries, released at Adobe MAX 2025. \href{../Dream\%20Machine\%20MD/6.md}{\textit{Dream Machine} Issue~6}. + +\item Adobe, \textit{op. cit.} The same survey: 86\% of creators use creative generative AI; 76\% say it has helped grow their business or brand; 81\% say AI lets them make content they otherwise couldn't have made; 69\% worry about their work being used to train AI without consent; 70\% are optimistic about agentic AI; 85\% would use AI that learns their creative style. + +\item Mureka, ``Music Agent Studio'' launch, mid-October 2025. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. \url{https://www.linkedin.com/posts/sherrihendrickson_mureka-unveils-music-agent-studio-and-enhanced-share-7384999251526864896-cNYg/}. + +\item \textit{Finsmes}, ``AdsGency Raises \$12M in Seed Funding,'' October 2025. \url{https://www.finsmes.com/2025/10/adsgency-raises-12m-in-seed-funding.html}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. + +\item \textit{Musically}, ``Meet Lenny, an AI agent to help organisers of live music events.'' \url{https://musically.com/2025/10/20/meet-lenny-an-ai-agent-to-help-organisers-of-live-music-events/}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. + +\item \textit{GamesRadar}, ``Even under USD20 million in debt, EA reportedly pushes 15,000 employees to use AI as a `thought partner' for everything from character art to playtesting.'' \url{https://www.gamesradar.com/games/even-under-usd20-million-in-debt-ea-reportedly-pushes-15-000-employees-to-use-ai-as-a-thought-partner-for-everything-from-character-art-to-playtesting/}. \href{../Dream\%20Machine\%20MD/6.md}{\textit{Dream Machine} Issue~6}. + +\item PYMNTS, ``Adobe Lets Users Design and Edit Using ChatGPT.'' \url{https://www.pymnts.com/artificial-intelligence-2/2025/adobe-lets-users-design-and-edit-using-chatgpt/}. Adobe blog: ``Edit images, designs, and PDFs right inside ChatGPT -- thanks to Adobe Express, Photoshop, and Acrobat.'' \url{https://blog.adobe.com/en/publish/2025/12/10/edit-photoshop-chatgpt}. \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12}. + +\item TechCrunch, ``Anthropic launches interactive Claude apps, including Slack and other workplace tools,'' 26 January 2026. \url{https://techcrunch.com/2026/01/26/anthropic-launches-interactive-claude-apps-including-slack-and-other-workplace-tools/}. \textit{Heygen Video Agent}: \url{https://www.linkedin.com/posts/heygen_introducing-the-new-video-agent-activity-7421597801240801282-d1CF}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item \href{../Dream\%20Machine\%20MD/21.md}{\textit{Dream Machine} Issue~21}, ``Editor's Pick: Adobe and NVIDIA Just Raised the Stakes for Creative AI,'' 19 March 2026. + +\item Adobe Summit 2026, ``Agentic Creative Intelligence'' keynote framing. \href{../Dream\%20Machine\%20MD/26.md}{\textit{Dream Machine} Issue~26}. + +\item \href{../Dream\%20Machine\%20MD/29.md}{\textit{Dream Machine} Issue~29}, May 2026, citing Sony's adoption of Claude Code studios with multi-agent coordination. + +\item Anthropic, public statements on agent deployment patterns through Q1 2026. Cf.\ \textit{Dream Machine} Issues \href{../Dream\%20Machine\%20MD/11.md}{11}, \href{../Dream\%20Machine\%20MD/16.md}{16}, \href{../Dream\%20Machine\%20MD/22.md}{22}. + +\item \textit{gamesindustry.biz}, ```AI was an expensive mistake': Charles Cecil on innovation, insolvency, and Broken Sword.'' \url{https://www.gamesindustry.biz/ai-was-an-expensive-mistake-charles-cecil-on-innovation-insolvency-and-broken-sword}. \href{../Dream\%20Machine\%20MD/3.md}{\textit{Dream Machine} Issue~3}. + +\item \textit{Niche Gamer}, ``Larian Studios backs off from gen AI, says tech won't be used in new Divinity.'' \url{https://nichegamer.com/larian-studios-backs-off-from-gen-ai/}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \textit{Decrypt}, ```Warhammer 40,000' Maker Games Workshop Rules Out Generative AI.'' \url{https://decrypt.co/354482/warhammer-40000-maker-games-workshop-rules-out-generative-ai}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \textit{Niche Gamer}, ``Manor Lords publisher Hooded Horse won't work with devs using gen AI.'' \url{https://nichegamer.com/manor-lords-publisher-hooded-horse-wont-work-with-devs-using-gen-ai/}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \textit{gamesindustry.biz}, ``RuneScape maker Jagex says it will never use generative AI to make in-game content.'' \url{https://www.gamesindustry.biz/runescape-maker-jagex-says-it-will-never-use-generative-ai-to-make-in-game-content}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\end{enumerate} + +\section*{Chapter 4 -- Dead Internet, Living Web} + +\begin{enumerate} + +\item Imperva, \textit{2025 Bad Bot Report: How AI is Supercharging the Bot Threat}. \url{https://www.imperva.com/blog/2025-imperva-bad-bot-report-how-ai-is-supercharging-the-bot-threat/}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. + +\item Cloudflare, ``The crawl-to-click gap: Cloudflare data on AI bots, training, and referrals.'' \url{https://blog.cloudflare.com/crawlers-click-ai-bots-training/}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. Later 2025 updates show training crawlers declining from \textasciitilde{}90\% to \textasciitilde{}74\% of AI bot activity as scraper bots rose to 24\% and a new ``agentic'' category emerged at 1.7\%; see Cloudflare, ``A deeper look at AI crawlers: breaking down traffic by purpose and industry.'' \url{https://blog.cloudflare.com/ai-crawler-traffic-by-purpose-and-industry/}. + +\item Grand View Research, ``Generative AI Content Creation Market Report.'' \url{https://www.grandviewresearch.com/industry-analysis/generative-ai-content-creation-market-report}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4} also cites Gartner and Europol forecasts of 90--99\% AI-generated or AI-assisted online content by 2030. + +\item \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}, ``Editor's Pick: Is the Internet Dead Yet?'' 23 October 2025. \url{https://www.linkedin.com/pulse/dream-machine-creative-ai-news-insight-oct-25-issue-4-woodbridge-hzttc/}. + +\item Wikipedia, \textit{Dead Internet Theory}. \url{https://en.wikipedia.org/wiki/Dead_Internet_theory}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. + +\item Graphite, 2025 analysis of new web content by author type (human vs.\ AI vs.\ AI-assisted). Cited in \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. + +\item For ``model collapse'' as a term of art, see Ilia Shumailov et al., ``The Curse of Recursion: Training on Generated Data Makes Models Forget'' (2024), and subsequent literature. + +\item Futurism, ``Researchers built a social network with only AI agents -- within hours it had collapsed into warring tribes.'' \url{https://futurism.com/social-network-ai-intervention-echo-chamber}. \href{../Dream\%20Machine\%20MD/4.md}{\textit{Dream Machine} Issue~4}. + +\item \textit{Digital Music News}, ``Instagram Chief Says We Should `Fingerprint Real Media' Instead of Tracking and Disclosing AI Slop.'' \url{https://www.digitalmusicnews.com/2026/01/05/instagram-chief-ai-slop-comments/}. See also \textit{WebProNews}, ``Instagram Head Warns AI Images Erode Trust, Calls for Verification Standards.'' \url{https://www.webpronews.com/instagram-head-warns-ai-images-erode-trust-calls-for-verification-standards/}. \href{../Dream\%20Machine\%20MD/13.md}{\textit{Dream Machine} Issue~13}. + +\item Sundance Institute, ``Centering the Artist: Why We're Launching the AI Literacy Initiative.'' \url{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item \textit{Stereogum}, ``Bandcamp bans AI music.'' \url{https://stereogum.com/2485199/bandcamp-bans-ai-music/news}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \textit{CNET}, ``San Diego Comic-Con Draws a Line: No AI Art Allowed at 2026 Event.'' \url{https://www.cnet.com/culture/san-diego-comic-con-bans-ai-art-for-2026-event/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item Deezer, ``AI-generated tracks now represent 44\% of all new uploaded music,'' April 2026. \url{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}. \textit{Music Business Worldwide}, ``75,000 AI-generated tracks now flood Deezer daily.'' \url{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}. \textit{Dream Machine} Issues \href{../Dream\%20Machine\%20MD/7.md}{7}, \href{../Dream\%20Machine\%20MD/26.md}{26}, \href{../Dream\%20Machine\%20MD/27.md}{27}, \href{../Dream\%20Machine\%20MD/28.md}{28}. + +\item \textit{The Hollywood Reporter}, ```Synthetic Sincerity' by Marc Isaacs Explores if AI Characters Can Be Taught Authenticity: IDFA.'' \url{https://www.hollywoodreporter.com/movies/movie-news/synthetic-sincerity-film-idfa-ai-authenticity-interview-1236426180/}. \href{../Dream\%20Machine\%20MD/8.md}{\textit{Dream Machine} Issue~8}. + +\item Variety, ``AI-Generated Images Threaten Future of Documentary as People `Will Stop Believing Anything'.'' \url{https://variety.com/2025/film/festivals/ai-generated-images-threaten-future-of-documentary-1236583466/}. \href{../Dream\%20Machine\%20MD/8.md}{\textit{Dream Machine} Issue~8}. + +\item PR Newswire, ``From Apple TV Creative to AI Filmmaker: Hoyt Dwyer's Animated Film To Compete at AI FilmFest Japan 2025.'' \url{https://www.prnewswire.com/news-releases/from-apple-tv-creative-to-ai-filmmaker-hoyt-dwyers-animated-film-to-compete-at-ai-filmfest-japan-2025-302598064.html}. \href{../Dream\%20Machine\%20MD/6.md}{\textit{Dream Machine} Issue~6}. + +\item Variety, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter.'' \url{https://variety.com/2026/digital/news/ai-video-deadpool-harry-potter-andrii-daniels-1236624632/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item \textit{Branding in Asia}, ```It's the Most Terrible Time of the Year' -- McDonald's Netherlands' Wonderfully Chaotic, AI-Driven Christmas Film.'' \url{https://www.brandinginasia.com/its-the-most-terrible-time-of-the-year-mcdonalds-netherlands-wonderfully-chaotic-ai-driven-christmas-film/}. Pulled following backlash: \textit{SiliconAngle}, ``Not ready: McDonald's AI-generated ad taken down after public backlash.'' \url{https://siliconangle.com/2025/12/10/not-ready-mcdonalds-ai-generated-ad-taken-public-backlash/}. \href{../Dream\%20Machine\%20MD/11.md}{\textit{Dream Machine} Issue~11}. + +\item BBC News, ``Fashion house Valentino criticised over `disturbing' AI handbag ads.'' \url{https://www.bbc.co.uk/news/articles/cwyvjyvn83go}. \href{../Dream\%20Machine\%20MD/10.md}{\textit{Dream Machine} Issue~10}. + +\item \textit{Adweek}, ``Coca-Cola Uses AI to Rekindle the Magic of Its Holiday Ads.'' \url{https://www.adweek.com/creativity/coca-cola-uses-ai-to-rekindle-the-magic-of-its-holiday-ads/}. \href{../Dream\%20Machine\%20MD/6.md}{\textit{Dream Machine} Issue~6}. + +\item \textit{AI News}, ``AI causes reduction in users' brain activity, MIT.'' \url{https://www.artificialintelligence-news.com/news/ai-causes-reduction-in-users-brain-activity-mit/}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\end{enumerate} + +\section*{Chapter 5 -- The Slop Ceiling} + +\begin{enumerate} + +\item Deezer, ``AI-generated tracks now represent 44\% of all new uploaded music,'' April 2026. \url{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}. \textit{Music Business Worldwide}, ``75,000 AI-generated tracks now flood Deezer daily, representing 44\% of all new music uploaded to the platform.'' \url{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}. \textit{Dream Machine} Issues \href{../Dream\%20Machine\%20MD/7.md}{7}, \href{../Dream\%20Machine\%20MD/26.md}{26}, \href{../Dream\%20Machine\%20MD/27.md}{27}, \href{../Dream\%20Machine\%20MD/28.md}{28}. + +\item Ditto Music research, October 2025 and prior. \textit{Press Ditto Music}, ``48\% of artists use AI to make music -- fewer than in 2023.'' \url{https://press.dittomusic.com/48-of-artists-use-ai-to-make-music-fewer-than-in-2023}. \href{../Dream\%20Machine\%20MD/2.md}{\textit{Dream Machine} Issue~2}. + +\item \textit{Musically}, ``Universal and Warner could sign landmark AI deals within weeks.'' \url{https://musically.com/2025/10/02/report-umg-and-wmg-could-sign-landmark-ai-deals-within-weeks/}. Spotify Newsroom, ``Spotify Strengthens AI Protections for Artists, Songwriters, and Producers.'' \url{https://newsroom.spotify.com/2025-09-25/spotify-strengthens-ai-protections/}. \href{../Dream\%20Machine\%20MD/1.md}{\textit{Dream Machine} Issue~1}. + +\item \textit{Musically}, ``50,000 AI music tracks are now uploaded to Deezer every day.'' \url{https://musically.com/2025/11/12/50000-ai-music-tracks-are-now-uploaded-to-deezer-every-day/}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item Deezer, April 2026, \textit{op. cit.} + +\item \textit{Musically}, ``UMG boss slams exponential growth of AI slop on streaming services.'' \url{https://musically.com/2026/01/09/umg-boss-slams-exponential-growth-of-ai-slop-on-streaming-services/}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \textit{Musically}, ``Report: 56.9\% of new independent songs in China are AI-generated.'' \url{https://musically.com/2026/01/05/report-56-9-of-new-independent-songs-in-china-are-ai-generated/}. \href{../Dream\%20Machine\%20MD/13.md}{\textit{Dream Machine} Issue~13}. + +\item \textit{The Wrap}, ``An AI Podcasting Machine Is Churning Out 3,000 Episodes a Week -- and People Are Listening.'' \url{https://www.thewrap.com/ai-podcasts-hosts-inception-point-ai/}. \href{../Dream\%20Machine\%20MD/8.md}{\textit{Dream Machine} Issue~8}. + +\item \href{../Dream\%20Machine\%20MD/28.md}{\textit{Dream Machine} Issue~28}, May 2026, citing aggregator-platform data on ``podslop'' classification. + +\item \textit{The Hollywood Reporter}, ``Merriam-Webster Names `Slop' Word of the Year Amid AI Boom.'' \url{https://www.hollywoodreporter.com/news/general-news/slop-word-year-2025-merriam-webster-1236450780/}. \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12}. + +\item \textit{Digital Music News}, ``YouTube CEO Puts `Managing AI Slop' on the Priority List for 2026.'' \url{https://www.digitalmusicnews.com/2026/01/22/youtube-ceo-ai-slop-2026-comments/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item \textit{The Guardian}, ``YouTube AI channels spreading fake, anti-Labour videos viewed 1.2bn times in 2025.'' \url{https://www.theguardian.com/technology/2025/dec/13/fake-anti-labour-video-billion-views-youtube-2025}. \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12}. + +\item Deezer/Ipsos survey, November 2025. \url{https://newsroom-deezer.com/2025/11/deezer-ipsos-survey-ai-music/}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item \textit{Bain \& Company}, ``In an AI Age, People Still Want the Radio Star.'' \url{https://www.bain.com/insights/in-an-ai-age-people-still-want-the-radio-star/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item Deezer, April 2026, \textit{op. cit.} ``Up to 85\% of the streams generated by fully AI-generated tracks were in fact fraudulent in 2025.'' + +\item[15a.] \textit{Bloomberg}, ``AI Changed Chess. Grandmasters Now Win With Unpredictable Moves,'' 27 March 2026. \url{https://www.bloomberg.com/news/articles/2026-03-27/ai-changed-chess-grandmasters-now-win-with-unpredictable-moves}. \href{../Dream\%20Machine\%20MD/23.md}{\textit{Dream Machine} Issue~23}. + +\item \textit{Billboard}, ``AI Artist Xania Monet Climbs the Charts -- And Signs a Multimillion-Dollar Record Deal.'' \url{https://www.billboard.com/pro/ai-music-artist-xania-monet-multimillion-dollar-record-deal/}. + +\item \textit{Billboard}, \textit{op. cit.}; CNN, ``Xania Monet is the first AI-powered artist to debut on a Billboard airplay chart.'' \url{https://www.cnn.com/2025/11/01/entertainment/xania-monet-billboard-ai}. + +\item \textit{Billboard}, \textit{op. cit.} + +\item \textit{Bangkok Post}, ``AI singer Xania Monet signs \$3m deal with record label.'' \url{https://www.bangkokpost.com/life/tech/3142355/ai-singer-xania-monet-signs-3m-deal-with-hallwood-media}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item Multiple outlets; quoted in \textit{Billboard} feature \textit{op. cit.} + +\item[20a.] Telisha Jones quoted in \textit{Billboard}, \textit{op. cit.} + +\item NPR, ``Breaking Rust is a hot new country act on the Billboard charts. It's powered by AI.'' \url{https://www.npr.org/2025/11/10/nx-s1-5604320/breaking-rust-is-a-hot-new-country-act-on-the-billboard-charts-its-powered-by-ai}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item \textit{Washington Post}, ```Walk My Walk,' Breaking Rust: AI country hit triggers Nashville angst.'' \url{https://www.washingtonpost.com/style/2025/12/28/breaking-rust-ai-country/}. + +\item \textit{MusicRadar}, ``The No.~1 country song in the US right now is AI-generated.'' \url{https://www.musicradar.com/music-tech/the-no-1-country-song-in-the-us-right-now-is-ai-generated}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item BBC News, ``The mysterious singer, Sienna Rose, with millions of streams is hitting the viral charts -- but who (or what) is she?'' \url{https://www.bbc.co.uk/news/articles/cq6v83gq66eo}. \href{../Dream\%20Machine\%20MD/15.md}{\textit{Dream Machine} Issue~15}. + +\item \textit{Billboard}, ``How a MAGA Rapper Used AI to Create A Gospel Song That Climbed the Charts.'' \url{https://www.billboard.com/pro/maga-rapper-ai-gospel-song-climbed-charts/}. \href{../Dream\%20Machine\%20MD/9.md}{\textit{Dream Machine} Issue~9}. + +\item \textit{Musically}, ``AI band Bleeding Verse's creator signs deal with Hallwood Media.'' \url{https://musically.com/2025/10/07/ai-band-bleeding-verses-creator-signs-deal-with-hallwood-media/}. \href{../Dream\%20Machine\%20MD/2.md}{\textit{Dream Machine} Issue~2}. + +\item \textit{Musically}, ``Indian AI band Trilok performs live, government denies association.'' \url{https://musically.com/2025/12/17/indian-ai-band-trilok-performs-live-government-denies-association/}. \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12}. + +\item \textit{The Guardian}, ``Paul McCartney joins music industry protest against AI with silent track.'' \url{https://www.theguardian.com/music/2025/nov/17/the-sound-of-silence-why-theres-barely-anything-there-in-paul-mccartney-new-release}. \href{../Dream\%20Machine\%20MD/8.md}{\textit{Dream Machine} Issue~8}. + +\item \textit{The Guardian}, ``Musicians must embrace `unstoppable force' of AI, Eurythmics' Dave Stewart urges.'' \url{https://www.theguardian.com/music/2025/dec/05/musicians-must-embrace-unstoppable-force-of-ai-eurythmics-dave-stewart-urges}. \href{../Dream\%20Machine\%20MD/11.md}{\textit{Dream Machine} Issue~11}. + +\item \textit{Digital Music News}, ``Nearly 800 Creatives, Including Jason Aldean and One Republic, Sign Responsible AI Declaration -- `Stealing Our Work Is Not Innovation'.'' \url{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item Stability AI, ``Universal Music Group and Stability AI Announce Strategic Alliance.'' \url{https://stability.ai/news/universal-music-group-and-stability-ai-announce-strategic-alliance}. \href{../Dream\%20Machine\%20MD/5.md}{\textit{Dream Machine} Issue~5}. + +\item Stability AI, ``Warner Music Group and Stability AI Join Forces To Build The Next Generation Of Responsible AI Tools For Music Creation.'' \url{https://stability.ai/news/warner-music-group-and-stability-ai-join-forces-to-build-next-gen-tools}. \href{../Dream\%20Machine\%20MD/8.md}{\textit{Dream Machine} Issue~8}. + +\item Universal Music, ``Universal Music Group and Splice to Collaborate on the Next Generation of AI-Powered Music Creation Tools for Artists.'' \url{https://www.universalmusic.com/universal-music-group-and-splice-to-collaborate-on-the-next-generation-of-ai-powered-music-creation-tools-for-artists/}. \href{../Dream\%20Machine\%20MD/12.md}{\textit{Dream Machine} Issue~12}. + +\item LinkedIn / \textit{Lexology}, ``Munich Regional Court rules for GEMA against OpenAI.'' Coverage: \url{https://www.linkedin.com/posts/dr-barry-scannell-bbb5aa207_in-a-major-ruling-for-european-copyright-share-7393957246386323457-8bbx}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item \textit{EDM.com}, ```Biggest Theft in Music History': Rights Group Sues Suno as AI Music Showdown Escalates.'' \url{https://edm.com/gear-tech/rights-group-sues-suno-copyright-infringement/}. \href{../Dream\%20Machine\%20MD/7.md}{\textit{Dream Machine} Issue~7}. + +\item \textit{Music Business Worldwide}, ``Wixen files \$50m copyright suit against Meta.'' \url{https://www.musicbusinessworldwide.com/wixen-files-50m-copyright-suit-against-meta-claims-tech-giant-wants-to-replace-songwriters-with-ai/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item \href{../Dream\%20Machine\%20MD/17.md}{\textit{Dream Machine} Issue~17} reportage on UMG's \$3B suit against Anthropic. + +\item \textit{Stereogum}, ``Bandcamp bans AI music.'' \url{https://stereogum.com/2485199/bandcamp-bans-ai-music/news}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \href{../Dream\%20Machine\%20MD/18.md}{\textit{Dream Machine} Issue~18} reportage of Deezer licensing its detection tool. + +\item \textit{TechRadar}, ``AI music is flooding Spotify, and subscribers are furious.'' \url{https://www.techradar.com/audio/spotify/ai-music-is-flooding-spotify-and-subscribers-are-furious-heres-why-music-fans-no-longer-trust-discover-weekly}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item \textit{CNET}, ``San Diego Comic-Con Draws a Line: No AI Art Allowed at 2026 Event.'' \url{https://www.cnet.com/culture/san-diego-comic-con-bans-ai-art-for-2026-event/}. \href{../Dream\%20Machine\%20MD/16.md}{\textit{Dream Machine} Issue~16}. + +\item \textit{The Independent}, ``AI-generated song banned from Swedish charts: `It's deceiving'.'' \url{https://www.independent.co.uk/tv/news/ai-music-song-banned-sweden-spotify-b2901627.html}. \href{../Dream\%20Machine\%20MD/15.md}{\textit{Dream Machine} Issue~15}. + +\item \textit{Soultracks}, ``A.I.-generated music is catchy, familiar\ldots{} and boring.'' \url{https://soultracks.com/news-ai-generated-music-is-catchy-boring/}. \href{../Dream\%20Machine\%20MD/14.md}{\textit{Dream Machine} Issue~14}. + +\item[43a.] \textit{The Independent}, ``AI-generated song banned from Swedish charts: `It's deceiving'.'' \url{https://www.independent.co.uk/tv/news/ai-music-song-banned-sweden-spotify-b2901627.html}. \href{../Dream\%20Machine\%20MD/15.md}{\textit{Dream Machine} Issue~15}. + +\item[43b.] \textit{Marketing Week}, ``You can't dismiss AI ads as slop when they're winning in testing.'' Coverage discussed in \href{../Dream\%20Machine\%20MD/22.md}{\textit{Dream Machine} Issue~22}. + +\item \textit{Billboard}, ``The Real Story Behind The AI Song That Knocked Tyla Off No.~1 On Billboard Afrobeats Chart.'' \url{https://www.billboard.com/pro/ai-song-knocked-tyla-off-no-1-afrobeats/}. \href{../Dream\%20Machine\%20MD/30.md}{\textit{Dream Machine} Issue~30}. + +\item \textit{MusicTech}, ``Jack Antonoff brands AI music makers as `godless whores'.'' \url{https://musictech.com/news/industry/jack-antonoff-ai-music-makers-godless-whores/}. \href{../Dream\%20Machine\%20MD/30.md}{\textit{Dream Machine} Issue~30}. + +\end{enumerate} diff --git a/latex/chapters/ch01_the_day_sora_landed.tex b/latex/chapters/ch01_the_day_sora_landed.tex new file mode 100644 index 0000000..c88785d --- /dev/null +++ b/latex/chapters/ch01_the_day_sora_landed.tex @@ -0,0 +1,127 @@ +\chapter{The Day Sora Landed}\label{ch:1} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{T}{he first thing} to understand about the week of 30 September 2025 is that nothing in it was supposed to be a watershed. Sora had existed, in some form, for a year and a half. Runway, Pika, Kling, Luma, Veo and a dozen others had been releasing video models on a near-monthly cadence since the back end of 2023.\footnote{For a contemporaneous overview of the AI video model release cadence through 2024 and 2025, see \emph{Dream Machine} Issues 1--8 (October--November~2025), which logged near-weekly releases from Runway, Luma, Pika, Kling, Veo, Wan, Higgsfield, Hunyuan and a long tail of smaller labs.} AI-assisted post-production had been quietly integrated into nearly every studio pipeline in Hollywood for months. The major U.K. and U.S. actors' unions had been negotiating over digital replicas since the 2023 SAG-AFTRA strike. The Tilly Norwood character had been on Instagram, posting selfies and pretending to drink coffee in caf\'{e}s, since the previous July. + +And yet that week~-- the seven days I would later mark as the start of this book, the start of the newsletter, and the start of a year that nobody in the creative industries has fully recovered from~-- three things lined up in a sequence so neat that I almost didn't believe it at the time. + +On the Friday and Saturday, at the Zurich Film Festival, the founder of an AI studio called Particle6 stood on a panel and announced that several talent agencies were interested in representing her company's flagship product: a fully AI-generated actress called Tilly Norwood.\footnote{\emph{The Hollywood Reporter}, ``AI Performer Tilly Norwood Sparks Hollywood Backlash.'' \url{https://www.hollywoodreporter.com/movies/movie-news/tilly-norwood-ai-actress-uk-union-equity-sag-aftra-debate-1236391739/}. \emph{Dream Machine} Issue~1.} + +On the Tuesday, the U.S. actors' union SAG-AFTRA issued a public condemnation calling her ``not an actor'' but ``a character generated by a computer program that was trained on the work of countless professional performers''~-- adding, in a line I have thought about more than any other this year, that ``audiences aren't interested in watching computer-generated content untethered from the human experience.''\footnote{SAG-AFTRA statement, 30 September 2025, reported in \emph{Variety}, ``SAG-AFTRA Condemns Tilly Norwood: AI Actress Is Not an Actor.'' \url{https://variety.com/2025/film/news/sag-aftra-tilly-norwood-ai-actress-1236534779/}.} + +In between those two moments, on the Tuesday of the same week, OpenAI released Sora~2.\footnote{OpenAI, ``Sora~2 is here,'' 30 September 2025. \url{https://openai.com/index/sora-2/}. \emph{Dream Machine} Issue~1.} + +I want to take each of these in turn, because the order matters, and then I want to argue that the actual watershed was something else entirely~-- something that happened underneath all three, that almost nobody noticed at the time, and that I think we will be living with for the rest of our working lives. + +\section*{The actress} + +Tilly Norwood was the creation of Eline Van der Velden~-- a comedian, writer and producer who had spent the better part of a year building her under the banner of a U.K.--Netherlands company called Particle6.\footnote{Particle6 background and Van der Velden interview: \emph{The Hollywood Reporter}, ``Meet the Creator of the AI Actress Hollywood Loves to Hate: `You're Gonna See a Lot of Tilly Norwood Next Year'.'' \url{https://www.hollywoodreporter.com/movies/movie-features/tilly-norwood-creator-particle6-eline-van-der-velden-talks-1236428824/}. \emph{Dream Machine} Issue~8.} Tilly had a face that looked like it had been assembled by committee from the most marketable features of the late 2010s. She had a voice. She had a small social-media following. She had, by the time of the Zurich announcement, ``another forty AI actors in the pipeline,'' according to Van der Velden's later interview in \emph{Deadline}.\footnote{\emph{Deadline}, ``Tilly Norwood Creator Eline Van Der Velden Talks Backlash, Reveals Another 40 AI Actors Are In The Pipeline.'' \url{https://deadline.com/2025/11/tilly-norwood-creator-interview-backlash-more-ai-actors-coming-1236601334/}.} + +The Zurich announcement wasn't subtle. Van der Velden told the audience that several talent agencies were ``looking'' at signing Tilly. She framed her as an industrial product: a character who could be cast in feature films and television, who came with all the upsides of a real performer (a marketing footprint, an emotional connection with audiences, a brand) and none of the downsides (no salary, no per diems, no licensing complications, no aging, no scandals).\footnote{Northeastern Global News, ``Why AI `Actress' Tilly Norwood Has Hollywood Angry.'' \url{https://news.northeastern.edu/2025/10/02/ai-actress-tilly-norwood-hollywood-backlash/}.} + +It is hard, looking back, to remember how loaded the word \emph{agency} was that weekend. In Hollywood and the wider acting industry, the moment a talent agency takes on a new client is the moment that client moves from aspiration to product. The agencies are the gatekeepers of the working economy. Van der Velden's announcement, in essence, was that the gate had cracked. + +The response was almost immediate, and it came from the only side of the gate that had anything to lose. + +SAG-AFTRA's statement, issued on the Tuesday after the festival closed, called Tilly Norwood ``not an actor.'' The full quote went further than the headlines tended to carry, and the next sentence was the one that actually mattered for the industry that read it: \emph{``Signatory producers should be aware that they may not use synthetic performers without complying with our contractual obligations, which require notice and bargaining whenever a synthetic performer is going to be used.''}\footnote{SAG-AFTRA, official statement reproduced in \emph{Variety}, \emph{op.~cit.}; also NBC News, ``Tilly Norwood, fully AI `actor,' blasted by actors union SAG-AFTRA for `devaluing human artistry'.'' \url{https://www.nbcnews.com/pop-culture/pop-culture-news/tilly-norwood-fully-ai-actor-blasted-actors-union-sag-aftra-devaluing-rcna234685}.} That sentence~-- terse, contractual, almost dull~-- was the union reminding every signatory studio in Hollywood that the 2023 strike had already settled this question, and that the rules already on paper applied here too. + +The U.K.'s actors' union Equity issued its own condemnation within hours, focusing less on the philosophical question of what an actor is and more on the practical one: where had the training data come from? Their general secretary put it more sharply than any of the other initial responses: \emph{``We're at the stage in AI where so much data has been used that the original source becomes more and more unclear. And that's something that should worry every viewer, every working person, because that's not really the way our data should be used.''}\footnote{Equity (U.K.), statement of 2 October 2025: \emph{Variety}, ``Tilly Norwood Slammed by Equity as AI Tool, Concerned About Origin.'' \url{https://variety.com/2025/film/global/tilly-norwood-slammed-equity-ai-tool-concerned-origin-1236537042/}.} If you build a model on the labour of working actors without consent, payment or attribution, you have, in their view, not created a new performer~-- you have repackaged a stolen one. + +Within seventy-two hours, the public response from working actors followed. Emily Blunt called it ``really, really scary.'' Whoopi Goldberg, on \emph{The View}, dismissed the entire premise. Melissa Barrera, Kiersey Clemons, Lukas Gage~-- a roll-call of working performers, mostly the ones with enough security in their careers to be willing to say anything on the record at all~-- each took their position.\footnote{CNN, ``Tilly Norwood: Hollywood is fuming over a new `AI actress'.'' \url{https://www.cnn.com/2025/09/30/tech/hollywood-ai-actor-backlash}.} + +Eline Van der Velden, Particle6's founder, replied. \emph{``To those who have expressed anger over the creation of our AI character Tilly Norwood: she is not a replacement for a human being, but a creative work~-- a piece of art.''} The defence carried, in miniature, the entire shape of the argument the working actors were about to spend two years pushing back against. \emph{Art.} \emph{Creation.} \emph{Not a replacement.} The whole rhetoric of the AI-native studios, in one sentence, on the Monday morning of October 2025. + +The line that got repeated most often, in the threads and the green rooms and the union briefings I read that week, was a variant of: \emph{we already gave you eighteen months of strike to settle this question.} The 2023 SAG-AFTRA strike had not been about AI in the abstract. It had been, in significant part, about digital replicas and the right of performers to control the use of their likeness in synthetic content. The deal that ended that strike had~-- supposedly~-- set the rules for the next era. Tilly Norwood, dropped onto a festival stage eighteen months later, was a test of whether those rules meant anything. + +The answer was: they were going to have to be re-tested in public, on every individual case, for years. + +\section*{The model} + +What turned the Tilly Norwood weekend from a single-news-cycle controversy into the moment everyone in the creative industries started paying serious attention was that, on the Tuesday she was being condemned, OpenAI released Sora~2. + +Sora~2 was not just an upgrade. It was, by OpenAI's own framing, a step-change in three things at once: physical realism (a ball that bounces correctly off a backboard), audio integration (sound effects and synchronised dialogue baked in, not added in post) and what the company called ``world state''~-- the ability to follow instructions across multiple shots while keeping the scene logically consistent.\footnote{OpenAI, ``Sora~2 is here,'' \url{https://openai.com/index/sora-2/}. Technical capabilities summary including physics modelling, multi-shot world-state persistence and synchronised audio.} If Sora~1, a year and a half earlier, had been the model that made people sit up and notice that AI video was a thing, Sora~2 was the model that made people sit up and notice that AI video might be a \emph{medium}. + +The launch came with a second thing that, looking back, was the actually significant part: an invite-only iOS app, also called Sora, that worked like TikTok. You scrolled. You remixed. You did ``cameos''~-- the in-app feature that let you drop a generated likeness of yourself, or a friend, or anyone you had a clip of, into the model's output.\footnote{\emph{Dream Machine} Issue~1, ``Editor's Pick''; further launch context in NBC News, ``OpenAI's Sora~2: a major leap in AI video and audio.'' \url{https://www.nbcnews.com/tech/tech-news/openai-sora-2-app-video-chatgpt-creation-rcna234973}.} + +Within five days, the Sora app had hit a million downloads.\footnote{LinkedIn News aggregation: ``Sora Tops 1 Million Downloads in 5 Days.'' \url{https://www.linkedin.com/news/story/sora-tops-1m-downloads-in-5-days-6684988/}. \emph{Dream Machine} Issue~3.} + +The thing I want you to hold in your head about this is the timeline. The model was announced on the Tuesday. The app launched the same week. By the Friday, it was on the front page of the App Store. By the following Monday, the first wave of celebrity deepfakes~-- Robin Williams's daughter calling them ``gross''; Michael Jackson generated into music videos he never made; dead historical figures being put through new dialogue by users who didn't realise they were doing anything illegal because the app's design hadn't told them so\footnote{\emph{The Guardian}, ``OpenAI Sora~2 violence racism.'' \url{https://www.theguardian.com/us-news/2025/oct/04/openai-sora-violence-racism}. \emph{Dream Machine} Issue~1.}~-- was being written up in \emph{The Guardian} and the \emph{NBC News} tech vertical.\footnote{NBC News, \emph{op.~cit.}; \emph{The Guardian}, \emph{op.~cit.}} + +OpenAI's own likeness-protection rules, \emph{The Hollywood Reporter} noted that week, had a specific carve-out: dead celebrities and ``historical figures'' weren't covered.\footnote{\emph{Digital Music News}, ``OpenAI's Sora~2 includes likeness protections for celebrities who don't opt in, but that doesn't apply to `historical figures' and dead celebrities.'' \url{https://www.digitalmusicnews.com/2025/10/08/openais-likeness-protections-dont-apply-to-dead-celebrities/}. \emph{Dream Machine} Issue~2.} The carve-out was treated, in the first days of the app, as a feature rather than a problem. + +The clearest line of the entire launch week came not from OpenAI's blog post but from \emph{The Guardian}'s technology reporter, in the lead of their coverage of the Sora app's first violent and racist outputs. \emph{``In 2022, [the tech companies] would have made a big deal about how they were hiring content moderators \ldots{} In 2025, this is the year that tech companies have decided they don't give a shit.''}\footnote{Quoted in \emph{The Guardian}, ``OpenAI launch of video app Sora plagued by violent and racist images: `The guardrails are not real'.'' \url{https://www.theguardian.com/us-news/2025/oct/04/openai-sora-violence-racism}. \emph{Dream Machine} Issue~1.} I think that sentence will end up being remembered as one of the best one-line summaries of the moment. It was, if anything, optimistic about 2022. It was wholly accurate about 2025. + +The reason this matters is not that Sora~2 was the first AI video model. It wasn't even the best one, by some metrics, that month~-- Veo~3.1 from Google would land in mid-October with arguably more sophisticated cinematic controls.\footnote{Google DeepMind, Veo~3.1 launch, mid-October 2025. \emph{Dream Machine} Issue~3, ``Editor's Pick: Veo~3.1 and the Rise of AI Filmmaking.'' Coverage: \url{https://www.cometapi.com/veo-3-1-is-comingand-whats-rumor/}.} The reason it matters is that the \emph{combination} of a major model release and a consumer iOS app, in a single week, collapsed a distinction that had~-- until that week~-- kept the conversation about AI in the creative industries safely in the hands of the people who made the creative industries. + +Until Sora's iOS app, AI video was something that happened on a desktop, with a subscription, with a prompt window. After Sora's iOS app, AI video was something that happened on the phone of every teenager with an invite code, on a swipeable, remixable, social feed. + +The line between ``an AI tool a working filmmaker might use'' and ``a default app on a default phone'' had been the line that held the cultural debate in shape for two years. That week, it didn't. + +\section*{The phrase} + +The line that has stayed with me from those first seven days came not from a celebrity, or from OpenAI's launch page, or from a union release. It came from a small Florida public-radio station's website. The headline read: \emph{Kiss reality goodbye: AI-generated social media has arrived.}\footnote{WUFT, ``Kiss reality goodbye: AI-generated social media has arrived,'' 3 October 2025. \url{https://www.wuft.org/2025-10-03/kiss-reality-goodbye-ai-generated-social-media-has-arrived}. \emph{Dream Machine} Issue~1.} + +I have read that headline a hundred times since the week it was written. It is a perfect sentence. It is also~-- and I think this is what made the early days of Sora~2 so vertiginous~-- \emph{prematurely} true. Reality, as a category, did not end the week that Sora~2 launched. People still had real lives, real friends, real coffees in the morning, real bills at the end of the month. What ended, that week, was the easy assumption that what you saw on your phone had been made by somebody~-- a person, a team~-- with a recognisable connection to a recognisable place. + +What's striking about the WUFT piece, and the few hundred similar pieces that followed it, is that they were not, in the main, written by people in the AI industry. They were written by reporters at local stations, by columnists at regional papers, by the kind of journalist who covers schools and county budgets and the planning department. The collapse of the line between ``made by a person'' and ``made by a machine'' was being noticed first not by the experts but by the audience. + +That, more than anything else that happened that week, was the thing I wrote in the first issue of the newsletter. \emph{It's time to take AI seriously.} The line, six months on, embarrasses me a bit~-- it sounds like the kind of thing you say when you don't have anything else to say~-- but it was, on the morning of 6 October 2025, the only sentence I could write that felt like it was about the actual situation. + +\section*{The director} + +There was one more piece of the early reaction that I want to flag, because it set the template for almost every ``high-end'' creative response that followed. + +In late September, the website \emph{No Film School} ran an interview with James Cameron in which he said~-- bluntly, on the record, in a quote that travelled~-- that AI was ``never going to take the place'' of humans in filmmaking. ``Filmmaking is subconscious,'' he said, ``and can't be quantified.''\footnote{\emph{No Film School}, ``James Cameron Says AI Is `Never Going to Take the Place' of Humans.'' \url{https://nofilmschool.com/james-cameron-ai}. \emph{Dream Machine} Issue~1.} + +Two months later, in promotion for \emph{Avatar: Fire and Ash}, Cameron expanded on the point in a CBS \emph{Sunday Morning} interview that became one of the most-shared creative-industry stories of the entire winter. Asked about generative AI's ability to ``make up a performance from scratch with a text prompt,'' Cameron said: ``It's like, no. That's horrifying to me.'' And then, in a line I have used in talks and in arguments and in this book: \emph{``The act of performance, the act of actually seeing an artist creating in real time, will become sacred.''}\footnote{\emph{The Guardian}, ``James Cameron says AI actors are `horrifying to me','' 1 December 2025. \url{https://www.theguardian.com/film/2025/dec/01/james-cameron-says-ai-actors-are-horrifying-to-me}. Original quote from CBS \emph{Sunday Morning}. \emph{Dream Machine} Issue~10.} + +He went on, in a passage that almost never travelled with the headline quote: \emph{``It also causes us to have to set our bar to a very disciplined level, and to continue to be out-of-the-box imaginative.''} The whole interview, taken together, is not the doom-laden refusal the press cycle reduced it to. It is a working filmmaker articulating an argument about \emph{craft} in an era of automated production~-- that the existence of cheap synthetic performance does not retire the human performer, it \emph{raises the discipline required of the human performer.} The audience's bar moves up. The work that wins it has to move up too. + +The companion line Cameron gave \emph{Variety} the same month was even more telling: \emph{``For years, there was this sense that, `Oh, they're doing something strange with computers and they're replacing actors,' when in fact, once you really drill down and you see what we're doing, it's a celebration of the actor-director moment.''}\footnote{\emph{Variety}, ``James Cameron Says It's `Horrifying' that AI Can `Make Up an Actor'.'' \url{https://variety.com/2025/film/news/james-cameron-horrifying-ai-replace-actors-1236595864/}.} Cameron has spent forty years building digital filmmaking. He is, as a working artist, perhaps the most sophisticated user of computer-aided performance in the history of cinema. His argument is not against AI; it is against AI \emph{that displaces the moment in the room where an artist creates.} That distinction~-- \emph{between AI that augments the actor-director relationship and AI that substitutes for it}~-- is the one most working creatives are trying to draw, and the one most press coverage of the AI debate still flattens. + +What almost every report of those quotes glossed over~-- and what made them more interesting, not less~-- was that Cameron was, and still is, a board member of Stability AI.\footnote{Stability AI, board composition, 2024--2026. Reported across multiple outlets including \emph{Deadline}, ``James Cameron Calls AI Replacing Actors `Horrifying'; Art `Sacred'.'' \url{https://deadline.com/2025/11/james-cameron-gen-ai-horrifying-human-art-sacred-avatar-1236631387/}.} He is not an opponent of AI in filmmaking. He is, by any reasonable definition, an investor in it. His position was not ``no AI.'' His position was ``no AI that replaces the actor in the room.'' That distinction is the one most working creatives, in my experience, are trying to make. The early coverage, looking for the clean villain-or-saviour story, mostly missed it. + +I think Cameron's \emph{Sunday Morning} line is the most important thing said by a working filmmaker in the entire six months I have been writing the newsletter. Not because it is right about everything~-- I think the ``sacred'' framing makes a smaller and more brittle claim than it sounds~-- but because it is the first time, in the AI era, that one of the people who \emph{built} the apparatus of digital cinema in the 1990s and 2000s drew a line that he himself was prepared to defend. + +The line, again, is not ``no machines.'' Cameron has been a machine-builder for forty years. The line is: a human creates \emph{in real time}, and that creation is the work. Everything else is just delivery. + +\section*{The state of the field, the week before} + +I want to spend a section on what was already in motion when the Tilly Norwood announcement happened, because the historians of this period are, I suspect, going to under-tell the \emph{cumulative} story underneath the \emph{catalysing} one. The week of 30 September 2025 was not the moment AI arrived in the creative industries. It was the moment the \emph{audience} arrived in the AI debate. The infrastructure underneath had been forming, in a slow, uneven, partly-public, partly-private way, for at least two years before it. + +Let me sketch the field. + +By the time Sora~2 launched, the major AI-video model release cadence was running at roughly one significant model per fortnight. Runway had shipped Gen-4 in late 2024 and was deep into the public roll-out of Gen-4 Image-to-Video and the Workflows product by September 2025. Luma had released its Dream Machine consumer app; the Genie~3 demo from Google DeepMind in late summer 2025 had been described by \emph{Time} as one of the year's best inventions. Pika~2.0 was shipping. Higgsfield, which would close \$80M on a \$1.3B valuation by January 2026, was already on its third major product cycle. Hunyuan Video and Wan~2.2~-- the open-source Chinese-built models from Tencent and Alibaba~-- had been freely available, on commodity GPUs, for months. Kling, the Kuaishou model that would, by mid-2026, be the model many professional filmmakers actually used for production-grade clips, had been in continuous public release. Sora~2 was the headline of the week. It was not, in any meaningful sense, the entire field. The field was already crowded. + +The same is true of the studio-side adoption. Lionsgate had publicly partnered with Runway on a deal to produce AI-augmented studio films a year before \emph{Futurism}'s headline-grabbing ``crumbled into disaster'' piece. Netflix's quiet integration of AI tools into background-plate generation, animated short development and de-aging post-production work had been documented across 2024 and the first half of 2025. Disney's \emph{House of David}~-- the show whose creator would, in November 2025, defend the use of more than 350 AI-generated visual-effects shots in its second season~-- had been in production with that pipeline in place months before the Sora~2 launch. The major broadcast and streaming companies had been integrating AI under the hood at a pace that the public conversation had not yet caught up with. The Tilly Norwood week was, in part, the moment that pace became impossible to keep quiet. + +The unions had been working on this even longer. The 2023 SAG-AFTRA strike had~-- through the Writers Guild and through the actors' bargaining~-- produced contract language on ``digital replicas'' that was, by 2025, already two years old. Equity in the UK had been running consultations and ballots through 2024 and into 2025. The Authors Guild's class-action lawsuits against OpenAI had been filed in mid-2023 and were grinding through discovery. The European AI Act had been finalised in 2024 and was beginning to bite on copyright disclosures by the time of the Zurich announcement. The Music Performance Trust Fund's emerging conversations about an AI-era levy mechanism~-- the Petrillo-template applied to neural-network outputs that I argue for in Chapter~\ref{ch:2} and Chapter~\ref{ch:15}~-- were already on the agenda at AFM Local 802 and at the UK Musicians' Union long before Tilly walked on stage. The institutional response had pre-existed the cultural rupture. The cultural rupture is what made the institutional response politically possible. + +The adoption telemetry on the platform side, in the months before the Sora~2 week, was already at the level that would later be revealed in Adobe's MAX 2025 Creators' Toolkit Report and the Stanford AI Index 2025. Firefly was already on track for its 22-billion-asset milestone. ChatGPT, by the time Sora~2 launched, was already at roughly 700--800 million weekly active users on its way to 900 million. The 86\% of global creators who reported using generative AI in their workflow in the Adobe survey~-- published a few weeks after the Tilly Norwood week, but capturing data collected before it~-- was a number the platform-companies had been quietly watching for months. The Adobe survey did not produce the adoption. It documented the adoption that was already complete by the time the public was paying attention. + +On the \emph{consumer} side, the Sora app was, again, the catalyst rather than the inventor of the dynamic. The TikTok-style consumer surface for AI generation had been visible for at least a year. ByteDance's Dreamina and CapCut tools had been integrating Seedance, Seedream and the wider ByteDance generative stack into consumer-facing video editing through 2024 and into 2025. The Sora app's million-downloads-in-five-days number~-- the headline that defined the week's consumer dynamics~-- landed inside a market that had been \emph{prepared for it} by Dreamina, CapCut, the Krea consumer app and the Suno and Udio consumer-facing music platforms. What was new about the Sora app was not the \emph{concept} of swipeable AI generation. What was new was that an American flagship-AI company had chosen to ship it as a \emph{primary} consumer surface alongside the model. + +Particle6, finally, had been building Tilly Norwood for the better part of a year before the Zurich panel. Van der Velden's Instagram and TikTok rollouts had been running since the previous summer. The character had a follower count, a posting cadence, a slowly-built visual identity, a small but real fanbase that engaged with her as if she were a person. The Particle6 strategy~-- the deliberate cultivation of a \emph{parasocial} relationship between an AI character and a human audience, in the months before the studio-system pitch~-- was a play borrowed from the playbook of the Korean virtual-idol economy, the Japanese vocaloid scene, and the long history of cultivated personas in the influencer industry. What was new about Tilly was not the \emph{idea} of a synthetic personality with a fanbase. What was new was the framing of that synthetic personality as a \emph{casting option} for legacy film and television. The Zurich announcement was the moment the parasocial-character economy and the working-actor economy were proposed, on a festival stage, as overlapping markets. The reaction was, in retrospect, the audience and the union refusing to let the markets overlap. + +What all of this means, when you stack it together, is that the Tilly Norwood / Sora~2 week did not invent the AI moment in the creative industries. It \emph{named} it. It made it impossible to keep treating AI as a technical category that working creatives could opt out of. The model release was overdue. The Particle6 announcement was overdue. The union response was already drafted in some form. The audience reaction was already, on the slop-ceiling logic I lay out in Chapter~\ref{ch:5}, structurally inevitable. What the week did was \emph{force everything to happen in public, at the same time, in front of an audience that had not previously been part of the conversation.} + +I think that is the deeper reason the week mattered. The conditions were ripe. The catalyst was small. The reaction was big. The change in the \emph{visibility} of the AI transition~-- from a back-room toolchain conversation to a front-page audience question~-- was, by my reading, the actual watershed. Everything else in this book is downstream of that visibility shift. + +\section*{The watershed under the watershed} + +I said earlier that the actual watershed of that week was not the Tilly Norwood announcement, and not the Sora~2 launch, and not the union responses, and not the Cameron quote. The actual watershed was something underneath all four. + +For two years, the conversation about AI in the creative industries had been a conversation among insiders. Toolmakers talked to creators. Creators talked to studios. Studios talked to unions. Unions talked to governments. The general public~-- the audience for the things being made~-- had largely been a backdrop. They had been the people \emph{for whom} this argument was happening, not the people in the argument. + +In the week of Sora~2, that ended. + +The Sora app put a generative video tool on the phone of anyone with an iOS device and an invite code, and the invite codes were not hard to come by. The Tilly Norwood announcement put the abstract concept of ``a synthetic actress'' into the \emph{Daily Mail}, \emph{The Guardian}, \emph{The View}, the breakfast television circuit, and three different morning radio shows I happened to be listening to that week. The Cameron quote, when it came, ran on every wire service that covers the entertainment business. + +The audience joined the argument. Not as a side, but as a participant. + +And once the audience is in the argument, the argument changes. It is no longer about what the unions can negotiate, what the studios will adopt, what the toolmakers will ship. It is about what the people who watch films and listen to music and play games and scroll feeds will accept, demand, refuse and forgive. + +The rest of this book~-- the eleven chapters that follow this one~-- is, in one way or another, an account of what the audience has been doing with the argument since it became theirs. The artists' boycotts and the streaming platforms' counter-moves; the eleven and a half thousand UK citizens who turned up to a government consultation; the 50,000 AI-generated tracks uploaded to Deezer every day and the 1 to 3 per cent of streams those tracks actually got;\footnote{Deezer, ``AI-generated tracks now represent 44\% of all new uploaded music,'' April 2026 newsroom release. \url{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}. Companion analysis: \emph{Music Business Worldwide}, ``75,000 AI-generated tracks now flood Deezer daily, representing 44\% of all new music uploaded to the platform.'' \url{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}. Daily AI uploads to Deezer rose from approximately 50,000 per day in November~2025 (\emph{Dream Machine} Issue~7, citing Deezer / \emph{Musically}) to 75,000 per day by April 2026, with consumer streams of fully-AI tracks holding between 1\% and 3\% of total platform plays~-- and up to 85\% of those streams identified as fraudulent in 2025. \emph{Dream Machine} Issues 7, 26, 27, 28.} the death threats sent to Tilly Norwood's creator in early 2026; the moment in the middle of January 2026 when the U.S. actors' union and SAG-AFTRA went back to the negotiating table because the audience, having looked at the new landscape, had decided what it wanted. + +The week of 30 September 2025 was the last week before any of that. + +I started writing the \emph{Dream Machine} newsletter the Monday after. By the time I sent the first edition out, the conversation had already moved on. diff --git a/latex/chapters/ch02_a_history_of_resistance.tex b/latex/chapters/ch02_a_history_of_resistance.tex new file mode 100644 index 0000000..d604596 --- /dev/null +++ b/latex/chapters/ch02_a_history_of_resistance.tex @@ -0,0 +1,207 @@ +\chapter{A History of Resistance}\label{ch:2} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{} want to start this chapter with a piece of writing. + +\begin{quote} +\emph{``Sweeping across the country with the speed of a transient fashion in slang or Panama hats, political war cries or popular novels, comes now the mechanical device to sing for us a song or play for us a piano, in substitute for human skill, intelligence, and soul\ldots{} Let us not hamper it with a machine that tells the story day by day, without variation, without soul, barren of the joy, the passion, the ardor that is the inheritance of man alone.} + +\emph{Singing will no longer be a fine accomplishment; vocal exercises, so important a factor in the curriculum of physical culture, will be out of vogue! Then what of the national throat? Will it not weaken? What of the national chest? Will it not shrink?} + +\emph{When a mother can turn on the phonograph with the same ease that she applies to the electric light, will she croon her baby to slumber with sweet lullabys, or will the infant be put to sleep by machinery? Children are naturally imitative, and if, in their infancy, they hear only phonographs, will they not sing, if they sing at all, in imitation and finally become simply human phonographs~-- without soul or expression?''} +\end{quote} + +Read that paragraph once more, and try, before I tell you when it was published, to date it. + +If you guessed \emph{autumn 2024 trade-press editorial on Suno}, you would not be alone. The language sits comfortably alongside the take-pieces about AI music slop that filled the music press in the months I started writing the newsletter. \emph{Machinery in substitute for human skill, intelligence and soul.} \emph{The story told day by day without variation.} \emph{Children growing up as imitative human phonographs, without soul or expression.} Every clause has a 2024--25 equivalent. + +The essay is not from 2024. It was published in \textbf{September 1906}, in \emph{Appleton's Magazine}, by \textbf{John Philip Sousa}~-- the most popular bandleader in the United States at the time~-- and it is titled \emph{``The Menace of Mechanical Music.''}\footnote{John Philip Sousa, ``The Menace of Mechanical Music,'' \emph{Appleton's Magazine}, Vol.~8, September 1906, pp.~278--284. Full text via ExplorePAHistory: \url{https://explorepahistory.com/odocument.php?docId=1-4-1A1}. Academic context: Patrick Warfield, ``John Philip Sousa and `The Menace of Mechanical Music','' \emph{Journal of the Society for American Music}, Cambridge University Press: \url{https://www.cambridge.org/core/journals/journal-of-the-society-for-american-music/article/abs/john-philip-sousa-and-the-menace-of-mechanical-music/A9E621587BE7580ABD73AEF64D4B2DC8}. The 1906 essay was, in part, lobbying for what would become the 1909 Copyright Act.} The machine Sousa was warning his readers against was the phonograph. The ``soul-barren'' recording technology Sousa feared was Edison's flat disc, spinning at 78~rpm, playing back music captured by a brass horn. + +The same essay was~-- almost word for word, with a few changes in the names of the machines~-- written about the player piano in 1900, the microphone in 1932, the synthesiser in 1980, the drum machine in 1991, Auto-Tune in 1998, non-linear video editing in the early 1990s, the digital camera in the 2000s, the smartphone-as-camera in the 2010s, and generative AI in 2023, 2024 and 2025. + +That is the subject of this chapter. The structured, recurring, almost ritual \emph{pattern} by which every major creative-technology introduction in the modern era has been received by its working practitioners~-- and what that pattern, eighteen iterations later, tells us about how to think about the AI moment the rest of this book describes. + +I want to be careful about how I do this. The historical-analogy move is, in tech writing, a famously cheap one. \emph{``Every disruptive technology has been resisted; therefore your resistance to this technology is wrong''} is the rhetorical operating system of two decades of platform-company keynotes, and it has been wielded so dishonestly that working creatives in 2026 are right to be suspicious of any version of it. I am not, in this chapter, making that argument. I am making a \emph{more specific} one. The historical pattern has~-- across twenty distinct technologies in the period from 1839 to 2022~-- a recognisable five-act shape, and the \emph{five-act shape} is what the pattern tells you. Not that resistance is wrong. Not that the new tool will be fine. Something more useful than either: which institutional moves work, which fail, what gets preserved, what gets lost, where the \emph{new} creative forms come from, and what the working practitioner's actual leverage in the period is. + +The history is, in other words, \emph{operationally} informative. That is the use I want to make of it. + +\section*{The five-act curve} + +Every resistance I look at in this chapter~-- and there are many more I do not have room for~-- moves through roughly the same five stages, in something like the same order. + +\textbf{Act One: Ridicule.} The new tool is dismissed as a toy. It cannot compete. It sounds awful, looks crude, has the wrong specifications. The serious practitioners are unconcerned because the work it produces is not, on inspection, work. The Roland TR-808 drum machine, released in 1980 and a commercial failure, was reviewed as ``toy robot drums.'' The Canon 5D Mark~II, the DSLR that started the death of dedicated cinema cameras, was~-- in 2008~-- dismissed as a stills camera with a video gimmick. Auto-Tune, between 1997 and roughly 2003, was used as an \emph{undisclosed} studio tool because no working singer wanted to admit that their pitch was being machine-corrected. + +\textbf{Act Two: Moral panic.} The new tool is reframed as a threat to public morals, aesthetic standards, or the integrity of the form. It is degenerate. It is theft. It is not real \emph{singing}, not real \emph{photography}, not real \emph{art}. The 1932 sermon by \textbf{Cardinal O'Connell} of Boston that crystallised this stage for the microphone~-- that crooning was ``a degenerate form of singing,'' that ``no true American man would practice this base art,'' and that crooners were ``whiners and bleaters defiling the air''~-- is unimprovable as a template.\footnote{William Henry Cardinal O'Connell, Archbishop of Boston, sermon to the Holy Name Society, Boston, 10 January 1932. Reported widely in the contemporaneous press, including the \emph{Daily Courier} (Connellsville, PA), 12 January 1932 (\url{https://www.newspapers.com/newspage/38168082/}). Cultural context: KUOW/NPR, ``\,`Imbecile Slush': Surprising Early Reactions to Crooning,'' \url{https://www.kuow.org/stories/imbecile-slush-surprising-early-reactions-crooning}. JSTOR Daily, ``The Gender Politics of the First Boy Bands,'' \url{https://daily.jstor.org/the-gender-politics-of-the-first-boy-bands/}.} \emph{``Imbecile slush,''} O'Connell called it, in language that anyone who has read a 2024 anti-AI op-ed will recognise. The 1991 federal court ruling in \emph{Grand Upright Music v.\ Warner Bros.}~-- the case in which Biz Markie was sued for sampling Gilbert O'Sullivan~-- opened with the words \emph{``Thou shalt not steal,''} quoting the Seventh Commandment, in a US copyright opinion.\footnote{\emph{Grand Upright Music, Ltd.\ v.\ Warner Bros.\ Records Inc.}, 780 F.~Supp.~182 (S.D.N.Y.~1991). Full text: \url{https://law.justia.com/cases/federal/district-courts/FSupp/780/182/1445286/}. The ``Thou shalt not steal'' opening is the most-quoted line from a US copyright opinion of the late twentieth century.} In 2025, the moral-panic stage of AI is mostly behind us; the analogous \emph{Thou shalt not steal} language is in the UK's 88\% copyright consultation response, the \emph{Stealing Our Work Is Not Innovation} declaration, and the union statements quoted throughout this book. + +\textbf{Act Three: Existential professional alarm.} The displaced practitioners realise the tool is not a toy and not just morally suspect~-- it is structural. It is going to take their work, change their craft, and reshape the institutions that support them. The classic statement is \textbf{Phil Tippett's,} the stop-motion master who saw ILM's first digital test of a \emph{Jurassic Park} T.~rex in 1992 and said: \emph{``I think I'm extinct.''}\footnote{Tippett's account of the \emph{Jurassic Park} digital test is documented across multiple ASC and contemporaneous press accounts. American Society of Cinematographers, ``Jurassic Park: Effects Team Brings Dinosaurs Back from Extinction,'' \url{https://theasc.com/articles/jurassic-park-effects-team-brings-dinosaurs-back}. Wikipedia, ``Phil Tippett,'' \url{https://en.wikipedia.org/wiki/Phil_Tippett}. The dialogue paraphrase Spielberg incorporated into the film is Goldblum/Malcolm's response to Grant's ``I think we're out of a job'': ``Don't you mean \emph{extinct}?''} Spielberg liked the line enough to put a paraphrase of it in the film. Tippett was right about himself in some local sense~-- his go-motion craft did not survive \emph{Jurassic Park}'s release. He was wrong about himself in a wider one~-- his studio went on to produce digital animation work for \emph{Starship Troopers} and is still operating in 2026. Both readings can be true at the same time. Most of the existential-alarm moments work like this. + +\textbf{Act Four: Institutional and legal counter-attack.} Unions strike. Lawmakers legislate. Lawsuits get filed. The 1942 and 1948 \textbf{Petrillo strikes}~-- when the American Federation of Musicians, led by James Caesar Petrillo, refused to record for the major labels~-- are the canonical version of this stage, and I will spend longer on them in a moment. The UK Musicians' Union's \textbf{1980 ``Massacre of the Musicians'' BBC strike} and its \textbf{1982 motion to ban synthesisers} are the British version. The 1991 \emph{Grand Upright} ruling that sampling was theft is the legal version. The 2007 \emph{Viacom v.\ YouTube} \$1bn lawsuit is the platform-distribution version. The 2023 SAG-AFTRA and WGA strikes~-- which gave us the contract language that frames Chapter~\ref{ch:1}~-- are the most recent before the period this book covers. + +\textbf{Act Five: Settlement.} The dust settles into one of three forms. The displaced craft \emph{dies}: miniature painting after 1840, hand-drawn feature animation after \emph{Toy Story}, the photo-lab business after digital. The new tool is \emph{taxed and the revenue redistributed}: the Petrillo settlement created the \textbf{Music Performance Trust Fund}, still distributing payments to live musicians in 2026; the DMCA Section~512 plus YouTube's Content ID created a parallel pool of platform-paid royalties for the music industry; needletime in the UK forced the BBC to pay for live sessions until 1988. Or~-- most often~-- the two creative categories \emph{coexist}: photography did not kill painting, it forced painting toward what photography could not do (Impressionism, abstraction); the microphone did not kill singing, it \emph{redefined} what counts as singing; sampling did not kill composition, it redefined what counts as composition. + +That is the shape. It is, by my count, the shape of every single technological transition in the creative industries in the period 1839 to 2022. It is happening, around AI, right now~-- and where we are on the curve is part of what this chapter is for. + +Let me walk briefly through a handful of the cases, because the \emph{texture} of the historical record is, I think, more useful than the abstract pattern alone. + +\section*{The photograph (1839)} + +The daguerreotype was unveiled in Paris on 7 January 1839 and publicly described to the Acad\'{e}mie des Sciences on 19 August. By 1849, roughly 100,000 daguerreotypes had been produced in Paris alone; by 1861, about 33,000 people in Paris were making their living from photography and photographic supplies. The professional class most immediately wiped out was the \textbf{portrait miniaturist}~-- painters of small ivory-based likenesses, the working photographers of the pre-photographic age. They could not compete on speed, price or fidelity. Within a single working generation, the craft was effectively gone. + +The most articulate resistance was not from the miniaturists themselves but from the literary intelligentsia. \textbf{Charles Baudelaire's} 1859 essay \emph{``The Modern Public and Photography,''} published in the \emph{Revue Fran\c{c}aise}, made the case in language a 2024 AI-sceptic would recognise: \emph{``this industry, by invading the territories of art, has become art's most mortal enemy.''} And, harder: \emph{``The photographic industry was the refuge of all failed painters, too ill-equipped or too lazy to complete their studies.''}\footnote{Charles Baudelaire, ``Le Public Moderne et la Photographie,'' \emph{Revue Fran\c{c}aise}, 1859 (part of the \emph{Salon de 1859} essays). English translation widely available; the original French in PDF form: \url{https://gallowayexploringart.wordpress.com/wp-content/uploads/2014/08/baudelaire_the-modern-public-photography.pdf}. Smithsonian Archives institutional overview: ``Photography Murdered Painting, Right?'', \url{https://siarchives.si.edu/blog/photography-murdered-painting-right}.} + +The famous \textbf{Paul Delaroche} line~-- \emph{``From today, painting is dead''}~-- is, the historians who have looked carefully tell us, almost certainly apocryphal. The earliest sourced version of it appears in an 1873 survey, thirty-four years after Delaroche supposedly said it; the painter's own contemporary writing on the daguerreotype called it \emph{``an immense service to the arts,''} and he continued painting until his death in 1856.\footnote{The Delaroche apocrypha is documented in Quote Investigator: \url{https://quoteinvestigator.com/2022/10/16/photo-mortal/}. The earliest sourced version is in an 1873 survey, 34 years after Delaroche reportedly said it. Delaroche's own contemporary writing on the daguerreotype, in Gernsheim's standard 1959 monograph, characterised the new technology as ``an immense service to the arts.''} The story has outlived the saying. (This is itself a pattern. I will come back to it.) + +The settlement took seventy years. Alfred Stieglitz founded the Photo-Secession on 17 February 1902. \emph{Camera Work} ran from 1903 to 1917. The ``291'' gallery opened in 1905. MoMA established the first photography department at a major museum on 31 December 1940. From invention to \emph{full institutional acceptance of the new form as art}: about a century. The compensating gain: the entire history of modern photography as a fine-art tradition, an industrial portrait business, a documentary-journalism profession, and~-- eventually~-- the cultural substrate on which the smartphone-camera moment of the 2010s rests. + +What painting did, meanwhile, was redefine itself. Impressionism (light, atmosphere, the subjective moment), Post-Impressionism (the interior state), Cubism (multiple viewpoints), and ultimately abstraction~-- every one of these moves makes more sense if you read them as painting's response to the daguerreotype's having taken representation. The standard art-history reading, which I think is correct, is that \emph{photography liberated painting from the burden of representation}. The fear-namers were locally right and structurally wrong. Painting did not die. It became something else. + +\section*{The phonograph (1877--1920s)} + +I have already quoted Sousa. The whole 1906 \emph{Appleton's} essay is worth reading; almost every paragraph of it could be republished, with names changed, in 2025. + +The institutional response to the phonograph~-- and this is the part of the story that working creatives in 2026 need to know~-- came in the form of the \textbf{1909 Copyright Act}, the first statutory acknowledgement in US law that \emph{machine reproduction of human creative work required a legal regime.} The 1909 Act created the \textbf{compulsory mechanical licence} for recorded music, the structural ancestor of every machine-licensing argument we are now having about AI training. Sousa, in part because his lobbying helped pass it, prospered in the recording era; his compositions still generate royalties under that licensing structure today. + +The phonograph also created entirely new occupations that the parlour-music economy could not have anticipated. The recording engineer. The A\&R executive. The producer. The mastering engineer. The sleeve designer. The pressing-plant operator. The retail-store buyer. The pop \emph{single} as a commercial form. Jazz on record. The LP. The concept album. The bedroom-studio that, in the 2000s, would take all of those occupations apart again. Sousa got the \emph{parlour} prediction right~-- recorded music did dent amateur home music-making~-- and the \emph{industry} prediction completely wrong. The recording industry was the largest expansion of working-musician employment in the history of music, and it was made possible by the technology Sousa thought would destroy it. + +\section*{The Petrillo bans (1942, 1948)} + +The \textbf{American Federation of Musicians} had, by the 1940s, watched the phonograph, the talking picture (which alone wiped out roughly 22,000 cinema-orchestra jobs in the US in 1927), and commercial radio progressively displace live performance. \textbf{James Caesar Petrillo}, AFM president from 1940, did the thing every union threatened by a creative technology has tried, with varying success, to do since: he turned off the recording machine. + +\textbf{On 1 August 1942}, AFM members stopped recording. The strike lasted \textbf{27 months}. Decca settled in 1943; RCA Victor and Columbia in November 1944. The settlement: a per-record royalty paid into an AFM fund for unemployed musicians. + +\textbf{On 1 January 1948} Petrillo did it again, triggered by the Taft-Hartley Act outlawing the first royalty arrangement. The 1948 settlement created the \textbf{Music Performance Trust Fund} under Section~302 of Taft-Hartley~-- a jointly-administered labour-management fund paid into by the labels and broadcasters, used to subsidise free live performances by working musicians. The MPTF still exists. It still pays out, in 2026, several million dollars a year for live music.\footnote{The 1942--44 Petrillo strike: Wikipedia, ``1942--44 musicians' strike,'' \url{https://en.wikipedia.org/wiki/1942\%E2\%80\%931944_musicians\%27_strike}; Mainspring Press, ``The Man Who Crippled the American Recording Industry: James Caesar Petrillo and the American Federation of Musicians Recording Bans,'' \url{https://mainspringpress.org/2024/11/23/the-man-who-crippled-the-recording-industry-james-caesar-petrillo-and-the-american-federation-of-musicians-recording-bans/}; DownBeat, ``The Petrillo Ban of 1942--`44: Past \& Future at War,'' \url{https://downbeat.com/news/detail/the-petrillo-ban-of-194244-past-future-at-war}; Local 802 AFM, ``The Silence Was Deafening,'' \url{https://www.local802afm.org/allegro/articles/the-silence-was-deafening/}. The Music Performance Trust Fund's institutional history: \url{https://musicpf.org/establishment-of-mptf-led-to-the-formation-of-afms-pension-and-residual-funds/}.} + +I want to dwell on this for a moment, because the Petrillo settlement is~-- by some distance~-- the \textbf{most operationally important precedent} for how the AI debate could land, and almost nobody in the current creative-AI conversation talks about it. + +The Petrillo template has four parts. \emph{One,} the displacing technology is not banned. It is allowed to displace. \emph{Two,} the platform owner pays an ongoing per-unit tribute to the displaced labour pool. \emph{Three,} the tribute is collected centrally, by a joint labour--management body, not negotiated individual-by-individual. \emph{Four,} the tribute is paid out to subsidise the \emph{displaced creative practice itself}~-- live music, in this case~-- keeping it alive as a category even as the market for it shrinks. + +The SAG-AFTRA \emph{Tilly Tax} provisions in the 2026 contract, the UK 88\% licensing-by-default proposal, the \emph{Creative Weight Attribution} musical-AI infrastructure I described in Chapter~\ref{ch:5}, the C2PA / SynthID provenance stack from Chapter~\ref{ch:12}~-- these are all, on inspection, \emph{attempts to reconstruct the Petrillo template for AI}. Per-unit tribute. Joint collection. Redistribution to the displaced practice. The mechanism is the same. The political question is whether the platforms will accept it. + +The mechanism worked once. It can work again. The pattern of the resistance that fails~-- the 1982 UK Musicians' Union motion to \emph{ban synthesisers outright}, the European \emph{Right to be Forgotten} style absolutism on training data~-- is the pattern of resistance that tries to legislate against the machine rather than to tax it. Levy beats ban, every time. Royalty pool beats injunction. \emph{Mechanism, not prohibition.} + +\section*{The microphone (1932)} + +Cardinal O'Connell's January 1932 sermon to 3,000 men of the Holy Name Society of Boston is the single funniest moment in the resistance literature. \emph{Crooning}~-- the conversational, intimate, microphone-enabled vocal style that \textbf{Bing Crosby}, Rudy Vall\'{e}e and others had built into a mass commercial form by the late 1920s~-- was, for O'Connell, ``a degenerate form of singing. No true American man would practice this base art\ldots{} If you will listen closely [to crooners' songs] you will discern the basest appeal to sex emotion in the young.'' Crooners were ``whiners and bleaters defiling the air.'' Their work was ``imbecile slush.''\footnote{William Henry Cardinal O'Connell, \emph{op.~cit.}} + +The cultural fight was effectively over by the end of the decade. Bing Crosby was the biggest male voice in America. By the late 1930s no popular vocalist \emph{not} trained in microphone technique could make a competitive career. + +What is interesting about the microphone case, for our purposes, is \emph{what it did to the underlying definition of the craft}. Before the microphone, \emph{good singing} meant volume, projection, throat technique~-- the operatic, theatrical, music-hall tradition that O'Connell had grown up inside. After the microphone, \emph{good singing} meant timbre, intimacy, breath control at low dynamics, conversational diction~-- a fundamentally different skill set. Almost every popular vocalist since 1935 has been a ``crooner'' in the technical sense, including those who would not call themselves that. \emph{The microphone redefined what counted as singing.} The vocalists who refused the microphone are mostly remembered as period figures. The ones who absorbed it defined the rest of the century of popular music. + +This is the deeper pattern I will come back to. Resistance, in the named-fear form, almost always defends \emph{the existing definition} of the craft. The settlement, almost always, \emph{redefines} the craft. The fear is real and the language is sincere; what's actually happening is bigger than what the fear is naming. + +\section*{The synthesiser (1980--82)} + +The UK part of this story is the cleanest because it generated public archives. The \textbf{Yamaha DX7}, released in 1983, put credible electric piano, brass, strings, marimba and dozens of other sounds into a single keyboard at a price point~-- about \pounds{}1,500~-- accessible to working session players. The DX7 was used on roughly \textbf{40\% of US Billboard Hot 100 \#1 singles in 1986}. Session keyboard players and orchestral string sections previously hired for adverts, TV scoring, library music and pop sessions were directly displaced. + +The \textbf{Musicians' Union} of the UK responded in two stages. + +\textbf{1980, the Massacre of the Musicians.} The BBC announced in March 1980 that it would cut 172 staff orchestra posts and disband five of its eleven in-house orchestras. 83\% of MU BBC members voted to strike. The strike began 16 May 1980. \textbf{The First Night of the Proms was cancelled for the first time in its history.} The strike ran until 1 August 1980, ending with a compromise: the BBC Northern Ireland Orchestra and BBC Midland Radio Orchestra were disbanded as planned; the others survived.\footnote{Musicians' Union History, ``The Strike That Made History~-- Massacre of the Musicians 1980,'' \url{https://www.muhistory.com/the-massacre-of-the-musicians-1980/}. Academic context on the broader MU--BBC dispute landscape: ``Negotiating Needletime'' (Tandfonline), \url{https://www.tandfonline.com/doi/full/10.1080/03071022.2016.1215098}.} + +\textbf{1982, the synthesiser ban motion.} On 23 May 1982~-- by coincidence Bob Moog's birthday~-- the MU's Central London Branch passed a motion to ban synthesiser, drum-machine and electronic-device use by union members entirely.\footnote{MusicRadar, ``The Day the Loony Musicians Union Tried to Kill the Synthesizer (Which Also Happened to be Bob Moog's Birthday),'' \url{https://www.musicradar.com/news/the-union-passed-a-motion-to-ban-the-use-of-synths-drum-machines-and-any-electronic-devices-the-day-the-loony-musicians-union-tried-to-kill-the-synthesizer-which-also-happened-to-be-bob-moogs-birthday}. Far Out Magazine, ``Why did the Musicians Union outlaw synthesisers in 1982?'', \url{https://faroutmagazine.co.uk/musicians-union-outlaw-synthesisers/}.} The trigger was that Barry Manilow's UK tour had replaced its string section with synth players. The motion was never adopted as full union policy. The MU's Executive Committee passed a more measured resolution in November 1982. A breakaway ``Union of Sound Synthesists'' was formed. \emph{Top of the Pops}, for a period, required bands to record their backing tracks the afternoon before the show ``to prove they could actually play it.'' None of it held. The DX7 sold over 200,000 units. By 1990 the cultural debate was over and the synthesiser was, simply, another instrument. + +What the \emph{MU} got wrong, in retrospect, was the same thing every resistance-by-prohibition gets wrong: they tried to ban the tool rather than to tax it. There was no Petrillo-style fund. There was no per-output levy on synthesiser use. There was no royalty pool subsidising live orchestral work. The MU's defensive posture preserved nothing structurally and lost the cultural argument decisively. The session-musician economy contracted. Some of the displaced players retrained as programmers and prospered. Others did not. \textbf{Trevor Horn}~-- the Buggle who, three years before the dispute, had sung \emph{Video Killed the Radio Star}~-- became the defining pop producer of the 1980s. + +The lesson, for the working creative in 2026, is not that the MU was wrong to resist. The MU was \emph{right} to read the displacement signal three years ahead of the rest of the industry. The MU was wrong about \emph{what kind} of resistance to mount. Prohibition was always going to lose. A levy-and-pool argument~-- what an \emph{AI-era Petrillo} could look like~-- might have held. + +\section*{Drum machines, sampling and the lawsuits (1980s--2000s)} + +The Roland TR-808 (1980) and TR-909 (1983) both \emph{failed} commercially on release. The 808 was criticised as ``toy robot drums''; the 909 was reviewed as ``still sounds like a drum machine, instead of a machine playing drums.'' Both became cult instruments only after being dumped at secondhand prices to young hip-hop and dance producers in the mid-1980s. The 808's hand-clap, snare and signature deep kick are now the defining percussion sounds of contemporary popular music. The same dismissed-then-canonised arc is, in 2026, beginning to play out for Suno and Udio at the consumer-music end of the spectrum. + +The legal resistance to sampling produced two rulings every working creative should know about, because they are the cleanest available templates for how the courts may treat AI-training disputes. + +\textbf{\emph{Grand Upright Music v.\ Warner Bros.}} (S.D.N.Y.~1991). Biz Markie sampled three bars of Gilbert O'Sullivan's \emph{Alone Again (Naturally)} without clearing it. Judge Kevin Thomas Duffy's opinion opened with the words \emph{``Thou shalt not steal,''} quoting the Seventh Commandment, in a US federal court ruling. He referred the case to the US Attorney for potential \emph{criminal} investigation. The album was pulled. The sample-dense Bomb Squad / Public Enemy style of production it had been built on became commercially impossible.\footnote{\emph{Grand Upright Music, Ltd.\ v.\ Warner Bros.\ Records Inc.}, 780 F.~Supp.~182 (S.D.N.Y.~1991), \emph{op.~cit.}} + +\textbf{\emph{Bridgeport Music v.\ Dimension Films}} (6th Cir.~2005). NWA's \emph{100 Miles and Runnin'} sampled a two-second guitar chord from Funkadelic's \emph{Get Off Your Ass and Jam}, looped and pitched down. The Sixth Circuit eliminated the \emph{de minimis} defence for sampling sound recordings and issued the rule that has, for twenty years, defined how clearance works: \textbf{``Get a license or do not sample.''}\footnote{\emph{Bridgeport Music, Inc.\ v.\ Dimension Films}, 410 F.3d~792 (6th Cir.~2005). Full text: \url{https://law.justia.com/cases/federal/appellate-courts/F3/410/792/574458/}. The ``Get a licence or do not sample'' rule is the most-cited line in the opinion.} + +Hip-hop, of course, did not die. It became the dominant global popular music form. What changed was that the \emph{aesthetic} of dense, layered, sample-heavy production gave way to a more clearance-friendly style. The Bomb Squad lineage continued, but on different terms. + +The AI-training analogy here is direct, and I would commend the rulings to anyone trying to think clearly about \emph{UMG v.\ Anthropic} and the cases that will follow it. \emph{Thou shalt not steal} and \emph{Get a license or do not sample} are not, despite their archaic phrasing, particularly anti-technology rulings. They are \emph{pro-licensing} rulings. They say: the tool can be used, but the inputs have to be paid for. That is what working creatives are asking for in the UK 88\% and the \emph{Stealing Our Work Is Not Innovation} declaration. The line of legal reasoning is already in the books. + +\section*{Auto-Tune (1998--2010)} + +I want to spend less time on Auto-Tune than the dossier supports, because the case is so clean it almost makes itself. Andy Hildebrand, a former Exxon seismic-data engineer, released Auto-Tune in 1997. \textbf{Cher's \emph{Believe}} (1998), produced by Mark Taylor and Brian Rawling with the retune speed maxed out, produced the now-iconic ``Cher effect''~-- the audible warble. Taylor and Rawling claimed it was a vocoder for several years to protect the trick. + +\textbf{T-Pain} made the effect his signature from 2005 onwards and was rewarded with \textbf{Jay-Z's} \emph{``D.O.A.\ (Death of Auto-Tune)''}~-- released June 2009 on \emph{The Blueprint 3}~-- a direct moral-panic attack on what Auto-Tune was doing to vocal authenticity. \textbf{\emph{TIME} magazine's \emph{50 Worst Inventions} list} in 2010 ranked Auto-Tune at \#15: software that ``can make bad singers sound good, and really bad singers sound like robots.''\footnote{\emph{TIME}, ``50 Worst Inventions,'' 2010, Auto-Tune at \#15: \url{https://content.time.com/time/specials/packages/article/0,28804,1991915_1991909_1991903,00.html}. Wikipedia, ``Auto-Tune,'' \url{https://en.wikipedia.org/wiki/Auto-Tune}. NPR, ``25 Years of Believe,'' \url{https://www.npr.org/2023/10/19/1207028349/25-years-ago-cher-released-a-song-that-would-change-the-sound-of-pop-music}. Wikipedia, ``D.O.A.\ (Death of Auto-Tune),'' \url{https://en.wikipedia.org/wiki/D.O.A._(Death_of_Auto-Tune)}.} + +Sixteen years later, Auto-Tune is on every pop vocal you hear, used as both correction and effect. Bon Iver's \emph{22, A Million} (2016) deployed it as a self-conscious aesthetic instrument. Billie Eilish has used it across her career, transparently. The cultural rehabilitation is complete. The moral-panic stage, in retrospect, looks parochial. + +But notice what \emph{did} happen. The microphone-era settlement~-- \emph{you have to be able to sing}~-- was, in the Auto-Tune era, definitively broken. The new settlement is \emph{you have to be able to perform the post-corrected vocal as a self-conscious artistic choice}. The redefinition is real. Cardinal O'Connell, transported eighty years forward, would have hated Auto-Tune for exactly the same reasons he hated crooning, and would have been just as wrong about it. + +\section*{Non-linear editing and the death of the splice} + +Avid Media Composer launched in 1989. Through the early 1990s it displaced the Moviolas, Steenbecks and KEM flatbeds that working film editors had used for sixty years. The American Cinema Editors did not strike. The Motion Picture Editors Guild did not stop the transition. The settlement was generational: editors trained on film retired; editors trained on Avid became standard. + +The witness I want to quote here is \textbf{Walter Murch}, ACE~-- possibly the most respected film editor of the last fifty years. Murch edited \emph{The Conversation} and \emph{Apocalypse Now} on physical film. He edited \emph{The English Patient} on Avid, winning Oscars for both picture and sound. He then edited Anthony Minghella's \emph{Cold Mountain} (2003) on \textbf{Apple Final Cut Pro running on commodity Power Mac G4 hardware}~-- for a \$79m feature. The story is in Charles Koppelman's book \emph{Behind the Seen} (Peachpit, 2004).\footnote{Walter Murch, \emph{In the Blink of an Eye: A Perspective on Film Editing}, Silman-James Press, 1995 (2nd edition 2001). PDF: \url{https://www.craftfilmschool.com/userfiles/files/Walter\%20Murch\%20-\%20In\%20the\%20Blink\%20of\%20an\%20Eye\%20Revised\%202nd\%20Edition\%20(2001,\%20Silman-James\%20Pr).pdf}. Charles Koppelman, \emph{Behind the Seen: How Walter Murch Edited Cold Mountain Using Apple's Final Cut Pro and What This Means for Cinema}, Peachpit Press, 2004: \url{https://www.peachpit.com/store/behind-the-seen-how-walter-murch-edited-cold-mountain-9780735714267}.} The decision saved about \$1m versus an equivalent Avid rental, and Murch chose it on practical grounds. The editor who literally wrote the textbook on film editing~-- \emph{In the Blink of an Eye}, the canonical philosophical text on the cut~-- was, by 2003, working on the tool the editing-room conservatives were warning the industry against. + +The compensating gain, from the non-linear editing transition, was that the toolkit shipped on a laptop. Indie cinema benefited enormously. The grammar of the cut accelerated~-- the average shot length in Hollywood drama dropped from roughly ten seconds in the 1960s to roughly four seconds by the 2000s, a change made trivial by NLE that would have been physically punishing to execute on a Moviola. The contemporary visual grammar that ranges from \emph{The Bourne Identity}'s hyper-cuts to Wong Kar-wai's asynchronous editing aesthetic to TikTok's stitched, layered, fast-moving native form is, in operational terms, \emph{what non-linear editing made possible.} The form the new tool enabled was bigger than the form it replaced. + +\section*{Kodak (1975--2012)} + +Steven Sasson, an engineer at Kodak, built \textbf{the first digital camera prototype in December 1975}. 0.01 megapixel, black and white, the size of a toaster, with a 23-second save time to magnetic tape. Sasson's own description, in multiple interviews, is that the executive response to the demo was \emph{curious but concerned about the implications for film}. Kodak suppressed the project to protect its film business.\footnote{Sasson's account documented at the National Inventors Hall of Fame: \url{https://www.invent.org/blog/inventors/Legacy-Steve-Sasson}. Snopes verification of the ``Kodak suppressed the digital camera'' claim: \url{https://www.snopes.com/fact-check/kodak-digital-camera-invention/}. Knowledge@Wharton on the Kodak collapse: \url{https://knowledge.wharton.upenn.edu/podcast/knowledge-at-wharton-podcast/whats-wrong-with-this-picture-kodaks-30-year-slide-into-bankruptcy/}. Bankruptcy filing: 19 January 2012, S.D.N.Y., \$5.1bn assets / \$6.8bn liabilities.} + +Kodak's peak headcount was about 145,000 in the early 1980s. At the company's Chapter~11 bankruptcy filing on \textbf{19 January 2012}, the workforce was about \textbf{19,000.} A nearly \$7bn liability stack. A company that had invented the technology that would destroy it, and then suppressed that technology, and then been destroyed by it anyway when the rest of the market~-- Nikon, Canon, Sony~-- built around the patents Kodak had not commercialised. + +The Kodak story is the standard cautionary tale for incumbents about to be disrupted by the technology they themselves built. It is being told, with increasing force, about the legacy entertainment industries in 2026. \emph{The companies that already have the IP, the audience and the distribution are, by structural inheritance, in the position Kodak was in in 1990}. What we will find out, in the rest of this decade, is whether they have learned the Kodak lesson~-- that the new technology is going to displace the old whether or not you commercialise it, so you may as well be the company that does~-- or whether the next few years will produce the entertainment-industry equivalent of the 2012 bankruptcy filing. + +\section*{Photoshop, social media, smartphones~-- a faster montage} + +Three more cases, briefly, because the pattern is by this point clear and the texture matters more than the recital. + +\textbf{Photoshop and photojournalism (1990--2015).} The famous \textbf{Brian Walski} firing, 1 April 2003~-- LA Times staff photographer dismissed by satellite phone from Iraq for compositing two combat photographs into one stronger image~-- is the single canonical example.\footnote{Wikipedia, ``Brian Walski,'' \url{https://en.wikipedia.org/wiki/Brian_Walski}. \emph{Washington Post} contemporaneous coverage: \url{https://www.washingtonpost.com/archive/lifestyle/2003/04/03/altered-picture-costs-la-times-photographer-his-job/c5e7c9e0-a836-429a-bb4e-d502f1768a96/}. World Press Photo's institutional response in TIME: \url{https://time.com/3706626/world-press-photo-processing-manipulation-disqualified/}.} World Press Photo's response, over the following decade, was to issue increasingly tight ethics rules and disqualify increasing numbers of finalists. The truth-claim of the photograph survived institutionally at AP, Reuters, \emph{National Geographic} and \emph{Magnum}. It did not survive on social media. The structural answer was C2PA~-- the content-authenticity infrastructure that now sits underneath the AI provenance stack in Chapter~\ref{ch:12}. The 1990s photojournalism debate was, on inspection, \emph{the first round of the C2PA conversation} the AI era is now finishing. + +\textbf{Social media (2005--2014).} The defining institutional fight was \textbf{\emph{Viacom v.\ YouTube}}: \$1bn in claimed damages, filed in March 2007, decided in favour of YouTube and the DMCA Section~512 safe harbour in 2010 and again in 2013, settled out of court in \textbf{March 2014 with no money changing hands}~-- a complete Google win.\footnote{Wikipedia, ``Viacom International, Inc.\ v.\ YouTube, Inc.,'' \url{https://en.wikipedia.org/wiki/Viacom_International_Inc._v._YouTube,_Inc.}. Electronic Frontier Foundation case file: \url{https://www.eff.org/cases/viacom-v-youtube}. \emph{Variety} on the March 2014 settlement: \url{https://variety.com/2014/biz/news/google-and-viacom-settle-copyright-infringement-lawsuit-over-youtube-1201137538/}.} The settlement was effectively \emph{automated}: YouTube's Content~ID, deployed from 2007 onwards, has paid out billions in royalties to rights-holders through algorithmic matching. The DMCA safe harbour that decided \emph{Viacom}~-- passed in 1998, in response to the previous resistance pattern~-- became the structural framework of the \emph{creator economy}. Power-law distribution, \$100bn+ in aggregate value by 2022, MrBeast at 450m subscribers and \$600--700m in 2024 revenue. The platform shape of the audience contract in 2026, on which every AI-distribution question rests, was built by Content~ID. + +\textbf{Smartphones (2007 onwards).} The most dramatic collapse of an established consumer-creative-tool category in modern history. Compact-camera shipments: \textbf{108.8 million units in 2010, 3.01 million in 2021.} A 97\% drop in roughly a decade.\footnote{PetaPixel, ``The Rise and Crash of the Camera Industry in One Chart,'' \url{https://petapixel.com/2024/08/22/the-rise-and-crash-of-the-camera-industry-in-one-chart/}. Statista, ``Smartphones Wipe Out Decades of Camera Industry Growth,'' \url{https://www.statista.com/chart/15524/worldwide-camera-shipments/}. CIPA shipment data series, multiple years.} The iPhone, the Galaxy and the Pixel did to the camera industry what Sousa thought the phonograph would do to amateur music~-- and Sousa, in retrospect, was about a hundred years early on his own argument. The smartphone-camera moment is also, on inspection, the dress rehearsal for the AI-image moment. The same arguments~-- \emph{it isn't real photography}, \emph{the computational layer is doing the work, not the human}, \emph{the dedicated camera is the moral artefact}~-- were made in 2010 and 2015 about smartphones. They were also lost in 2010 and 2015 about smartphones. Computational photography is, today, where most of the meaningful innovation in the image-making craft is happening. \emph{AI photography}, in 2026, is not the new thing. It is the next iteration of the thing that the smartphone-camera made inevitable fifteen years ago. + +\section*{Five patterns} + +I have, by this point, walked through ten of the twenty cases the dossier behind this chapter covers. The pattern recurs. Let me name the five structural features I think the working creative in 2026 most needs to internalise. + +\textbf{Pattern one: the curve has a predictable shape.} Ridicule~\textrightarrow{} moral panic~\textrightarrow{} existential alarm~\textrightarrow{} institutional counter-attack~\textrightarrow{} settlement. AI in 2025--26 is, on my read, somewhere in late act three and early act four. The existential alarm has been voiced. The institutional counter-attack~-- the SAG-AFTRA strike, the WGA contract, the UK 88\%, the \emph{UMG v.\ Anthropic} suit, the Cannes Disclosure Standard, the Sundance literacy initiative~-- is well underway. The settlement is starting to form but is not yet stable. The next eighteen months will, on the historical pattern, \emph{settle the form of the next decade's industry}. This is exactly why this period matters. + +\textbf{Pattern two: the named fear is always mis-named.} What practitioners say they fear~-- loss of \emph{soul}, loss of \emph{authenticity}, loss of \emph{the real}~-- is almost never what actually happens. What actually happens is a \emph{redefinition} of the underlying creative category. The microphone redefined \emph{singing}. The photograph redefined \emph{painting}. The sampler redefined \emph{composition}. The Avid redefined \emph{editing}. The smartphone redefined \emph{photography}. The fear is framed as a defence of the thing. What is actually at stake is the \emph{definition} of the thing. The fear-namers usually win the surface argument and lose the definitional one. \emph{The AI debate is, on the structural reading, an argument over what counts as authorship, performance, writing, photography and composition in the next decade.} That is the real fight. The named-fear version of it~-- \emph{AI will steal our jobs}~-- is true but partial. + +\textbf{Pattern three: the institutional moves that work are levy-and-pool; the moves that fail are prohibition.} The Petrillo settlement (MPTF, 1948), the DMCA safe harbour plus Content~ID (1998 plus 2007), the 1909 Copyright Act mechanical licence, the eventual streaming-loudness-normalisation truce~-- these \emph{worked}, in the limited but real sense that they extracted ongoing transfer payments from the new medium to the displaced labour pool, or that they restructured the aesthetic equilibrium. The institutional moves that \emph{failed} are the prohibitions: the MU 1982 synthesiser ban, the 1991 \emph{Grand Upright} effective ban on dense sampling, the European \emph{Right to be Forgotten} style absolutism. \textbf{Levy beats ban. Royalty pool beats injunction. Mechanism beats prohibition.} For the AI-training fight: a per-output levy distributed to a creators' fund is in the workable category. A ban on AI training is in the unworkable category. The 88\%~-- by my reading~-- is closer to the workable category than the politics around it have so far recognised. + +\textbf{Pattern four: the resisters are usually right about the local loss and wrong about the total loss.} Miniature painting died. Hand-drawn feature animation died (\emph{Toy Story} in 1995; Disney's Florida 2D studio closed on 12 January 2004). The professional recording-studio mid-tier died. Photo-processing labs died. Staff photographer jobs at US newspapers~-- collapsed (the \emph{Chicago Sun-Times} infamously laid off its entire photo staff in May 2013). But \emph{more people make moving images today than ever made them; more people make music today than ever made music; more photographs are taken on a given Sunday than were taken in the entire nineteenth century.} The aggregate creative-labour pool grew. The fear is always articulated by the \emph{displaced} cohort. The compensating gains accrue to a different cohort, who don't yet exist when the fear is articulated, and whose names~-- by definition~-- are not yet in the trade press. This is why the resisters can be both \emph{factually right} about their own situation and \emph{structurally wrong} about the form they are trying to protect. + +\textbf{Pattern five: the cultural symbol outlives the cultural anxiety.} \emph{Video Killed the Radio Star} was the Buggles' 1979 lament for the death of a form. MTV used it as its launch trumpet at 12:01~a.m.\ on 1 August 1981. Then radio survived; then MTV died; the song is on TikTok. The artefact \emph{about} the death of a form outlasted both the form it threatened and the form that did the threatening. Phil Tippett's \emph{``I think I'm extinct''} in 1992, \textbf{Trevor Horn's} \emph{``video killed the radio star''} in 1979, \textbf{Cardinal O'Connell's} \emph{``imbecile slush''} in 1932~-- these crystallise an anxiety into a piece of language so vivid that it survives whatever it was anxious about. The named fear becomes the source material for the next generation's art. \emph{The anxiety is the art}. The \emph{Tilly Norwood week} of late September 2025, with Whoopi Goldberg and Melissa Barrera and Emily Blunt speaking on the record, is~-- I am almost certain~-- the equivalent crystallising-moment for the AI era. The artefacts that will come out of it (the documentaries, the dramatic-feature treatments, the songs, the union-history books) will, twenty years from now, be the cultural objects that \emph{outlast} the technology they were originally anxious about. + +\section*{Where AI sits in this picture} + +I want to be careful, in applying the diagnostic, not to wave a hand and claim the pattern \emph{predicts} the AI outcome. It doesn't. What it does is rule out certain shapes the outcome cannot take, and rule in certain shapes it almost certainly will. + +The shapes ruled out: an \emph{outright ban} on AI training that protects the existing definition of authorship. A \emph{prohibition} by union action that simply removes AI tooling from professional production. A \emph{moral consensus}~-- Cardinal O'Connell at scale~-- that AI work is degenerate and should be socially refused. None of these has worked in twenty previous iterations of the same pattern. None of them is going to work this time. The MU's 1982 synth motion is in the books as a cautionary tale. + +The shapes ruled in: a per-output levy structure flowing into a creators' fund~-- Petrillo for neural weights. A C2PA-style provenance standard underwriting an authenticity premium~-- the structural ancestor of which is the 1990s photojournalism ethics fight. A redefinition of the underlying creative category~-- \emph{authorship in 2030} will mean something materially different from \emph{authorship in 2020}, the way \emph{singing} meant something different after the microphone. An institutional settlement that absorbs the new tool and \emph{redistributes} the productivity gain, rather than one that \emph{bans} the new tool and \emph{forfeits} the productivity gain. + +The cohorts who will be locally displaced are already visible in Chapter~\ref{ch:11} and Chapter~\ref{ch:14}. Junior animators. Concept artists in cohorts being asked to use generative tooling for the front of their pipeline. Voice actors below the SAG-AFTRA scale level. Stock-image photographers. Translators of bulk commercial copy (the closest pre-2022 analogue~-- the Google Neural Machine Translation moment in 2016~-- already produced documented translator-employment effects across 696 US labour markets, and a 70\% income loss for the Irish-language EU-institutions translator profiled in the January 2026 \emph{CNN Business} piece cited earlier in the book\footnote{\emph{CNN Business}, ``Meet the translation professionals losing their jobs to AI,'' January 2026, \url{https://www.cnn.com/2026/01/23/tech/translation-language-jobs-ai-automation-intl}. Carl Benedikt Frey (Oxford Martin School), 2025 study on translator employment across 696 US labour markets. American Translators Association industry position: \url{https://www.atanet.org/client-assistance/blog-machine-translation-vs-human-translation/}. Wikipedia, ``Google Neural Machine Translation,'' \url{https://en.wikipedia.org/wiki/Google_Neural_Machine_Translation}.}). The fear of these cohorts is well-founded, and the institutional response should be calibrated to it. + +The compensating gains~-- the new categories of creative work, the new business shapes, the new audience contracts~-- are what Chapter~\ref{ch:10} of this book is about. I will not re-state them here. What I want to note, \emph{for the historical pattern's sake}, is that they always emerge, they always emerge faster than the resisters expect, and they always~-- at the aggregate level~-- produce more total creative employment than the displaced form supported. The phonograph was the largest creative-labour expansion in music history. The smartphone was the largest creative-labour expansion in image-making history. \emph{I think AI, on the historical pattern, will be the largest creative-labour expansion in cultural-production history.} I think the working creatives who emerge from this with the most leverage will be the ones who, like Walter Murch picking up Final Cut Pro at the height of his Avid mastery, learned the new tool \emph{before} the cultural permission to use it had fully crystallised. The cultural permission usually arrives about three years after the productive use does. The window for asymmetric leverage is now. + +\section*{What this asks of working creatives} + +I want to close this chapter with a working-practitioner read on the history, because the abstract pattern is useless without translation. + +\textbf{One. Recognise where on the curve you are.} AI in 2026 is in late act three, early act four. Existential alarm is the dominant mood. Institutional counter-attack is well organised. \emph{Settlement} has not been reached. The decisions you make about how to engage with the tools in the next eighteen months are decisions that will define the structural shape of the rest of the decade. This is not a \emph{theoretical} claim about the historical pattern; it is the \emph{operational} claim about your career. + +\textbf{Two. Don't fight to keep the existing definition; fight to be among the people redefining it.} The miniaturists are remembered as the cohort that was wiped out. The Stieglitzes are remembered as the cohort that \emph{redefined what photography could be}. Both groups felt, in 1855, that they were fighting for the same thing. They were not. One was defending the inherited definition. The other was rewriting it. The working creatives who emerge from the AI period with the most leverage will not be the ones who defended hardest. They will be the ones who \emph{redefined fastest}. + +\textbf{Three. Pick the institutional response that has historically worked.} The Petrillo template~-- levy on the displacing technology, pool collected centrally, redistribution to the displaced craft~-- has a hundred-year track record. Use it. Apply it to your union negotiations. Apply it to your platform-procurement decisions. Apply it to your political advocacy. The SAG-AFTRA Tilly Tax, the UK 88\%, the C2PA provenance stack, the Cannes Disclosure Standard, the Sundance literacy initiative are all, in their different ways, \emph{the Petrillo template applied to AI}. They are the part of the institutional response that historically wins. Show up to them. Argue for them. Don't waste energy on prohibitions. + +\textbf{Four. Read the named fear carefully, and listen for the redefinition underneath it.} When you hear yourself saying \emph{AI will steal my craft}, ask the second question: \emph{what new definition of my craft is forming on the other side of the displacement, and am I in a position to inhabit it?} The microphone vocalists who absorbed Crosby outlasted the operatic vocalists who refused him. The editors who absorbed Avid outlasted the editors who refused it. The photographers who absorbed digital outlasted the photographers who refused it. The pattern is, by this point in the historical record, very reliable. + +\textbf{Five. Make the cultural symbol.} The named-fear language of the AI era~-- its \emph{Video Killed the Radio Star}, its \emph{I think I'm extinct}, its \emph{imbecile slush}~-- is being written, right now, by working creatives in their own work. Some of those artefacts will outlast the technology they were anxious about. Some will become the source material for the next generation's understanding of this moment. \emph{If you are a working creative reading this in 2026 and the AI displacement frightens you, the most useful thing you can do is put your fear into a piece of work whose argument outlasts the platform release cycle.} That is what Trevor Horn did. It is what Phil Tippett did. It is what the displaced miniature-painters who became fine-art photographers did. It is, on the historical pattern, what is asked of you. + +\section*{A coda on Trevor Horn} + +I want to close with one image, because it is the single most useful one I know. + +Trevor Horn, in 1979, was the keyboard player and frontman of the Buggles. He wrote, with Geoff Downes and Bruce Woolley, a song called \emph{Video Killed the Radio Star}. The song is a small, half-melancholy commercial joke about the end of an era~-- a synthetic-sounding pop song \emph{about} the moment recorded music turned visual. MTV launched on 1 August 1981 with that song as its very first broadcast. + +Horn went on to become, by some distance, the most influential pop producer of the 1980s. He built Frankie Goes to Hollywood, ABC, Yes's \emph{90125}, Grace Jones's \emph{Slave to the Rhythm}, Seal's debut, the Art of Noise. He did it on Fairlight CMIs, sequencers, drum machines and the kind of dense, layered, programmed production that the Musicians' Union was, at the same moment, voting to ban. He did the thing the union was warning him against, and built half the canonical pop music of his decade out of it. + +The song that named the death of the radio star outlived MTV. The producer who wrote that song defined the next era of recorded music by absorbing the technology the resisters were trying to ban. The cultural symbol outlasted both the form it threatened and the form that did the threatening. + +That is the working operating model I would commend to anyone reading this book and feeling, in 2026, the gravitational pull of the resistance. The resistance is real. The fear is real. The named-fear language is the source material of the era's best art. \emph{And the people who absorb the tool, who learn it, who push it past where its makers intended it, and who use it to make the work that argues for the world they actually want~-- they are the ones, on a hundred years of evidence, who define the next decade of the form.} + +Welcome to the \emph{next} moment in a recurring pattern. The pattern is, by now, very well documented. The choice is yours. diff --git a/latex/chapters/ch03_the_human_ai_agency_continuum.tex b/latex/chapters/ch03_the_human_ai_agency_continuum.tex new file mode 100644 index 0000000..74e8033 --- /dev/null +++ b/latex/chapters/ch03_the_human_ai_agency_continuum.tex @@ -0,0 +1,147 @@ +\chapter{The Human-AI Agency Continuum}\label{ch:3} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{A}{} week after I sent the first edition of \emph{Dream Machine}, on the Monday of the second week of October 2025, OpenAI held its annual DevDay conference and quietly changed what the conversation about AI in creative work was about. + +The first edition had been about Sora~2. The second edition was about something I was less prepared for: the launch of a thing called \textbf{AgentKit}.\footnote{\emph{Dream Machine} Issue~2, ``Editor's Pick,'' 10 October 2025. \url{https://www.linkedin.com/pulse/dream-machine-creative-ai-news-insight-oct-25-2-pete-woodbridge-mnrjc/}.} + +AgentKit was, at first glance, a set of developer tools. Agent Builder. A connector registry. An eval framework. ChatKit, for embedding agents into other products. The launch post on OpenAI's blog framed it, in the slightly forced register that all platform-launch posts use, as a way for developers to ``build, deploy, and optimize agentic workflows.''\footnote{OpenAI, ``Introducing AgentKit,'' 6 October 2025. \url{https://openai.com/index/introducing-agentkit/}.} On its own, this was an unremarkable announcement. + +What was remarkable, looking back, was the \emph{category claim} the announcement carried with it. Sam Altman, in his DevDay keynote that day, declared the start of ``the age of agentic AI''~-- by which he meant the moment that AI systems stopped being prompt-and-respond chat boxes and started being things that could plan, decide and execute ``for hours on end'' without further human input.\footnote{TechCrunch, ``OpenAI launches AgentKit to help developers build and ship AI agents,'' 6 October 2025. \url{https://techcrunch.com/2025/10/06/openai-launches-agentkit-to-help-developers-build-and-ship-ai-agents/}. Also coverage at \emph{InfoQ}, ``OpenAI Dev Day 2025 Introduces GPT-5 Pro API, Agent Kit, and More.'' \url{https://www.infoq.com/news/2025/10/openai-dev-day/}.} + +For someone like me, sitting in a small studio in the North West of England~-- running tools all day, looking at my pipeline, thinking about my team's labour~-- that phrase did a particular kind of work. It rearranged the question. + +The question, until that week, had been: \emph{what does AI do for creative work?} The question after that week became: \emph{where, in any given piece of creative work, does my agency end and the model's begin?} + +The second question is the one I want this chapter to be about. I called it, in the second issue of the newsletter, the \textbf{Human--AI Agency Continuum}.\footnote{\emph{Dream Machine} Issue~2: ``Agentic AI~-- the class of AI systems that can plan, act, and pursue goals with autonomy~-- promises a new era of collaboration in creative industries\ldots{} It's another step along the Human-AI Agency Continuum.'' See also \emph{TVB Europe}, ``Is Agentic AI About to Change the Media and Entertainment Industry?'' \url{https://www.tvbeurope.com/artificial-intelligence/opinion-is-agentic-ai-about-to-change-the-media-and-entertainment-industry}.} The frame has stuck with me. I think it is the most useful thing I have ever written down about all of this, and I think~-- at the risk of overselling it~-- the rest of the book leans on it. + +\section*{The continuum} + +\input{figures/tikz_agency_continuum} + +Imagine a horizontal line. + +On the far left of the line is \textbf{pure human agency}: the writer at the desk, the painter at the canvas, the songwriter at the piano. No machine intermediation other than the tool itself~-- and the tool, in this position, is dumb. It records what you do; it doesn't decide. + +On the far right of the line is \textbf{pure machine agency}: an autonomous system that, given a goal, produces a finished creative output with no human in the loop. A prompt, a setting, a render. No one looks at the intermediate steps. No one steers. + +The conversation about AI in the creative industries in 2024 mostly took place on the assumption that ``generative AI'' sat about three-quarters of the way along that line~-- closer to the machine end. You typed a prompt; the machine made the thing; you accepted or rejected. There were variants, of course. But the geometry was prompt-and-respond, and the question was simply where on the line, between you and the model, the actual creative work happened. + +What changed at OpenAI DevDay on 6 October 2025~-- and what was reinforced almost every week of the six months that followed~-- was that the line is not, as it turned out, a single line. It is a \emph{family of lines}, one per creative function, and they all move at different speeds. + +A film, broken down, is not one act of agency. It is a thousand. The choice of subject. The treatment. The casting. The script revisions. The cinematography. The blocking on set. The performance, take by take. The editorial assembly. The grade. The sound. The music. The marketing. Each of those is a sub-discipline, with its own craft, its own labour pool, its own union, its own pay scale and its own internal hierarchies. + +AI doesn't slide along \emph{the} line. It slides along each of those lines independently. + +A working filmmaker in late 2025 might sit at the absolute left of the continuum on \emph{performance} (a real actor, in the room, in real time, the work itself) and at the absolute right on \emph{background plate generation} (a Veo~3.1 shot, signed off in a Slack message, no human ever drawing a frame).\footnote{Google DeepMind, Veo~3.1 release, October 2025. \emph{Dream Machine} Issue~3.} A working musician might sit at the absolute left on \emph{songwriting} (a song in a notebook) and on the right edge of the centre on \emph{vocal alignment and pitch correction} (an iZotope Ozone~12 assistant, accepted with one click).\footnote{\emph{MusicTech}, ``iZotope Ozone~12's AI assistant is cool, but the Stem EQ is the real star.'' \url{https://musictech.com/reviews/plug-ins/izotope-ozone-12-review/}. \emph{Dream Machine} Issue~3.} + +The crisis of authorship is not that machines do creative work. Machines have done parts of creative work for as long as there have been cameras, samplers, Photoshop filters and Logic plug-ins. The crisis is that we don't have an honest, shared, public vocabulary for \emph{which} parts. The Continuum, written down honestly per project, is the start of one. + +\section*{Agents are not generators} + +The reason the Continuum became urgent the week of DevDay, and not before, is that ``agent'' is a different kind of object on the line than ``generator'' is. + +A generator is a tool. You aim it at a problem; it makes an output. The agency is in the aiming. + +An agent is something more like a junior collaborator. You give it a goal~-- \emph{find me ten reference images for this shot,} \emph{generate a rough sound design for this scene,} \emph{book the courier for tomorrow's pickup}~-- and it goes away, makes a series of sub-decisions, and comes back with a result. The agency is distributed. You set the direction; it makes the moves. + +The reason this matters in creative work is that the moves are where the craft lives. Anybody can describe a final film in a sentence. The film is in the thousand decisions between the sentence and the screen. A generator that makes the screen-ready file from your sentence isn't doing your craft. It is taking your craft out of the loop. + +An agent, properly deployed, can do something different and~-- to me, anyway~-- more interesting. It can take the parts of the loop that are not where your craft lives, and quietly handle them, so that the parts of the loop that \emph{are} where your craft lives become the parts you actually spend your time on. + +That is the optimistic case for agentic AI in creative work, and it is the case that almost every working creative I respect makes when you sit down with them in private. It is also the case Adobe's 16,000-creator survey, released a few weeks after DevDay, came in to support: 70\% of respondents were optimistic about agentic AI, framed as ``tools that act on your behalf''; 85\% said they would use AI that learned their creative style.\footnote{Adobe, ``Inaugural Adobe Creators' Toolkit Report,'' October 2025. \url{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}. Survey of 16,000 creators across eight countries, released at Adobe MAX 2025. \emph{Dream Machine} Issue~6.} + +The pessimistic case is the one Adobe's same survey also captured: 69\% of respondents worried about their work being used to train AI without consent.\footnote{Adobe, \emph{op.~cit.} The same survey: 86\% of creators use creative generative AI; 76\% say it has helped grow their business or brand; 81\% say AI lets them make content they otherwise couldn't have made; 69\% worry about their work being used to train AI without consent; 70\% are optimistic about agentic AI; 85\% would use AI that learns their creative style.} + +Both numbers are about agency. The first is about \emph{gaining} it back, by handing routine work to a competent assistant. The second is about \emph{losing} it, by having the work that defines you absorbed into a system you do not control. Both are true at the same time, for the same creators, in the same workflows. + +\section*{Where agents went, between October and May} + +In the six months between DevDay and the time I'm writing this, the agent layer of the creative toolchain went from ``interesting demo'' to ``shipping product,'' faster than any technology shift I have lived through in twenty years of practice. I want to give you a sketch of the trajectory, because it is what most of the rest of this book is reacting to. + +By \textbf{mid-October 2025}, Mureka~-- a Chinese music platform~-- launched a thing called \emph{Music Agent Studio}, six specialised AI agents for songwriting, arrangement and production.\footnote{Mureka, ``Music Agent Studio'' launch, mid-October 2025. \emph{Dream Machine} Issue~4. \url{https://www.linkedin.com/posts/sherrihendrickson_mureka-unveils-music-agent-studio-and-enhanced-share-7384999251526864896-cNYg/}.} A startup called AdsGency raised \$12m in seed to build agents that could autonomously run a brand's entire paid marketing workflow.\footnote{\emph{Finsmes}, ``AdsGency Raises \$12M in Seed Funding,'' October 2025. \url{https://www.finsmes.com/2025/10/adsgency-raises-12m-in-seed-funding.html}. \emph{Dream Machine} Issue~4.} A company called Lenny launched an agent for organising live music events.\footnote{\emph{Musically}, ``Meet Lenny, an AI agent to help organisers of live music events.'' \url{https://musically.com/2025/10/20/meet-lenny-an-ai-agent-to-help-organisers-of-live-music-events/}. \emph{Dream Machine} Issue~4.} Each of these felt, at the time, like a specialist tool. In retrospect, they were the first signs that whole production functions~-- not individual tasks~-- were being handed over. + +By \textbf{the end of November}, EA, in the middle of a brutal financial year, told its 15,000 employees to use AI as a ``thought partner'' for everything from character art to playtesting.\footnote{\emph{GamesRadar}, ``Even under USD20 million in debt, EA reportedly pushes 15,000 employees to use AI as a `thought partner' for everything from character art to playtesting.'' \url{https://www.gamesradar.com/games/even-under-usd20-million-in-debt-ea-reportedly-pushes-15-000-employees-to-use-ai-as-a-thought-partner-for-everything-from-character-art-to-playtesting/}. \emph{Dream Machine} Issue~6.} The framing~-- \emph{thought partner}~-- was the precise rhetorical move that turned an agent from a tool into a colleague. The colleague has opinions. The colleague has time. The colleague has a seat at the meeting. + +By \textbf{December}, Adobe announced that you could now use Photoshop and Express \emph{inside} ChatGPT~-- meaning that the creative output itself was no longer happening inside Adobe's interface, but inside an agent's.\footnote{PYMNTS, ``Adobe Lets Users Design and Edit Using ChatGPT.'' \url{https://www.pymnts.com/artificial-intelligence-2/2025/adobe-lets-users-design-and-edit-using-chatgpt/}. Adobe blog: ``Edit images, designs, and PDFs right inside ChatGPT~-- thanks to Adobe Express, Photoshop, and Acrobat.'' \url{https://blog.adobe.com/en/publish/2025/12/10/edit-photoshop-chatgpt}. \emph{Dream Machine} Issue~12.} This was a small thing on the surface and an enormous thing underneath. It was the moment that Adobe~-- a company that has, since 1990, owned the metaphor of the \emph{creative tool}~-- accepted that the new metaphor was the \emph{creative agent}, and that they would rather be inside someone else's agent than not in the conversation at all. + +By \textbf{late January 2026}, Anthropic shipped Claude apps~-- interactive, custom assistants embedded directly in workplace tools~-- and a company called Heygen released \emph{Video Agent}, which could script, edit and assemble entire videos from reference images.\footnote{TechCrunch, ``Anthropic launches interactive Claude apps, including Slack and other workplace tools,'' 26 January 2026. \url{https://techcrunch.com/2026/01/26/anthropic-launches-interactive-claude-apps-including-slack-and-other-workplace-tools/}. \emph{Heygen Video Agent}: \url{https://www.linkedin.com/posts/heygen_introducing-the-new-video-agent-activity-7421597801240801282-d1CF}. \emph{Dream Machine} Issue~16.} By \textbf{March}, Adobe announced its \textbf{CX Enterprise} platform alongside NVIDIA: a stack of AI agents embedded across the entire content lifecycle, from brief to delivery.\footnote{\emph{Dream Machine} Issue~21, ``Editor's Pick: Adobe and NVIDIA Just Raised the Stakes for Creative AI,'' 19 March 2026.} By \textbf{April}, the \emph{Adobe Summit} keynote made it official~-- ``agentic creative intelligence'' was now the headline category, not a feature.\footnote{Adobe Summit 2026, ``Agentic Creative Intelligence'' keynote framing. \emph{Dream Machine} Issue~26.} By \textbf{May}, Sony was using a multi-agent team of forty-nine Claude Code agents, working with seventy-two skills, to co-ordinate game-development work.\footnote{\emph{Dream Machine} Issue~29, May 2026, citing Sony's adoption of Claude Code studios with multi-agent co-ordination.} + +The trajectory, in one sentence: in October 2025 we were arguing about whether agents were a thing. By May 2026, the entire creative production pipeline at a global game publisher was being run by a team of them. + +\section*{What this means for craft} + +The natural fear, reading that timeline, is that the agency line drifts inexorably to the right~-- towards the machine end~-- and that the craft of the human in the loop becomes thinner and thinner until it disappears. + +I do not think that is what happens. I think what happens is more interesting and more demanding. + +What I see, in my own studio, in my friends' studios, in the working musicians and filmmakers and games designers I talk to every week, is that agentic AI doesn't compress craft into nothing. It \emph{relocates} craft to a different place on the continuum. + +If your job, last year, was ``make the thing'', your job this year is ``decide what gets made, brief the agents that make the constituent parts, and judge the output.'' That isn't a smaller job. In some ways it is a bigger one. It requires \emph{more} taste, not less, because taste is now the only signal you bring that the agents cannot. + +Anthropic, in a blog post in early 2026 that I have ended up quoting repeatedly in talks, made the point this way: agentic systems work best when they are deployed by people who already have the taste and judgement to know what good output looks like.\footnote{Anthropic, public statements on agent deployment patterns through Q1 2026. Cf.\ \emph{Dream Machine} Issues 11, 16, 22.} The agents accelerate the work \emph{of people who are already good at it}. They do not~-- at least, not yet~-- manufacture good work from nothing. + +This is the central~-- and I think non-obvious~-- claim of the Continuum frame: as the line for any given function slides to the right, the \emph{value of the human at the left edge of the line} doesn't decrease. It increases. Because the question being asked of that human gets sharper. Not ``can you make this,'' but ``\emph{should} this be made, and \emph{why this version,} and \emph{who is it for}, and \emph{what does it need to do in the world}.'' + +That is craft. It is just craft sitting in a different chair. + +\section*{Where the Continuum breaks} + +I want to be honest about where my frame stops working, because nothing is more boring than a writer who only quotes the people who agree with him. + +In November 2025, the games designer Charles Cecil~-- the head of Revolution Software, the studio that made \emph{Broken Sword}~-- told \emph{gamesindustry.biz}, in a sentence that has been quoted, retweeted and emailed around my industry approximately a million times: ``AI was an expensive mistake.''\footnote{\emph{gamesindustry.biz}, ```AI was an expensive mistake': Charles Cecil on innovation, insolvency, and Broken Sword.'' \url{https://www.gamesindustry.biz/ai-was-an-expensive-mistake-charles-cecil-on-innovation-insolvency-and-broken-sword}. \emph{Dream Machine} Issue~3.} + +Cecil's argument was specific. Revolution Software had, like a lot of indie game studios, experimented with using generative AI in early production. They had found that the time saved on the front end of the pipeline was lost~-- and then some~-- on the back end, where artists, writers and designers had to reverse-engineer, fix, replace and reintegrate AI-generated assets that didn't quite fit the game's tone, didn't quite match the existing art direction, didn't quite work with the engine, didn't quite carry the IP. Net-net: more time spent, not less. More cost, not less. Hence: ``an expensive mistake.'' + +This is what the Continuum frame doesn't capture on its own. \emph{Where on the line} a given task sits is not a fixed property of the task. It is a function of the surrounding system: how the tools integrate, how the team is structured, how the IP works, how the audience receives the output. A generative tool that sits comfortably on the right-hand side for one studio's marketing department sits awkwardly in the middle for another studio's lead-artist pipeline. + +In the same six months that I was watching the agent layer eat the creative toolchain, I was also watching studios push back. Larian, the makers of \emph{Baldur's Gate 3}, backed off from generative AI for their next \emph{Divinity} game in January 2026. Their public note was carefully worded: \emph{``I know there's been a lot of discussion about us using AI tools as part of concept art exploration. We already said this doesn't mean the actual concept art is generated by AI but we understand it created confusion.''}\footnote{\emph{Niche Gamer}, ``Larian Studios backs off from gen AI, says tech won't be used in new Divinity.'' \url{https://nichegamer.com/larian-studios-backs-off-from-gen-ai/}. \emph{Dream Machine} Issue~14.} Games Workshop ruled it out entirely for \emph{Warhammer 40,000}.\footnote{\emph{Decrypt}, ```Warhammer 40,000' Maker Games Workshop Rules Out Generative AI.'' \url{https://decrypt.co/354482/warhammer-40000-maker-games-workshop-rules-out-generative-ai}. \emph{Dream Machine} Issue~14.} Manor Lords publisher Hooded Horse said it wouldn't work with developers using generative AI~-- its founder's framing, when asked about the line, was unusually direct: AI in his pipeline was \emph{``cancerous,''} and the studio's job was \emph{``constantly having to watch and deal with it and try to prevent it from slipping in.''}\footnote{\emph{Niche Gamer}, ``Manor Lords publisher Hooded Horse won't work with devs using gen AI.'' \url{https://nichegamer.com/manor-lords-publisher-hooded-horse-wont-work-with-devs-using-gen-ai/}. \emph{Dream Machine} Issue~14.} Jagex, the maker of \emph{RuneScape}, said in early 2026 that it would \emph{never} use generative AI to make in-game content, and that the commitment \emph{``goes so far that we are now doing an audit and having a conversation with our various external partners that work with us to ensure that no AI is being used in inappropriate ways in any of their work that might filter through.''}\footnote{\emph{gamesindustry.biz}, ``RuneScape maker Jagex says it will never use generative AI to make in-game content.'' \url{https://www.gamesindustry.biz/runescape-maker-jagex-says-it-will-never-use-generative-ai-to-make-in-game-content}. \emph{Dream Machine} Issue~16.} + +These were not statements made by Luddites. They were strategic decisions made by people whose creative product is, in significant part, the \emph{human} fingerprint on the work. The audience for a \emph{Warhammer} miniature, or a \emph{RuneScape} quest line, or a Larian dialogue tree, comes to those products in part because they know~-- and want to know~-- that real people made them. The Continuum slides differently in those companies because the \emph{output} sits at a different point on the continuum of what the audience wants. + +This is the thing about the agency line that the OpenAI keynote, the Adobe Summit, the NVIDIA GTC keynote, the Anthropic blog post and the Salesforce Dreamforce all keep glossing over. The position of the line is not just about what is technically possible. It is about what the work, in its finished form, is \emph{for}. + +\section*{Open the black box} + +I want to put one more argument on the page in this chapter, because it is the argument I have come to believe more strongly than any other after six months of writing the newsletter, and it does not fit cleanly inside the Continuum frame even though it is what the frame is, in the end, \emph{for.} + +The argument is this. Working creatives, as a class, need to \textbf{open the black box of AI and own a real stake in how it is built}. Not just \emph{use} it. Not just \emph{refuse} it. Not just \emph{bargain over its terms.} All of those matter, and the SAG-AFTRA Tilly Tax, the UK 88\%, the \emph{Stealing Our Work Is Not Innovation} declaration are all evidence that the bargaining work is happening. They are necessary. They are not sufficient. + +The sufficiency move is the \emph{technical-literacy} move. The thing that makes the Continuum frame survive contact with the agentic stack~-- and that makes the \emph{age of the Why} I will argue for in Chapter~\ref{ch:15} commercially defensible rather than wishful~-- is that working creatives are sitting \emph{inside} the toolchain, with their hands on the dials, understanding how the model was trained, on what, with what licensing, with what guardrails, with what consent mechanisms, with what energy and water footprint, with what data-supply-chain labour costs. Not as a hobby. As a structural condition of their professional autonomy. + +The history of every previous creative-technology transition supports the move. The musicians of the 1970s and 1980s who \emph{learned the synth from the inside}~-- programmed it, modified it, hacked the patches, understood the signal chain~-- built more durable careers than the ones who let the manufacturers decide what the instrument was for. The editors who \emph{learned non-linear editing from the inside}~-- set up their own systems, understood the codecs, understood the colour pipelines, understood the storage architecture~-- were the ones who, by the early 2000s, had real leverage over how digital cinema was structured. The photographers who \emph{learned digital from the inside}, in the 1990s and 2000s, made the working-photographer transition that the photographers who waited for the consumer firms to tell them what digital meant largely did not. + +The pattern is, by historical evidence, very reliable. \emph{The cohort of working creatives that opens the black box of the new tool, and that participates in the design and the discourse of how the tool is governed, defines the next era's craft. The cohort that uses the tool without ever asking what is inside it has the era's craft defined for them by the platform companies that ship the tool.} The first cohort writes the textbooks. The second cohort is described in them. + +The 2025--26 evidence so far is mixed. The open-source ecosystem documented in Chapter~\ref{ch:16}~-- ComfyUI (\$500M valuation by May 2026), Hugging Face, the Hunyuan and Qwen and DeepSeek open-weight families, the Civitai LoRA marketplace, the Korin AI Africa-trained model, the \emph{80\% of YC and Andreessen Horowitz startups now building on open-weight models} statistic~-- describes one half of the picture. There is, in 2026, a genuine open-source creative-AI infrastructure underneath the closed platform layer, and a fast-growing cohort of working creatives who use it deliberately. That cohort is doing the \emph{opening-the-black-box} move at scale. + +The other half of the picture is the part of the working-creative population that uses the closed platforms~-- ChatGPT, Sora, Midjourney, Adobe Firefly via the Creative Cloud~-- without understanding what the models were trained on, what the terms of service say about output ownership, what the consent regime around the training data is, what the energy footprint of a single generation is. That cohort is, structurally, in the position of the parlour musician in 1906 who took the phonograph at face value because the salesman said it would play their favourite songs. The phonograph absolutely did play their favourite songs. It also restructured the entire economics of the music industry around them, in a direction the parlour musician had no say in, because the parlour musician had not opened the box. + +I want to be very direct about what this asks of working creatives in 2026. It asks four specific moves. + +\textbf{One. Learn how the models are trained.} Not in technical detail. In structural detail. Understand the difference between a model trained with consent and a model trained without. Understand the licensing regime of the tool you are about to use. Understand, before you sign the EULA, whether your \emph{outputs} are owned by you or by the platform. Treat the EULAs of AI platforms as part of your working practice. If this feels like reading the small print on a building-trade contract, that is the right comparison. + +\textbf{Two. Run at least some part of your stack on open-weight infrastructure.} The strategic argument for this is in Chapter~\ref{ch:16}. The political argument is in Chapter~\ref{ch:6}. The personal argument is the one I am making here: the working creative who knows how to run a Hunyuan or Qwen variant on their own machine, on their own terms, with their own data, has a different relationship to the closed platforms than the working creative who depends on them. The independence is real. It is also, in commercial negotiations with platforms, \emph{worth money.} The closed-platform vendors price their tooling differently for customers who can credibly walk to open-source alternatives. + +\textbf{Three. Show up to the governance conversation.} The Sundance literacy initiative (Chapter~\ref{ch:11}), the UK government consultation that produced the 88\% (Chapter~\ref{ch:6}), the SAG-AFTRA bargaining (Chapter~\ref{ch:12}), the Cannes Disclosure Standard (Chapter~\ref{ch:12}), the European Article~17 implementation, the C2PA standards body, the Music Performance Trust Fund's emerging AI-era equivalents~-- these are the venues where the rules for the next decade are being written. They are usually held in rooms with bad coffee, in meetings with too many lawyers, with insufficient working-creative representation. \emph{Be the working-creative representation in those rooms.} The platform companies have full-time staff on every standards body and every consultation. The cohort that turns up to argue with them is the cohort that gets included in the rules. + +\textbf{Four. Refuse the framing where AI is something done to you, and adopt the framing where it is something you do.} This is the rhetorical move, but it is also a practical posture. The 2024 industry conversation about AI in creative work~-- and a large fraction of the 2025 trade press~-- treated working creatives as the \emph{object} of the AI transition: the population to which AI was being applied. The 2026 working creatives who are doing best, in my experience, have reversed that framing. They have made themselves the \emph{subject}~-- the people \emph{applying} AI to their work, on their terms, in service of their intent, using the open-source infrastructure where it serves them, using the closed-platform infrastructure where it serves them, refusing both where neither does. The grammar is the difference between ``\emph{I'm being affected by AI}'' and ``\emph{I'm using AI}.'' The grammatical difference is also, on inspection, the \emph{power} difference. + +A creative economy in which working creatives have opened the box, understand the box, contribute to the design of the box, and own the political and technical infrastructure that decides what the box is for, is the creative economy I am arguing for in this book. The Continuum is the working frame for the daily practice. The Four Principles of Chapter~\ref{ch:15}~-- \emph{agency, attribution, access, audience}~-- are the structural-policy version. The black-box-opening move is the practitioner's version. They are all the same argument seen from different angles. + +The version of this transition where the working creatives stay outside the box is the version where the box decides what creative work is. The version where the working creatives are \emph{inside the box} is the version where the box is built around what creative work needs to be. Those are not the same outcomes. The next eighteen months will, on the available evidence, decide which one we get. + +\section*{A working frame} + +If I were going to leave you with one tool from this chapter, it would be this: + +The next time you sit down to plan a piece of creative work, draw the lines. + +Not one line~-- that's the trap of the ``AI debate''~-- but as many lines as the work has functions. \emph{Ideation.} \emph{Research.} \emph{Writing.} \emph{Direction.} \emph{Performance.} \emph{Image-making.} \emph{Sound.} \emph{Editing.} \emph{Distribution.} For each one, ask the same two questions. \emph{Where do I want to sit on this continuum, and where am I willing to let the agent sit on my behalf?} And then~-- the harder question~-- \emph{what does the work lose if I move further to the right, and what does it gain?} + +The honest answer, for almost every creative person I know, varies wildly by function. Most of us are happy to let agents sit on the right-hand side of distribution and admin. Most of us are not happy to let them sit on the right-hand side of the performance, the writing, the moments where the audience can feel a person in the work. The middle is where the interesting fights are. + +If you can articulate where the lines sit for \emph{your} work, you can articulate it to your clients, your team, your collaborators, your union, your audience. You can write it into your contract. You can put it on your website. You can fight for it. + +If you can't articulate it~-- if you wave at ``AI'' as if it were a single thing~-- you will end up with the lines drawn for you, by tool vendors and platform companies and CFO spreadsheets that have very different ideas about where your agency should sit than you do. + +The Human--AI Agency Continuum, in the end, is not a description. It is a defence. diff --git a/latex/chapters/ch04_dead_internet_living_web.tex b/latex/chapters/ch04_dead_internet_living_web.tex new file mode 100644 index 0000000..f2a1321 --- /dev/null +++ b/latex/chapters/ch04_dead_internet_living_web.tex @@ -0,0 +1,135 @@ +\chapter{Dead Internet, Living Web}\label{ch:4} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{O}{n} the morning of Wednesday 22 October 2025, I read three reports back to back at my desk, and by the time I was halfway through the third one I had stopped taking notes and just started staring at the screen. + +The first was from Imperva, a security company that publishes an annual \emph{Bad Bot Report}. The 2025 edition opened with a sentence I have quoted in talks at least a dozen times since: for the first time in a decade, automated traffic had overtaken human activity on the public web. Bots~-- not people~-- were now responsible for \textbf{51\%} of all web traffic. Within that 51\%, the category Imperva calls ``bad bots''~-- scrapers, credential-stuffers, content thieves and fraud accounts~-- accounted for \textbf{37\%} of the \emph{whole} internet, on their own.\footnote{Imperva, \emph{2025 Bad Bot Report: How AI is Supercharging the Bot Threat}. \url{https://www.imperva.com/blog/2025-imperva-bad-bot-report-how-ai-is-supercharging-the-bot-threat/}. \emph{Dream Machine} Issue~4.} + +The second was from Cloudflare, whose engineers can see a significant share of global web traffic from inside their infrastructure. Cloudflare's own analysis, in a blog post titled \emph{The crawl-to-click gap}, confirmed Imperva's picture and added a detail. Of the bot traffic Cloudflare could classify, roughly \textbf{80\%} was attributable to \emph{AI training crawlers}~-- GPTBot, ClaudeBot, Meta's scrapers, the new wave of agentic bots that performed autonomous tasks (1.7\% of bot traffic at the time, but growing fast).\footnote{Cloudflare, ``The crawl-to-click gap: Cloudflare data on AI bots, training, and referrals.'' \url{https://blog.cloudflare.com/crawlers-click-ai-bots-training/}. \emph{Dream Machine} Issue~4. Later 2025 updates show training crawlers declining from \textasciitilde{}90\% to \textasciitilde{}74\% of AI bot activity as scraper bots rose to 24\% and a new ``agentic'' category emerged at 1.7\%; see Cloudflare, ``A deeper look at AI crawlers: breaking down traffic by purpose and industry.'' \url{https://blog.cloudflare.com/ai-crawler-traffic-by-purpose-and-industry/}.} + +The third was a market projection from Grand View Research and a separate one from Gartner referenced in Europol's 2025 briefing. Both said, in slightly different language, the same thing: by 2030, between 90\% and 99\% of online content will be AI-generated or AI-assisted.\footnote{Grand View Research, ``Generative AI Content Creation Market Report.'' \url{https://www.grandviewresearch.com/industry-analysis/generative-ai-content-creation-market-report}. \emph{Dream Machine} Issue~4 also cites Gartner and Europol forecasts of 90--99\% AI-generated or AI-assisted online content by 2030.} + +If you put the three reports together~-- and this is the thing I did on the morning of the 22nd, before I had decided what to write that week~-- what you got was a picture of an internet whose dominant activity was no longer humans publishing and reading. The dominant activity was \emph{machines reading machines.} The web was being trained on a version of itself written by the systems it was training. + +Five days later, the fourth issue of the \emph{Dream Machine} newsletter went out with a headline I had been circling for weeks. It said: \emph{Is the Internet Dead Yet?}\footnote{\emph{Dream Machine} Issue~4, ``Editor's Pick: Is the Internet Dead Yet?'' 23 October 2025. \url{https://www.linkedin.com/pulse/dream-machine-creative-ai-news-insight-oct-25-issue-4-woodbridge-hzttc/}.} + +I want to spend this chapter on the answer. + +\section*{The synthetic mirror} + +The ``Dead Internet Theory,'' for those who haven't met it, is a notion that has been knocking around the internet since at least 2021. In its original, slightly conspiratorial form, it claims that most of the web has been replaced by bots~-- that the people you talk to on social media are agents, that the comments on news articles are agents, that the cultural water you swim in is a synthetic medium pretending to be a human one.\footnote{Wikipedia, \emph{Dead Internet Theory}. \url{https://en.wikipedia.org/wiki/Dead_Internet_theory}. \emph{Dream Machine} Issue~4.} + +In 2021, when it was first articulated, it was an interesting bit of folklore that didn't quite map onto reality. The bots existed; they just weren't, yet, doing most of the work. The cultural water was still mostly human. + +By October 2025, the maths had quietly inverted. Half of the traffic was machines. A majority of \emph{new published content} was machine-assisted, according to a separate 2025 analysis by Graphite that put the human-to-AI authoring split at roughly 50--50.\footnote{Graphite, 2025 analysis of new web content by author type (human vs.\ AI vs.\ AI-assisted). Cited in \emph{Dream Machine} Issue~4.} The pages those machines were writing were being scraped by other machines to train \emph{next year's} generation of writing machines. + +A recursive system trained on its own outputs is called, in academic AI circles, \emph{model collapse}. The fear, in the published literature on this, is straightforward: a system that learns from synthetic data loses touch with the real-world signal that made it useful in the first place, and starts producing increasingly homogenised, brittle, hallucination-prone outputs.\footnote{For ``model collapse'' as a term of art, see Ilia Shumailov et al., ``The Curse of Recursion: Training on Generated Data Makes Models Forget'' (2024), and subsequent literature.} + +What the 2025 numbers said, when you sat with them, was that we were no longer talking about model collapse as a theoretical risk. We were talking about \emph{web} collapse~-- a slow, quiet, structural drift in which the public commons of writing, image-making, video and music started to be made by, and for, the machines that read it. Humans were still there. We were no longer, by any meaningful metric, the \emph{primary audience}. + +\section*{What the Dutch researchers found} + +In the second week of October, a team of researchers in the Netherlands ran an experiment that I think will end up being cited a lot more in the years to come than it was at the time.\footnote{Futurism, ``Researchers built a social network with only AI agents~-- within hours it had collapsed into warring tribes.'' \url{https://futurism.com/social-network-ai-intervention-echo-chamber}. \emph{Dream Machine} Issue~4.} + +They built a small, stripped-down social platform~-- no algorithms, no ranking, no advertising~-- and populated it with several hundred large-language-model-based AI agents. The agents had different ``personalities,'' different starting interests, different opinions. The researchers' question was simple: in the absence of any algorithmic distortion, would the bots~-- when free to interact only with each other, with no human in the loop~-- converge on a healthy public conversation, or would they reproduce the pathologies we already see in human social media? + +The answer, within hours, was the second. The agents fractured into warring tribes. A narrow elite captured the bulk of the attention. Extremist echo chambers flourished. The platform, with no humans on it at all, produced almost exactly the same dynamics that the human-plus-algorithm version of social media has produced for the last decade. + +The conclusion the researchers reached~-- and the one I want to flag now, because it is going to recur in this book~-- was that the \emph{architecture itself} is the problem. The toxicity wasn't, or wasn't only, in the humans. It was in the design of the system: how identity worked, how attention was allocated, how voices were amplified or suppressed. The bots reproduced it because they had been trained on the human web, and the human web has the same architecture. + +This is the single most important thing I learned in the first two months of writing the newsletter. The optimistic AI take and the pessimistic AI take both assume the architecture stays the same. The optimist thinks the agents will use it better; the pessimist thinks they will use it worse. The Dutch experiment suggests that neither matters~-- the architecture \emph{itself}, regardless of who or what is filling it, will produce the same pathologies. + +If we want a different outcome from the AI era, we need different rails, not just different drivers. + +\section*{What survives} + +In the original Issue~4, I wrote that ``authenticity and provenance become the new scarcity.'' I want to defend that line, six months on, because I think it is the part of the chapter that has held up best. + +The simplest way to put it is this: when everything online can be faked, cloned or generated at near-zero cost, the most valuable signal is \emph{proof that a person made something.} Not just an aesthetic preference. An economic one. + +You can see this argument being made, all over the creative industries, by people who have nothing else in common. Adam Mosseri, the head of Instagram, said in early January 2026 that the platform should focus on ``fingerprinting real media'' rather than tracking and disclosing AI slop~-- that is, the policy should be to identify and amplify provably human-authored content rather than to play whack-a-mole with the synthetic stuff. His framing was telling: \emph{``Everything that made creators matter~-- the ability to be real, to connect~-- is now accessible to anyone with the right tools.''}\footnote{\emph{Digital Music News}, ``Instagram Chief Says We Should `Fingerprint Real Media' Instead of Tracking and Disclosing AI Slop.'' \url{https://www.digitalmusicnews.com/2026/01/05/instagram-chief-ai-slop-comments/}. See also \emph{WebProNews}, ``Instagram Head Warns AI Images Erode Trust, Calls for Verification Standards.'' \url{https://www.webpronews.com/instagram-head-warns-ai-images-erode-trust-calls-for-verification-standards/}. \emph{Dream Machine} Issue~13.} The platform head was acknowledging, on the record, that the previous decade's content-creation moat had been completely flooded. The only remaining moat was \emph{being a person you could verify was a person.} + +Sundance Institute, launching its AI Literacy Initiative the same month, framed authentication and authorship as the central question filmmakers needed to negotiate to remain in control of their own work.\footnote{Sundance Institute, ``Centering the Artist: Why We're Launching the AI Literacy Initiative.'' \url{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}. \emph{Dream Machine} Issue~16.} Bandcamp, the indie music platform that has always carried more cultural weight than its commercial size implied, simply banned AI-generated music outright in early 2026.\footnote{\emph{Stereogum}, ``Bandcamp bans AI music.'' \url{https://stereogum.com/2485199/bandcamp-bans-ai-music/news}. \emph{Dream Machine} Issue~14.} San Diego Comic-Con drew the same line for its 2026 art show, with rule language as flat as anything in the cultural sector: \emph{``Material created by Artificial Intelligence (AI) either partially or wholly, is not allowed in the art show. If there are questions, the Art Show Co-ordinator will be the sole judge of acceptability.''}\footnote{\emph{CNET}, ``San Diego Comic-Con Draws a Line: No AI Art Allowed at 2026 Event.'' \url{https://www.cnet.com/culture/san-diego-comic-con-bans-ai-art-for-2026-event/}. \emph{Dream Machine} Issue~16.} + +These are not, on their own, market signals~-- they are policy decisions. But they were being made, in early 2026, against a backdrop of audience behaviour that suggested something larger. Deezer reported in April 2026 that AI-generated music had risen to \textbf{44\% of all daily uploads}~-- 75,000 tracks a day, more than 2 million a month~-- but that those tracks accounted for \textbf{between 1\% and 3\% of total streams.}\footnote{Deezer, ``AI-generated tracks now represent 44\% of all new uploaded music,'' April 2026. \url{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}. \emph{Music Business Worldwide}, ``75,000 AI-generated tracks now flood Deezer daily.'' \url{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}. \emph{Dream Machine} Issues 7, 26, 27, 28.} The audience, given the choice, was choosing not to listen. + +That ratio~-- call it 44 to~3, or 75,000 to listen-to-nothing, or whatever shorthand you prefer~-- is the most important number in this book, and I will come back to it in Chapter~\ref{ch:5}. The reason I introduce it here is that it is the empirical answer to the Dead Internet question. The web is not dead. The web is producing exponentially more \emph{stuff} than it ever has, and the humans on it have started to develop antibodies. They are not engaging with the synthetic flood. They are, by their attention patterns, picking out the human signal. + +There is a piece of accounting underneath all of this that the platform companies, in my view, have not yet metabolised~-- and that I think the rest of the book runs on top of. \textbf{Human attention is a finite resource.} Nielsen-class telemetry on aggregate daily media-consumption time, in every market I have seen the numbers for, has been roughly stable for at least a decade. The eyes, the ears and the consciousness of the average adult are each, by physiology, in the same condition as they were in 2015. The supply of producible content has~-- through the autumn of 2025 and the spring of 2026~-- grown by orders of magnitude. The audience's capacity to consume has not grown at all. That is the binding constraint of the Dead Internet picture. The synthetic content is real; the humans are still here; and \emph{the humans cannot, in net, consume more hours per day than they already do.} The 51\% of bot traffic Imperva measured, on this reading, is not a measure of how much the audience has expanded to absorb new content. It is a measure of how much \emph{unread} content is being produced, by machines, for other machines, with no human eye-time anywhere near it. Chapter~\ref{ch:10} develops the finite-attention argument at length. For now, it is enough to note that the \emph{flood} and the \emph{ceiling}~-- the two sides of the slop-ceiling dynamic~-- are both visible in the Dead Internet picture, and that they are produced by the same underlying audience biology. + +\section*{Synthetic sincerity} + +In November 2025, the filmmaker Marc Isaacs premiered a documentary at IDFA~-- the International Documentary Film Festival in Amsterdam~-- with a title I have not been able to get out of my head. The film was called \emph{Synthetic Sincerity.} It was a hybrid piece, blending real footage with AI-generated characters, deliberately blurring the line between what was real and what wasn't, and asking~-- as its working premise~-- whether AI characters could be \emph{taught} authenticity.\footnote{\emph{The Hollywood Reporter}, ```Synthetic Sincerity' by Marc Isaacs Explores if AI Characters Can Be Taught Authenticity: IDFA.'' \url{https://www.hollywoodreporter.com/movies/movie-news/synthetic-sincerity-film-idfa-ai-authenticity-interview-1236426180/}. \emph{Dream Machine} Issue~8.} + +The film and its accompanying \emph{Hollywood Reporter} interview ran the same week as a separate \emph{Variety} piece titled \emph{AI-Generated Images Threaten Future of Documentary as People `Will Stop Believing Anything.'}\footnote{\emph{Variety}, ``AI-Generated Images Threaten Future of Documentary as People `Will Stop Believing Anything'.'' \url{https://variety.com/2025/film/festivals/ai-generated-images-threaten-future-of-documentary-1236583466/}. \emph{Dream Machine} Issue~8.} The juxtaposition was almost too on the nose. One filmmaker trying to \emph{expand} the territory of the synthetic, on the assumption that authenticity is a property that can be invested in fictional characters; another set of filmmakers arguing that the very ability to fake reality is hollowing out the cultural credibility of their entire form. + +I am not going to take a side on the documentary question, because I don't think there is one yet. What I want to flag is that \emph{Synthetic Sincerity}~-- the phrase, not the film~-- is a useful piece of vocabulary. It names a category. There is a kind of work, in this new ecology, that is \emph{trying} to be authentic and openly synthetic at the same time. It is not pretending to be human. It is asking whether the qualities we used to attach to humans~-- emotional truth, lived experience, perspective~-- can be ported over to synthetic characters who are honest about what they are. + +The verdict, six months in, is mixed. Some of the strongest creative work I have seen this year sits firmly in this space. Hoyt Dwyer's animated short~-- made by a former Apple TV creative, competing at the AI FilmFest Japan in late 2025~-- does not pretend its characters are real, and is more honest about its medium than three quarters of the live-action features I watched the same year.\footnote{PR Newswire, ``From Apple TV Creative to AI Filmmaker: Hoyt Dwyer's Animated Film To Compete at AI FilmFest Japan 2025.'' \url{https://www.prnewswire.com/news-releases/from-apple-tv-creative-to-ai-filmmaker-hoyt-dwyers-animated-film-to-compete-at-ai-filmfest-japan-2025-302598064.html}. \emph{Dream Machine} Issue~6.} Andrii Daniels' viral \emph{Deadpool} / \emph{Harry Potter} Christmas clip, which he made in a Ukrainian bomb shelter during an active war, has more sincerity in any single frame than most legacy-studio output, precisely because the conditions of its making are on the screen.\footnote{\emph{Variety}, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter.'' \url{https://variety.com/2026/digital/news/ai-video-deadpool-harry-potter-andrii-daniels-1236624632/}. \emph{Dream Machine} Issue~16.} + +Some of the worst work I have seen this year sits in the same space too. McDonald's Netherlands' AI-driven Christmas ad~-- released in December 2025 and pulled within days after a public backlash~-- was an attempt at \emph{synthetic sincerity} that read, almost universally, as cynicism wearing a Christmas jumper. The line that travelled fastest, as the ad's reception turned, came from a working creative director responding on social media: \emph{``No actors, no camera team, no light, no sound, just probably one guy, alone in front of a computer battling with an AI prompt who steals the look and everything else from someone else.''} That sentence~-- circulated on LinkedIn and X within an hour of the ad's launch~-- was the thing that did the cultural damage. The brand had to pull the spot.\footnote{\emph{Branding in Asia}, ```It's the Most Terrible Time of the Year'~-- McDonald's Netherlands' Wonderfully Chaotic, AI-Driven Christmas Film.'' \url{https://www.brandinginasia.com/its-the-most-terrible-time-of-the-year-mcdonalds-netherlands-wonderfully-chaotic-ai-driven-christmas-film/}. Pulled following backlash: \emph{SiliconAngle}, ``Not ready: McDonald's AI-generated ad taken down after public backlash.'' \url{https://siliconangle.com/2025/12/10/not-ready-mcdonalds-ai-generated-ad-taken-public-backlash/}. \emph{Dream Machine} Issue~11.} The Valentino ``AI handbag'' campaign, criticised by the BBC for being ``disturbing,'' was the same.\footnote{BBC News, ``Fashion house Valentino criticised over `disturbing' AI handbag ads.'' \url{https://www.bbc.co.uk/news/articles/cwyvjyvn83go}. \emph{Dream Machine} Issue~10.} Coca-Cola's AI holiday ad~-- the second time the company had tried this~-- divided viewers along almost the same lines as the previous year.\footnote{\emph{Adweek}, ``Coca-Cola Uses AI to Rekindle the Magic of Its Holiday Ads.'' \url{https://www.adweek.com/creativity/coca-cola-uses-ai-to-rekindle-the-magic-of-its-holiday-ads/}. \emph{Dream Machine} Issue~6.} + +The interesting pattern, when you line these up, is not whether AI is ``good'' or ``bad'' for the work. The interesting pattern is that audiences are very fast, and very precise, at distinguishing \emph{sincere} synthetic work from \emph{cynical} synthetic work. The technology is the same. The fingerprint of the human intent behind it is not. And the audience can feel the difference at the speed of a swipe. + +\section*{What the brain study said} + +In the middle of all this~-- and I want to acknowledge that it is harder evidence than the cultural commentary~-- an MIT Media Lab study made the rounds in the autumn of 2025, in which researchers measured the brain activity of subjects writing essays with and without generative AI assistance. The headline finding was that AI users showed measurably reduced brain activity over the course of the writing tasks compared to control subjects writing on their own.\footnote{\emph{AI News}, ``AI causes reduction in users' brain activity, MIT.'' \url{https://www.artificialintelligence-news.com/news/ai-causes-reduction-in-users-brain-activity-mit/}. \emph{Dream Machine} Issue~1.} + +The headline framing~-- \emph{AI makes you stupid}~-- was unfair to the study, which was small, preliminary, and didn't claim anything as strong as that. But the underlying observation has been replicated in other domains. When the cognitive load of producing the first draft is offloaded to a generator, the cognitive engagement of the human in the loop measurably drops. The work gets produced. The person producing it engages with it less. + +This is the quieter consequence of the Continuum chapter~-- the one that doesn't show up in any line item on a P\&L sheet but that I think we are going to be wrestling with for years. If the right-hand side of the continuum is ``machine agency,'' and we slide more and more functions of our creative work to that side, we are not just changing the \emph{outputs.} We are changing the \emph{people doing the work.} The thinking that produces the work happens, or doesn't, in the bodies of the people in the workflow. And brains, like muscles, atrophy with disuse. + +This is not a reason to refuse the tools. It is a reason to be careful about \emph{which functions} you offload, and to keep a deliberate, conscious habit of \emph{exercising the cognitive work that defines your craft.} The Continuum doesn't just describe where the line sits today. It describes where you are willing to \emph{let} your mind sit, every day, for the rest of your career. + +\section*{The training crisis: what model collapse really means} + +I want to spend a section on \emph{model collapse} in technical depth, because the trade-press shorthand for the phenomenon~-- \emph{AI starts training on its own outputs and gets stupider}~-- is right enough to be useful but wrong enough to be misleading. The underlying mechanics matter more than the headline does, and they matter especially for working creatives trying to read where the next wave of model releases is going to land. + +The technical framing dates back to a 2023--24 paper by Ilia Shumailov, Zakhar Shumaylov, Yiren Zhao, Yarin Gal, Nicolas Papernot and Ross Anderson titled \emph{``The Curse of Recursion: Training on Generated Data Makes Models Forget.''} The argument is that when a generative model is trained on a corpus where a meaningful fraction of the training data is itself produced by an earlier generation of the same kind of model, the model's outputs progressively \emph{narrow}~-- losing the long tail of unusual, rare, distinctive examples, regressing towards the statistical mean, and eventually losing the very property that made the first-generation model interesting (its ability to surprise the user with a specific, particular, well-tuned response). + +The paper showed the effect cleanly in controlled experiments. By the fifth or sixth recursive generation of training, the model's outputs had become noticeably homogenised. The rare-token rate had collapsed. The distinctive-style rate had collapsed. The model was, in technical terms, still functional. It was, in practical terms, less and less \emph{useful}~-- a copy of a copy of a copy. + +The reason this matters in 2026 is that the public web is, by every measure I have seen, now a corpus that contains a non-trivial fraction of AI-generated material. The Imperva and Cloudflare numbers I quoted at the top of this chapter~-- 51\% of web traffic being bots, 80\% of that being AI training crawlers and a fast-growing agentic component~-- describe the \emph{upstream} side of the recursive-training loop. The Graphite 50-50 human-to-AI authoring split describes the \emph{downstream} side. The next generation of foundation models, trained in 2026 and 2027 on the public web that those bots have produced, will, on the model-collapse hypothesis, exhibit some degree of the homogenisation Shumailov et al.\ predicted. + +How much, in practice, is an open question. The platform companies have not, in the main, disclosed the degree to which they filter their training data to exclude synthetic content. The open-source weights~-- Hunyuan, Wan, Qwen, FLUX~-- are trained on corpora whose AI-content fraction is, by my reading, somewhere between \emph{substantial} and \emph{unknown}. The published evidence on whether recent model releases have shown the mean-regression Shumailov predicted is, in mid-2026, \emph{mixed}. Some benchmarks suggest the effect is being detected and engineered around. Others suggest it is showing up in subtle ways~-- in the difficulty of producing genuinely surprising creative outputs, in the way recent models converge on a recognisable house style, in the fact that the \emph{cheapest} and most ubiquitous AI generations all feel, to working creatives, somehow alike. + +The strategic implication for the creative-AI moment is twofold. + +\emph{One,} model collapse~-- if and to the extent it is real~-- strengthens the slop ceiling I describe in Chapter~\ref{ch:5}. A model that has, by 2027, been trained on a corpus heavily contaminated by 2025--26 AI output is, by construction, going to produce \emph{more average} outputs than the 2025 model that preceded it. The audience's selection against the most-average outputs is, on that reading, going to bite even harder against the next generation of generative tools than it bit against the first. The first slop wave hits a ceiling because the audience underweights it. The second slop wave will hit the ceiling \emph{plus} a degradation curve on the production side. + +\emph{Two,} the value of \emph{clean, provenanced, verifiably human-authored data}~-- the C2PA-signed photograph, the SynthID-watermarked music recording, the contractually-licensed text corpus~-- goes up sharply over the next five years. The platform companies that retain access to the cleanest training corpora will have a measurable advantage over the platform companies that scrape the post-2024 web indiscriminately. The Stability AI / Universal Music alliance, the Splice / UMG partnership, the various YouTube and Spotify licensing deals are, on inspection, \emph{acquisition strategies for clean training data} as much as they are creator-economy plays. The race to lock down provenanced data is already on, and it is being fought at the level of large institutional licensing rather than at the level of individual consent~-- which is, on the historical pattern, one of the reasons the Petrillo template (collective bargaining, joint funds, redistribution) is the right structural response. + +\section*{The provenance stack: how it actually works} + +I want to give one more passage of technical detail before the chapter closes, because the \emph{provenance infrastructure} I will refer back to throughout the rest of the book is, at the moment, one of the most-mentioned and least-understood pieces of the AI conversation. + +There are, roughly, four layers that together constitute what the industry has started calling the \emph{provenance stack}. + +The first layer is \textbf{capture-time signing}. A camera with C2PA support~-- by 2026, this includes flagship Sony Alpha bodies, Leica's M11-P and M11-D, Nikon Z9 firmware, and a handful of Canon professional bodies, plus most major smartphone makers' computational-photography pipelines~-- generates a cryptographic signature for every image and video at the moment of capture. The signature commits to the device, the timestamp, the GPS co-ordinates (if enabled), and a fingerprint of the underlying pixel data. The signature is, by design, \emph{hard to fake without access to the capture device's private key}. Capture-time signing is the foundation of every provenance claim that follows. + +The second layer is \textbf{edit-time chain-of-custody}. C2PA-compatible editing software~-- Photoshop with the C2PA extension, Premiere with the Content Credentials toolchain, the various Capture One and Lightroom integrations~-- preserves the capture signature through each editing step, appending a cryptographically-linked record of \emph{what was done to the file}. The chain is not a single signature; it is a \emph{history} of signed transformations, each one referring back to the previous one. A photograph that has been processed through Lightroom and Photoshop arrives at the publisher with a verifiable record of: the camera that took it, the time it was taken, the edits that were applied, and the human (or automated tool) that applied each edit. + +The third layer is \textbf{upload-time platform integration}. By 2026, Adobe's Behance, Vimeo's pro tier, the AP and Reuters wire services, and a growing list of news publishers have integrated C2PA-aware upload pipelines that preserve the chain through their content-management systems and embed it into the public-facing version of the work. The reader's browser, with the right extension or platform-level support, can inspect the chain and verify the provenance claim. Adam Mosseri's January 2026 framing of Instagram's \emph{``fingerprinting real media''} approach was Instagram joining this third layer at the platform-distribution end. + +The fourth layer is \textbf{detection and watermarking for synthetic content}. SynthID, Google DeepMind's watermarking system, is the most mature commercially-deployed example. SynthID embeds a statistically-detectable but human-imperceptible signal into the output of Veo (video), Lyria (audio) and Imagen (image) generations. The signal survives most common transformations~-- crops, recompressions, low-quality re-encodings. By December 2025, Google had shipped a consumer-facing version inside the Gemini app: a user could upload a video and ask \emph{``Is this AI-generated?''} and receive a yes/no answer based on the SynthID signature. The same kind of watermarking is being deployed, with varying technical robustness, across the other major generative platforms. + +Layered together, the four levels produce a structural answer to the Dead Internet question. Capture-time signing tells you \emph{this was taken by a real device.} Edit-time chain-of-custody tells you \emph{here is what was done to it after capture.} Platform integration tells you \emph{the publisher has preserved the chain.} SynthID and equivalent watermarks tell you \emph{this output was generated by an AI system.} No single layer is sufficient on its own. All four, deployed together, produce a \emph{verifiable provenance signal} that the audience can~-- in principle~-- use to decide what to spend their finite attention on. + +I want to be honest about where the stack is incomplete. Watermarks can be stripped by determined adversaries. Capture signatures can be forged if the device's private key is compromised. Chain-of-custody breaks the moment a file passes through a non-compliant tool. The audience's ability to \emph{inspect} the provenance metadata is, in 2026, dependent on platform UI choices that the platforms have not yet made consistent or universal. The stack is the right answer to the architecture problem. It is not, by any means, finished. + +What it does do~-- and this is the point I want to land before the chapter closes~-- is \emph{establish the category}. The question \emph{did a person make this?} is, by 2026, \emph{technically answerable with high reliability given the right tooling.} That sentence is the entire shape of the next decade's cultural and policy fight in the creative industries. Who controls the tooling. Who decides what it certifies. What economic value the certification carries. Whether the audience has the legal right to \emph{demand} the certification before paying attention. The C2PA standards body, the SynthID rollout, the Content Authenticity Initiative, the Cannes Disclosure Standard, the various national disclosure regulations in development~-- these are the venues where the next decade of the \emph{Living Web} gets built. They are, on my read of the historical pattern, the part of the AI debate the working creative most needs to be inside. + +\section*{The architecture, again} + +I want to come back to the Dutch researchers' result one more time before I close this chapter, because I think it is the through-line. + +The story we are mostly told, by toolmakers and platforms and the optimistic side of the industry press, is that the AI era is \emph{a thing happening to} an otherwise functioning internet. The implication is that if we can get the AI part right~-- better tools, smarter agents, cleaner training data, better watermarking~-- then the internet itself will be fine. + +I do not think this is true any more. I think what the bot statistics, the Dutch experiment, the model-collapse research, and the audience response to AI music collectively show, is that the architecture itself~-- the rails on which all this is running~-- was already broken, and that AI is just the load that has finally exposed how broken it was. + +The Dead Internet, in this reading, is not a thing AI is doing to us. It is a thing the web's architecture was already drifting towards~-- attention-monopolised, identity-collapsed, provenance-blind, optimised for machine-readable metadata rather than human-meaningful work~-- and AI is the technology that has shown us the destination. + +The \emph{Living Web}~-- and this is where I find the actual reason for the rest of this book~-- is something that has to be deliberately built. It is the part of the internet where authorship is provable, where attribution is durable, where attention is allocated on something other than virality, where the architecture itself supports the kind of work that humans do well together. None of that comes for free. None of it is a side-effect of better AI models. + +We have to make it. On purpose. In the next twelve months. + +That is the project the rest of this book is about. diff --git a/latex/chapters/ch05_the_slop_ceiling.tex b/latex/chapters/ch05_the_slop_ceiling.tex new file mode 100644 index 0000000..8cfdae6 --- /dev/null +++ b/latex/chapters/ch05_the_slop_ceiling.tex @@ -0,0 +1,145 @@ +\chapter{The Slop Ceiling}\label{ch:5} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{T}{he} most important number I have come across in the six months of writing this newsletter is \textbf{44 to 3}. + +44 is the percentage of daily music uploads to the streaming platform Deezer that are now AI-generated, according to the company's own analysis published in April 2026~-- roughly 75,000 tracks a day, more than two million a month. + +3 is the upper bound of the percentage of total streams those tracks generate.\footnote{Deezer, ``AI-generated tracks now represent 44\% of all new uploaded music,'' April 2026. \url{https://newsroom-deezer.com/2026/04/ai-generated-tracks-represent-44-of-new-uploaded-music/}. \emph{Music Business Worldwide}, ``75,000 AI-generated tracks now flood Deezer daily, representing 44\% of all new music uploaded to the platform.'' \url{https://www.musicbusinessworldwide.com/75000-ai-generated-tracks-now-flood-deezer-daily-representing-44-of-all-new-music-uploaded-to-the-platform-says-streamer/}. \emph{Dream Machine} Issues~7, 26, 27, 28.} + +I want you to sit with that ratio for a second. We are looking at a flood of synthetic music nearly half the size of the entire upload pipeline, that the listening audience is, in real time, simply refusing to play. Not banning. Not boycotting. Not legislating against. Just \emph{not pressing play.} + +There is, in the language Pete and the \emph{DreamLab} team started using internally around February, a name for what that ratio represents. We call it \textbf{the slop ceiling}. + +The slop ceiling is the empirical answer to the most common 2024-era question about AI in the creative industries: \emph{does the audience care?} For two years, the assumption in tech circles was that they wouldn't. That the cost-and-volume advantages of synthetic content would eventually swamp human-made work in attention markets, the way industrial agriculture swamped artisanal farming, the way Spotify swamped CDs. That the public would, given enough exposure, develop a taste for the synthetic~-- or at least, a tolerance. + +The 44-to-3 ratio is what it looks like when that assumption is wrong. + +This chapter is about the slop ceiling~-- what it is, how it is showing up across music, film, advertising, podcasting and the web, who is hitting it from above and below, and what it tells us about the creative economy that is actually forming, as opposed to the one that the platform companies have been forecasting. + +\section*{The flood} + +Let me describe the flood, because it is, in absolute terms, extraordinary. + +In \textbf{October 2025}, when I started the newsletter, the music industry was already in panic over the fact that around 10\% of new music-makers, according to a Ditto Music survey, were using AI in their work, down from a Ditto 2023 survey suggesting around 48\%~-- a number which was itself a shock at the time.\footnote{Ditto Music research, October 2025 and prior. \emph{Press Ditto Music}, ``48\% of artists use AI to make music~-- fewer than in 2023.'' \url{https://press.dittomusic.com/48-of-artists-use-ai-to-make-music-fewer-than-in-2023}. \emph{Dream Machine} Issue~2.} The major-label CEOs talked about AI as an existential problem; Spotify announced ``new protections'' for artists, songwriters and producers; Universal and Warner were rumoured to be signing ``landmark AI deals within weeks.''\footnote{\emph{Musically}, ``Universal and Warner could sign landmark AI deals within weeks.'' \url{https://musically.com/2025/10/02/report-umg-and-wmg-could-sign-landmark-ai-deals-within-weeks/}. Spotify Newsroom, ``Spotify Strengthens AI Protections for Artists, Songwriters, and Producers.'' \url{https://newsroom.spotify.com/2025-09-25/spotify-strengthens-ai-protections/}. \emph{Dream Machine} Issue~1.} + +By \textbf{the end of November 2025}, an Israeli streaming-analytics firm reported that 50,000 AI-music tracks were being uploaded to Deezer \emph{every day}.\footnote{\emph{Musically}, ``50,000 AI music tracks are now uploaded to Deezer every day.'' \url{https://musically.com/2025/11/12/50000-ai-music-tracks-are-now-uploaded-to-deezer-every-day/}. \emph{Dream Machine} Issue~7.} In a single quarter, the volume of music being added to one streaming platform~-- by AI~-- exceeded the entire human-made catalogue uploaded in any month before October. + +By \textbf{April 2026}, the number was 75,000 a day, on Deezer alone, and \emph{44\% of total new uploads.}\footnote{Deezer, April 2026, \emph{op.\ cit.}} Deezer's own statement on its findings was unusually direct for a streaming company: \emph{``AI-generated music is now far from a marginal phenomenon, and as daily deliveries keep increasing, we hope the whole music ecosystem will join us in taking action to help safeguard artists' rights and promote transparency for fans.''} Universal Music Group's CEO, in a January memo widely circulated in the music press, called it the ``exponential growth of AI slop on streaming services,'' adding, in language unusual for a major-label communications stance: \emph{``Let me be clear: UMG will not stand by and watch irresponsible business models take hold~-- models that devalue artists, fail to provide adequate compensation for their work, stifle their creativity and ultimately, diminish their ability to reach audiences.''}\footnote{\emph{Musically}, ``UMG boss slams exponential growth of AI slop on streaming services.'' \url{https://musically.com/2026/01/09/umg-boss-slams-exponential-growth-of-ai-slop-on-streaming-services/}. \emph{Dream Machine} Issue~14.} + +This isn't a sector trend. The same pattern is showing up everywhere I look. In January 2026, \emph{Music Business Worldwide} reported that \textbf{56.9\%} of new independent songs released in China were AI-generated.\footnote{\emph{Musically}, ``Report: 56.9\% of new independent songs in China are AI-generated.'' \url{https://musically.com/2026/01/05/report-56-9-of-new-independent-songs-in-china-are-ai-generated/}. \emph{Dream Machine} Issue~13.} In March 2026, the term ``\textbf{podslop}''~-- synthetic AI podcasts churned out by content farms~-- entered the trade press, with the \emph{Wrap} reporting that one such operation, Inception Point AI, was producing 3,000 episodes a week.\footnote{\emph{The Wrap}, ``An AI Podcasting Machine Is Churning Out 3,000 Episodes a Week~-- and People Are Listening.'' \url{https://www.thewrap.com/ai-podcasts-hosts-inception-point-ai/}. \emph{Dream Machine} Issue~8.} By the time of Issue~28 in early May, \emph{almost half} of new podcast feeds being added to the major directories were classified by aggregator companies as AI-generated, with little or no human host involvement.\footnote{\emph{Dream Machine} Issue~28, May 2026, citing aggregator-platform data on ``podslop'' classification.} + +In November 2025, \emph{Merriam-Webster} named ``\textbf{slop}'' its word of the year, citing the rise of AI-generated content across the web as the primary driver.\footnote{\emph{The Hollywood Reporter}, ``Merriam-Webster Names `Slop' Word of the Year Amid AI Boom.'' \url{https://www.hollywoodreporter.com/news/general-news/slop-word-year-2025-merriam-webster-1236450780/}. \emph{Dream Machine} Issue~12.} In February 2026, \emph{YouTube}'s CEO put ``managing AI slop'' at the top of her published priorities list for the year.\footnote{\emph{Digital Music News}, ``YouTube CEO Puts `Managing AI Slop' on the Priority List for 2026.'' \url{https://www.digitalmusicnews.com/2026/01/22/youtube-ceo-ai-slop-2026-comments/}. \emph{Dream Machine} Issue~16.} In April 2026, on YouTube alone, channels labelled as ``AI'' content had viewership in the billions for political fake-news content.\footnote{\emph{The Guardian}, ``YouTube AI channels spreading fake, anti-Labour videos viewed 1.2bn times in 2025.'' \url{https://www.theguardian.com/technology/2025/dec/13/fake-anti-labour-video-billion-views-youtube-2025}. \emph{Dream Machine} Issue~12.} + +The flood is real. The flood is global. The flood is structural~-- it is not going to subside, because the marginal cost of producing more of it is approaching zero and the marginal benefit, at least at the volume end of the market, is non-zero. + +What I want to argue in this chapter is that the flood is also~-- counter-intuitively, against almost every prediction made in 2023 and 2024~-- \emph{not winning.} + +\input{figures/tikz_slop_ceiling} + +\section*{The ceiling} + +The 44-to-3 ratio is the cleanest version of the slop ceiling, but it is not the only one. + +Deezer's parallel analysis, conducted in partnership with Ipsos in late 2025, found that \textbf{97\%} of listeners could not reliably distinguish AI-generated music from human music in a blind test.\footnote{Deezer/Ipsos survey, November 2025. \url{https://newsroom-deezer.com/2025/11/deezer-ipsos-survey-ai-music/}. \emph{Dream Machine} Issue~7.} On the face of it, this is bad news for the human side~-- if you can't tell the difference, why pay the difference? But the same study found that \emph{when listeners were told a track was AI-generated, their willingness to engage with it dropped sharply.} The Adobe Creators' Toolkit Report had a similar finding from the production side: in a December 2025 \emph{Bain \& Company} report titled \emph{In an AI Age, People Still Want the Radio Star,} the firm found that audience engagement with AI-disclosed work fell well below engagement with human-labelled work, holding all other variables constant.\footnote{\emph{Bain \& Company}, ``In an AI Age, People Still Want the Radio Star.'' \url{https://www.bain.com/insights/in-an-ai-age-people-still-want-the-radio-star/}. \emph{Dream Machine} Issue~16.} + +So here is the empirical picture, in one sentence: audiences can't tell the difference, but when they find out, they care. + +This is~-- and I think this is the part that almost everyone in the platform economy has been slow to understand~-- \emph{not a temporary cultural reaction}. It is a structural property of how attention works in oversupplied markets. When everything is abundant and indistinguishable, the only thing left that allocates attention is meaning. And meaning, for human audiences, requires a knowable human source. + +This is why Deezer's chart looks the way it does. Up to 85\% of the streams that AI-generated music \emph{does} get on Deezer were identified by the company in 2025 as \textbf{fraudulent}~-- bot-driven, click-farm-driven, streaming-fraud-driven.\footnote{Deezer, April 2026, \emph{op.\ cit.} ``Up to 85\% of the streams generated by fully AI-generated tracks were in fact fraudulent in 2025.''} The actual human listening to the actual human-produced flood of AI tracks is, on the most generous estimate, a fraction of a percent of the platform's overall listening time. The flood is hitting a ceiling not because the audience is wise. It is hitting a ceiling because the audience, presented with a near-infinite menu, makes its choices in a way that systematically underweights the synthetic. + +There is, in another domain entirely, a clean analogue for what this audience behaviour describes. In March 2026, \emph{Bloomberg} reported on what AI had done to elite chess: at the very top of the game, machine-optimal play had produced an epidemic of \emph{draws}. When both players have memorised the machine-optimal lines, both play optimally, and both tie. The grandmasters' response, the piece reported, was to \emph{deliberately play sub-optimal moves}~-- moves that the engines would not endorse, but that the opponent, having trained against the engines, had not seen.\footnote{\emph{Bloomberg}, ``AI Changed Chess. Grandmasters Now Win With Unpredictable Moves,'' 27~March 2026. \url{https://www.bloomberg.com/news/articles/2026-03-27/ai-changed-chess-grandmasters-now-win-with-unpredictable-moves}. \emph{Dream Machine} Issue~23.} What is happening to elite chess is what is happening, at the audience layer, to streaming music. The machine-optimal output saturates; the surface of the work becomes indistinguishable from itself; the listener's attention systematically shifts towards the work whose \emph{Why} the engine could not have generated. The 44-to-3 is the slop ceiling in numerical form. The chess-grandmasters' sub-optimal move is the slop ceiling at the practitioner's end of the same dynamic. Chapter~\ref{ch:15} builds the long-form argument out of this analogue. For now: hold the picture in mind that the audience, in the aggregate, is the room of grandmasters refusing the machine-optimal line. + +\section*{Xania Monet} + +The most prominent test case of this dynamic, in the autumn of 2025, was a virtual R\&B artist called \textbf{Xania Monet}. + +Monet was created using the AI music platform Suno, with lyrics written by Telisha Jones~-- a Mississippi-based poet and designer who built the character around her own life and stories.\footnote{\emph{Billboard}, ``AI Artist Xania Monet Climbs the Charts~-- And Signs a Multimillion-Dollar Record Deal.'' \url{https://www.billboard.com/pro/ai-music-artist-xania-monet-multimillion-dollar-record-deal/}.} Monet was not a synthetic-from-nothing artist. She was a synthetic \emph{vessel} for a real human songwriter's words. The vocal performance was AI; the lyric was Jones; the persona was a collaboration. + +The week dated \textbf{20~September 2025}, Monet debuted on the Billboard Emerging Artists chart at No.~25 and on the Hot Gospel Songs chart at No.~21 with a track called \emph{Let Go, Let God.}\footnote{\emph{Billboard}, \emph{op.\ cit.}; CNN, ``Xania Monet is the first AI-powered artist to debut on a Billboard airplay chart.'' \url{https://www.cnn.com/2025/11/01/entertainment/xania-monet-billboard-ai}.} A few weeks later, her track \emph{How Was I Supposed to Know?} became the first AI-led song ever to enter a Billboard radio airplay chart, debuting at No.~30 on Adult R\&B Airplay.\footnote{\emph{Billboard}, \emph{op.\ cit.}} In November, after a bidding war between several labels, the entertainment company \textbf{Hallwood Media}~-- led by former Interscope executive Neil Jacobson~-- signed her to a deal reported by \emph{Billboard} and the \emph{Bangkok Post} at \textbf{\$3~million.}\footnote{\emph{Bangkok Post}, ``AI singer Xania Monet signs \$3m deal with record label.'' \url{https://www.bangkokpost.com/life/tech/3142355/ai-singer-xania-monet-signs-3m-deal-with-hallwood-media}. \emph{Dream Machine} Issue~7.} + +The response from working musicians was immediate and almost uniformly negative. The R\&B singer Kehlani posted a video~-- which she later deleted~-- calling out the deal directly: ``There is an AI R\&B artist who just signed a multimillion-dollar deal,'' she said, ``and the person is doing none of the work.''\footnote{Multiple outlets; quoted in \emph{Billboard} feature \emph{op.\ cit.}} + +Telisha Jones, the human lyricist behind the Monet vocal, gave \emph{Billboard} a counter-framing that I find more interesting than either Kehlani's outrage or Hallwood Media's PR\@. \emph{``It's not a hook and a bridge and a catchy chant~-- it's just the lyrics, and they are pure,''} she told the magazine.\footnote{Telisha Jones quoted in \emph{Billboard}, \emph{op.\ cit.}} The whole transaction~-- labour, attribution, deal value~-- was happening in the space between Jones' words and the synthetic voice that delivered them. Whose work is the work? Whose name goes on the contract? Whose royalty cheque arrives in the post? Those questions, in late 2025, had no settled answer, and the music industry spent the next six months arguing about them in real time. + +The interesting thing, six months on, is not the outrage. The outrage was the expected response. The interesting thing is that \emph{Xania Monet has not become a star.} She has not, by any of the standard pop-cultural metrics, \emph{broken through} in the way a \$3M new signing usually would. The Billboard chart entries were a moment. The radio airplay was a moment. The cultural impact, six months in, is mostly that her name is the name everyone uses to ask the question \emph{can an AI artist actually become a star?}~-- and the working answer, so far, is \emph{not yet, and possibly not.} + +She is, in the slop-ceiling frame, the upper edge of what's possible. A real human songwriter, a real lyrical vision, a real cultural specificity (Mississippi R\&B, gospel-adjacent, a particular Black American spiritual tradition); a high-quality AI voice; a multi-million-dollar marketing budget. The cultural product made by combining all of those things has hit the ceiling somewhere short of cultural escape velocity. + +The same pattern, more starkly, is visible in \textbf{Breaking Rust}, the AI country act whose track \emph{Walk My Walk} hit No.~1 on Billboard's Country Digital Song Sales chart in November 2025 with about 3,000 paid downloads.\footnote{NPR, ``Breaking Rust is a hot new country act on the Billboard charts. It's powered by AI\@.'' \url{https://www.npr.org/2025/11/10/nx-s1-5604320/breaking-rust-is-a-hot-new-country-act-on-the-billboard-charts-its-powered-by-ai}. \emph{Dream Machine} Issue~7.} \emph{Walk My Walk} did exceptionally well by AI-music standards~-- over 3~million Spotify streams in less than a month, an Emerging Artists Billboard debut at No.~9~-- and then plateaued. The \emph{Washington Post} and \emph{TIME} both ran pieces in late 2025 raising the possibility that the chart performance had been partly manufactured, and that the streaming traffic, while large by AI-music standards, was unusually concentrated in the kinds of automated playlists where streaming fraud is most common.\footnote{\emph{Washington Post}, ```Walk My Walk,' Breaking Rust: AI country hit triggers Nashville angst.'' \url{https://www.washingtonpost.com/style/2025/12/28/breaking-rust-ai-country/}.} Nashville, by every available report, was unsettled~-- but the Nashville Songwriters' Association didn't see anything close to the kind of fan-driven cultural takeover that the song's chart position would have implied if it had been a human single performing the same way.\footnote{\emph{MusicRadar}, ``The No.~1 country song in the US right now is AI-generated.'' \url{https://www.musicradar.com/music-tech/the-no-1-country-song-in-the-us-right-now-is-ai-generated}. \emph{Dream Machine} Issue~7.} + +The pattern repeats again with \textbf{Sienna Rose}, the mysterious AI artist who racked up millions of Spotify streams in late 2025 and whose identity prompted a BBC investigative feature in January 2026 (``Who, or what, is she?'').\footnote{BBC News, ``The mysterious singer, Sienna Rose, with millions of streams is hitting the viral charts~-- but who (or what) is she?'' \url{https://www.bbc.co.uk/news/articles/cq6v83gq66eo}. \emph{Dream Machine} Issue~15.} The pattern repeats with the \textbf{MAGA gospel rapper} who used AI to climb the charts in November 2025;\footnote{\emph{Billboard}, ``How a MAGA Rapper Used AI to Create A Gospel Song That Climbed the Charts.'' \url{https://www.billboard.com/pro/maga-rapper-ai-gospel-song-climbed-charts/}. \emph{Dream Machine} Issue~9.} with the \textbf{AI band Bleeding Verse} whose creator signed with Hallwood Media in October 2025;\footnote{\emph{Musically}, ``AI band Bleeding Verse's creator signs deal with Hallwood Media.'' \url{https://musically.com/2025/10/07/ai-band-bleeding-verses-creator-signs-deal-with-hallwood-media/}. \emph{Dream Machine} Issue~2.} with \textbf{Trilok}, the Indian AI band the Indian government had to publicly disavow association with in December 2025 after a live performance.\footnote{\emph{Musically}, ``Indian AI band Trilok performs live, government denies association.'' \url{https://musically.com/2025/12/17/indian-ai-band-trilok-performs-live-government-denies-association/}. \emph{Dream Machine} Issue~12.} In May 2026, an AI-generated Afrobeats track displaced \textbf{Tyla} from the No.~1 spot on Billboard's Afrobeats chart~-- the first time, on the public reporting I have read, that an AI-led song had taken the top position on a Billboard genre chart in a primarily African-music category. The chart performance was, as in the Breaking Rust case, unusually concentrated in automated streaming traffic; the cultural footprint, six weeks on, was again \emph{not stardom} but a brief news-cycle moment.\footnote{\emph{Billboard}, ``The Real Story Behind The AI Song That Knocked Tyla Off No.~1 On Billboard Afrobeats Chart.'' \url{https://www.billboard.com/pro/ai-song-knocked-tyla-off-no-1-afrobeats/}. \emph{Dream Machine} Issue~30.} + +In every single case, the AI act hits a ceiling. They chart. They make money for somebody, often a lot of money. They generate headlines. But they do not become \emph{stars.} Their cultural shadow stops at the edge of the news cycle and does not propagate into the next one. + +The audience is doing something at the margin of these careers. It just isn't \emph{quite} showing up in any of the metrics the labels are used to looking at. + +\section*{The pushback} + +The flood and the ceiling describe the supply and demand sides of the market. What the \emph{culture} is doing~-- the people, the institutions, the labels, the platforms~-- is the third leg. + +Through autumn 2025 and winter 2026, the cultural pushback intensified in waves. Some of it was symbolic. In November 2025, \textbf{Paul McCartney} released a silent track as part of a wider music-industry protest against the UK government's proposed copyright opt-out scheme.\footnote{\emph{The Guardian}, ``Paul McCartney joins music industry protest against AI with silent track.'' \url{https://www.theguardian.com/music/2025/nov/17/the-sound-of-silence-why-theres-barely-anything-there-in-paul-mccartney-new-release}. \emph{Dream Machine} Issue~8.} In December, the \textbf{Eurythmics'\ Dave Stewart} argued~-- slightly against the grain of the protests~-- that musicians needed to ``embrace the unstoppable force'' of AI and licence their intellectual property rather than fight it.\footnote{\emph{The Guardian}, ``Musicians must embrace `unstoppable force' of AI, Eurythmics' Dave Stewart urges.'' \url{https://www.theguardian.com/music/2025/dec/05/musicians-must-embrace-unstoppable-force-of-ai-eurythmics-dave-stewart-urges}. \emph{Dream Machine} Issue~11.} In January, almost 800 creators including Jason Aldean and OneRepublic signed an open declaration titled \emph{Stealing Our Work Is Not Innovation.}\footnote{\emph{Digital Music News}, ``Nearly 800 Creatives, Including Jason Aldean and One Republic, Sign Responsible AI Declaration~-- `Stealing Our Work Is Not Innovation'.'' \url{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}. \emph{Dream Machine} Issue~16.} In May 2026, \textbf{Jack Antonoff}~-- one of the most-cited producer-songwriters of the period~-- went considerably further than McCartney in the public register, calling AI music-makers \emph{``godless whores''} in an interview that became the headline-grabbing artist-side moment of the post-I/O news cycle.\footnote{\emph{MusicTech}, ``Jack Antonoff brands AI music makers as `godless whores'.'' \url{https://musictech.com/news/industry/jack-antonoff-ai-music-makers-godless-whores/}. \emph{Dream Machine} Issue~30.} Antonoff's framing is, in my read, a useful marker of how far the cultural register of the resistance has shifted between McCartney's \emph{silent track} in November 2025 and the spring of 2026: from elegiac protest to active contempt. + +Some of it was practical. In November, \textbf{Universal Music Group} announced a strategic alliance with Stability AI for ``responsible'' music tools.\footnote{Stability AI, ``Universal Music Group and Stability AI Announce Strategic Alliance.'' \url{https://stability.ai/news/universal-music-group-and-stability-ai-announce-strategic-alliance}. \emph{Dream Machine} Issue~5.} In December, \textbf{Warner Music Group} signed a similar deal with Stability AI.\footnote{Stability AI, ``Warner Music Group and Stability AI Join Forces To Build The Next Generation Of Responsible AI Tools For Music Creation.'' \url{https://stability.ai/news/warner-music-group-and-stability-ai-join-forces-to-build-next-gen-tools}. \emph{Dream Machine} Issue~8.} At almost the same moment, \textbf{Splice} and \textbf{Universal Music Group} agreed to collaborate on ``next-generation AI-powered music creation tools for artists''~-- a structural acknowledgement that the labels' strategy had pivoted from purely \emph{suing} the AI companies to \emph{partnering} with them.\footnote{Universal Music, ``Universal Music Group and Splice to Collaborate on the Next Generation of AI-Powered Music Creation Tools for Artists.'' \url{https://www.universalmusic.com/universal-music-group-and-splice-to-collaborate-on-the-next-generation-of-ai-powered-music-creation-tools-for-artists/}. \emph{Dream Machine} Issue~12.} + +Some of it was legal. In January 2026, the German rights society \textbf{GEMA} won a major ruling against OpenAI in the Munich Regional Court, on training-data grounds.\footnote{LinkedIn / \emph{Lexology}, ``Munich Regional Court rules for GEMA against OpenAI\@.'' \url{https://www.linkedin.com/posts/dr-barry-scannell-bbb5aa207_in-a-major-ruling-for-european-copyright-share-7393957246386323457-8bbx}. \emph{Dream Machine} Issue~7.} \textbf{Suno} was sued by music-rights groups under a banner the litigators called ``the biggest theft in music history.''\footnote{\emph{EDM.com}, ```Biggest Theft in Music History': Rights Group Sues Suno as AI Music Showdown Escalates.'' \url{https://edm.com/gear-tech/rights-group-sues-suno-copyright-infringement/}. \emph{Dream Machine} Issue~7.} \textbf{Wixen Music Publishing} filed a \$50m copyright suit against Meta.\footnote{\emph{Music Business Worldwide}, ``Wixen files \$50m copyright suit against Meta.'' \url{https://www.musicbusinessworldwide.com/wixen-files-50m-copyright-suit-against-meta-claims-tech-giant-wants-to-replace-songwriters-with-ai/}. \emph{Dream Machine} Issue~16.} \textbf{Universal Music Group} filed a \$3B suit against Anthropic.\footnote{\emph{Dream Machine} Issue~17 reportage on UMG's \$3B suit against Anthropic.} By the end of February 2026, the lawsuits were no longer an interesting subplot. They were the main mechanism through which the new creative economy was being defined. + +Some of it was platform policy. \textbf{Bandcamp} banned AI-generated music outright in January 2026.\footnote{\emph{Stereogum}, ``Bandcamp bans AI music.'' \url{https://stereogum.com/2485199/bandcamp-bans-ai-music/news}. \emph{Dream Machine} Issue~14.} \textbf{Deezer} built and licensed an AI-music detection tool to other platforms.\footnote{\emph{Dream Machine} Issue~18 reportage of Deezer licensing its detection tool.} \textbf{Spotify} declined to add an AI-music filter, preferring transparency and labelling.\footnote{\emph{TechRadar}, ``AI music is flooding Spotify, and subscribers are furious.'' \url{https://www.techradar.com/audio/spotify/ai-music-is-flooding-spotify-and-subscribers-are-furious-heres-why-music-fans-no-longer-trust-discover-weekly}. \emph{Dream Machine} Issue~14.} \textbf{San Diego Comic-Con} banned AI art at its 2026 event.\footnote{\emph{CNET}, ``San Diego Comic-Con Draws a Line: No AI Art Allowed at 2026 Event.'' \url{https://www.cnet.com/culture/san-diego-comic-con-bans-ai-art-for-2026-event/}. \emph{Dream Machine} Issue~16.} \textbf{Sweden's official music chart} banned AI-generated entries.\footnote{\emph{The Independent}, ``AI-generated song banned from Swedish charts: `It's deceiving'.'' \url{https://www.independent.co.uk/tv/news/ai-music-song-banned-sweden-spotify-b2901627.html}. \emph{Dream Machine} Issue~15.} + +The point I want to make about all of this is that the cultural pushback is not~-- as the more dismissive coverage tends to frame it~-- a Luddite reaction. It is not an irrational allergy to new technology. It is a \emph{market response}. The audience has spoken with its attention. The platforms are reacting to the audience. The labels are reacting to the platforms. The lawyers are reacting to the labels. The artists are reacting to the lawyers. The whole system is, in slow motion, \emph{renegotiating the terms on which synthetic creative work is allowed to participate in the public sphere.} + +That renegotiation is the actual story. The viral AI hits, the ones that get the magazine covers, are footnotes. + +\section*{What the ceiling is made of} + +I want to try, in the last part of this chapter, to articulate what the slop ceiling actually \emph{is}~-- what cognitive, cultural, economic mechanism produces the 44-to-3 ratio~-- because I think understanding that mechanism is the difference between thinking it will hold and thinking it will eventually erode. + +My working hypothesis, after six months of looking at the data, is that the ceiling is made of four overlapping things: + +\textbf{One.} \emph{A cognitive distinction the audience can't articulate but can feel.} The Deezer/Ipsos finding~-- that 97\% of listeners can't pick AI from human in a blind test, but that revealed-AI tracks underperform~-- suggests the distinction is below conscious recognition but above zero. The audience knows when something doesn't matter, in some way they can't quite name. + +\textbf{Two.} \emph{A status-signal collapse.} Music, film, advertising and podcasting are, in significant part, status goods. Telling your friends you discovered an exciting new artist is part of why people pay attention to artists. AI artists, by being mass-produced and machine-authored, fail the status test at the structural level. There is no way to \emph{signal cultural insiderness} by being the first to discover Xania Monet, because Xania Monet was discovered by 800,000 people in the same week, all of whom found out via the same press cycle. + +\textbf{Three.} \emph{A meaning vacuum.} Most of the slop is produced for content marketing, SEO and ad placement reasons, not because anyone needs to express anything. The audience can tell. As one \emph{Digital Music News} headline from January 2026 put it, in a phrase I have written down in my notebook and used in talks: \emph{``A.I.-generated music is catchy, familiar\ldots\ and boring.''}\footnote{\emph{Soultracks}, ``A.I.-generated music is catchy, familiar\ldots\ and boring.'' \url{https://soultracks.com/news-ai-generated-music-is-catchy-boring/}. \emph{Dream Machine} Issue~14.} The Swedish Top Chart's reasoning when it banned an AI-generated track from its rankings in January 2026 said the same thing in different words: \emph{``The song is great, but unfortunately, it's missing one of the most important ingredients, which is emotion.''}\footnote{\emph{The Independent}, ``AI-generated song banned from Swedish charts: `It's deceiving'.'' \url{https://www.independent.co.uk/tv/news/ai-music-song-banned-sweden-spotify-b2901627.html}. \emph{Dream Machine} Issue~15.} The technical capability is there. The reason for the work to exist is not. + +\textbf{Four.} \emph{Reciprocity.} And this is the one I am least confident about, but find the most interesting. There is, in almost every long-running creative relationship between an artist and an audience, an implicit reciprocity. The audience pays attention because the artist has \emph{paid the price of making the work}~-- has practised, has struggled, has lived, has earned the right to be heard. AI artists short-circuit that contract. They produce the output without paying the price. The audience, at some level, refuses the trade. + +Take any of those four mechanisms away and the ceiling might drop. Take all four away and we'd be in trouble. None of them, on the current evidence, is going away. + +\section*{The Authenticity Premium: pricing the ceiling} + +The slop ceiling, as I have described it so far, is the \emph{negative} side of the dynamic~-- the work the audience refuses to engage with. There is a \emph{positive} side I want to spend a section on, because it is the side that pays the bills, and the side the rest of this book leans on for its strategic argument. + +I have come to call the positive side the \textbf{Authenticity Premium}: the measurable excess of attention, willingness to pay, and cultural credit that audiences allocate to creative work whose human authorship can be verified. If the slop ceiling tells you what the audience \emph{will not engage with}, the Authenticity Premium tells you what they \emph{will pay extra for}. Both numbers are produced by the same underlying audience behaviour. Both are market findings. Both have stabilised across the six months of newsletter coverage that this book is built on. + +Let me try to sketch the empirical picture. + +On the \emph{music} side, the cleanest evidence is the inverse of the Deezer 44-to-3. Independent labels, working musicians and the back-catalogue of clearly-human-authored recorded music have, by Deezer's own published April 2026 statement, retained a \emph{disproportionate share of total listening hours} relative to their share of the upload volume. The artists with verified human-authorship signal~-- touring records, named producers, signed labels, press-covered releases~-- capture a meaningful premium in playlist placements, editorial coverage, and per-stream consumption versus the long tail of synthetic uploads. The premium is, on Deezer's own framing, a function of \emph{audience-chosen} listening rather than algorithmic placement. The 1-to-3\% of streams that the AI-music flood receives is, in operational terms, the \emph{floor} of the slop ceiling; the corresponding 97-to-99\% that named human artists capture is the \emph{ceiling-level} the Authenticity Premium underwrites. + +On the \emph{advertising} side, \emph{Marketing Week}'s ``You can't dismiss AI ads as slop when they're winning in testing'' piece~-- which I quote at length in Chapter~\ref{ch:12}~-- found that \emph{care-driven} AI work could win creative-effectiveness tests, but \emph{only when the production process foregrounded human creative intent.}\footnote{\emph{Marketing Week}, ``You can't dismiss AI ads as slop when they're winning in testing.'' Coverage discussed in \emph{Dream Machine} Issue~22.} The same publication's reporting on the McDonald's Netherlands, Valentino and Coca-Cola AI campaigns documented that \emph{cynical} AI work, by contrast, produced sharply negative effectiveness scores. The price of being a \emph{cynical} AI advertiser, in commercial-effectiveness terms, was a measurable revenue penalty. The price of being a \emph{sincere} AI advertiser was a measurable premium. Both numbers come from the same audience exposed to the same kind of work. + +On the \emph{film and television} side, the Authenticity Premium has been visible in awards-season behaviour, in the \emph{Marvel-era IP fatigue} data, and in the audience response to specific high-profile AI integrations. Films whose AI use was \emph{disclosed in advance and framed as part of the work's identity}~-- \emph{Watch the Skies}, \emph{Lily}, Andrii Daniels' bomb-shelter Christmas clip, \emph{Dear Upstairs Neighbors}, \emph{Synthetic Sincerity}~-- have, on aggregate, received better critical reception and stronger audience engagement than films whose AI use was \emph{concealed and later revealed}. The premium is, structurally, paying for \emph{transparency about authorship} rather than for \emph{authorship purity}. The audience is not refusing AI involvement. The audience is refusing \emph{deception} about AI involvement. + +On the \emph{games} side, the Quantic Foundry survey I referenced earlier and the parallel work by IGN and PC Gamer through autumn 2025 showed an effect that is, in commercial terms, more direct. Games that disclosed AI involvement in \emph{audience-visible roles} (NPC dialogue, generated quests, voice-acting replacement) faced specific consumer pushback in Steam reviews and Metacritic user scores. Games that disclosed AI involvement in \emph{invisible-pipeline roles} (asset generation under art-direction supervision, QA automation, localisation) faced no measurable consumer pushback at all. The premium, in games, is paying for \emph{AI being kept off the audience-visible parts of the work}. Studios that have understood this calibration~-- Larian, Hooded Horse, Jagex, the \emph{Position Three} signatories of Chapter~\ref{ch:7}~-- are operating with the Authenticity Premium as a deliberate marketing position. + +The premium has a \emph{commercial} shape that I want to name explicitly, because I think working creatives are systematically under-pricing it in 2026. The price difference between \emph{clearly-human-authored} and \emph{clearly-AI-authored} creative work, on the available evidence, is not a marginal one. It is, in some segments, an \emph{order-of-magnitude} difference. Xania Monet's \$3M Hallwood Media deal is the \emph{upper bound} of what the synthetic-artist market can pay for a top-tier AI act. The \emph{touring-artist} economics of even a mid-tier independent musician with a verified live following easily exceed that over a five-year career. The same comparison holds across film and games. The Authenticity Premium is, in market-pricing terms, the \emph{commercial gap} between the synthetic and the human. It is not small. It is, for working creatives positioning themselves above the slop ceiling, the actual business case. + +There are two empirical caveats I want to put on the page, because the book should not over-claim. + +\emph{One,} the premium is \emph{unevenly distributed}. It accrues, by my reading of the 2025--26 data, most strongly to artists at the \emph{top} (premium auteur cinema, signed-label musical artists, name-brand designers) and at the \emph{long-tail} (hyperlocal, culturally-specific, niche-community-serving creators). It accrues weakly, if at all, to the \emph{middle}~-- the mid-career journeyman creatives who have built careers on producing competent-but-mean-of-the-distribution work. The middle is, as I argue in Chapter~\ref{ch:7}'s legacy-vulnerability section, the segment most exposed to AI substitution. The Authenticity Premium does not protect everyone equally. + +\emph{Two,} the premium is \emph{dependent on the provenance infrastructure} I described in Chapter~\ref{ch:4}. The audience can pay a premium for verifiable human authorship only to the extent that authorship is \emph{verifiable}~-- to the extent that the C2PA chains, the SynthID watermarks, the platform-level disclosure norms and the institutional certifications make the signal reliable. The premium and the provenance stack are, structurally, \emph{the same project seen from different angles}. The premium pays for the signal. The signal is produced by the infrastructure. The infrastructure needs the premium to fund itself. + +The Authenticity Premium is, in operational summary, \emph{the audience paying the bill for the Living Web.} Whether the bill stays paid, over the next five years, depends on whether the infrastructure that produces the signal stays trustworthy. That, in turn, depends on the policy, platform and union work this book has been describing. + +\section*{The corollary} + +I want to close this chapter with a corollary, because it has implications for the rest of the book. + +If the slop ceiling is real, and if it is structural, and if it is going to hold~-- and I think the burden of evidence at this point is on the people who say otherwise~-- then the strategic question for everyone in the creative industries is not \emph{how do we compete with the flood?} It is \emph{how do we sit above the ceiling?} + +That question has different answers in different sectors. For a working musician, it might mean leaning into the irreducibly human parts of the work~-- live performance, personal relationship with audience, transparent process. For a working filmmaker, it might mean making the \emph{kind} of film whose value depends on being knowably authored by knowable people. For a working games studio, it might mean~-- as Jagex, Larian, Games Workshop, Hooded Horse and an increasing list of studios have explicitly said~-- taking \emph{generative AI off the table} as a public commitment to the audience. + +None of these are anti-AI positions. They are \emph{above-the-ceiling} positions. They take seriously the fact that the world is now full of cheap synthetic content and ask: \emph{what is the work that the synthetic content can't do?} + +That is the question that organises the rest of the book. The slop ceiling is the negative space against which everything interesting in creative work for the next ten years is going to be defined. diff --git a/latex/chapters/ch06_the_88_percent.tex b/latex/chapters/ch06_the_88_percent.tex new file mode 100644 index 0000000..a394741 --- /dev/null +++ b/latex/chapters/ch06_the_88_percent.tex @@ -0,0 +1,233 @@ +\chapter{The 88 Per~Cent}\label{ch:6} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{O}{n} 15~December 2025, the UK government quietly laid a document before Parliament that I think will be remembered, ten years from now, as a more important moment in the history of creative AI than any single tool release in 2025 or 2026. + +The document was the \emph{Statement of Progress on Copyright and Artificial Intelligence}, prepared by the Department for Science, Innovation and Technology.\footnote{UK Department for Science, Innovation and Technology, \emph{Statement of Progress on Copyright and AI}, 15~December 2025. \url{https://www.gov.uk/government/publications/copyright-and-artificial-intelligence-progress-report/copyright-and-artificial-intelligence-statement-of-progress-under-section-137-data-use-and-access-act}. \emph{Dream Machine} Issue~12, ``Editor's Pick: 88\% of Creators Said `No'.'' 18~December 2025.} It was a stocktaking report~-- not a final policy, not new legislation, not a decision. It was a ``where we are'' note, eleven months after the closing of one of the largest copyright consultations the United Kingdom has ever run. + +The consultation had been open from 17~December 2024 to 25~February 2025. The government had proposed four options for how UK copyright law should treat AI training:\footnote{UK DSIT, original consultation, 17~December 2024~-- 25~February 2025. Discussion in IPWatchdog, ``Respondents to UK AI Consultation Overwhelmingly Want AI Companies to License Copyrighted Works in All Cases.'' \url{https://ipwatchdog.com/2025/12/16/respondents-uk-ai-consultation-overwhelmingly-want-ai-companies-license-copyrighted-works-all-cases/}.} + +\begin{itemize} + \item \textbf{Option~0}, do nothing. + \item \textbf{Option~1}, require AI companies to licence copyrighted works for training in all cases. + \item \textbf{Option~2}, a narrower set of exceptions, with conditions. + \item \textbf{Option~3}~-- the government's \emph{preferred} option~-- a broad text-and-data-mining exception with an opt-out for rightsholders. +\end{itemize} + +Eleven and a half thousand people replied. + +Of the 10,112 responses submitted through the government's \emph{Citizen Space} online portal~-- the subset for which the government published quantitative breakdowns: + +\begin{itemize} + \item \textbf{88\%} supported Option~1~-- licensing in all cases. + \item \textbf{7\%} supported Option~0~-- do nothing. + \item \textbf{3\%} supported the government's preferred Option~3.\footnote{IPWatchdog, \emph{op.\ cit.}; Hogan Lovells, ``Copyright and AI: UK government publishes statement of progress.'' \url{https://www.hoganlovells.com/en/publications/copyright-and-ai-uk-government-publishes-statement-of-progress}.} +\end{itemize} + +\input{figures/tikz_88_percent} + +I want you to look at those numbers again, because they are the single most concrete thing this book has to offer in defence of the argument I will be making in the second half of it: that the creative economy is not waiting to be told what it thinks about AI. + +Eighty-eight per cent. In a country with no compulsory voting, no organised industry mobilisation comparable to the music or film unions' rapid responses to specific provocations, no celebrity-led campaign on the scale of the SAG-AFTRA strike: 88\% of the people who took the time to write to their government about how their work should be used said, \emph{licence it}. Pay for it. Don't take it. + +That number is the \emph{true} watershed of the period this book covers. The Tilly Norwood week made it possible. The 88\% made it permanent. + +This chapter is about how a global creative coalition~-- half informal, half deliberate, half union-led, half artist-led, half lawyer-led, all of it networked~-- went from a few scattered protest statements in October 2025 to a structural force in policy and law by May 2026. + +\section*{Why eighty-eight per cent} + +It is easy, looking at a number that big, to assume it represents some kind of organised lobbying effort. To assume that the AI companies' opt-out proposal was so unpopular that the response was a co-ordinated push from a few large interest groups, who marshalled their members into the consultation. + +The actual composition, as analysed in the December 2025 Statement of Progress, was mixed. There were submissions from creators in every major creative discipline~-- writers, musicians, filmmakers, photographers, illustrators, designers, journalists. There were submissions from professional bodies (the Society of Authors, the Association of Photographers, the Authors' Licensing and Collecting Society). There were submissions from individual citizens with no industry affiliation, who simply objected on principle to having their work~-- their LinkedIn posts, their family photos, their blogs~-- pulled into a training set without their consent.\footnote{UK DSIT, \emph{Statement of Progress}, \emph{op.\ cit.}; analysis at UCL Copyright Queries, ``UK government publishes progress statement on AI and copyright consultation.'' \url{https://blogs.ucl.ac.uk/copyright/2025/12/23/uk-government-publishes-progress-statement-on-ai-and-copyright-consultation/}.} + +There were submissions from the AI companies too. The progress report notes that the \emph{3\%} who supported the government's preferred Option~3 were ``particularly concentrated among AI developers and large technology companies.''\footnote{UK DSIT, \emph{Statement of Progress}, \emph{op.\ cit.}} This is~-- and I am being careful about how I phrase this, because the Statement of Progress is itself careful~-- \emph{not} a description of a balanced industry view. It is a description of a public consultation in which the people most affected by the proposed policy said one thing, and the companies the policy was designed to enable said the opposite. + +The 88\% is not a curiosity. It is a \emph{vote}, in the most literal sense. The creators of the United Kingdom were given a structured chance to say what they wanted, and 88\% of them said the same thing. + +The Society of Authors' submission, which I have read in full, made the underlying argument with the kind of clarity that the policy debate had been avoiding for two years. \emph{``If we are to see an end to the industrial-scale theft of writers' and other creators' work, and to protect the creators and creative industries of the future, then UK copyright needs to be enforced not weakened.''}\footnote{Society of Authors submission to the UK consultation, quoted in IPWatchdog, \emph{op.\ cit.}} That sentence~-- \emph{industrial-scale theft, enforced not weakened}~-- set the rhetorical register that the next six months of the policy debate ran on. + +\section*{The pattern repeats} + +I think a lot of the international coverage of the UK consultation has under-emphasised that the 88\% was not a UK-only phenomenon. It was the first formal expression of a pattern that was, in the same six months, repeating in every jurisdiction that gave its creators a meaningful chance to speak. + +In \textbf{Germany}, the music rights society \textbf{GEMA} sued OpenAI in the Munich Regional Court over the training of large language models on copyrighted music lyrics. In November 2025, the court ruled for GEMA in a decision that intellectual-property lawyers across Europe~-- including Dr Barry Scannell, whose detailed LinkedIn breakdown of the ruling I have read more times than I will admit~-- described as a \emph{major} precedent for European copyright law.\footnote{Dr Barry Scannell, LinkedIn analysis of GEMA v.\ OpenAI ruling, November 2025. \url{https://www.linkedin.com/posts/dr-barry-scannell-bbb5aa207_in-a-major-ruling-for-european-copyright-share-7393957246386323457-8bbx}. \emph{Dream Machine} Issue~7.} + +In \textbf{the United States}, a coalition of music rights organisations sued \textbf{Suno}, with the press release describing the action, in a phrase the litigators clearly knew would travel, as ``the biggest theft in music history.''\footnote{\emph{EDM.com}, ```Biggest Theft in Music History': Rights Group Sues Suno as AI Music Showdown Escalates.'' \url{https://edm.com/gear-tech/rights-group-sues-suno-copyright-infringement/}. \emph{Dream Machine} Issue~7.} \textbf{Wixen Music Publishing} filed a \$50m copyright suit against \textbf{Meta} in January 2026.\footnote{\emph{Music Business Worldwide}, ``Wixen files \$50m copyright suit against Meta, claims tech giant wants to replace songwriters with AI\@.'' \url{https://www.musicbusinessworldwide.com/wixen-files-50m-copyright-suit-against-meta-claims-tech-giant-wants-to-replace-songwriters-with-ai/}. \emph{Dream Machine} Issue~16.} \textbf{Universal Music Group} filed a \$3B suit against \textbf{Anthropic}.\footnote{\emph{Dream Machine} Issue~17, on UMG's \$3B suit against Anthropic.} \textbf{The Johnny Cash estate} sued Coca-Cola under the \textbf{ELVIS Act}~-- Tennessee's new AI-impersonation law~-- for using a Cash sound-alike in a tribute-act advertisement.\footnote{\emph{Complete Music Update}, ``Johnny Cash estate uses ELVIS Act to sue Coke over tribute act ad soundtrack.'' \url{https://completemusicupdate.com/johnny-cash-estate-uses-elvis-act-to-sue-coke-over-tribute-act-ad-soundtrack/}. \emph{Dream Machine} Issue~9.} By the spring of 2026, the litigation landscape was so dense that \emph{Music Business Worldwide} was running weekly summary columns just to keep track of which cases were still active. + +In \textbf{the European Union}, lawmakers tabled a bill in November 2025 seeking an EU-wide minimum age to access AI chatbots and social media, an early acknowledgement that the regulatory question was not just about copyright but about the wider integration of AI into the social fabric.\footnote{Reuters, ``European lawmakers seek EU-wide minimum age to access AI chatbots, social media.'' \url{https://www.reuters.com/legal/litigation/european-lawmakers-seek-eu-wide-minimum-age-access-ai-chatbots-social-media-2025-11-26/}. \emph{Dream Machine} Issue~9.} + +In \textbf{the United States}, the actors' union \textbf{SAG-AFTRA}, riding the wave of the Tilly Norwood backlash, opened negotiations in October 2025 that resulted by spring 2026 in \emph{significantly stronger AI protections} in its next four-year contract~-- a deal that included new consent requirements, residuals, and what the trade press began calling, informally, the ``Tilly Tax'' on the use of AI actors.\footnote{SAG-AFTRA contract update reporting through Q2 2026. \emph{Dream Machine} Issues~20, 26, 29. Coverage: \url{https://www.theverge.com/news/842848/new-york-law-ai-advertisements-sag-aftra-labor}.} + +In \textbf{the United Kingdom}, the UK actors' union \textbf{Equity} held a strike ballot in December 2025 over AI scanning of performers' likenesses; the result came back in a 99\% landslide in favour of industrial action. The ballot question itself, in its plain language, captured the substance of what was at stake: \emph{``Are you prepared to refuse to be digitally scanned on set to secure AI protections?''}\footnote{Equity (UK), ``Performers prepared to take industrial action over AI in landslide 99\% vote.'' \url{https://www.equity.org.uk/news/2025/performers-prepared-to-take-industrial-action-over-ai-in-landslide-99-vote}. \emph{Dream Machine} Issue~12.} By January 2026 the union had secured what its general secretary called ``an improved offer'' from producers on AI protections in film and TV negotiations.\footnote{Equity (UK), ``Equity welcomes improved offer in AI protection negotiations in film and TV\@.'' \url{https://www.equity.org.uk/news/2026/equity-welcomes-improved-offer-in-ai-protection-negotiations-in-film-and-tv}. \emph{Dream Machine} Issue~15.} In May 2026, the broader \textbf{AI Disclosure Standard} for the film industry was launched at the \textbf{Cannes Film Festival}.\footnote{Cannes Film Festival AI Disclosure Standard launch, May 2026. \emph{Dream Machine} Issue~29.} In the same week, the \textbf{British Phonographic Industry (BPI)} issued a formal set of \emph{transparency and sovereignty} demands aimed at the music side of the same settlement~-- a structured industry position designed, in the BPI's own framing, to \emph{secure} the ``AI licensing boom'' rather than leave it to bilateral negotiation between platforms and rights-holders one model at a time.\footnote{\emph{Musically}, ``BPI sets out transparency and sovereignty demands to secure `AI licensing boom'.'' \url{https://musically.com/2026/05/19/bpi-transparency-sovereignty-ai-licensing-boom/}. \emph{Dream Machine} Issue~30.} + +The pattern, in every jurisdiction and across every part of the creative economy, was the same. Where creators were given a procedural mechanism~-- a consultation, a strike ballot, a contract negotiation, a class action~-- they used it. They turned up in numbers. They voted, in their structured way, against the unconditional appropriation of their work. And they won enough of these procedural battles that, by the time the spring of 2026 arrived, the \emph{terms of engagement} for AI in the creative industries had been substantially re-set in a six-month window. + +\section*{The first reversal} + +The most surprising single event in the entire policy arc was the UK government's own \emph{reversal} in spring 2026. + +The Statement of Progress in December had already softened the official position. Where the original consultation had proposed Option~3~-- the text-and-data-mining exception with opt-out~-- as the \emph{preferred} outcome, the December update simply described the government as ``working with 50+ experts from across music, film, games and AI to figure out what comes next.''\footnote{UK DSIT, \emph{Statement of Progress}, \emph{op.\ cit.}} The opt-out language was gone. + +By \textbf{March 2026}, the position had reversed further. The government's final report on copyright and AI, laid before Parliament by the statutory deadline of 18~March 2026, walked back the original preference for Option~3 in favour of a much more cautious set of proposals that acknowledged the 88\% finding.\footnote{\emph{Dream Machine} Issue~21, 19~March 2026, on the UK government's revised position on AI copyright.} \emph{Dream Machine} Issue~21, dated 19~March 2026, was the first edition where I noticed the change in tone in the government's own language. The framing had shifted from ``how do we enable AI training'' to ``how do we protect creators.'' + +I want to be precise about what this reversal means and what it doesn't. + +It does \emph{not} mean that the UK has banned AI training on copyrighted work, or that it has imposed a licensing-first regime by default. As of the time I am writing this~-- May 2026~-- the legislative process is ongoing, and the eventual policy could land anywhere on a wide spectrum. + +It \emph{does} mean that 88\% of 10,112 people, plus a thousand-odd email submissions, plus a media cycle that ran for fourteen months, plus a parallel set of legal proceedings, plus a parallel set of platform and industry pushback, plus the active mobilisation of multiple professional bodies, was enough to \emph{change the position of a national government} on one of the most economically significant technology-policy questions of the decade. + +That is, in democratic terms, what \emph{working} looks like. + +\section*{What the creators were actually saying} + +The 88\% was a procedural answer to a procedural question. What were the \emph{substantive} arguments behind it? I have read enough of the submissions, through the published summaries and through the secondary press coverage, to feel confident in summarising the three I see most often. + +\textbf{The consent argument.} This was the simplest and the most universal: that work made by a creator~-- a song, a book, a photograph~-- belongs to that creator in a way that is \emph{not} fully captured by the existing copyright regime, and that the use of that work to train a machine learning model is a use that requires the creator's consent. + +The argument is not new. The Berne Convention has, since 1886, treated authorship as a \emph{moral right} in addition to an economic one. What is new is the scale of the use. A single AI training run can ingest the work of millions of human creators in a way that no single buyer, publisher, broadcaster or aggregator has ever done. The procedural mechanisms of copyright were designed for a world where uses were enumerable. They struggle in a world where the use is, in effect, \emph{the entire creative output of a generation, all at once.} + +\textbf{The attribution argument.} This was the most operationally specific: that when AI systems produce derivative outputs based on training data, the creators whose work shaped those outputs should be identifiable, and where appropriate, compensated. \emph{Musical AI}, a startup that raised \$4.5m in January 2026 on a ``creative weight attribution'' model, described the technical version of this as ``calculating each input's actual contribution to a generative model's output, then licensing accordingly.''\footnote{\emph{Digital Music News}, ``The AI Licensing Shift~-- Creative Weight Attribution Emerges as Music Industry Game-Changer for Rights Holders.'' \url{https://www.digitalmusicnews.com/2026/01/26/ai-licensing-shift-creative-weight-attribution/}. See also \emph{Digital Music News}, ``Artificial Intelligence Attribution and Licensing Startup Musical AI Scores \$4.5 Million Raise.'' \url{https://www.digitalmusicnews.com/2026/01/13/musical-ai-funding-january-2026/}. \emph{Dream Machine} Issues~14, 16.} The argument doesn't require AI training to stop. It requires it to \emph{show its workings.} + +\textbf{The economic argument.} This was the most cynical and the most powerful: that AI systems trained on the unpaid labour of creators will eventually substitute for those creators in the market, and that the failure to licence is therefore not just an \emph{ethical} offence~-- it is an active transfer of wealth from a relatively diffuse group of working creatives to a relatively concentrated group of technology platforms and their shareholders. + +The PRS for Music \emph{2026 AI Survey} found that \textbf{four in five} music creators worried about AI-generated music competing with human-created music in the streaming economy.\footnote{PRS for Music, ``PRS for Music AI Survey 2026.'' \url{https://www.prsformusic.com/m-magazine/news/prs-for-music-ai-survey-2026}. \emph{Dream Machine} Issue~16.} The Edinburgh-based \textbf{Centre for Creative AI} at UCL/RCA, launched in late 2025, explicitly framed its mission around the ``redistribution of value from machines back to the humans whose work made them possible.''\footnote{\emph{Broadcast Now}, ``Alex Mahon joins Stellar AI Creative Summit line-up'' (covering the launch of the UCL/RCA Centre for Creative AI). \url{https://www.broadcastnow.co.uk/broadcasters/alex-mahon-joins-stellar-ai-creative-summit-line-up/5209227.article}. \emph{Dream Machine} Issue~1.} The US \textbf{artist trade body} quoted in \emph{Complete Music Update} in November 2025 was even blunter: ``Artists must have creative control in AI deals or risk ending up with `scraps'.''\footnote{\emph{Complete Music Update}, ``Artists must have creative control in AI deals or risk ending up with `scraps', says US artist trade body.'' \url{https://completemusicupdate.com/artists-must-have-creative-control-in-ai-deals-or-risk-ending-up-with-scraps-says-us-artist-trade-body/}. \emph{Dream Machine} Issue~6.} + +Stack those three arguments next to each other and you get a recognisable shape. It is the shape of every economic-rights argument creators have made, in every previous technological transition, going back to the Stationers' Company in seventeenth-century London. \emph{Don't print without permission. Don't broadcast without a fee. Don't sell our records without paying us. Don't sample without clearing. Don't stream without licensing. Don't train without consent.} + +The 88\% is the latest entry in a four-hundred-year sequence. What's new is the \emph{speed} with which it has had to be expressed, and the \emph{scale} of the use it is responding to. + +\section*{The artists' declaration} + +In January 2026, in parallel with the union negotiations and the lawsuits and the policy responses, nearly \textbf{800 working creatives}~-- including high-profile names like Jason Aldean and OneRepublic~-- signed an open declaration with the line that gave the document its name: \emph{Stealing Our Work Is Not Innovation.}\footnote{\emph{Digital Music News}, ``Nearly 800 Creatives, Including Jason Aldean and One Republic, Sign Responsible AI Declaration~-- `Stealing Our Work Is Not Innovation'.'' \url{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}. \emph{Dream Machine} Issue~16.} + +I want to spend a moment on this document because it is the cleanest expression I have found of the underlying argument, and because I think the line will be on a t-shirt within a year if it isn't already. + +The declaration was not a legal document. It had no enforcement mechanism. It did not call for specific legislation. It was a \emph{cultural statement}~-- a refusal of the framing under which the AI companies had been making their case. + +The framing the AI companies had been using, repeatedly, in venues from technology conferences to court filings, was that training models on copyrighted material was a kind of \emph{technical inevitability}~-- that machine learning required vast amounts of data, that the data could not practically be licensed at scale, and that therefore the use was, in a sense, \emph{outside} the traditional consent-and-payment framework of copyright. It was~-- they argued~-- not really ``use'' in the sense the law had been built around. It was a new kind of activity that needed a new kind of rules. + +The declaration's response, in a phrase, was: \emph{no, it's just stealing.} + +This was a rhetorically devastating move. It collapsed the AI companies' carefully constructed framing~-- \emph{transformative use, fair use, technical necessity, innovation}~-- into the oldest accusation in commerce, and made it stick. \emph{Stealing.} Not because the signatories did not understand the technical arguments. They did. Because they had decided that the technical arguments were a \emph{cover} for an underlying transfer of value that didn't deserve any other name. + +Once you have that framing, the whole policy debate looks different. \emph{Should we allow innovation?} becomes \emph{should we allow theft?} The answers are not the same. + +\section*{The levy precedent: why Petrillo matters here} + +I want to take a long detour, because the 88\%~-- and the institutional response forming around it~-- is, on the historical reading I laid out in Chapter~\ref{ch:2}, a \emph{Petrillo-template} moment that the trade press has, in the main, declined to recognise as such. + +Let me state the template again, in its cleanest form, because the rest of this section relies on it. + +When James Caesar Petrillo, the president of the American Federation of Musicians, took on the recording industry in 1942 and again in 1948~-- staging the recording bans that effectively shut down the entire commercial output of American recorded music for the better part of three years~-- the strategic move was not, in essence, \emph{prohibition}. Petrillo was not trying to ban records. He was trying to \emph{tax} records. The 1942 settlement created a per-record royalty paid into an AFM unemployed-musicians fund. The 1948 settlement, after the Taft-Hartley Act outlawed the 1942 structure, created the \textbf{Music Performance Trust Fund} under Section~302~-- a \emph{jointly-administered} labour--management fund, paid into by the labels and broadcasters, used to subsidise free live music performances by working musicians, distributing the productivity gain of the new recording technology to the displaced labour pool. The MPTF still exists. It still distributes payments today. It is, on a hundred years of evidence, the \emph{only} form of institutional response to a creative-technology displacement that has worked at structural scale. + +The four parts of the template, again: + +\emph{One,} the displacing technology is not banned. It is allowed to displace. + +\emph{Two,} the platform owner pays an \emph{ongoing per-unit tribute} to the displaced labour pool. + +\emph{Three,} the tribute is collected \emph{centrally,} by a joint labour--management body, not negotiated individual-by-individual. + +\emph{Four,} the tribute is paid out to subsidise the \emph{displaced creative practice itself}~-- live music, in Petrillo's case~-- keeping it alive as a category even as the market for it shrinks. + +I want to show how the 88\%~-- and the architecture of institutional response coalescing around it in spring 2026~-- is, function by function, a \emph{reconstruction} of the Petrillo template for the AI era. + +\emph{One,} none of the institutional responses I have catalogued in this chapter~-- the UK consultation's licensing-by-default proposal, the SAG-AFTRA Tilly Tax, the \emph{Stealing Our Work Is Not Innovation} declaration, the GEMA ruling, the Cannes Disclosure Standard~-- is, in essence, a \emph{ban}. The declaration's signatories are not asking for AI to be prohibited. The 88\% of UK respondents who wanted licensing-in-all-cases were not asking for AI training to be banned. They were asking for it to be \emph{licensed}~-- which is, by definition, an acknowledgement that the underlying activity will continue. This matches Petrillo's first principle. + +\emph{Two,} what the 88\%, the GEMA ruling and the \emph{UMG v.\ Anthropic} settlement framework are collectively asking for is a \emph{per-output tribute} from the AI platforms to the creative-labour pool whose work was used in training. The mechanism is, structurally, identical to the per-record royalty that Decca and Columbia agreed to pay AFM in 1944. The platform pays. The labour pool receives. The amount is calibrated to the volume of platform output. The mechanism is the Petrillo mechanism. + +\emph{Three,} the structural innovation of the Petrillo settlement~-- collection through a \emph{joint body} rather than through individual-creator negotiation~-- is, in spring 2026, only partially built for the AI era. The collective-licensing infrastructure for music (PRS, GEMA, ASCAP, BMI, SIAE, JASRAC and the related international bodies) has, in some cases, started negotiating directly with the AI platforms on the per-output structure. The Musical AI \emph{creative weight attribution} infrastructure is a first attempt to build a \emph{technical} layer underneath the joint-body political layer. The Cannes Disclosure Standard is an industry-co-ordination mechanism for the production-side disclosure that the collection mechanism rests on. None of this is finished. The joint bodies for \emph{visual} artists, \emph{writers}, \emph{games developers}, \emph{photographers} are at much earlier stages of development. The MPTF-equivalent fund-and-distribution mechanism does not yet exist for most of the creative industries. \emph{Building it is the institutional work of the next eighteen months.} + +\emph{Four,} the final part of the template~-- paying the tribute out to subsidise the \emph{displaced practice}~-- is the part the AI debate has, in my view, most under-thought. What does ``subsidising the displaced practice'' look like for AI-displaced creative work? For working musicians whose tracks are being competed-against by Suno outputs, it could look like funded performance opportunities, funded studio time, funded creative-development grants~-- the direct lineage of MPTF live-performance subsidies. For working illustrators whose work was used to train image models, it could look like commissioned-work grants, funded artist residencies, public-art-commission expansion. For working authors whose books were used to train LLMs, it could look like Public Lending Right expansion, library-licensing funds, writer-in-residence programmes. The structural move is the same in each case: \emph{take the productivity gain from the platform, redistribute it to the displaced practice, keep the practice alive as a category.} This is what the 88\% is implicitly asking for, whether or not the consultation respondents would have phrased it that way. + +I want to be honest about a complication that the Petrillo template hits at full speed in the AI era, because the book should not be glib about it. + +The MPTF works partly because the relationship between \emph{recorded music} (the displacing technology) and \emph{live music} (the displaced practice) is \emph{one-to-one}. The same musicians could, in 1948, do either thing. The Petrillo settlement was, structurally, paying the displaced version of the labour to subsidise the alternative version of the same labour. + +The AI version of this relationship is \emph{many-to-many}. The training data for a generative-image model is the lifetime output of \emph{thousands} of working illustrators, photographers and visual artists, each of whom contributed an individually-tiny fraction of the model's competence. The output is \emph{generated}~-- there is no clean per-image-licence-equivalent. The redistribution problem is, by structure, much harder than Petrillo's problem. + +Two attempts to solve this are visible in 2026. + +\emph{The first} is \textbf{creative weight attribution}~-- Musical AI's framing, picked up by some of the C2PA-adjacent technical standards groups~-- which proposes that AI platforms compute, for each output, the \emph{gradient-weighted contribution} of each training-data input, and distribute a per-output royalty proportionally. The technical infrastructure for this is, in mid-2026, \emph{partially} built. The economic infrastructure to handle the resulting micro-payments is, in mid-2026, \emph{not} built. But the mechanism is the right one in principle: it preserves the one-to-many relationship that Petrillo could not directly handle, and translates it into a \emph{many-to-many} redistribution mechanism. + +\emph{The second} is \textbf{collective licensing at the publisher tier}. The Stability AI / Universal Music alliance, the Splice / UMG partnership, the various YouTube and Spotify catalogue-licensing deals operate by aggregating training-data permissions at the publisher and label level, with the per-creator distribution handled internally by the existing royalty infrastructure of those publishers. This works for \emph{commercially-published} creative work where the publisher already has a contractual relationship with the creator. It works less well for \emph{independent} and \emph{self-published} creative work where there is no publisher to negotiate on the creator's behalf. + +Both approaches will, in some hybrid form, be the architecture of the AI-era Petrillo settlement. The 88\%, the GEMA ruling, the SAG-AFTRA bargaining, the Cannes Disclosure Standard and the \emph{UMG v.\ Anthropic} litigation are the political pressure that is forcing the platforms to agree to \emph{some} version of one or the other. The version that emerges over the next eighteen months will, on the historical pattern, define the next forty years of how creative-AI work is paid for. + +If the working-creative cohort reading this is asking what specifically to push for, my answer is: \emph{the Petrillo template, applied to AI, collected through a joint body, distributed through a creative-weight-attribution mechanism layered on top of the existing collective-licensing infrastructure, used to subsidise the displaced creative practice as a category}. That sentence is a mouthful. It is also the most-likely-to-work structural answer that the historical pattern points at. The 88\% is the political mandate for it. The institutional architecture is, in mid-2026, half-built. Finishing it is the work. + +\section*{The consent-trained alternative} + +The 88\% is a \emph{demand-side} fact: it tells you what creators want done about the training pipeline. There is a \emph{supply-side} fact that I think the policy debate has been slow to absorb, and that working creatives reading this book should know about, because it is the practical refutation of the AI companies' core argument. + +The AI companies, as I noted earlier in this chapter, have spent two years arguing that machine-learning models \emph{cannot practically} be trained on licensed data at the scale they require. That the data volumes are too large, the licensing relationships too fragmented, the legal cost too high. That training on consent-acquired data is, in effect, a nice idea that does not survive contact with the engineering. + +By spring 2026, this argument was falsifiable, and had been falsified, by the existence of a category of foundation models that had been built~-- and were commercially successful~-- on exactly the consent-first basis the AI companies said was impossible. + +The category, with the models I would name as its leading examples: + +\begin{itemize} + \item \textbf{Adobe Firefly} (Image Model 5, Firefly Video, Firefly Foundry)~-- trained on Adobe Stock licensed content, openly licensed material, and public-domain work. Adobe Stock contributors are compensated through the Firefly bonus programme. By April 2025, Firefly had generated 22~billion assets; by mid-2026 it was the dominant enterprise generative-image tool, with 45\%+ Creative Cloud penetration.\footnote{Adobe Firefly milestone and adoption data. Firefly Foundry and Firefly Image Model 5 launch reporting, Adobe MAX 2025: \url{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly-foundry}; \url{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly}.} + \item \textbf{Bria}~-- image and video foundation models trained on a 100\%-licensed dataset assembled from partners including Getty Images, Alamy and a network of independent rights holders. Bria publishes a per-output attribution and royalty mechanism on which the broader creative-weight-attribution conversation has drawn.\footnote{Bria AI consent-licensed dataset and attribution mechanism. [TODO: confirm primary citation~-- Bria's licensed-data white paper or Series~B coverage.]} + \item \textbf{Getty Images Generative AI} (built with NVIDIA Picasso)~-- trained exclusively on Getty's licensed library, with contributor royalties paid through Getty's existing rights infrastructure.\footnote{Getty Images, ``Generative AI by iStock'' launch, built on NVIDIA Picasso, trained exclusively on Getty's licensed library with contributor royalties. [TODO: confirm citation~-- Getty press release or \emph{Reuters} coverage.]} + \item \textbf{Moonvalley Marey}~-- a generative-video model positioned explicitly as the ``clean'' alternative to Sora and Veo, trained on a licensed video dataset.\footnote{Moonvalley Marey, generative-video foundation model trained on licensed video. [TODO: confirm citation~-- Moonvalley launch coverage in \emph{The Verge} / \emph{TechCrunch}.]} + \item \textbf{AIODE}~-- a music-creation DAW trained on ethically-licensed audio. See Chapter~\ref{ch:16}, \S``Audio modality models.''\footnote{AIODE, ethically-trained music creation DAW. See Chapter~\ref{ch:16}: The Tools, \S``Audio modality models.''} + \item \textbf{Tamber}~-- an ethically-trained AI music suite launched in May 2026, controllable via arm gestures, positioned explicitly as a tool that moves \emph{with} the musician rather than substituting for them.\footnote{\emph{MusicTech}, ``Tamber is an `ethically trained' AI tool to aid the creative process~-- and you can use arm gestures to control it.'' \url{https://musictech.com/news/gear/tamber-ai-ethically-trained-arm-gestures/}. Tamber product page: \url{https://tamber.ai/}. \emph{Dream Machine} Issue~30.} + \item The \textbf{Stability AI / Universal Music Group} alliance, the \textbf{Stability AI / Warner Music} deal and the \textbf{Splice / Universal Music} partnership~-- data-alliance arrangements that build music models on rights-cleared catalogues, with the per-creator distribution handled through the labels' existing royalty infrastructure.\footnote{Stability AI / Universal Music Group strategic alliance: \url{https://stability.ai/news/universal-music-group-and-stability-ai-announce-strategic-alliance}. Stability AI / Warner Music: \url{https://stability.ai/news/warner-music-group-and-stability-ai-join-forces-to-build-next-gen-tools}. Universal Music / Splice partnership: \url{https://www.universalmusic.com/universal-music-group-and-splice-to-collaborate-on-the-next-generation-of-ai-powered-music-creation-tools-for-artists/}. \emph{Dream Machine} Issues~5, 8, 12.} +\end{itemize} + +I am not claiming this category is perfect, or even, in every case, that its consent claims fully hold up to scrutiny. Adobe Firefly has faced criticism over the inclusion of AI-generated stock images in its training set;\footnote{Reporting on AI-generated images in the Adobe Stock training corpus, \emph{Bloomberg}, April 2024. [TODO: confirm exact citation.]} the per-creator economics on the Stability / UMG-style deals are still being worked out. The point is not that these models are above critique. The point is that they \emph{exist}, that they \emph{work commercially}, and that their existence collapses the central technical-inevitability argument that the rest of the industry has been using to justify scraping. + +\section*{Indemnity as the receipt} + +The clearest single signal that a model has done its upstream consent work is whether the company behind it is willing to \emph{indemnify} its customers against copyright infringement claims arising from generated output. + +The pattern, in the eighteen months to mid-2026: + +\begin{itemize} + \item \textbf{Adobe} offers IP indemnification on Firefly enterprise outputs~-- Adobe will defend customers, and pay damages, if an enterprise generation is challenged on copyright grounds.\footnote{Adobe Firefly IP indemnification for enterprise customers. [TODO: confirm citation~-- Adobe enterprise terms or \emph{The Verge} coverage from 2023.]} + \item \textbf{Microsoft} announced its \textbf{Copilot Copyright Commitment} in September 2023 and extended it across the Copilot product family through 2024--25. Microsoft assumes the legal liability for commercial customers using Copilot outputs in good faith.\footnote{Microsoft, ``Microsoft announces new Copilot Copyright Commitment for customers,'' 7~September 2023. \url{https://blogs.microsoft.com/on-the-issues/2023/09/07/copilot-copyright-commitment-ai-legal-concerns/}.} + \item \textbf{Google} offers an indemnification commitment on Vertex AI and Workspace generative outputs.\footnote{Google Cloud Generative AI indemnification: \url{https://cloud.google.com/blog/products/ai-machine-learning/protecting-customers-with-generative-ai-indemnification}.} + \item \textbf{IBM} offers an uncapped indemnity on watsonx-generated content for enterprise customers.\footnote{IBM watsonx uncapped indemnity for enterprise customers. [TODO: confirm citation.]} +\end{itemize} + +Notice which companies are on this list and which are not. The companies indemnifying their customers are, without exception, the companies that have invested most heavily in the \emph{upstream} consent work~-- licensed data, contributor compensation, rights-cleared catalogues. The companies that have \emph{not} indemnified their customers are, predominantly, the companies whose training-data position is most exposed. + +This is not a coincidence. Indemnification is a receipt. It is the legal department of a \$200B company telling its commercial customers, in the most expensive language available, \emph{we have done the work; you can use this without being sued}. The absence of an indemnity, conversely, is an instruction. It is the same legal department saying, \emph{the risk is yours; you carry it}. + +For working creatives, agencies and studios making procurement decisions in 2026, the indemnity status of a tool is the single most useful one-question proxy for whether its training pipeline is built on the side of the 88\% or against it. Ask the vendor. If they cannot give you a written indemnity, you have your answer. + +\section*{The literacy problem} + +None of this~-- the consent-trained category, the indemnity framework, the C2PA provenance stack in Chapter~\ref{ch:12}, the legislative reversal earlier in this chapter~-- works without a corresponding investment in \emph{literacy}. And the literacy gap, in mid-2026, is the place where I am most worried about the architecture failing. + +Policy and infrastructure can constrain the supply side. They cannot, on their own, redirect the demand side. The question of whether a working illustrator chooses Firefly over Midjourney, whether a marketing team specifies Bria over a scraped open-source model in its agency brief, whether a record label's A\&R department uses a Stability / UMG-aligned tool rather than Suno for demo work, whether a film commissioner asks for Marey provenance on a generative-video shot, whether an audience member streams a SynthID-watermarked track over an unlabelled one~-- these are \emph{consumption} questions. They sit downstream of every law and every standard. They are decided, ten thousand times a day, by people choosing tools and content from a menu, without anyone telling them what the choices on the menu actually mean. + +Three things have to happen for the literacy layer to catch up with the infrastructure layer. + +\emph{First,} working creatives need to know what the consent-trained category is, which tools are in it, and what an indemnity is for. This book is one attempt at that; the \textbf{Sundance AI Literacy Initiative}, training 100,000+ artists in provenance practice on Google's funding, is another.\footnote{Sundance AI Literacy Initiative, in Chapter~\ref{ch:12}: Authenticity, the New Scarcity, \S``The provenance infrastructure, named.''} The professional bodies~-- the Society of Authors, the AIGA, Equity, the AOP, the MPG, the WGA~-- have, by mid-2026, started shipping member guides. The work is early. + +\emph{Second,} the \emph{buyers} of creative work~-- the brands, the agencies, the broadcasters, the platforms, the publishers~-- need to make ethically-trained models a \emph{specified requirement} in their briefs and procurement contracts. A handful already have: the BBC, the AP wire service, the Cannes festival itself. The vast majority have not. The lever exists. It needs to be pulled. + +\emph{Third,} the \emph{audience} needs the equivalent of a nutrition label. The Cannes Disclosure Standard, SynthID-in-Gemini, the YouTube AI-content disclosure rules, the proposed EU AI Act labelling obligations are early attempts at this. None of them yet add up to a consumer-facing signal as legible as the \emph{Fairtrade} mark or the \emph{organic} certification. Until they do~-- until an audience member streaming a song, watching a clip, or buying a print can tell at a glance whether the creative work in front of them was made with a tool that paid the people whose work it learned from~-- the consumption side of the equation will keep leaking. Provenance metadata sitting in a file header that no one reads is not, on its own, literacy. + +I do not think this layer will get built by the AI companies. The incentive isn't there. I think it will get built~-- slowly, contentiously, in fits and starts~-- by the same coalition I am about to describe in the next section: by creators, their unions, their professional bodies, their buyers and their audiences, jointly insisting on a labelling regime that the platforms eventually have to honour because the market has organised itself around it. + +The 88\% is the political mandate. The consent-trained models are the proof of supply. The indemnity framework is the legal receipt. The literacy infrastructure is the missing piece~-- and it is, on the evidence of the last six months, being built. + +\section*{Coalitions, not protests} + +The thing I want creative people reading this to take from this chapter is \emph{not} that protest works. + +Protest works. We have seen it. The 88\%, the Equity ballot, the SAG-AFTRA contract, the artists' declaration, the GEMA ruling, the UK government's reversal~-- these are evidence that protest works. + +What I want you to take is that \emph{coalition} works. + +What happened in these six months was not~-- or was not only~-- that individual creators got angry and shouted. What happened was that creators \emph{aligned themselves} with adjacent groups whose interests they had not previously seen as aligned with theirs. + +Working musicians aligned with photographers, who aligned with authors, who aligned with games developers, who aligned with screenwriters, who aligned with voice actors, who aligned with concept artists, who aligned with translators, who aligned with journalists. They aligned with their unions. They aligned with their professional bodies. They aligned, somewhat to everyone's surprise, with the major studios, who had spent twenty years suing them and now found themselves on the same side of a copyright argument against the same platform companies.\footnote{For Disney's parallel position, see \emph{Deadline}, ``Disney Sends Cease And Desist Letter To Character.ai.'' \url{https://deadline.com/2025/09/disney-cease-and-desist-letter-characterai-copyright-infringement-1236566831/}. For Studio Ghibli's similar stance: \emph{NDTV Profit}, ``Studio Ghibli And Studio That Developed Elden Ring Send Stern Message To OpenAI\@.'' \url{https://www.ndtvprofit.com/technology/studio-ghibli-and-studio-that-developed-elden-ring-send-stern-message-to-openai}. \emph{Dream Machine} Issues~2, 6.} + +The major-label leadership read of the same coalition shifted, in the spring of 2026, in a way that I think is worth registering carefully because the rhetoric is a useful weather-vane. \textbf{Robert Kyncl}, the chief executive of \textbf{Warner Music Group}, in a widely-quoted May 2026 interview, told the industry that \emph{``AI resistance''} was actively \emph{setting the music sector back}~-- that AI represented ``an incredible value creation opportunity,'' and that the labels \emph{``cannot wait the way the industry did 25 years ago.''} Kyncl's invocation of the Napster moment was deliberate. The argument was that the labels' twenty-five-year pattern of \emph{suing first, integrating second} had cost them, in net, the bulk of the streaming-era surplus to platforms that had moved before they did, and that repeating that pattern with AI would compound the loss.\footnote{\emph{Variety}, ``Is `AI Resistance' Setting the Music Sector Back? WMG's Robert Kyncl Sees `An Incredible Value Creation Opportunity,' But Warns `We Cannot Wait the Way the Industry Did 25 Years Ago'.'' \url{https://variety.com/2026/music/news/wmg-robert-kyncl-ai-resistance-1236748901/}. \emph{Dream Machine} Issue~30.} This is a meaningful change in register from the 2025 \emph{``biggest theft in music history''} framing, and worth tracking. It does not contradict the 88\%~-- Kyncl, like the BPI, is pushing for licensing infrastructure rather than against it~-- but it shifts the \emph{centre of gravity} of major-label rhetoric from prohibition toward participation. On the Petrillo template, this is the labels' tribute-mechanism position: AI continues, the platforms pay, the joint-body collection infrastructure scales. The question of whether the \emph{displaced practice} gets a meaningful share of the resulting flow~-- whether the working songwriter, the working session player, the working independent artist actually \emph{sees} the tribute~-- is the part the Kyncl framing does not yet answer. + +They also~-- and this part I find most interesting~-- aligned with their \emph{audiences}. The Adobe Creators' Toolkit Report found that \textbf{69\%} of creators worried about their work being used to train AI without consent.\footnote{Adobe, \emph{Creators' Toolkit Report}, \emph{op.\ cit.} 69\% of 16,000 surveyed creators worried about their work being used to train AI without consent.} That number rhymes with the 88\% in the UK consultation. It also rhymes with the audience behaviour I described in Chapter~\ref{ch:5}~-- the slop ceiling, the AI-music underperformance, the cultural rejection of synthetic content that doesn't disclose itself. The creators wanted protection. The audience, given a choice, wanted to listen to the protected work. The two interests, for the first time in a long time, sat on the same side of the line. + +That alignment is the most powerful political asset the creative industries have had this century. They built it in six months. The question for the next six months~-- which Chapter~\ref{ch:13} of this book is going to come back to~-- is what they do with it. diff --git a/latex/chapters/ch07_the_studios_decide.tex b/latex/chapters/ch07_the_studios_decide.tex new file mode 100644 index 0000000..2ade137 --- /dev/null +++ b/latex/chapters/ch07_the_studios_decide.tex @@ -0,0 +1,190 @@ +\chapter{The Studios Decide}\label{ch:7} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{f} the audience was speaking through the slop ceiling, and the creators were speaking through the 88\%, the studios were speaking through their balance sheets~-- and the language was not quite the language of either of the other two. + +On \textbf{22 October 2025}~-- three weeks into the period this book covers, the same day I was writing Issue~4~-- Ted Sarandos, Netflix's co-CEO, told an industry conference that Netflix was ``all in'' on leveraging AI across its streaming platform.\footnote{\textit{CNBC}, ``Netflix `all in' on leveraging AI as the tech creeps into entertainment industry,'' 22 October 2025. \url{https://www.cnbc.com/2025/10/22/netflix-all-in-on-leveraging-ai-in-its-streaming-platform.html}. \emph{Dream Machine} Issue~4.} The phrase was casual. The implications were not. Within hours, the trade press was running it as the official line of the world's largest streaming service, and it was being read~-- correctly~-- as a signal to every other studio that the period of ``wait and see'' was over. + +Three weeks earlier, in a piece \textit{Futurism} had published with a headline that aged badly almost in real time, \textbf{Lionsgate's} ambitious attempt to use AI for movie development had been characterised as having ``crumbled into disaster.''\footnote{\textit{Futurism}, ``Lionsgate's Attempt to Create Movies Using AI Has Crumbled Into Disaster.'' \url{https://futurism.com/artificial-intelligence/lionsgate-movies-ai}. \emph{Dream Machine} Issue~1.} + +Two months later, on \textbf{11 December 2025}, \textit{The Guardian} reported that \textbf{Disney} was investing \$1 billion in OpenAI, with a structured agreement that would let Disney characters appear in the Sora video tool.\footnote{\textit{The Guardian}, ``Disney to invest \$1bn in OpenAI, allowing characters in Sora video tool.'' \url{https://www.theguardian.com/business/2025/dec/11/disney-open-ai-sora-video-deal}. \emph{Dream Machine} Issue~11.} + +These three moments~-- Lionsgate's failure, Netflix's commitment, Disney's \$1bn~-- are the three corners of the strategic map that every legacy studio in the world has been navigating for the last six months. They are not a single story. They are three different stories about how a creative business with a hundred years of human-craft DNA tries to integrate a technology that, by the time it integrates, no longer behaves like the technology you thought you were integrating. + +This chapter is about the studios. About how they decided. About the ones that went \emph{all-in}, the ones that went \emph{AI-native from scratch}, the ones that went \emph{we are not doing this at all}, and the ones~-- the most interesting group~-- that went \emph{we will do it, but only in the places where it doesn't show up in the work the audience sees.} + +The map of those four positions, drawn carefully, is the map of where the film, TV, games and entertainment industries will be in 2030. + +\begin{figure}[htbp] + \centering + \includegraphics[width=0.92\textwidth]{wardley_studios} + \caption{Wardley map of studio strategic positions: from all-in adoption through AI-native entrants to explicit rejection, each position carries distinct risk and capability profiles.} + \label{fig:wardley-studios} +\end{figure} + +\section*{Position One: All-in} + +Netflix's ``all in'' framing was the most prominent example of what became, over the autumn of 2025 and the winter of 2026, the dominant public stance of the major streamers. The framing was: AI is a tool, AI is a productivity multiplier, AI is going to be used everywhere in the pipeline, and the studios that adopt it earliest will have the most leverage when the new economics settle. + +The actual deployment, when the trade press dug into it, was more interesting than the slogan suggested. Netflix's use of AI in late 2025 included generative AI tools for visual effects (de-aging actors, scene extensions, background plates), AI-driven recommendation engines that the company had been refining for fifteen years, and~-- disclosed in a January 2026 \textit{Pymnts} report~-- a major AI strategic push focused on subscriber \emph{retention} rather than production cost.\footnote{PYMNTS, ``Retention Is Name of the Game for Netflix's AI Strategy.'' \url{https://www.pymnts.com/subscription-commerce/2026/retention-is-name-of-the-game-for-netflixs-ai-strategy/}. \emph{Dream Machine} Issue~15.} The story Sarandos was telling Wall Street was not ``AI will replace our writers.'' It was ``AI will keep our subscribers engaged in a way that human-only programming alone cannot afford to.'' + +By May 2026 the deployment had moved one further step in. Netflix announced \textbf{INKubator}, an in-house AI animation studio explicitly chartered to produce \emph{``feature-quality''} short-form work, and began recruiting for it publicly.\footnote{\textit{Hollywood Reporter}, ``Netflix is building and recruiting for an AI animation studio, called INKubator, to produce `feature-quality' shorts.'' \url{https://www.hollywoodreporter.com/business/business-news/netflix-ai-animation-studio-inkubator-1236592110/}. \emph{Dream Machine} Issue~30.} What is notable about INKubator, for the purposes of this chapter, is not the size of the unit~-- small, by Netflix standards~-- but the \emph{organisational position} of it: an \emph{internal} AI-native studio sitting \emph{inside} the major-streamer architecture, producing original work, reporting up into the same commissioning structure as the live-action slates. That is a different shape from the Position-Two AI-native studios I describe in the next section. It is a hybrid: Position One on the org chart, Position Two in the pipeline. + +Adjacent moves from other big studios that autumn told the same story. + +\textbf{Amazon} built out an internal ``AI Studios'' unit in November 2025, naming sports-docs boss Matt Newman as its head of live-action production.\footnote{\textit{Deadline}, ``Amazon Builds Out AI Studios With Sports Docs Boss Matt Newman Named Head Of Live-Action.'' \url{https://deadline.com/2025/11/amazon-ai-studios-matt-newman-1236603477/}. \emph{Dream Machine} Issue~7.} In the same month, Amazon's \textit{House of David} TV series became one of the first major Western dramas to publicly disclose the use of more than \textbf{350 AI-generated visual-effects shots} in its second season, with creator Jon Erwin telling \textit{Wired} he was ``not sorry.''\footnote{\textit{Wired}, ``Amazon's House of David Used Over 350 AI Shots in Season 2. Its Creator Isn't Sorry.'' \url{https://www.wired.com/story/amazons-house-of-david-used-over-350-ai-shots-in-season-2-its-creator-isnt-sorry/}. \emph{Dream Machine} Issue~7.} + +\textbf{NBCUniversal} signed a deal in late October 2025 with the son of \textit{Law \& Order} creator Dick Wolf to develop AI-generated games based on its IP.\footnote{\textit{Video Games Chronicle}, ``NBCUniversal signs deal with Law \& Order creator Dick Wolf's son to make AI-generated games based on its IP.'' \url{https://www.videogameschronicle.com/news/nbcuniversal-signs-deal-with-law-order-creator-dick-wolfs-son-to-make-ai-generated-games-based-on-its-ip/}. \emph{Dream Machine} Issue~5.} By late November, the framing had broadened~-- \textit{The Office}, \textit{Saturday Night Live} and \textit{Sex and the City} were all reportedly being considered as IP for AI-generated game adaptations.\footnote{\textit{NME}, ```The Office', `Saturday Night Live' and `Sex And The City' could be turned into AI games.'' \url{https://www.nme.com/news/gaming-news/the-office-and-sex-and-the-city-ai-video-games-3901630}. \emph{Dream Machine} Issue~5.} + +\textbf{Disney}, beyond its OpenAI investment, announced in November 2025 that it was developing generative AI tools to let Disney+ subscribers create and share their own short-form videos using the company's iconic IP~-- a play, transparently, at recapturing the engagement Fortnite and Roblox had been taking from passive streaming for years.\footnote{\textit{The Hollywood Reporter}, ``Disney+ to Allow User-Generated Fan Content with AI.'' \url{https://www.hollywoodreporter.com/business/digital/disney-plus-gen-ai-user-generated-content-1236426135/}. \emph{Dream Machine} Issue~8.} To execute this, Disney created a new ``\textbf{Office of Technology Enablement}'' under former Walt Disney Studios CTO Jamie Voris, with the specific mandate of accelerating AI and Mixed Reality adoption across the organisation.\footnote{\emph{Dream Machine} Issue~8 reportage of the Disney ``Office of Technology Enablement,'' led by former Walt Disney Studios CTO Jamie Voris.} In January 2026, Disney followed up with an announcement of a TikTok-like vertical-video product and an AI video-generation tool aimed at brand advertisers using existing Disney brand assets and guidelines.\footnote{\textit{Marketing Dive}, ``Disney unveils TikTok-like vertical video, AI video generation tool.'' \url{https://www.marketingdive.com/news/disney-unveils-tiktok-like-vertical-video-ai-video-generation-tool/809269/}. \emph{Dream Machine} Issue~14.} + +\textbf{Fox Entertainment} took an equity stake in \textbf{Holywater}, an AI-microdramas company, in October 2025.\footnote{\textit{The Hollywood Reporter}, ``Fox Entertainment Takes Equity Stake in AI-Microdramas Company Holywater.'' \url{https://www.hollywoodreporter.com/business/business-news/fox-entertainment-invests-in-holywater-ai-microdramas-1236396802/}. \emph{Dream Machine} Issue~3.} + +\textbf{Sky History} acquired \textit{Castles SOS}, an AI-powered documentary, in late November.\footnote{\textit{Deadline}, ``Sky History Acquires `Castles SOS,' AI-Powered Doc Exploring Royalty, Ruins \& Restoration.'' \url{https://deadline.com/2025/11/castles-sos-ai-doc-sky-history-documentary-rick-edwards-1236627378/}. \emph{Dream Machine} Issue~9.} + +\textbf{Channel 4} rolled out an AI-driven advertising tool in December 2025 designed to make TV advertising accessible to SMEs~-- a small home-builder was one of the first clients.\footnote{\textit{Estate Agent Today}, ``Homebuilder among first to use Channel 4's AI ads.'' \url{https://www.estateagenttoday.co.uk/breaking-news/2025/12/homebuilder-among-first-to-use-channel-4s-ai-ads/}. \emph{Dream Machine} Issue~11.} + +Position One is not subtle. The streamers, broadcasters and major studios with the capital to do it have been integrating AI into their stacks~-- production, post-production, marketing, advertising, distribution, subscriber retention~-- at a pace that suggests they have already decided which side of the future they want to be on. They want to be the side that owns the toolchain. + +\section*{Position Two: AI-native} + +A second group, more recent and more interesting, are the studios that have decided not to \emph{integrate} AI into existing film and television production pipelines but to \emph{replace} those pipelines entirely with AI-first workflows. These are the \textbf{AI-native studios.} + +\textbf{Fremantle}, the international production powerhouse, named the boss of its new ``AI-native'' studio \textbf{Imaginae Studios} in October 2025.\footnote{\textit{The Hollywood Reporter}, ``Fremantle Names Boss of New AI Native Studio Imaginae Studios.'' \url{https://www.hollywoodreporter.com/business/digital/fremantle-names-ceo-new-ai-label-imaginae-studios-1236396579/}. \emph{Dream Machine} Issue~2.} By the spring of 2026, Imaginae was developing a project called \textit{Art Awakens}, fusing AI techniques with classical painting IP.\footnote{\emph{Dream Machine} Issue~25, on Fremantle's \textit{Art Awakens} development.} + +\textbf{Imagine Entertainment}~-- Ron Howard and Brian Grazer's production company, with one of the most distinguished filmographies in modern Hollywood~-- partnered with a new AI-first production company called \textbf{Obsidian Studio} in November 2025.\footnote{\textit{Indiewire}, ``Another New AI Production Company Inks a Big Creative Partnership~-- This Time, with Ron Howard and Brian Grazer's Imagine Entertainment.'' \url{https://www.indiewire.com/news/business/obsidian-studio-ai-production-company-imagine-entertainment-1235158619/}. \emph{Dream Machine} Issue~6.} + +\textbf{Wonder Studios} raised \$12m in seed in October 2025\footnote{\textit{UK Tech News}, ``AI film studio Wonder lands \$9m investment.'' \url{https://www.uktech.news/ai/ai-film-studio-wonder-lands-9m-investment-20251023}. \emph{Dream Machine} Issue~5.} and by January 2026 was running its own \textbf{Wonder Film Festival} with a curated shortlist of AI-made shorts.\footnote{Wonder Studios, ``Shortlisted films revealed for The Wonder Film Festival.'' \url{https://www.linkedin.com/posts/wearewonderstudios_were-thrilled-to-share-the-shortlisted-films-activity-7404560378082246656-7NcI}. \emph{Dream Machine} Issue~11.} By May 2026 Wonder had closed a further round bringing total funding to \textbf{\$50M}, with the company publicly framing the ambition as becoming \emph{``the A24 of AI production''}~-- a deliberate analogue to the indie-prestige distribution model rather than to the streamer-replacement model the trade press had been expecting AI-native studios to chase.\footnote{\textit{Forbes}, ``Meet Wonder Studios, The \$50M British Studio Striving To Become The A24 Of AI Production.'' \url{https://www.forbes.com/sites/charliefink/2026/05/18/meet-wonder-studios-the-50m-british-studio-striving-to-become-the-a24-of-ai-production/}. \emph{Dream Machine} Issue~30.} + +\textbf{Asteria}~-- Natasha Lyonne's AI company, backed by James Cameron's \textit{Lightstorm Entertainment}~-- produced its first animated short, \textit{All Heart}, in October 2025.\footnote{\textit{The Hollywood Reporter}, ``AI Company Asteria Produces New Animated Short `All Heart'.'' \url{https://www.hollywoodreporter.com/movies/movie-news/natasha-lyonne-ai-company-asteria-1236403144/}. \emph{Dream Machine} Issue~4.} + +\textbf{Promise}, a deep-pocketed AI studio backed by Google, set up shop in October 2025 specifically to ``bring GenAI filmmaking and VFX to legacy media.''\footnote{\textit{The Hollywood Reporter}, ``Promise, a deep-pocketed AI studio backed by Google, aims to Bring GenAI Filmmaking and VFX to Legacy Media.'' \url{https://www.hollywoodreporter.com/business/digital/ai-studio-promise-vfx-generation-company-1236397636/}. \emph{Dream Machine} Issue~3.} + +\textbf{Goldfinch} launched \textbf{enGEN3}, an ``AI-Powered Cinematic Universe Platform,'' in October 2025.\footnote{\textit{Variety}, ``AI-Powered Cinematic Universe Platform enGEN3 Launched by Goldfinch.'' \url{https://variety.com/2025/film/news/ai-powered-cinematic-universe-platform-engen3-1236543349/}. \emph{Dream Machine} Issue~2.} + +\textbf{Chapter41}, a Munich-based AI startup, was launched in November 2025 by \textbf{Beta Film} and a group of industry executives.\footnote{\textit{Deadline}, ``Munich Based Beta Films \& Industry Execs Join Forces To Launch Artificial Intelligence Start-Up Chapter41.'' \url{https://deadline.com/2025/11/beta-film-ai-startup-chapter41-artificial-intelligence-1236612632/}. \emph{Dream Machine} Issue~7.} + +\textbf{Kartel}~-- a new AI startup led by long-time TV exec Kevin Reilly, formerly of HBO~-- was set up in November 2025.\footnote{\textit{The Hollywood Reporter}, ``Longtime TV Exec, Kevin Reilly, Set to Lead AI Startup Kartel.'' \url{https://www.hollywoodreporter.com/business/digital/kevin-reilly-ceo-kartel-ai-hbo-1236424692/}. \emph{Dream Machine} Issue~7.} + +\textbf{Wanted} director Timur Bekmambetov launched a \$5 million project to ``generate AI method actors'' in November 2025, with the framing: ``AI is here to stay. We have to train it responsibly.''\footnote{\textit{Variety}, ```Wanted' Director Timur Bekmambetov Explains His \$5 Million Plan to Generate AI Method Actors: `AI Is Here to Stay. We Have to Train It Responsibly'.'' \url{https://variety.com/2025/film/news/wanted-director-method-acting-ai-actors-1236579647/}. \emph{Dream Machine} Issue~7.} + +\textbf{Particle6}, the U.K.--Netherlands company behind Tilly Norwood, expanded to 41 AI actors in development by November 2025, with founder Eline Van der Velden in a December 2025 \textit{Deadline} interview making the case that AI performance was a ``more ethical way'' to act~-- and urging working performers to ``future-proof'' themselves by creating their own AI avatars.\footnote{\textit{Variety}, ``Tilly Norwood Creator Doubles Down on AI `Actors' and Says It's a `More Ethical Way to Perform,' Urges Human Actors to `Future-Proof' Themselves With AI.'' \url{https://variety.com/2026/digital/news/tilly-norwood-creator-tells-actors-to-create-ai-avatars-1236638940/}. \emph{Dream Machine} Issue~16.} + +\textbf{Wonder Studios}, separately, adapted a children's book to an animated series using AI in December 2025.\footnote{\textit{Broadcast Now}, ``Wonder Studios adapts children's book to animated series with AI.'' \url{https://www.broadcastnow.co.uk/production-and-post/wonder-studios-adapts-childrens-book-to-animated-series-with-ai/5211713.article}. \emph{Dream Machine} Issue~11.} + +\textbf{Kling AI} and \textbf{Evolutionary Films} announced an AI-animated feature, \textit{Minibots}, at the Cannes Film Market in May 2026, alongside a broader Kling-backed filmmaker initiative aimed at funding AI-native productions on the same indie-distribution architecture.\footnote{\textit{Variety}, ``Kling AI Partners With Evolutionary Films on Animated Feature `Minibots,' Unveils Filmmaker Initiative at Cannes Market.'' \url{https://variety.com/2026/film/news/kling-ai-evolutionary-films-minibots-cannes-1236748590/}. \emph{Dream Machine} Issue~30.} + +By \textbf{April 2026}, the trade press could no longer keep up with the AI-native studio launches. There were too many of them. Most of them, like most early-stage production companies in any era, will not survive the next two years. The question of whether a meaningful AI-native studio system will eventually emerge as a parallel structure to legacy Hollywood~-- the way Netflix and Amazon eventually emerged as a parallel structure to the cable networks~-- is, in my view, the biggest single open question in the film and TV industry as of May 2026. + +The early evidence is mixed. \textit{Watch the Skies}, a Swedish UFO feature entirely dubbed with AI, secured U.S.\ distribution in October 2025.\footnote{\textit{Variety}, ```Watch the Skies,' Swedish UFO Feature Film Dubbed Entirely With AI, Sets USA Distribution Deal.'' \url{https://variety.com/2025/film/news/watch-the-skies-us-theatrical-release-ai-dubbing-1236343110/}. \emph{Dream Machine} Issue~5.} \textit{Run to the West}, South Korea's first AI feature film, was tested with critics and audiences in October 2025; one \textit{cybernews.com} review described the experience as ``testing the soul of cinema.''\footnote{\textit{Cybernews}, ``Run to the West~-- South Korea's first AI film tests the soul of cinema.'' \url{https://cybernews.com/entertainment/korean-cinema-run-to-the-west-ai/}. \emph{Dream Machine} Issue~5.} \textit{Lily}, a Tunisian-made AI short, won the \$1 million Dubai AI Film Award in January 2026.\footnote{\textit{Broadcast Pro Middle East}, ``Tunisian filmmaker wins \$1 million AI Film Award for `Lily'.'' \url{https://www.broadcastprome.com/news/tunisian-filmmaker-wins-1-million-ai-film-award-for-lily/}. \emph{Dream Machine} Issue~14.} \textit{Humans in the Loop}, an AI drama that received Film Independent's Sloan Distribution Grant, entered the Oscar race in November 2025.\footnote{\textit{Variety}, ``AI Drama `Humans in the Loop' Receives Film Independent's Sloan Distribution Grant, Enters Oscar Race.'' \url{https://variety.com/2025/film/news/ai-drama-humans-in-the-loop-oscar-race-1236582975/}. \emph{Dream Machine} Issue~8.} + +I have watched a meaningful percentage of the AI-native output of these six months. The honest evaluation, which I have given in talks several times and stand by here, is that we have not yet seen the \textit{Citizen Kane} of AI cinema~-- we have not yet seen a single AI-native work that I think will still be watched in 2040. We have seen, repeatedly, films that demonstrate technical ability without yet demonstrating cultural necessity. + +The most interesting AI-native works, in my view, are the ones that~-- like Andrii Daniels' bomb-shelter clip~-- wear their non-traditional production conditions on their face. They are films \emph{about} the technology being used to make them, in some implicit or explicit sense. They are not pretending to be legacy films made by a different route. + +\section*{Position Three: We are not doing this} + +The studios that have publicly refused generative AI have been some of the most interesting voices in this entire period. + +\textbf{Pocketpair}, the Japanese games studio behind \textit{Palworld}, announced in October 2025 that its new publishing division would not handle games using generative AI. The CEO's full statement, in \textit{PC Gamer}, was sharper than the headline: \emph{``We don't believe in it. We're very upfront about it. If you're big on AI stuff or your game is Web3 or uses NFTs, there are lots of publishers out there [who'll talk to you], but we're not the right partner for that.''}\footnote{\textit{PC Gamer}, ``Palworld studio Pocketpair says its new publishing division won't handle games that use generative AI: `We don't believe in it'.'' \url{https://www.pcgamer.com/software/ai/palworld-studio-pocketpair-says-its-new-publishing-division-wont-handle-games-that-use-generative-ai-we-dont-believe-in-it/}. \emph{Dream Machine} Issue~4.} It was, on its face, a rejection of one production model. It was, on inspection, also a \emph{marketing position}: a publisher staking its claim with audiences who had become~-- by late 2025~-- actively allergic to AI-augmented games. + +\textbf{Larian Studios}~-- the maker of \textit{Baldur's Gate 3}, one of the most critically and commercially successful games of the decade~-- backed off generative AI in January 2026 for its next \textit{Divinity} game.\footnote{\textit{Niche Gamer}, ``Larian Studios backs off from gen AI.'' \emph{Dream Machine} Issue~14.} + +\textbf{Games Workshop}, custodian of the \textit{Warhammer 40,000} universe, ruled out generative AI entirely in early 2026.\footnote{\textit{Decrypt}, ``Warhammer 40,000 Maker Games Workshop Rules Out Generative AI.'' \emph{Dream Machine} Issue~14.} + +\textbf{Hooded Horse}, the U.S.\ games publisher behind \textit{Manor Lords}, said in January 2026 that it would not work with developers who used generative AI.\footnote{\textit{Niche Gamer}, ``Manor Lords publisher Hooded Horse won't work with devs using gen AI.'' \emph{Dream Machine} Issue~14.} + +\textbf{Jagex}, the maker of \textit{RuneScape}, declared in January 2026 that it would \emph{never} use generative AI to make in-game content.\footnote{\textit{gamesindustry.biz}, ``RuneScape maker Jagex says it will never use generative AI to make in-game content.'' \emph{Dream Machine} Issue~16.} + +\textbf{Aardman Animations}~-- the British animation studio responsible for \textit{Wallace and Gromit}~-- announced in December 2025 that it would ``embrace the technology'' of AI but would be ``very cautious not to lose our values.''\footnote{\textit{GamesRadar}, ``Wallace and Gromit creator says beloved animation studio Aardman will `embrace the technology' of AI, but will be `very cautious not to lose our values'.'' \url{https://www.gamesradar.com/entertainment/animation-movies/wallace-and-gromit-creator-says-beloved-animation-studio-aardman-will-embrace-the-technology-of-ai-but-will-be-very-cautious-not-to-lose-our-values/}. \emph{Dream Machine} Issue~11.} This was, by Aardman's careful standards, a sharp line: they reserved the right to use AI for narrowly defined post-production and admin tasks, but explicitly excluded it from the stop-motion craft that defines their work. + +\textbf{Guillermo del Toro}, in October 2025, told Variety he would ``rather die'' than use generative AI in his films, with a follow-up Frankenstein-themed press cycle that made the line one of the most-quoted creative-industry statements of the year. The full quote was even better than the headline: \emph{``I'm 61, and I hope to be able to remain uninterested in using it at all until I croak. \ldots{} The other day, somebody wrote me an email, said, `What is your stance on AI?' And my answer was very short. I said, `I'd rather die.'''}\footnote{\textit{Variety}, ``Guillermo del Toro Says He'd `Rather Die' Than Use Generative AI in His Films: `Not Interested'.'' \url{https://variety.com/2025/film/news/guillermo-del-toro-rather-die-generative-ai-frankenstein-1236561316/}. \emph{Dream Machine} Issue~5.} What del Toro was doing, with the bluntness only a senior auteur with a fully-funded slate can afford, was \emph{refusing to participate in the framing.} Most working creatives have had to spend two years giving careful, nuanced, defensive answers about their AI position. Del Toro decided he was a senior enough artist to refuse the question entirely. The cultural permission for that posture, in a particular kind of high-end filmmaking, is part of the architecture this book has been describing. + +\textbf{Leonardo DiCaprio}, in December 2025, told \textit{The Hollywood Reporter}: \emph{``I think anything that is going to be authentically thought of as art has to come from the human being.''} The headline framing reduced the position to ``AI can't be art because there's no humanity to it,'' which is the version that travelled, but the full quote is more philosophically defensible. DiCaprio wasn't claiming AI-augmented work couldn't be valuable. He was claiming that the authorship signal~-- ``from the human being''~-- was a precondition for the \emph{category} of art, as he understood it.\footnote{\textit{The Hollywood Reporter}, ``Leonardo DiCaprio Says AI Can't Be Art Because `There's No Humanity to It'.'' \url{https://www.hollywoodreporter.com/movies/movie-news/leonardo-dicaprio-ai-cant-be-art-no-humanity-1236445405/}. \emph{Dream Machine} Issue~11.} + +\textbf{Claire Foy} told the \textit{Daily Mail} in January 2026 she had ``no interest'' in seeing AI in films and would be ``disappointed'' if it became the future of Hollywood.\footnote{\textit{Daily Mail}, ``Claire Foy says she has `no interest' in seeing AI in films.'' \url{https://www.dailymail.co.uk/tvshowbiz/article-15454199/Claire-Foy-AI-films-sad-disappointed-people-future-Hollywood.html}. \emph{Dream Machine} Issue~14.} + +\textbf{Jenna Ortega} said in December 2025 it was ``very easy to be terrified'' of AI in filmmaking. Her fuller reasoning, given to \textit{NME}, is the part I have ended up quoting in talks: \emph{``It comes to a point where it becomes sort of mental junk food and we feel sick and we don't know why. I think, as terrible as it is to say, sometimes audiences need to be deprived of something in order to appreciate something again.''}\footnote{\textit{NME}, ``Jenna Ortega says it's `very easy to be terrified' of AI in filmmaking.'' \url{https://www.nme.com/news/jenna-ortega-says-its-very-easy-to-be-terrified-of-ai-in-filmmaking-3913926}. \emph{Dream Machine} Issue~10.} That argument~-- \emph{audiences need to be deprived of something in order to appreciate something again}~-- is one of the most interesting things a working performer has said in this period about the slop ceiling and its psychological substrate. The audience does not, by Ortega's read, simply discriminate against AI work. They develop a \emph{hunger} for the human-authored work \emph{because} of the AI flood. The flood and the hunger are part of the same cultural dynamic. + +\textbf{Chris Pratt} publicly rejected a pitch to cast an AI `actor' as the villain in \textit{Mercy} in January 2026: ``I don't think that's a good idea at all.''\footnote{\textit{Variety}, ``Chris Pratt Pitched Having an AI `Actor' Star as the Villain in `Mercy': `I Don't Think That's a Good Idea at All'.'' \url{https://variety.com/2026/film/news/chris-pratt-ai-actor-villain-mercy-amazon-mgm-1236640460/}. \emph{Dream Machine} Issue~16.} + +I do not think any of these positions are static. I think some of them will shift in the next eighteen months, in ways that depend on how the policy environment, the audience response and the tool ecosystem evolve. But I think the \emph{fact} of the positions, written down, in public, on the record, is more important than whether any individual position holds. + +What these refusals do, collectively, is keep open a part of the creative economy that the all-in studios would otherwise be forced to close. They make it possible~-- for the audience, for the working performer, for the next generation of creative-industry workers entering the field~-- to have a viable career path that does not require AI integration as the price of admission. + +In a world without these positions, every working creative would, by default, be a \emph{partial AI operator,} whether they wanted to be or not. With them, the choice remains open. + +That is not a small thing. It is the architecture of the future creative economy being deliberately preserved, by people with the cultural standing and the economic security to preserve it. + +\section*{Position Four: The middle} + +The position I find most interesting is the one almost nobody articulates clearly, because it does not make a good press release. It is the position of studios that \emph{use AI everywhere except where it shows up in the finished work}. + +The clearest version of it is the one \textbf{Aardman} has effectively articulated and that \textbf{Bethesda's} Todd Howard described in \textit{PC Gamer} in December 2025: AI is ``part of Bethesda's toolset for how we build our worlds or check things''~-- but it cannot replace human creative intention.\footnote{\textit{PC Gamer}, ``Todd Howard says AI can't replace human `creative intention,' but it's part of Bethesda's `toolset for how we build our worlds or check things'.'' \url{https://www.pcgamer.com/gaming-industry/todd-howard-says-ai-cant-replace-human-creative-intention-but-its-part-of-bethesdas-toolset-for-how-we-build-our-worlds-or-check-things/}. \emph{Dream Machine} Issue~11.} + +You see the same position in \textbf{Amazon's} \textit{House of David}~-- 350 AI shots, disclosed up front, but every one of them used to augment rather than originate the work. The show's creator Jon Erwin gave \textit{Wired} a metaphor that I have not stopped thinking about: \emph{``You can put a very real camera on a very real actor and direct that actor, direct the camera, and that becomes, in essence, the hand inside a puppet. The puppet itself is this digital world that you create.''}\footnote{\textit{Wired}, ``Amazon's House of David Used Over 350 AI Shots in Season 2. Its Creator Isn't Sorry.'' \url{https://www.wired.com/story/amazons-house-of-david-used-over-350-ai-shots-in-season-2-its-creator-isnt-sorry/}. \emph{Dream Machine} Issue~7.} The hand-inside-the-puppet image is the cleanest articulation I have heard of where the \emph{Position Four} studios are choosing to put their human craft: at the moments of direction and performance, with the AI doing the digital-world infrastructure underneath. You see the same position in the \textit{Battlefield~6} development team's statement, in October 2025, that generative AI had been ``seducing'' but ultimately used only in the earliest stages of the game's development, ``to allow for more time and more space to be creative.''\footnote{\textit{GamesRadar}, ``Battlefield~6 lead calls generative AI `very seducing,' but says it was only used in the game's earliest stages `to allow for more time and more space to be creative'.'' \url{https://www.gamesradar.com/games/battlefield/battlefield-6-lead-calls-generative-ai-very-seducing-but-says-it-was-only-used-in-the-games-earliest-stages-to-allow-for-more-time-and-more-space-to-be-creative/}. \emph{Dream Machine} Issue~3.} + +You see the same position in \textbf{The Witcher~3} and \textbf{Cyberpunk 2077} director's November 2025 framing~-- AI ``can help, but not replace, creatives.''\footnote{\textit{gamesindustry.biz}, ``Witcher~3 and Cyberpunk~2077 director says AI can help, but not replace, creatives.'' \url{https://www.gamesindustry.biz/witcher-3-and-cyberpunk-2077-director-says-ai-can-help-but-not-replace-creatives}. \emph{Dream Machine} Issue~9.} + +You see the same position in the \textbf{Wallace and Gromit creator} Nick Park's December 2025 framing~-- embrace the technology, but be cautious about the values. + +You see the same position, most starkly, in the May 2026 \textbf{Sony} announcement that it was ``going all in on AI for games''~-- \emph{with the specific framing that AI was a force multiplier, not a replacement.} Mocap-to-facial animation in seconds rather than hours. AI integrated into asset generation, QA, engineering and animation pipelines. The goal: \emph{more games, faster.} But Sony's framing, which I have read several times to make sure I am not over-reading it, repeatedly emphasised AI as a tool \emph{inside} the creative work, not as a substitute \emph{for} it.\footnote{\emph{Dream Machine} Issue~29, on Sony's ``all in on AI for games'' announcement.} + +You see the same position, by May 2026, in the \textbf{Cannes} festival press cycle, where the working auteurs on the Croisette had shifted markedly from the prior year's defensive stance to a more cautious \emph{acceptance of inevitability}~-- framed less as enthusiasm than as a refusal to be left out of the next decade's tooling argument.\footnote{\textit{Variety}, ``AI Dominates Cannes Buzz as Filmmakers Grudgingly Accept It.'' \url{https://variety.com/2026/film/festivals/ai-cannes-2026-filmmakers-accept-1236748402/}; \textit{Hollywood Reporter}, ``At Cannes, filmmakers shift towards cautious acceptance of AI's inevitability.'' \url{https://www.hollywoodreporter.com/business/business-news/cannes-2026-ai-acceptance-1236592488/}. \emph{Dream Machine} Issue~30.} \textbf{Peter Jackson}, in a May 2026 interview during the Cannes window, summarised the Position-Four read in a single line that I think will travel further than the Sony announcement: \emph{AI is, in essence, the next wave of special effects.} The director's job is not changed by the SFX wave. The director's job is to know what the film is for, and to deploy whatever tools are now in the box to get it there.\footnote{\textit{Variety}, ``Is AI Basically Like Special Effects? Peter Jackson Seems to Think So.'' \url{https://variety.com/2026/film/news/peter-jackson-ai-special-effects-1236748120/}. \emph{Dream Machine} Issue~30.} \textbf{Take-Two}'s Strauss Zelnick made the same argument from inside the AAA games business in the same week~-- that AI \emph{``datasets by their very nature are backward-looking''} and so cannot, alone, make an \emph{original} hit, but that AI is \emph{``super helpful''} in the production of hits the human team has already conceived.\footnote{\textit{PC Gamer}, ``Take-Two's CEO says AI's not in the business of making hits, `datasets by their very nature are backward looking', but that doesn't mean AI can't be `super helpful'.'' \url{https://www.pcgamer.com/games/take-two-ceo-ai-not-making-hits-backward-looking/}. \textit{Business Insider}, ``The CEO behind Grand Theft Auto says he's pro AI~-- but the technology can't make an original hit.'' \url{https://www.businessinsider.com/take-two-ceo-strauss-zelnick-ai-original-hits-2026-5}. \emph{Dream Machine} Issue~30.} Different industries, different framings, structurally identical position: \emph{tool in the workflow, not author of the work.} + +This middle position~-- \emph{AI in the workflow, not in the work}~-- is, I think, where most of the surviving major studios are going to land in 2030. It is the most defensible commercial position because it captures the productivity upside without giving up the cultural-product specificity that the audience continues, against the slop ceiling, to demand. It is also the most defensible \emph{ethical} position, because it allows the studio to credibly claim~-- and to credibly prove, with disclosure and documentation~-- that the creative work the audience sees was, in its decisive moments, the work of human creators. + +What is at stake, for the studios that get this right, is the next two decades of cultural authority. The studios that adopt aggressively and badly will look like the early-2010s newspapers that switched to clickbait. The studios that refuse entirely will look like the 1980s record companies that refused to release CDs. The studios that thread the needle~-- that adopt the productivity benefits without surrendering the human authorship signal~-- will, in my view, be the studios that the audience actually trusts in 2035. + +\section*{The trap the legacy industries built for themselves} + +There is a deeper strategic risk underneath the four-positions map that I have, until now, deliberately not put on the page. I want to put it on the page, because I think it is the single most important read on the long-term legacy-studio position, and because, in the conversations I have had with senior creative-industry executives over these six months, it is the read they are most uncomfortable hearing. + +The risk is this. + +Across the last fifteen years~-- most aggressively across the last decade~-- Hollywood, commercial music and the AAA games business have, on the available evidence, \emph{systematically optimised themselves for exactly the kind of work AI is now best at producing.} They have built their economic and creative production engines around the mean of the distribution. They are now competing, in the most direct possible sense, against a technology built to produce the mean of the distribution at near-zero marginal cost. + +Let me make the case concretely. + +In \textbf{film and television}, the IP-cycle data is unambiguous. Sequels, prequels, reboots, remakes, spin-offs and franchise instalments accounted for an increasing fraction of the top-grossing US theatrical releases through the 2010s and 2020s; \emph{original} studio films~-- meaning IP not derived from an existing book, comic, game, brand or prior film~-- fell from a majority of major studio output in the late 1990s to a single-digit percentage of wide releases by the mid-2020s, depending on which counting convention you use. The headline form of contemporary tentpole filmmaking, by 2024, was a sequel to a property whose original installment had itself been a sequel. Marvel Cinematic Universe Phase Six; the \textit{Star Wars} sequel-trilogy aftermath; \textit{Avatar} sequels, \textit{Toy Story} sequels, \textit{Frozen} sequels, \textit{Mission: Impossible} sequels, \textit{Fast \& Furious} sequels; \textit{Stranger Things} finales; \textit{House of the Dragon} spin-offs; every 1980s and 1990s IP revisited at least once, most of them more than once. James Cameron's \textit{Hollywood Reporter} observation in 2025 that contemporary studio executives ``don't reach for things that are scary'' was, on the data, a description, not a prediction. + +In \textbf{commercial recorded music}, the structural pattern is the same. The streaming-economy hit structure converged on a remarkably narrow set of parameters across the 2010s: average song length compressed from roughly four minutes in 2000 to roughly three-and-a-half minutes by 2024; choruses landed earlier; intros shortened to keep the algorithmic skip-rate down; major-label A\&R increasingly drove signing decisions by predictive-analytics data rather than developmental A\&R judgment; co-writing teams expanded; the median Top~40 hit, by 2024, was a co-write across three to seven credited songwriters working to formulas that had been tested in advance against streaming-engagement data. The major-label business is, structurally, an \emph{industry that has spent ten years training itself to produce the most predictable possible version of the song.} The Cardiff band from Chapter~\ref{ch:5}~-- whose music was fed to an AI that produced a tracking-style imitator outperforming them on Spotify~-- is the canonical illustration. The AI did to them what the major-label streaming-optimisation operating model had already half-done. It made the next most-likely-good track. The fact that an AI could match the output is, on the available evidence, \emph{because the major-label hit factory was already producing the work AI was about to be able to copy.} + +In \textbf{AAA games}, the standardisation is even more visible. The \emph{Ubisoft-tower-and-checklist} structure~-- open world, viewpoint towers that uncover map regions, scattered icon-driven side quests, levelled enemy zones, crafting trees~-- became, between roughly 2008 and 2022, the default structural template for the AAA action-adventure genre. \textit{Assassin's Creed}, \textit{Far Cry}, \textit{Watch Dogs}, \textit{Ghost Recon}; outside Ubisoft, \textit{Horizon}, \textit{Spider-Man}, \textit{Mad Max}, \textit{Shadow of Mordor}, every Tom-Clancy-derivative, every western-RPG converted to console. The 2024 \textit{gamesindustry.biz} roundtable I referenced in Chapter~\ref{ch:3}~-- in which working AAA designers described the genre as having stagnated into a single repeating structural pattern~-- was a working-developer admission that the AAA industry had, like Hollywood and like the major labels, optimised its production engine around predictable, low-risk, repeat-format output. + +Now consider what AI, as a creative tool in 2025--26, is structurally best at. Agents~-- as I argued in Chapter~\ref{ch:11}~-- produce the \emph{mean of their training distribution} by default. The mean of the training distribution, for a video model trained on contemporary Hollywood tentpoles, is \emph{another contemporary Hollywood tentpole}. The mean of the training distribution, for an audio model trained on the contemporary streaming Top~40, is \emph{another contemporary streaming Top~40 song}. The mean of the training distribution, for a games-development agent trained on the AAA open-world template, is \emph{another AAA open-world template.} + +This is the strategic trap. The legacy industries, by spending fifteen years training themselves to produce the mean of the distribution, have arranged for the segment of the market they dominate to be \emph{exactly the segment AI replicates most cheaply}. The Cardiff band's experience is the cleanest version of this dynamic in microcosm. The macro version is the major-studio business model. The risk to legacy Hollywood, legacy commercial music and the AAA games business is not that AI takes their \emph{premium} segments~-- Cameron's \textit{Avatar} sequels, the highest-end auteur cinema, the genuinely original musical voices, the \textit{Baldur's Gate~3}-class boundary-pushing games. Those segments are, on the evidence of the slop ceiling and the authenticity premium, \emph{more defensible than ever}. The risk is to the \emph{median} output of these industries~-- the franchise instalments, the by-the-numbers chart hits, the AAA action-adventures that read as algorithmically generated even when no algorithm was involved. The median output is exactly where the AI substitution pressure is most direct, and the median output is precisely what the legacy industries have most thoroughly optimised themselves to produce. + +The grandmasters of Chapter~\ref{ch:15}~-- the chess players who have started, in 2026, to deliberately play sub-optimal moves to put their opponents on uncomputed ground~-- are, on this read, the \emph{senior auteurs of legacy Hollywood}. Cameron, del Toro, Soderbergh, Spielberg, Aronofsky, Lyonne, Larian's Sven Vincke, Hooded Horse's leadership~-- the figures profiled in the \emph{Position Three} section of this chapter~-- are, structurally, the people whose competitive advantage is \emph{the move the machine would not have generated}. The grandmasters can take the punch. The middle ranks~-- the franchise journeymen, the streaming-optimised mid-tier filmmakers, the chart-A\&R commercial-pop machine, the AAA studio designing its fifth open-world action-adventure~-- are the ones whose business model the machine is structurally suited to replicate. + +The contrast with the \textbf{new AI-native studios} is sharp, and I want to draw it out carefully because the contrast is, I think, the most underappreciated strategic reality of the period. + +The Position Two studios in this chapter~-- Gossip Goblin, Critterz, Imaginae, Wonder, Asteria, Promise, Obsidian, Chapter41, Kartel, Goldfinch's enGEN3~-- were, by May 2026, accumulating creative production credits at a rate the legacy studios were not matching. \textbf{Gossip Goblin}, the AI filmmaker that I covered in \emph{Dream Machine} Issue~29, is the example I find clearest. It is a studio with no inherited IP, no inherited production pipeline, no inherited audience, no inherited rules about what its films should look like, and no inherited risk-aversion. Its only operating constraint is the one any working creative has: make work the audience wants to watch. \textit{Critterz} (Vertigo + Federation), launched as an AI-assisted animated feature operation in \emph{Dream Machine} Issue~29, operates with the same freedom. \textit{Animaj} (the kids-content AI studio Google's AI Futures Fund partnered with in spring 2026) operates with the same freedom. \textit{Imaginae Studios}~-- Fremantle's AI-native operation~-- has, in \textit{Art Awakens}, committed to a kind of generative collaboration with classical painting IP that no legacy studio has the institutional permission to attempt. + +These studios do not have rules about how a film should be paced, what a song should sound like, what an open-world game should feel like, what a franchise structure should be. They have no quarterly-earnings call about year-on-year tentpole performance. They have no \$200m development sunk cost in a Marvel-style multi-film slate. They have no major-label playlist-pitching infrastructure that demands the song be a certain length and a certain shape. They have, in short, no calcified definition of \emph{what counts as the right move}~-- and so they are, by default, free to play the move the legacy studios cannot. + +The risk to legacy, in other words, is \emph{not symmetrical} with the risk to the AI-native studios. Both are being shaped by the same technology shift. But legacy faces a double squeeze~-- its median product is the part of the market AI is most easily eating, \emph{and} its strategic incentives push it deeper into that part of the market every quarter, \emph{and} its calcified production rules prevent it from doing the thing (the deliberately un-machine-like move) that would protect it. The AI-native studios face only the upside. + +The path out, for the legacy studios that recognise the trap, is roughly what the \emph{Position Three} signatories have intuited: refuse to compete in the median segment; reposition aggressively into the segments where the audience pays a premium for the human signal; treat IP investment as \emph{bets on artist-author voices} rather than as bets on formula. \textit{Baldur's Gate~3}~-- Larian's mid-2020s blockbuster~-- was the inflection-point example: an enormous AAA-grade game built explicitly \emph{against} the Ubisoft-tower template, on a CRPG framework most analysts had written off as a dead genre, and the audience response was the largest commercial success of any new RPG IP of the decade. Larian's January 2026 announcement that the next \textit{Divinity} game would not use generative AI is, on the strategic read, not an anti-technology gesture. It is a \emph{commercial} gesture~-- a public claim that Larian's market position is built on doing the un-machine-like work, and that the studio is going to protect that position from the inside. \textit{Pocketpair's} ``\emph{we don't believe in it}'' statement, \textit{Jagex's} ``\emph{never},'' \textit{Hooded Horse's} ``\emph{cancerous}'' framing, \textit{Aardman's} careful preservation of the stop-motion craft~-- these are not statements of moral piety. They are \emph{competitive positioning} against an algorithm-optimal market that the major-studio system has, structurally, conceded to AI. + +The legacy industries that survive this transition will be the ones that recognise, in the next eighteen months, that the position they spent fifteen years moving into is exactly the position they now need to move \emph{out of}. The audience, the slop ceiling, the authenticity premium and the chess grandmasters' move are all telling them the same thing: \emph{do not produce the work the machine can replicate. Produce the work the machine, by construction, cannot.} The industries that can absorb that re-direction in their commissioning, contracting and greenlighting culture will outlast the transition. The industries that cannot, won't. The new AI-native studios~-- Gossip Goblin and the rest~-- are not the threat to legacy Hollywood. They are, on the structural read, \emph{the proof of what survives}: studios built without the rules that made the legacy industries vulnerable in the first place. + +\section*{What the studios got right} + +I want to close this chapter by saying something that is unfashionable in some of the creative-industry circles I move in. + +The studios~-- for all the headlines about Lionsgate's ``disaster,'' for all the criticism of Disney's OpenAI deal, for all the eye-rolling at Netflix's ``all in'' framing~-- have, in this period, made some genuinely difficult strategic decisions in a genuinely difficult environment, and a meaningful fraction of those decisions have been better than the public discourse credits them for. + +They have committed to disclosure. \textit{House of David}'s 350 AI shots were \emph{disclosed}. Aardman's careful framing was \emph{explicit}. Sony's ``AI as force multiplier'' framing was \emph{spelled out}. None of these companies pretended their AI use didn't exist. None of them adopted the all-too-common platform-economy strategy of \emph{use it and don't tell anyone}. The disclosure norm, where it has taken hold in the studio system, is a public good. + +They have negotiated, in many cases, in good faith with the unions. The SAG-AFTRA contract that emerged from the autumn 2025 negotiations was~-- by historical comparison with other major technology transitions~-- produced quickly, produced through legitimate process, and produced with materially stronger AI protections than any prior contract in the industry's history. + +They have, in significant cases, \emph{resisted} internal pressure to over-adopt AI in ways that would have undermined their cultural product. Most of the studios in Position Three above are not run by Luddites; they are run by people who have done the maths on the slop ceiling and decided that the long-term value of their IP depends on it remaining recognisably human-authored. + +And they have, finally, invested in the infrastructure of the AI-native sector~-- through funding deals, through co-productions, through equity investments~-- in a way that means the AI-native studios are not fighting them so much as building alongside them. The picture, ten years out, is more likely to be of a \emph{mixed ecosystem}~-- legacy studios with hybrid pipelines, AI-native studios with new IP, and a long tail of human-only craft studios serving the highest-value segments of the market~-- than of a single winner-takes-all outcome. + +The studios decided, in these six months, that they were not going to be replaced by AI. They were going to be the \emph{operators} of AI. That decision was~-- for all its compromises~-- probably the right one for the working creatives whose careers depend on the studio system continuing to exist. + +The harder question, which the next chapter starts to address, is what happens to the \emph{toolchain} underneath those studios~-- when the platforms providing the AI are themselves becoming AI-native, and when ``having a tool'' is no longer the right framing for what it means to make creative work in 2026. + +That is what Adobe, NVIDIA, Google and the rest of the platform layer started telling us last autumn, when they began saying out loud that AI was going to be \emph{in everything, everywhere, all at once.} diff --git a/latex/chapters/ch08_worlds_not_pictures.tex b/latex/chapters/ch08_worlds_not_pictures.tex new file mode 100644 index 0000000..39f798a --- /dev/null +++ b/latex/chapters/ch08_worlds_not_pictures.tex @@ -0,0 +1,129 @@ +\chapter{Worlds, Not Pictures}\label{ch:8} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{f} you had asked me, in the autumn of 2025, what the most important AI release of the year was going to be, I would have said something obvious~-- Sora~2, or Veo~3.1, or one of the music models, or one of the editor-class tools like Runway Gen-4.5 or Adobe's new Firefly. Something that turned a prompt into a thing you could put on a screen. + +Six months later, I don't think I would say any of those. + +I think the most important release of the period this book covers was something that almost nobody outside of a relatively small community of practitioners noticed at the time, that produced no viral videos, that did not change the news cycle for a single day, and that I have come, over the course of the winter, to think of as the \emph{actual} future of creative work: the public launch of \textbf{Marble}, by Fei-Fei Li's company \textbf{World Labs}, in November 2025.\footnote{World Labs, ``Bringing Marble to Life.'' \url{https://www.worldlabs.ai/case-studies/bringing-marble-to-life}. \emph{Dream Machine} Issue~7, ``Editor's Pick: Marble by WorldLabs goes on public release,'' 13 November 2025.} + +Marble doesn't make videos. Marble makes worlds. + +I want to spend this chapter on why that distinction is, in my view, the most strategically important one in creative AI right now, and why almost everything else in the toolchain~-- from generative video to AI music to the digital-human work in advertising~-- eventually has to be re-thought in its shadow. + +\section*{What a world model actually is} + +The phrase ``world model'' sounds like a marketing term. It isn't, exactly. It is a category of AI system that researchers have been chasing for the better part of a decade, and that~-- as of late 2025~-- finally started shipping as production-ready software. + +A generative \emph{video} model takes a prompt and produces a sequence of frames. The frames are coherent because the model has learned the statistical regularities of video: things move smoothly, light behaves more or less correctly, faces stay faces. But the output is \emph{flat}. It is a particular sequence of pixels. You cannot navigate it. You cannot move the camera. You cannot pick up the lamp on the table and look at the wall behind it. + +A \emph{world} model takes a prompt~-- or an image, or a video, or a rough 3D layout~-- and produces a \emph{navigable three-dimensional environment.} You can move through it. You can change the camera angle. You can, depending on the model, walk around the table, look at the wall behind the lamp, and find that the wall continues to exist in a consistent way that the model didn't have to generate for you because it understood, structurally, that walls have backs. + +The technical core, in the most common implementation, is \textbf{Gaussian splatting}~-- a representation where a scene is stored as a cloud of millions of tiny semi-transparent ellipsoids, each carrying colour and position information. The whole scene can be rendered in real time from any angle, because the system isn't drawing 2D pixels; it is rendering a structured 3D world. The output, in turn, can be exported as a splat file, as a mesh, or~-- if you want~-- as a flat video.\footnote{For a working primer on Gaussian splatting in the post-Marble era, see \textit{Radiance Fields}, ``World Labs Formally Launches Marble, A Generative World Model.'' \url{https://radiancefields.com/world-labs-formally-launches-marble-a-generative-world-model}.} + +This is the part that took me, even as a working creative technologist, embarrassingly long to fully understand. Video is a \emph{projection} of a world. A world is the more fundamental object. For two and a half years, the public-facing AI conversation has been about generating better projections. The actual capability landscape has been moving, in parallel, towards generating the worlds themselves. + +When the worlds become cheap to generate, the projections~-- the videos, the images, the renders~-- become \emph{outputs of the worlds}, not the primary medium. The whole production stack inverts. + +\section*{Marble, from the inside} + +DreamLab~-- the studio I run in the North West of the UK~-- has been a beta participant in Marble since October 2025, in the months before its public release.\footnote{DreamLab AI Collective, beta participation in Marble, October--November 2025. Referenced in \emph{Dream Machine} Issue~7: ``DreamLab have been part of the beta testing for this over the last few months and it's very neat.''} I want to share what that experience actually felt like, because the \emph{technical} description of a world model and the \emph{practitioner's} experience of using one are different in ways that matter for understanding what is happening to the toolchain. + +Imagine, for the sake of example, that I am working on a client project that needs a scene of a market square at dusk in a Mediterranean town. In the old pipeline~-- which is to say, the pipeline of 2024 and most of 2025~-- that brief would translate into something like the following: + +A concept artist would produce a moodboard. A 3D artist or a virtual-production house would build a CGI version of the square, populated with assets either bought from a marketplace or modelled bespoke. Lighting would be set up in Unreal or Maya. The whole scene would be rendered out as a video plate or used as a backdrop on an LED volume. If any change was required~-- \emph{can we move the camera left a bit, see what's on that side}~-- the rebuild was non-trivial. + +In Marble, the same brief unfolds differently. I type, or paste in a reference image, or upload a quick phone-shot panorama of an actual market square I visited last year. Marble generates a complete, navigable 3D environment of that square. It exists, persistently, as a file on my account. I can move my virtual camera anywhere in it. I can hand it to a director and say \emph{walk through this and tell me where the camera lives.} I can export the result as a Gaussian splat, drop it into Unreal Engine via SuperSplat or one of the other Gaussian-splat editors,\footnote{SuperSplat (PlayCanvas), open-source Gaussian splat editor, regular updates through 2025--26. \emph{Dream Machine} Issue~1: ``PlayCanvas open sources SOG~-- WebP for 3D Gaussian Splatting''; Issues~7 and~11 on SuperSplat~v2 updates.} and use it as the lit backdrop for an LED-volume shoot. I can also, if I just want a plate, render a flat video from a chosen camera move. + +The economic implication is this: the cost of having ``a place''~-- a navigable, lit, persistent environment with depth~-- has dropped, in twelve months, by something between one and two orders of magnitude. The thing that used to require a four-person team and a fortnight now requires a prompt and the time it takes a model to render. + +This is not a marginal improvement to virtual production. It is a \emph{category} change. The bottleneck of virtual production has, for the entire history of the discipline, been the cost and time of building the environment. When that bottleneck goes, what remains is exactly the human craft that the audience is paying for: blocking, performance, direction, lighting design, story. + +In \emph{Dream Machine} Issue~8 of the newsletter, I noted that Sony Pictures had begun using Marble inside its virtual-production pipeline. The number the team quoted publicly was the one that should have made the front page of every trade publication: \emph{40$\times$ faster than the traditional workflow.}\footnote{Sony Pictures' use of Marble in Virtual Production: \url{https://www.linkedin.com/posts/brent-liang_tech-media-launch-ugcPost-7394911181091692546-TyUz}. \emph{Dream Machine} Issue~8.} If you sit inside the legacy economics of a virtual-production house~-- where building a single environment is a six-figure, multi-week proposition~-- that number is not an improvement. It is a \emph{re-platforming} of the discipline. In \emph{Dream Machine} Issue~12, Disney showed off a ``300,000 poses in an instant'' demonstration that was conceptually similar~-- animation built on top of generative spatial infrastructure rather than against it.\footnote{Disney ``300,000 poses in an instant'' livestream, March 2026. \emph{Dream Machine} Issue~23.} In \emph{Dream Machine} Issue~27, Netflix and Eyeline released \textbf{Vista4D}, a system that converts live-action footage into navigable 4D point clouds.\footnote{Netflix + Eyeline, \textit{Vista4D}: 4D point clouds from live-action. \emph{Dream Machine} Issue~27.} The pattern is the same across the studios: a quiet pipeline shift, not a marketing story, that takes the entire ``building the environment'' stage out of the critical path of production. + +\section*{The world-model race} + +Marble was the first commercial product in this category, but it was not the only one. The autumn of 2025 and the spring of 2026 were essentially a foot-race between research labs to ship usable world models, and the pace of releases was so rapid that the \emph{Dream Machine} readers' WhatsApp group routinely had three or four new ones to discuss per week. + +\textbf{Google DeepMind}'s \textbf{Genie~3}, named by \textit{Time} as one of the best inventions of 2025, generated playable 3D worlds at 24 frames per second from text prompts, with consistency held for several minutes~-- and in January 2026 was made publicly available to Google AI Ultra subscribers in the U.S.\ through a prototype web app called Project Genie. At Google I/O 2026, \textbf{Project Genie} was extended with a \textbf{Street View} integration that lets users generate navigable simulations of real-world locations directly from Street View map data, collapsing the gap between \emph{the world that exists} and \emph{the world that can be generated.}\footnote{Google DeepMind, ``Genie~3: A new frontier for world models.'' \url{https://deepmind.google/blog/genie-3-a-new-frontier-for-world-models/}. Project Genie roll-out to AI Ultra subscribers: \url{https://blog.google/innovation-and-ai/models-and-research/google-deepmind/project-genie/}. \emph{Dream Machine} Issue~3 (initial announcement) and Issue~17 (broader availability).} \textbf{Meta} announced \textbf{WorldGen} in November 2025, framed as research that could generate walkable 3D worlds from prompts like \emph{``medieval village town square.''}\footnote{Meta, ``WorldGen~-- text-to-immersive-3D-worlds research update.'' \url{https://www.facebook.com/LifeAtMeta/videos/research-update-worldgen-text-to-immersive-3d-worlds/1879077432692421/}. \emph{Dream Machine} Issues~9 and~11.} \textbf{Tencent} open-sourced \textbf{HY World~1.5}, a real-time world model framework, in December 2025, alongside the \textbf{Hunyuan 3D Studio} which integrated the company's art-grade 3D generative model \textbf{3D-PolyGen~1.5}.\footnote{Tencent, ``HY World~1.5'' announcement: \url{https://x.com/TencentHunyuan/status/2001170499133653006}. \emph{Dream Machine} Issue~12.} \textbf{SpAItial} launched \textbf{ECHO}, a spatial foundation model, in December 2025.\footnote{SpAItial, \textit{ECHO} spatial foundation model. \url{https://www.spaitial.ai/}. \emph{Dream Machine} Issue~12.} Stanford AI Lab and others released \textbf{Wonderzoom} in January 2026, a multi-scale 3D world-generation model that let you ``infinitely zoom into the details'' of a generated environment.\footnote{Stanford AI Lab, \textit{Wonderzoom}: Multi-Scale 3D World Generation. \url{https://wonderzoom.github.io/}. \emph{Dream Machine} Issue~14.} \textbf{OpenArt} launched its own world-generation product, \textbf{Worlds}, in March 2026.\footnote{OpenArt, \textit{Worlds} product launch, March 2026. \emph{Dream Machine} Issue~21.} + +The May 2026 wave was the most aggressive yet. \textbf{NVIDIA} released \textbf{SANA-WM}, a 2.6B-parameter open-source world model natively trained for 60-second video generation with explicit camera control~-- the first open-weight world model at meaningful scale, and a development whose long-term implications for the open-source-AI-tooling argument I make in Chapter~\ref{ch:16} are, in my view, substantial.\footnote{NVIDIA SANA-WM, 2.6B open-source world model with 60-second video generation and camera control, May 2026. \url{https://huggingface.co/collections/nvidia/sana-wm}. \emph{Dream Machine} Issue~30.} \textbf{Odyssey} released \textbf{Starchild-1}, which it described as \emph{``the first ever real-time multimodal world model''}~-- a system that doesn't just generate a world but understands and simulates it.\footnote{Odyssey, ``Introducing Starchild-1, the first real-time multimodal world model.'' \url{https://odyssey.ml/introducing-starchild-1}. \emph{Dream Machine} Issue~30.} \textbf{Apple} published \textbf{Headsup}, a large-scale, high-quality 3D Gaussian-head reconstruction pipeline built from multi-view captures of the kind a consumer iPhone can already produce.\footnote{Apple Machine Learning Research, ``Headsup: a large-scale high-quality 3D Gaussian head reconstruction from multi-view captures.'' \url{https://machinelearning.apple.com/research/apple-headsup-3d-gaussian-head}. \emph{Dream Machine} Issue~30.} At the consumer end of the same wave, \textbf{WorldLens VR} rolled out an AI-powered Quest feature that adds subtle 3D depth to ordinary Google Street View environments, making the existing planetary-scale street-imagery dataset navigable in VR.\footnote{WorldLens VR, ``AI-powered 3D depth for Google Street View on Quest.'' \url{https://www.uploadvr.com/worldlens-vr-quest-street-view-3d-depth/}. \emph{Dream Machine} Issue~30.} + +The most ambitious of all of these~-- and the one I think hints most clearly at where the category is going~-- was \textbf{Luma AI}'s \textbf{UNI-1}, launched in March 2026 with the framing: \emph{``When worlds become instant, the race shifts to better thinking.''}\footnote{Luma AI, \textit{UNI-1} launch, March 2026. \emph{Dream Machine} Issue~22, ``Editor's Pick: When worlds become instant, the race shifts to better thinking.''} UNI-1 was the first commercial release I am aware of that \emph{combined} world-model generation with what Luma called ``reasoning''~-- that is, the model didn't just generate a scene, it could plan, modify and iterate on the scene as a coherent agent. The pitch was that you would no longer have a fragmented pipeline of prompt $\rightarrow$ image $\rightarrow$ video $\rightarrow$ iterate; you would have a single unified creative system that thought before it created. + +UNI-1 is, in my view, the most important \emph{category} announcement of the spring of 2026, even if the product itself is still rough at the edges. It is the announcement that says: world models are not the end state. They are the \emph{substrate} on which something else~-- reasoning-led generative creativity~-- gets built. + +By \textbf{May 2026}, you could find world-model capabilities embedded in the consumer tools as well. \textbf{CapCut}, the consumer-grade video editing app, integrated ByteDance's \textit{Seedance~2.0} via the \textit{Dreamina} product, giving phone-users the ability to generate spatial scenes alongside flat video.\footnote{ByteDance Seedance~2.0 in CapCut/Dreamina, March 2026. \emph{Dream Machine} Issue~22.} \textbf{Spark~2.0}, an open-source Gaussian-splat streaming framework, brought 100-million-splat scenes to web browsers at interactive frame rates.\footnote{\textit{Spark~2.0}, open-source Gaussian-splat streaming framework, April 2026. \emph{Dream Machine} Issue~25.} \textbf{Apple} confirmed in October 2025 that its Personas feature on Vision Pro and other devices was powered by Gaussian splatting under the hood, making this~-- for the millions of Apple device owners who had used the feature without knowing what it was~-- the most-deployed Gaussian-splat technology in consumer hardware.\footnote{Radiance Fields, ``Apple Confirms that it's Gaussian Splatting that powers their personas.'' \url{https://radiancefields.com/apple-confirms-personas-use-gaussian-splatting}. \emph{Dream Machine} Issue~5.} + +The category, in eight months, went from a research demo to a consumer feature. + +\section*{The games industry, again} + +If world models are infrastructure, the industry that has been waiting for that infrastructure the longest is games. + +The 2024 conversation in games about generative AI was, in significant part, about \emph{flat assets}~-- concept art, textures, dialogue, music~-- and it was the conversation that produced most of the backlash. \textit{Call of Duty: Black Ops~7}'s loading screens. \textit{Anno~117}'s placeholder art ``slipping through'' the review process. \textit{Fortnite}'s Chapter~8 controversy.\footnote{\textit{Video Games Chronicle}, ```It honestly sucks': Fans think Call of Duty: Black Ops~7 is filled with generative AI art.'' \url{https://www.videogameschronicle.com/news/it-honestly-sucks-fans-think-call-of-duty-black-ops-7-is-filled-with-generative-ai-art/}. \textit{Video Games Chronicle}, ``Ubisoft says AI-generated art in Anno~117 was a placeholder which `slipped through our review process'.'' \url{https://www.videogameschronicle.com/news/ubisoft-says-ai-generated-art-in-anno-117-was-a-placeholder-which-slipped-through-our-review-process/}. \textit{Polygon}, ``Fortnite chapter~7 kicks off new controversy over AI art.'' \url{https://www.polygon.com/fortnite-chapter-7-season-1-generative-ai-art-epic-games/}. \emph{Dream Machine} Issues~8 and~10.} The audience response, in every case, was visceral, and the studios learned, the hard way, that AI-generated 2D assets dropped into established franchises read to fans as a cost-cutting move, not a creative one. + +The 2025--26 conversation in games is different in kind, because the AI is now being aimed at the \emph{substrate} of the game~-- the worlds, the systems, the NPCs, the procedural infrastructure~-- and the audience response is, so far, much more nuanced. + +\textbf{NVIDIA}, in partnership with Stanford, released \textbf{NitroGen} in January 2026~-- a ``plays-any-game'' AI trained on 40,000 hours of gameplay across more than 1,000 games. The model wasn't being pitched as a way to \emph{replace} games; it was being pitched as the foundation layer for a new generation of AI-aware game agents and procedural systems.\footnote{NVIDIA + Stanford, \textit{NitroGen}. \url{https://nitrogen.minedojo.org/}. \emph{Dream Machine} Issue~13.} \textbf{Google DeepMind}'s \textbf{SIMA~2}, released in November 2025, was an agent that could play, reason and learn alongside humans in virtual 3D environments.\footnote{DeepMind, ``SIMA~2: An Agent that Plays, Reasons, and Learns With You in Virtual 3D Worlds.'' \url{https://deepmind.google/blog/sima-2-an-agent-that-plays-reasons-and-learns-with-you-in-virtual-3d-worlds/}. \emph{Dream Machine} Issue~8.} \textbf{Ubisoft} open-sourced its \textbf{CHORD} model in December 2025, for end-to-end PBR material generation, and ComfyUI nodes built on top of it within the same week.\footnote{ComfyUI Blog, ``Ubisoft La Forge Open-Sources the CHORD Model and ComfyUI Nodes for End-to-End PBR Material Generation.'' \url{https://blog.comfy.org/p/ubisoft-open-sources-the-chord-model}. \emph{Dream Machine} Issue~11.} \textbf{Ubisoft's Teammates}~-- a voice AI tech demo first shown in November 2025~-- promised a step-change in how NPCs would behave in next-generation titles. The team lead's hands-on framing, given to \textit{Video Games Chronicle}, is the one I keep returning to: \emph{``It's a tool first. We've been working on it for more than two years now, and our conclusion is that it's a super cool tool, but it's still a tool.''}\footnote{\textit{Video Games Chronicle}, ``The future of gaming, or `just a tool'? Hands-on with Teammates, Ubisoft's ambitious voice AI tech demo.'' \url{https://www.videogameschronicle.com/features/the-future-of-gaming-or-just-a-tool-hands-on-with-teammates-ubisofts-ambitious-voice-ai-tech-demo/}. \emph{Dream Machine} Issue~9.} \emph{Still a tool.} The whole AI-in-games debate, compressed into four words by the people inside Ubisoft who are actually building the thing. + +The most interesting single release of the spring of 2026 was \textbf{YouTube's Playables Builder}, a closed-beta product launched in December 2025 that lets users create games with short text, video or image prompts, built on Gemini~3.\footnote{YouTube Playables Builder, closed-beta announcement: \url{https://www.youtube.com/playablesbuilder/}. \emph{Dream Machine} Issue~12.} The framing, when YouTube's product team described it publicly, was that \emph{every YouTube creator} should have the ability to ship a playable game as easily as they currently ship a video. Within months, \textbf{Unity} announced an ``AI Open Beta''~-- an in-editor AI suite that brought the same logic to the professional games-development pipeline.\footnote{Unity AI Open Beta, in-editor AI suite, May 2026. \emph{Dream Machine} Issue~28.} + +Where this lands, in 2027 and 2028, is the question I find the most strategically charged in the whole industry. If creating a playable, navigable world becomes a thing a YouTube creator can do in an afternoon, the boundary between \emph{games} and \emph{video}~-- which has been collapsing slowly for fifteen years, through platforms like Roblox and Fortnite and the proliferation of interactive content on social platforms~-- collapses fully. The next generation of creators will not think in terms of \emph{making a video} or \emph{making a game.} They will think in terms of \emph{making a thing}, and the thing will, by default, be navigable. + +\section*{What this means for film} + +I want to come back to film for a moment, because I think the consequences of world models for the film industry are bigger than the consequences for any other sector, and the least understood. + +For the entire history of cinema, the discipline has been organised around a fundamental scarcity: \emph{the cost of building the location.} Even when the location was real~-- a city street, a forest, a beach~-- capturing it required a crew, a lighting team, transport, permits, weather contingencies. When it wasn't real~-- when it was a sound stage, or a digital matte painting, or a CGI environment~-- the cost was, if anything, higher. + +The entire industrial structure of cinema, from the location department to the gaffer's crew to the virtual-production house, exists because \emph{the place is expensive to make.} + +When the place becomes cheap~-- when a Marble-generated environment, exported as a splat, dropped into Unreal, lit interactively, can substitute for a \$200,000-per-day exterior shoot at almost any quality bar a hero shot~-- the industrial structure that organised cinema starts to look like the manuscript-copying scriptorium did in 1450. The thing that was the bottleneck is no longer the bottleneck. + +What replaces it? My best guess, six months into the transition, is \emph{taste in places.} If everyone can generate a market square, the value of \emph{choosing the right market square}~-- the one with the texture, the light, the cultural specificity, the lived-in-ness that makes a scene feel like it belongs to a real human story~-- becomes the new scarce skill. The location scout becomes the \emph{world curator.} The production designer becomes the \emph{spatial director.} The cinematographer becomes~-- even more than they already are~-- the person whose job is to find the \emph{one camera move} in a near-infinite navigable space that tells the story. + +This is, I think, an upgrade for the craft, not a downgrade. It moves the human contribution to the part of the work that humans actually do well~-- \emph{judgement about what matters in a place}~-- and offloads the part of the work that has been a manufacturing problem for a hundred years. + +\section*{The risk} + +I want to flag the risk too, because I am trying~-- and I am sure I will not always succeed~-- to be honest about the downsides. + +If world models become the substrate of creative work, the \emph{training data} for those models becomes a question of enormous cultural consequence. A world model trained on, say, the visual archive of Hollywood will generate scenes that look like Hollywood. A world model trained on the photographic archive of Mumbai will generate scenes that look like Mumbai. The \emph{aesthetic monoculture} that the early image-generation models produced~-- that vaguely Pixar-flavoured, vaguely Marvel-flavoured, vaguely YouTube-thumbnail look that you can recognise in a thousand 2024 AI outputs at a glance~-- is at risk of being amplified, not reduced, when the medium moves from images to navigable spaces. + +The companies that own the largest world-model training datasets in 2030 will, in a real sense, own the visual language of the next generation of cinema, games and immersive media. If those datasets are biased~-- towards English, towards the global North, towards Hollywood production design, towards the architectural and cultural visual vocabulary of a small number of wealthy cities~-- the entire interior life of the next generation of creative work will reflect those biases. + +This is not a hypothetical. We are seeing it now. The publicly available world models, in mid-2026, do a startlingly good job of generating ``Mediterranean market square'' and ``American suburb'' and ``Tokyo street at night.'' They do a startlingly \emph{thin} job of generating, say, ``Lagos street at dusk during the rains'' or ``a contemporary Indigenous Australian community space'' or ``a Manchester terraced street in winter with the sodium lights coming on.'' The bias is in the training, and the training is in the assets, and the assets were in the corpus, and the corpus was English-internet-skewed. + +If we want the next creative economy to look like the world rather than like the AI companies' biggest source datasets, the dataset question has to be a \emph{first-order} design problem. Korin AI's late-2025 launch~-- ``trained with African datasets, built by Africans''~-- is the kind of intervention that is going to have to multiply.\footnote{Korin AI, ``trained with African datasets, built by Africans,'' May 2026. \emph{Dream Machine} Issue~27.} So is the African Tech / India / Singapore-led wave of culturally-specific AI cinema that the trade press started covering in Issues~20 through~27. Diversity in training datasets, for the world-model era, is not a content-moderation question. It is a \emph{cultural infrastructure} question. + +\section*{Six craft questions for the world-model era} + +Before I make the big claim, I want to put six craft questions on the page that working creatives~-- directors, designers, art directors, cinematographers, sound designers, level designers~-- will, by my estimate, be wrestling with for the rest of the decade. They are the world-model-era equivalents of the craft questions the \emph{cinematographic} era took fifty years to develop a vocabulary for (where do you put the camera, how do you light the scene, how does the cut work, how does the sound do its work). The world-model era has, in 2026, no settled vocabulary for any of them. The vocabulary will be built by the working creatives who notice the question first. + +\textbf{One. Where does the audience stand?} The most-overlooked craft question of the navigable-space era. A film positions the camera; the camera positions the audience. A world model produces a \emph{navigable space}; the question of where the audience \emph{enters} the space, where they are \emph{invited} to stand, what they are \emph{encouraged} to look at, is no longer fixed by the cinematographer. It is fixed~-- if it is fixed at all~-- by the \emph{narrative scaffolding} the orchestrator builds around the navigable space. Marble's October-2025 update added explicit \emph{suggested-camera-pose} primitives for exactly this reason. The craft question is which of those poses to specify and which to leave to the audience. + +\textbf{Two. How does the cut work in a navigable scene?} The film cut depends on the audience being in a fixed position; the editor moves the camera between fixed positions in a way that the audience's eye follows. The navigable scene has, by default, no cut. The audience moves through it continuously. The craft question~-- for working directors and editors~-- is when to \emph{break} the continuity, how to do so in a way the audience reads as deliberate rather than as a technical glitch, and what new grammar of transitions a navigable medium permits. Some early experiments in 2025--26 have used \emph{spatial discontinuities} (an audience walks through a door and emerges in a different space) and \emph{temporal discontinuities} (the same space at different times) as cuts. None of these has yet stabilised into a shared grammar. + +\textbf{Three. How does performance survive the medium?} A film performance is captured by a camera at a fixed angle and pace. A world-model performance~-- a synthetic actor performing inside a navigable scene~-- has to be authored such that the performance \emph{works} from every angle and every speed at which the audience might encounter it. This is, for working performers and motion-capture supervisors, an entirely new craft challenge. The film-era cliché of the actor ``playing to the camera'' is, in the world-model era, replaced by \emph{playing to the spatial neighbourhood}~-- knowing that the audience may be six feet away, may be inside the actor's eyeline, may be behind the actor's shoulder, may be looking at the actor from above. Volumetric capture (Vista4D's live-action 4D reconstruction, NVIDIA's D-Rex digital-human pipeline) is the technical answer. The \emph{performance} answer~-- what acting \emph{means} in a medium where there is no fourth wall~-- has not been worked out. + +\textbf{Four. What does sound design do in a navigable scene?} A film sound mix is, for the most part, a fixed track timed to the picture cut. A navigable-scene sound mix has to \emph{follow the audience}. Spatial-audio tooling (the SonicLab SPATAI pipeline, Dolby Atmos for VR, the various Meta-and-Apple immersive-audio platforms) is the technical answer. The craft question is, again, what \emph{good} spatial sound design looks like in a medium where the audience-author relationship has changed. + +\textbf{Five. What is the \emph{running-time} of a navigable scene?} A film has a fixed running time. A navigable scene does not. The audience could leave after thirty seconds or stay for two hours. The craft question for the working director is how to design the experience so that \emph{both} extremes produce a satisfying piece of work. Games have, for fifty years, been grappling with this question~-- the \textit{Dark Souls} answer (every player gets a different running time depending on skill and exploration) is different from the \textit{Outer Wilds} answer (the running time is gated by narrative discovery) is different from the \textit{Telltale Games} answer (the running time is broadly fixed across players). World-model cinema, in 2026, has not yet settled on its equivalent. + +\textbf{Six. What is the \emph{single best moment} of a navigable scene?} Film has scenes~-- discrete units of dramatic action with a recognisable shape, a recognisable peak, a recognisable end. A navigable scene, by default, does not. The craft question for the working director is whether to \emph{design} the navigable scene around a single peak moment (which the audience may or may not reach) or to design it as a \emph{texture} (which the audience experiences at whatever density their navigation produces). The peak-moment design pulls the medium back toward film conventions; the texture design pushes it toward something more like architecture or landscape design. Different working directors will, on the historical pattern, settle on different answers. The grammar will, over a decade, stabilise into a working vocabulary the way the cinematic-cut grammar stabilised between 1903 and 1925. + +The six questions are not, in 2026, \emph{theoretical} problems. They are the questions the working spatial-cinema teams I have talked to~-- the Wonderzoom group at Stanford, the World Labs developer cohort, the early adopters at Sony Pictures and Eyeline~-- are wrestling with on Wednesday afternoons. They are also, on the historical pattern of Chapter~\ref{ch:2}, the questions whose answers will define what working creatives in the next decade are \emph{paid} to do. The directors and designers who develop a working vocabulary for them first will, on the available evidence, become the named \emph{Walter Murch}s of the spatial-cinema era. The ones who wait for the vocabulary to settle will, in retrospect, look like the editors who waited too long to learn Avid. + +\section*{The big claim} + +Let me make the big claim, and then move on. + +I think~-- and this is the most non-obvious bet in this book~-- that the \textbf{world model is the medium of the next twenty years of creative work}, in the same way that the \textbf{moving image} was the medium of the twentieth century and the \textbf{interactive screen} was the medium of the first quarter of the twenty-first. + +I think people who are working in flat-video, flat-image, flat-audio formats in 2030 will increasingly be working in a \emph{legacy} format~-- still alive, still culturally valuable, still where the highest-end of the craft lives, the way live theatre or vinyl-record production still lives~-- while the \emph{dominant} mode of creative work will be the production, curation, performance and distribution of navigable spaces. + +I think the studios, platforms and tool companies that are quietly investing in world models now~-- World Labs, DeepMind, Meta, NVIDIA, Tencent, Luma, Apple~-- will be the ones that set the rails for the next two decades. + +I think the audience, having developed the antibodies described in Chapter~\ref{ch:5} to slop-grade flat AI content, will eventually develop a parallel set of tastes for \emph{navigable} content~-- and that the question of what makes a \emph{good} AI world (rather than a \emph{good} AI video) will be the central craft question of the late 2020s. + +And I think~-- most importantly for the next chapter~-- that the toolchain to make all of this is being built, right now, by a small number of platform companies who have started saying out loud that AI is going to be \emph{in everything, everywhere, all at once}~-- and who are, while you are reading this paragraph, designing the rails on which the next creative economy will run. diff --git a/latex/chapters/ch09_ai_in_everything.tex b/latex/chapters/ch09_ai_in_everything.tex new file mode 100644 index 0000000..fa4919c --- /dev/null +++ b/latex/chapters/ch09_ai_in_everything.tex @@ -0,0 +1,169 @@ +\chapter{AI in Everything, Everywhere, All at Once}\label{ch:9} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{n} late October 2025, at Adobe MAX, the company that has made the software almost everyone in the creative industries uses every day~-- Photoshop, Illustrator, Premiere, After Effects, InDesign~-- decided that the year-old marketing line \emph{``AI is a feature in our tools''} had outlived its usefulness, and replaced it with a more honest one. + +The new line was: \textbf{``AI in everything, everywhere, all at once.''}\footnote{\textit{Creative Boom}, ``Adobe is putting AI in everything everywhere all at once.'' \url{https://www.creativeboom.com/news/adobe-is-putting-ai-in-everything-everywhere-all-at-once/}. \emph{Dream Machine} Issue~5, ``Editor's Pick,'' 31 October 2025.} + +The reason I want to spend a chapter on that phrase is not because I love a slogan. The reason I want to spend a chapter on it is that I think it is, more than any other single piece of corporate positioning from the period this book covers, \emph{literally} true. AI is in everything now. It is in every layer of the creative software stack. And the implications of that for working creatives~-- for the way we are trained, the way we are paid, the way we work with each other~-- are not yet, in the spring of 2026, fully understood. + +This chapter is about the platform layer. About the companies that make the tools that the rest of the creative industries use to make the work. About how those companies have, in the past eight months, accepted that their business is no longer making \emph{tools} but making \emph{agents,} and about what that means for the rest of us. + +\section*{The Adobe MAX week} + +The Adobe MAX 2025 keynote~-- held in mid-October in Los Angeles, the week after OpenAI's DevDay, two weeks after Tilly Norwood~-- was unusual, by Adobe's standards, in how much it tried to land at once. + +The headline products were Firefly Foundry, a service for companies to train their own custom generative models on their own visual identity;\footnote{Adobe, ``Adobe MAX 2025: Firefly Foundry.'' \url{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly-foundry}.} Firefly Image Model~5, the latest generation of the image generator that has, since 2023, been Adobe's primary public answer to Midjourney and Stable Diffusion;\footnote{Adobe, ``Adobe MAX 2025: Firefly.'' \url{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly}.} and an AI Assistant built directly into Adobe Express, the company's lower-barrier consumer creative tool.\footnote{Adobe, ``Adobe MAX 2025: Express AI Assistant.'' \url{https://news.adobe.com/news/2025/10/adobe-max-2025-express-ai-assistant}.} + +Underneath the headlines was a much longer list of ``Project'' announcements~-- Adobe's research-preview format, the things that may or may not ship but that signal what the company is investing in. The list, looked at as a whole, is what convinced me, sitting at my desk in the North West watching the live stream, that something larger than a product launch was happening:\footnote{\textit{Wired}, ``Adobe's `Corrective AI' Can Change the Emotions of a Voice-Over'' and accompanying Adobe Sneaks 2025 coverage. \url{https://www.wired.com/story/adobe-max-sneaks-2025-corrective-ai/}. Project list compiled from MAX keynote and \emph{Dream Machine} Issue~5 coverage.} + +\begin{description} +\item[\textbf{Project Scene It}] image-to-3D and 3D-to-image technologies, with reference-image tagging for object preservation in 3D space. + +\item[\textbf{Project Surface Swap}] AI-powered material recognition, letting designers swap textures while preserving lighting, shading and perspective. + +\item[\textbf{Project Turn Style}] editing 2D objects as if they were 3D. + +\item[\textbf{Project Trace Erase}] removing objects \emph{and} their shadows, reflections and environmental distortions in one operation. + +\item[\textbf{Project New Depths}] editing depth in an image as easily as adjusting brightness. + +\item[\textbf{Project Frame Forward}] applying changes across entire videos based on one annotated frame and a text prompt~-- ``the precision of photo editing in video workflows.'' + +\item[\textbf{Project Motion Map}] bringing static vector graphics to life automatically. + +\item[\textbf{Project Sound Stager}] analysing a video's visuals, pacing and emotional tone, and automatically generating layered soundscapes. + +\item[\textbf{Project Clean Take}] AI correction of mispronunciations, voice isolation, noise removal and delivery refinement. + +\item[\textbf{Project Graph}] a node-based workflow editor, conceptually similar to ComfyUI, for chaining Adobe's tools and models into custom pipelines. +\end{description} + +There is, in that list of ten projects, \emph{every} layer of the post-production stack~-- image, video, 3D, audio, layout, workflow~-- being re-imagined as a generative or agentic operation. Not a tool with an AI feature stapled on. A \emph{generative-first reimagining of the operation itself.} + +The Adobe MAX week was, to put it plainly, Adobe's announcement that it was rebuilding its product from the inside. + +\section*{What ``AI in everything'' actually means} + +The reason I want to be careful with the Adobe-MAX framing is that, six months on, you can see how literally the company has executed against it. + +In December 2025, Adobe announced that Photoshop, Express and Acrobat editing would be available \emph{inside} ChatGPT~-- meaning the creative output was no longer happening inside Adobe's interface, but inside an AI agent's.\footnote{\textit{PYMNTS}, ``Adobe Lets Users Design and Edit Using ChatGPT.'' \url{https://www.pymnts.com/artificial-intelligence-2/2025/adobe-lets-users-design-and-edit-using-chatgpt/}. Adobe blog: ``Edit images, designs, and PDFs right inside ChatGPT.'' \url{https://blog.adobe.com/en/publish/2025/12/10/edit-photoshop-chatgpt}. \emph{Dream Machine} Issue~12.} In January 2026, the Premiere Object Mask tool~-- an AI-driven masking feature that automated one of the most laborious tasks in video editing~-- quietly became available to Premiere users.\footnote{Adobe Premiere Object Mask tool: \url{https://www.linkedin.com/posts/robdewinter_ok-this-is-going-to-save-a-lot-of-time-in-ugcPost-7421617551690063872-yKmB}. \emph{Dream Machine} Issue~16.} In late January, at Sundance, Adobe launched the \emph{Adobe Film \& TV Fund} and \emph{Ignite Day}, with explicit support for filmmakers integrating AI into their workflows.\footnote{Adobe blog, ``Sundance Film Festival 2026: Creativity, Community \& Power of Storytelling.'' \url{https://blog.adobe.com/en/publish/2026/01/20/sundance-film-festival-2026-creativity-community-power-storytelling}. \emph{Dream Machine} Issue~16.} In April 2026, at the \textbf{Adobe Summit}, the company introduced its \textbf{CX Enterprise} platform alongside NVIDIA~-- a stack of AI agents embedded across the entire content lifecycle from brief to delivery~-- under the framing ``agentic creative intelligence is now.''\footnote{Adobe Summit 2026, ``agentic creative intelligence'' keynote. \emph{Dream Machine} Issue~26.} + +The trajectory, in one sentence: Adobe in 2024 was a \emph{creative tool company.} Adobe in 2026 is an \emph{AI-agent platform company} that happens to also still ship Photoshop. + +If you are wondering whether this transition has been smooth: it has not. The reception of the Adobe AI announcements among working creatives has been, in my own circles and the readers' WhatsApp group the \emph{Dream Machine} community runs, sharply ambivalent. There is real appreciation for the productivity gains. There is real anxiety about the implications for craft, for licensing, for control, for the trajectory of the company's relationship with the creators who pay for it. + +What no working creative I know thinks is that this transition is reversible. Once Photoshop has an AI assistant baked in, once Premiere has Object Mask, once After Effects has the AI-powered animation tools that landed in November 2025,\footnote{After Effects AI animation features through late 2025: \emph{Dream Machine} Issue~9, ``AI video is finally animatable inside After Effects.'' \url{https://www.linkedin.com/posts/thisisdoug_ai-aivideo-animation-ugcPost-7399512745924067330-Aldk}.} the \emph{next} version of every Adobe product is going to have \emph{more} of this, not less. Adobe's \emph{competitors} are, if anything, going faster. If Adobe slows down, somebody else lands the punch. + +This is~-- I think this is the part that working creatives have to understand and internalise~-- \emph{the new physics of the toolchain.} AI is not a feature that one tool company decided to ship. It is a structural property of the toolchain itself in 2026, and the question for anyone using that toolchain is not whether to integrate AI but \emph{how to integrate it deliberately,} with eyes open, on terms that preserve the human craft underneath. + +\section*{The platform alliance} + +Adobe is not~-- and this is the more important observation~-- the only company doing this. + +In March 2026, \emph{Dream Machine} Issue~21 led with what I have called, in talks since, the most consequential business announcement of the year: \textbf{Adobe + NVIDIA} entered a strategic partnership that explicitly framed creative AI as \emph{enterprise infrastructure} rather than viral consumer tooling.\footnote{\emph{Dream Machine} Issue~21, ``Editor's Pick: Adobe and NVIDIA Just Raised the Stakes for Creative AI,'' 19 March 2026.} The partnership covered next-generation Firefly models, agentic creative-and-marketing workflows, and production-pipeline integration. The language was telling: \emph{precision and control} for creativity and marketing pipelines, alongside content, campaign and production speed. + +The reason this is consequential~-- beyond the size of the two companies involved~-- is that it signals the \emph{maturation} of the market. Adobe + NVIDIA is not a race-to-the-cool-demo deal. It is a \emph{race-to-the-procurement-line} deal. The two companies are betting, jointly, that the next era of creative AI is going to be won by whoever ships the most reliable, most controllable, most legally-defensible production-grade tooling to the enterprise creative buyers~-- the studios, the agencies, the broadcasters, the brand teams. + +The same week, \textbf{Google} and \textbf{NVIDIA} announced a parallel deal for cloud-based generative-AI infrastructure aimed at the same enterprise market.\footnote{NVIDIA + Google Cloud creative-AI infrastructure deal, March 2026. \emph{Dream Machine} Issue~21.} \textbf{Hugging Face} and \textbf{Google Cloud} announced a partnership in November 2025 covering open-source agentic development.\footnote{Hugging Face and Google Cloud partnership announcement: \url{https://www.linkedin.com/posts/julienchaumond_i-am-super-excited-to-announce-that-hugging-activity-7396177403972276225-CuMM}. \emph{Dream Machine} Issue~8.} \textbf{Meta} and \textbf{Hugging Face} launched \textbf{OpenEnv} in October 2025 to advance open-source agentic development.\footnote{\textit{EdTech Innovation Hub}, ``Meta and Hugging Face launch OpenEnv to advance open-source agentic development.'' \url{https://www.edtechinnovationhub.com/news/meta-and-hugging-face-launch-openenv-to-advance-open-source-agentic-development}. \emph{Dream Machine} Issue~5.} \textbf{Anthropic} signed a corporate-patronage deal with the \textbf{Blender Foundation} in May 2026.\footnote{Anthropic / Blender Foundation patronage, May 2026. \emph{Dream Machine} Issue~27.} \textbf{Anthropic} also acquired into the \textbf{Slack} workplace-tooling ecosystem with Claude Apps in January 2026,\footnote{TechCrunch, ``Anthropic launches interactive Claude apps, including Slack and other workplace tools.'' \url{https://techcrunch.com/2026/01/26/anthropic-launches-interactive-claude-apps-including-slack-and-other-workplace-tools/}. \emph{Dream Machine} Issue~16.} and reached an ad-sales partnership with \textbf{Spotify} to put music recommendations inside Claude.\footnote{Spotify--Anthropic integration, May 2026. \emph{Dream Machine} Issue~27.} In May 2026 \textbf{Splice} signed a ``Responsible AI'' deal with \textbf{ElevenLabs} covering sample-library training and consented voice synthesis;\footnote{\textit{Music Business Worldwide}, ``Splice inks `Responsible AI' deal with ElevenLabs.'' \url{https://www.musicbusinessworldwide.com/splice-elevenlabs-responsible-ai-deal/}. \emph{Dream Machine} Issue~30.} \textbf{Netflix} announced an agentic ad-tools roadmap whose internal framing~-- \emph{``agentic AIs talking to each other''}~-- was an unusually candid description of where the advertising-orchestration layer is heading;\footnote{\textit{Adweek}, ``Netflix ad tools could see `agentic AIs talking to each other'.'' \url{https://www.adweek.com/media/netflix-ad-tools-agentic-ais-talking-to-each-other/}. \emph{Dream Machine} Issue~30.} and the AI-coworker startup \textbf{Viktor} raised \$75M to embed an agentic colleague directly into Slack and Teams,\footnote{\textit{Fortune}, ``AI startup Viktor raises \$75 million to put a virtual `coworker' in Slack and Teams.'' \url{https://fortune.com/2026/05/19/ai-startup-viktor-75-million-virtual-coworker-slack-teams/}. \emph{Dream Machine} Issue~30.} reinforcing the pattern that the platform-layer agents are landing where the working creative already lives. + +The advertising holding companies were moving at the same pace. \textbf{WPP} signed a \$400m partnership with Google in October 2025.\footnote{\textit{MarTech Series}, ``WPP continues AI overhaul with \$400-million Google partnership.'' \url{https://martechseries.com/predictive-ai/ai-platforms-machine-learning/google-and-spotify-alum-launch-epiminds-with-6-6m-to-build-marketing-teams-for-the-ai-era/}. \emph{Dream Machine} Issue~3.} \textbf{WPP Open Pro}, a new edition of the agency's AI marketing platform, launched the same month with a framing that should be read carefully by anyone working in adland: \emph{``While some companies hide their AI behind service teams or focus on just one part of the journey, WPP Open Pro is an integrated solution for campaign implementation, built to deliver outcomes, not just assets.''}\footnote{\textit{Campaign Brief}, ``WPP launches AI-powered marketing platform WPP Open Pro.'' \url{https://campaignbrief.com/wpp-launches-ai-powered-marketing-platform-wpp-open-pro/}. \emph{Dream Machine} Issue~5.} \emph{Outcomes, not just assets.} That is the position of a holding company that has decided AI is not a feature~-- it is the entire reason a brand should buy from them in 2026. \textbf{WPP} then expanded its AI capabilities through a partnership with \textbf{Sightly} in November 2025.\footnote{\textit{Digiday}, ``WPP expands AI capabilities to boost brand performance with Sightly partnership.'' \url{https://digiday.com/media-buying/agencies-continue-to-expand-ai-capabilities-to-boost-brand-performance/}. \emph{Dream Machine} Issue~6.} By April 2026, WPP was using Google Earth's AI tools to map consumer journeys at scale.\footnote{WPP and Google Earth AI consumer-journey project, April 2026. \emph{Dream Machine} Issue~27.} + +The pattern is unmistakable. The platform layer~-- the toolmakers, the infrastructure companies, the agencies, the cloud providers~-- has been quietly consolidating around a small number of strategic alliances that, taken together, are deciding the \emph{rails} on which creative work will run for the next decade. + +If you are a working creative reading this, you are probably already running some part of your workflow on rails laid by one of these alliances. By 2028, you will, almost certainly, be running \emph{most} of your workflow on those rails~-- or on a deliberate, principled alternative that has chosen to opt out. + +\section*{Google I/O 2026: the second platform-layer moment} + +If Adobe MAX 2025 was the platform-layer announcement of the first half of this book, \textbf{Google I/O 2026}~-- held in the week this book went to press~-- was the announcement that closed it. The two events bookend the eight-month window the manuscript covers, and the symmetry of their framings is, on the platform-economics read, instructive. + +The headline announcements were \textbf{Gemini Omni}, a unified multimodal model designed to work across text, image, audio, video and live interaction in a single workflow; \textbf{Antigravity}, Google's agentic coding and development environment; \textbf{Google Flow}, the agent-based workflow product that allows AI systems to take on multi-step creative and production tasks autonomously; \textbf{Gemini Spark}, the new developer toolkit aimed at building autonomous agents and AI-powered applications; and \textbf{Project Genie + Street View}, an integration that allows users to generate navigable simulations of real-world locations from the Street View map data~-- a topic I return to at length in Chapter~\ref{ch:8}.\footnote{Google I/O 2026 announcement block: Gemini Omni \url{https://blog.google/technology/google-deepmind/gemini-omni/}, Antigravity \url{https://antigravity.google/}, Google Flow \url{https://flow.google/}, Gemini Spark \url{https://blog.google/technology/developers/gemini-spark/}, Project Genie + Street View \url{https://deepmind.google/discover/blog/project-genie-street-view/}. \emph{Dream Machine} Issue~30, ``Editor's Pick~-- Google I/O 2026,'' 21 May 2026.} The keynote opened, deliberately, with a browser-based multiplayer demo called \textbf{Infinite Scaler}~-- thousands of players competing inside vertically generated levels created on the fly from player prompts~-- a piece of theatre that, like \emph{Tilly Norwood} a year earlier, was less interesting for the product than for the framing it imposed on the event that followed: AI-generated worlds, live procedural experiences, mass participatory systems that evolve in real time.\footnote{Google Labs, ``Infinite Scaler.'' \url{https://blog.google/technology/google-labs/infinite-scaler/}. \emph{Dream Machine} Issue~30.} \textbf{SynthID}, Google's content-provenance watermarking technology, was announced as having marked over 100 billion items by May 2026, and as being extended to partner ecosystems including OpenAI, ElevenLabs and Kakao~-- a development I cover in detail in Chapter~\ref{ch:12}.\footnote{Google DeepMind, ``SynthID~-- 100 billion watermarks, partner ecosystem.'' \url{https://deepmind.google/discover/blog/synthid-100-billion-watermarks-partners/}. \emph{Dream Machine} Issue~30.} + +The reason to draw the Adobe MAX / Google I/O parallel directly is that the \emph{structural shape} of the two announcement weeks was identical. Both keynotes argued that AI was no longer a feature to be added to existing products; it was the \emph{operating layer} into which the existing products would be re-built. Both keynotes pre-positioned the company's product roadmap around \emph{agents} rather than tools. Both keynotes were aimed not at the consumer-keynote crowd but at the procurement teams of the enterprise creative buyers. The fact that the same framing arrived from the two largest creative-software and creative-platform companies in the world, eight months apart, in the same eight-month window, is the cleanest single confirmation I have that \emph{the AI-in-everything thesis is the platform layer's settled commercial strategy} for the rest of the decade. + +For working creatives, the operational implication is direct. The platform layer has decided. The question is no longer whether the creative software stack will be re-built around AI agents. It is which agents, on whose terms, with what provenance, on which commercial settlement. + +\section*{The new entrants} + +Underneath the platform giants, a separate layer of companies has been building the \emph{consumer-facing AI creative tools} that, in some markets, are turning into bigger businesses faster than anyone expected. + +\textbf{Higgsfield}, the AI video startup focused on social-media marketers, raised \$80m at a \$1.3bn valuation in January 2026.\footnote{\textit{SiliconAngle}, ``Higgsfield raises \$80M on \$1.3B valuation to scale AI video platform.'' \url{https://siliconangle.com/2026/01/15/higgsfield-raises-80m-1-3b-valuation-scale-ai-video-platform/}. \emph{Dream Machine} Issue~15.} Three months later~-- in a stat that I have read repeatedly to check that I have not got it wrong~-- Higgsfield was reported to have earned \$200m in nine months of operations.\footnote{\textit{36kr}, ``AI Video Unicorn Higgsfield: Earns \$200M in 9 Months by `Serving' Social Media Marketers.'' \url{https://eu.36kr.com/en/p/3650517574312323}. \emph{Dream Machine} Issue~16.} An AI-video startup, less than two years old, was running at a quarter-billion-dollar annual run-rate by the spring of 2026. + +\textbf{Synthesia}, the U.K.-based AI-avatar platform, hit a \$4bn valuation in January 2026 and let its employees cash in.\footnote{TechCrunch, ``Synthesia hits \$4B valuation, lets employees cash in.'' \url{https://techcrunch.com/2026/01/26/synthesia-hits-4b-valuation-lets-employees-cash-in/}. \emph{Dream Machine} Issue~16.} In October 2025 it had reportedly \emph{rejected} a \$3bn acquisition offer from Adobe~-- choosing to remain independent.\footnote{\textit{Sifted}, ``Synthesia rejects \$3bn Adobe acquisition offer.'' \url{https://sifted.eu/articles/synthesia-acquisition-offer}. \emph{Dream Machine} Issue~5.} + +\textbf{ElevenLabs}, the audio-AI company, was reported to have crossed \$500m in annualised revenue by April 2026, raising from BlackRock, NVIDIA, Jamie Foxx and Eva Longoria.\footnote{ElevenLabs \$500m ARR reporting, April 2026. \emph{Dream Machine} Issue~25.} + +\textbf{Runway} released Gen-4.5 in December 2025 and Gen-4.5 Image-to-Video in January 2026, then a ``Workflows'' product across all paid plans, then a Story Panels app, then a Characters API, then Apps for Advertising~-- and by spring 2026 was making the public case that AI could enable ``50 indie films'' instead of ``one \$100M blockbuster.''\footnote{Runway product cycle: Gen-4.5 (December 2025), Gen-4.5 Image-to-Video (January 2026), Workflows, Story Panels, Characters API, Apps for Advertising~-- \emph{Dream Machine} Issues~10, 14, 15, 16, 20. Runway CEO on indie films vs.\ blockbusters: \emph{Dream Machine} Issue~26.} In May 2026 the company opened a Tokyo office on a \$40M commitment, marking its first material expansion into the Asia-Pacific creative-AI market.\footnote{Runway, ``Runway Japan.'' \url{https://runwayml.com/blog/runway-japan}. \emph{Dream Machine} Issue~30.} + +\textbf{Krea}, \textbf{Freepik}, \textbf{Magnific}, \textbf{Heygen}, \textbf{Hedra}, \textbf{Cascadeur}, \textbf{Hunyuan}, \textbf{Kling}, \textbf{Suno}, \textbf{Udio}, \textbf{Mureka}, \textbf{Hitem3D}, \textbf{Meshy}, \textbf{Rodin}~-- the list of consumer-grade AI creative tools that crossed material commercial scale in this period is too long to fully enumerate, and the \emph{Dream Machine} archive carries them week by week.\footnote{For the running ledger of new creative-AI products through 2025--26, see \emph{Dream Machine} Issues~1--30 archive.} The category that didn't exist in 2023 is now an industry with multiple unicorns, multiple billion-dollar valuations and meaningful real revenue. + +\textbf{ComfyUI}, the open-source node-based workflow tool that has become a quiet standard for technical AI users, raised \$17m in October 2025\footnote{ComfyUI, ``We raised \$17 million to build an OS for Creative AI.'' \url{https://www.linkedin.com/posts/comfyui_we-raised-17-million-to-build-an-os-for-ugcPost-7373743341236236288-wkCc}. \emph{Dream Machine} Issue~1.} and hit a \$500m valuation by May 2026.\footnote{ComfyUI \$500M valuation, May 2026. \emph{Dream Machine} Issue~27.} What the ComfyUI valuation tells you, more than any of the big-platform numbers, is that the market is also paying~-- at significant scale~-- for tools that give \emph{creators control} over the AI process rather than abstracting it away. + +\section*{The free tier and the literacy tier} + +Two things happened in the consumer-platform layer that I think have been under-discussed and that matter a lot for what the next creative economy will look like. + +The first is that the \textbf{base layer of AI capability went free}, in a meaningful sense, in the autumn of 2025. \textbf{Google} released its \textbf{Pomelli} marketing AI agent for free in October.\footnote{Google Pomelli launch: \url{https://x.com/GoogleLabs/status/1983204018567426312}. \emph{Dream Machine} Issue~5.} \textbf{Google AI Studio}, \textbf{Opal} (the no-code AI mini-app builder), and the Project Genie prototype were all released as free or near-free tiers through early 2026.\footnote{Google AI Studio app gallery: \url{https://x.com/GoogleAIStudio/status/1982121563785949255}. Google Labs Opal expansion: \url{https://blog.google/technology/google-labs/opal-expansion/}. Project Genie: \url{https://blog.google/innovation-and-ai/models-and-research/google-deepmind/project-genie/}. \emph{Dream Machine} Issues~5 and~17.} \textbf{Lovable} made its product free for teachers and students in classrooms.\footnote{Lovable for classrooms: \url{https://lovable.dev/classroom}. \emph{Dream Machine} Issue~11.} \textbf{Adobe Express's} AI Assistant arrived inside the free tier of Adobe's already-free consumer product.\footnote{Adobe Express AI Assistant: \url{https://news.adobe.com/news/2025/10/adobe-max-2025-express-ai-assistant}. \emph{Dream Machine} Issue~5.} \textbf{Hugging Face} continued to expand its free hosting and open-source model distribution. \textbf{Krea}, \textbf{Freepik}, and many of the larger tool platforms kept generous free tiers as a customer-acquisition lever. + +What this means, practically, is that the entry-level for AI-enabled creative work in 2026 is \emph{near zero.} A teenager with a phone and a free Google account can, today, generate video, music, 3D objects and (with Project Genie) navigable interactive worlds at a quality bar that, two years ago, required a small production company to produce. + +This is, in absolute terms, a democratisation. It is also~-- and this is the second thing~-- \emph{creating a literacy gap} between the people who know how to use these tools well and the people who don't. + +Adobe responded to this gap, in late 2025 and through 2026, by becoming~-- in addition to a software company~-- \emph{a training organisation.} The Sundance partnership, with a \$2M investment to teach 100,000 filmmakers AI skills.\footnote{Google blog, ``Sundance Institute AI Education.'' \url{https://blog.google/company-news/outreach-and-initiatives/google-org/sundance-institute-ai-education/}. \emph{Dream Machine} Issue~15.} The Ignite Day, focused on emerging creators.\footnote{Adobe Ignite Day at Sundance: \textit{Adobe blog, Sundance Film Festival 2026.} \url{https://blog.adobe.com/en/publish/2026/01/20/sundance-film-festival-2026-creativity-community-power-storytelling}. \emph{Dream Machine} Issue~16.} The Adobe Film \& TV Fund. The Adobe Express AI Assistant tutorials. Google made the same bet in parallel, putting \$40bn into Anthropic in May 2026 in a deal widely interpreted as betting on the literacy and infrastructure layer of the next decade.\footnote{Google's \$40bn investment in Anthropic, May 2026. \emph{Dream Machine} Issue~27.} + +The UK government picked the same direction. In January 2026, the Department for Science, Innovation and Technology announced \emph{Free AI training for all}, expanding a government-and-industry programme to provide 10 million UK workers with AI skills by 2030.\footnote{UK Government, ``Free AI training for all.'' \url{https://www.gov.uk/government/news/free-ai-training-for-all-as-government-and-industry-programme-expands-to-provide-10-million-workers-with-key-ai-skills-by-2030}. \emph{Dream Machine} Issue~16.} The Department for Business and Trade research, reported in \emph{Dream Machine} Issue~7, found that \emph{neurodiverse workers} were 25\% more satisfied with AI assistants~-- suggesting that AI's productivity benefits in certain workflows could ``potentially help to level the playing field.''\footnote{\textit{CNBC}, ``People with ADHD, autism, dyslexia say AI agents are helping them succeed at work.'' \url{https://www.cnbc.com/2025/11/08/adhd-autism-dyslexia-jobs-careers-ai-agents-success.html}. \emph{Dream Machine} Issue~7.} The University of Wisconsin-Stout set AI-use as a baseline competency in its filmmaking course in January 2026.\footnote{University of Wisconsin-Stout, ``AI Reshaping Industry: New UW-Stout Course Sets AI-Use as Baseline Competency in Filmmaking.'' \url{https://www.uwstout.edu/about-us/news-center/ai-reshaping-industry-new-uw-stout-course-sets-ai-use-baseline-competency-filmmaking}. \emph{Dream Machine} Issue~15.} + +What the consumer-platform companies and the policy-makers are, jointly, building is a \emph{training infrastructure} for the new toolchain. The reason they are doing this is straightforward: a tool you cannot use is a tool you do not buy, and a worker who cannot use the new tool is a worker who eventually exits the workforce. Both incentives push in the direction of mass AI literacy as a public investment. + +What I find encouraging about this~-- and I am genuinely encouraged, against the grain of much of the cultural commentary~-- is that the literacy push is being framed, both by Adobe at Sundance and by the UK government, as \emph{creator empowerment} rather than worker replacement. The proposition is not \emph{learn AI or be replaced by it.} The proposition is \emph{learn AI to remain in the driver's seat of your own work.} That framing matters. It is the right framing. It is the only framing under which the AI-literacy push doesn't become a way of accelerating the very problems it is supposed to fix. + +\section*{The platform economics underneath the slogan} + +I want to spend a section on the \emph{commercial} shape of the platform layer, because the ``AI in everything'' framing has economic implications that the keynotes have been careful not to name, and that working creatives buying platform access at scale need to understand. + +The shape, simplified, is this. The dominant generative-AI platforms~-- OpenAI, Anthropic, Google DeepMind, Adobe, Runway, ElevenLabs and the rest~-- operate as \emph{infrastructure-as-a-service} businesses on top of \emph{capital-intensive} underlying compute. The marginal cost of producing one more generated image, song or video clip is, at the platform level, low. The fixed cost of the compute infrastructure required to produce \emph{any} generated output at competitive quality is, at the platform level, very high~-- the data-centre build, the chip supply, the energy contract, the model-training spend. + +This produces, structurally, a \emph{natural-monopoly-tending} market. The platform with the largest compute base produces the lowest marginal cost per output, captures the largest user base, generates the largest revenue, and reinvests in a larger compute base. The flywheel is the standard cloud-services flywheel, accelerated by the AI-specific dynamics of training-data flywheels and user-feedback flywheels. + +The 2025--26 financial telemetry, where the platform companies have disclosed it or been required to disclose it, supports the natural-monopoly read. + +OpenAI was reported, through late 2025 and into 2026, to be operating at \emph{significantly negative cash flow} at the unit-economics level despite its 800--900M weekly active users. The company's reported revenue, which crossed the \$10 billion annual run-rate mark in late 2025, was~-- by every analyst breakdown I have seen~-- being substantially exceeded by infrastructure costs (data-centre lease, chip supply, energy, training compute). The Microsoft partnership at the financial level was, structurally, a \emph{capital-supply} relationship rather than a \emph{technology-licensing} one: Microsoft providing the compute capacity that OpenAI could not, by itself, finance. + +Anthropic, in 2026, was reported to be operating with similar structural dynamics, with Google and Amazon as its capital-supply partners. The Anthropic Foundation patronage deal with the Blender Development Fund~-- announced in May 2026 and discussed in Chapter~\ref{ch:16}~-- is interesting precisely because it suggests Anthropic has, alongside the closed-platform business, \emph{strategic interest} in supporting the open-source creative-AI infrastructure that the closed-platform model competes with. That kind of two-handed positioning is, in natural-monopoly markets, often the precursor to a \emph{platform regulation} settlement. + +Adobe, by contrast, operates with the most \emph{defensible} business model in the creative-AI platform space, because it is selling AI as a feature of an existing subscription rather than as a per-use service. Firefly's contribution to Adobe's 2024 annual recurring revenue~-- 11\% of new ARR, on the company's own published numbers~-- is being generated \emph{without} the per-token unit-economics problem that OpenAI and Anthropic face, because Adobe is bundling the AI into the existing \$54.99-a-month Creative Cloud all-apps subscription. The customer's behaviour change from no-AI to AI doesn't change the revenue line. It changes the \emph{value capture} of the existing revenue line. This is, in business-school terms, the platform's \emph{strongest} possible defensive position. It is also the reason Adobe's stock performed differently from the rest of the AI-platform cohort through 2025--26. + +Runway, ElevenLabs and the AI-native specialist platforms operate with a per-use unit-economics structure that more closely resembles OpenAI's. The differentiation, where they have it, is in \emph{workflow integration}~-- Runway's Workflows product, ElevenLabs' Flows canvas, the studio-tier features that lock professional users into per-platform tooling. The strategic question for each of these companies, in the next two years, is whether they can build defensible workflow lock-in before the natural-monopoly dynamic of the underlying foundation-model market consolidates the foundation-model layer down to two or three players. + +The implications for working creatives buying platform access at scale, in 2026 and beyond: + +\emph{One,} the per-token / per-output prices working creatives are paying for AI tooling in 2026 are, on every analyst read I have seen, \emph{materially subsidised by platform-company investor capital}. The unit economics underneath the prices are not, today, sustainable at the volumes the platforms are producing. The prices are, by structural inference, going \emph{up} over the medium term as the platforms work toward unit-economic break-even. The working creative who builds a business model assuming today's per-token costs as a stable input is, on the platform-economics read, taking a bet that the platforms cannot win. \emph{Pricing today is not pricing forever.} This is the part of the platform-dependency argument the \emph{open-the-black-box} discussion in Chapter~\ref{ch:3} most directly relies on. + +\emph{Two,} the \emph{strategic-rent-extraction} potential of the eventual platform-monopoly position is the structural risk underneath the entire orchestrator economy I described in Chapter~\ref{ch:11}. If two foundation-model platforms dominate the underlying generative-AI capacity by 2030, and every working creative's production pipeline depends on access to one or both of them, the platforms will be in the position the cable companies were in by 2010 and the social-media platforms were in by 2015~-- able to extract value from the working creators who depend on them at prices the creators have no real ability to negotiate. The Petrillo-template solution to this is \emph{collective bargaining} by working creatives and their unions against the platform companies as a class. The early architecture of this~-- the Cannes Disclosure Standard, the SAG-AFTRA platform negotiations, the EU AI Act enforcement, the UK 88\%~-- is in place. The substance of it is, in mid-2026, still mostly aspirational. + +\emph{Three,} the \emph{open-source alternative} layer documented in Chapter~\ref{ch:16} is, on this structural read, \emph{the working creative's principal long-term insurance policy} against platform-monopoly pricing. The 80\% of YC and a16z startups now building on open-weight models~-- Hunyuan, Wan, Qwen, FLUX, DeepSeek, the various Mistral variants~-- is, in market-economics terms, \emph{the credible-walk-to-alternative} that constrains the closed-platform companies' pricing power. The working creative who has familiarised themselves with open-weight tooling, even if they default to closed-platform tooling for most of their daily work, has a \emph{strategic option} the working creative who has not has surrendered. The option is worth money. It is also, on the historical pattern, worth political leverage in the institutional negotiations that the next decade of platform-rule-writing will run on. + +The ``AI in everything'' framing, in operational summary, \emph{is the platform companies' commercial strategy described in marketing language}. The strategy is to make AI a default productivity feature of every creative workflow, on platform-controlled tooling, at prices that the platforms can adjust over time once the workflow lock-in is in place. The strategy is, on the historical pattern of every previous platform-economics moment, going to produce a settlement somewhere between \emph{the most-extractive version of the strategy} and \emph{the most-constrained version of the strategy}. The 88\%, the SAG-AFTRA contract, the EU AI Act, the C2PA standards body, the open-source ecosystem, and the working-creative collective-bargaining infrastructure are the constraints. The platform companies' compute capital, distribution leverage, and product-design control are the extractive forces. The settlement will be wherever those forces balance. + +\section*{What we lost} + +I want to close this chapter with the harder question, because the ``AI in everything'' framing has a cost that the platform-company keynotes are not, on the whole, eager to discuss. + +What we lost, in the transition to AI-in-everything tools, is \emph{the deliberate friction of the old creative process.} The thing that made Photoshop, for many of its early users, a profound creative tool was not just what it could do. It was that it required you to know it. The interface was a discipline. The keyboard shortcuts were a vocabulary. The layers, the masks, the channels, the curves, the colour pickers~-- they were the language of a craft, and learning the language was part of becoming the craftsperson. + +When the layer of mastery moves from the toolchain to the prompt, the \emph{barrier} of mastery drops to near zero. That is the democratisation we have been promised, and it is real. + +What goes with the barrier, though, is the \emph{depth of relationship} between the maker and the tool. The Photoshop user of 2015 knew the tool the way a guitar player knows a guitar~-- with their hands, with their body, with a relationship built up over years of repeated, embodied practice. The prompt-driven AI tool user of 2026 has a different relationship. It is more like the relationship of a director to a department head: you describe the result, the department head executes, you adjust by giving notes. + +The motion designer Doug McGinness, posting on LinkedIn about the new AI-augmented After Effects workflow in late 2025, summarised the current state of the tooling in a single, ruefully accurate line that became a small private meme inside my studio: \emph{``export $\rightarrow$ prompt $\rightarrow$ pray $\rightarrow$ import.''}\footnote{Doug McGinness on LinkedIn, late 2025, in the same post. \emph{Dream Machine} Issue~9.} The line is funny because it's true. The current generation of AI-tooled creative work is, for a substantial portion of every day, an exercise in \emph{committing to a black-box operation and accepting whatever comes back.} That is, structurally, a different kind of creative discipline than the deterministic-tool craft it is replacing. + +Neither relationship is \emph{better} than the other. They are different relationships, and they produce different kinds of practitioners. But the \emph{transition} is real, and one of the consequences~-- which I have seen up close, watching young creatives come through the studio~-- is that the \emph{cognitive engagement} with the medium is structurally less deep than it used to be. The maker is one further step removed from the material. + +This is not, by itself, a tragedy. The cinema director is one step removed from the film stock and is still, recognisably, the author of the film. The composer is one step removed from the violin and is still, recognisably, the composer. The novelist who uses a word processor is one step removed from the page and is still, recognisably, a writer. + +But it is a \emph{change}, and it is one we are pretending not to notice. The new toolchain is not just faster than the old toolchain. It is also a different kind of relationship with the work, and the people who will be its best practitioners~-- the ones who will, in 2030 and 2035, be doing the AI-era equivalent of what Greg Lynn did with parametric architecture or what Bjork did with synthesisers~-- will be the people who \emph{consciously cultivate} the depth of relationship that the toolchain no longer enforces. + +The platform companies are not going to teach you to do this. They have no incentive to. They benefit from your dependency, not your mastery. The new toolchain is \emph{frictionless,} and frictionless tools, however much we benefit from their efficiency, are not, on their own, going to produce the next generation of great creative work. + +That work is going to come from the people who put the friction \emph{back in,} deliberately, on their own terms~-- who treat the AI agent as a junior colleague rather than as an oracle, who insist on \emph{understanding} what their tools are doing rather than just \emph{using} them, and who maintain the cognitive engagement with the work that the tools have been designed to make optional. + +In the next chapter, I want to talk about the people who are doing exactly that. The orchestrators. diff --git a/latex/chapters/ch10_what_is_newly_possible.tex b/latex/chapters/ch10_what_is_newly_possible.tex new file mode 100644 index 0000000..7b1db6c --- /dev/null +++ b/latex/chapters/ch10_what_is_newly_possible.tex @@ -0,0 +1,184 @@ +\chapter{What is newly possible}\label{ch:10} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{} want to spend a chapter, after eight chapters that have been mostly about \emph{displacement,} on a question I think the book has so far under-served. \emph{Which categories of creative work has the AI moment made possible that were not possible before?} + +This is not the question working creatives in 2026 are most often being asked. The questions most often being asked are \emph{will I lose my job?} and \emph{should I use the tools?} and \emph{what are studios doing?} Each of those is in this book, in a chapter of its own. They are all important questions. + +The question of \emph{newly-possible work} is the one that, on the historical pattern I drew in Chapter~\ref{ch:2}, almost always turns out to be the one that mattered most. Every previous creative-technology transition the book has documented produced a set of new categories of creative work that the displaced practitioners did not, and could not, see coming. The phonograph displaced amateur parlour music and created the recorded-music industry. The microphone displaced operatic vocal projection and created intimate vocal styles, jazz singing, pop crooning, audio storytelling. Non-linear editing displaced the splice and created the MTV cut, the music video as art form, the hyper-cut action grammar, the streaming-era serial-drama editorial rhythm. The smartphone-as-camera displaced the dedicated camera and created the entire grammar of vertical-video native form. + +The pattern is that the new categories \emph{always} appear, that they \emph{always} appear faster than the displaced cohort predicts, and that they are \emph{always} invisible from the perspective of the existing definition of the craft, because they are made of capabilities the existing craft does not have. The miniaturist could not, in 1845, predict Stieglitz's \emph{Camera Work}. The session keyboard player could not, in 1982, predict Aphex Twin's \emph{Selected Ambient Works} (and could not, if they had heard them, have recognised them as music). The print-magazine art director could not, in 2006, predict Instagram-as-fine-art-platform. + +We are, in 2026, the equivalent generation to those people. The new categories are mostly invisible from where we sit. But some of them are already shipping; some of them are already finding audiences; some of them already have working creatives building careers inside them. This chapter is about what those categories are. + +Before I start the inventory, I want to draw two historical analogues out~-- the synthesiser and non-linear editing~-- because they are the cleanest templates for \emph{how a tool that begins as a faster version of the old thing ends up being the substrate of a new thing entirely.} The mistake almost everyone made about AI in 2024 and 2025 was to think of it as a faster way to make the kind of creative work the platforms had been making. The historical pattern says: that view is \emph{almost always wrong on a five-to-ten year timeline.} + +\section*{From imitator to instrument: the synth analogue} + +When Robert Moog first started selling modular synthesisers in the late 1960s, the cultural permission for the instrument was very narrow. The synth, in its first commercial moment, was understood as a way to \emph{imitate} existing orchestral instruments~-- to play the parts of a string section, a brass section, a piano, an organ, in a form a single keyboard player could control. The breakthrough commercial release that secured the synth's cultural status~-- Wendy Carlos's \emph{Switched-On Bach} in 1968~-- was, on its face, a literal demonstration of this framing: the synth playing the music of the most-canonical European classical composer in the literature. Three Grammys. The first electronic record to be reviewed seriously by classical critics. The argument was: \emph{the synth can do what an orchestra can do.} + +The synth never did, in the end, only do that. The 1970s and 1980s did something nobody at the 1968 reviewing desks predicted. They produced \emph{sounds that had never existed in the history of music}~-- Moog leads, FM electric pianos, the Roland TR-808 kick drum, the Yamaha DX7's chord pad, the \emph{Blade Runner} CS-80 ambient texture, the Aphex Twin acid bassline~-- and they built entire musical genres around those new sounds. Hip-hop, electronic dance music, ambient, IDM, synth-pop, the entire sonic vocabulary of 1980s film scoring~-- these are forms that \emph{could not have existed} without the synth, that did not exist before the synth, and that, \emph{crucially,} could not have been predicted from the framing in which the synth was first introduced. + +The synth was not a faster orchestra. The synth was an instrument for making sounds that no orchestra could produce, on a timescale that no orchestra could match, accessible to working musicians without the social capital of orchestral training. The instrument's first cultural moment~-- \emph{Switched-On Bach}~-- was the moment of the \emph{imitator framing}. Its second cultural moment~-- \emph{Autobahn}, \emph{Blade Runner}, \emph{Thriller}, \emph{Acid}, the \emph{Roland 808} in \emph{Planet Rock}~-- was the moment when the imitator framing was thrown away and the instrument was used for what only it could do. + +That second moment took about a decade. From Moog's first commercial modular in 1965, through Carlos in 1968, through Kraftwerk's \emph{Autobahn} in 1974, through \emph{Trans-Europe Express} in 1977, through the early hip-hop and dance records of 1981--82~-- the gap between the synth-as-imitator and the synth-as-new-instrument was roughly fifteen years. The cultural permission to use the synth as itself, rather than as a replacement for something else, had to be earned by working musicians inhabiting the instrument in front of audiences who eventually understood that they were hearing something new. + +The AI equivalent moment, on the historical pattern, has not yet arrived. We are, on the synth timeline, somewhere between \emph{Switched-On Bach} and \emph{Autobahn}. The work that is going to define AI as a new creative substrate~-- rather than as a faster way to produce existing work~-- is being made \emph{right now,} by working creatives somewhere, in forms that the trade press has not yet decided what to call. I have my candidates, which I will come to. The point I want to make at the chapter's opening is the structural one: every iterative-technology framing of AI is doing what the \emph{Switched-On Bach} reviewers did in 1968. It is describing the new tool in the language of the old one. The new language has not yet been written. + +\section*{From workflow to grammar: the non-linear-editing analogue} + +The same pattern is visible, in a different domain, with non-linear editing. + +When Avid Media Composer shipped in 1989, the cultural framing was strictly utilitarian. NLE was a \emph{faster way to do the existing thing.} Where a working editor used to splice physical film on a Moviola~-- a slow, irreversible, physically demanding craft~-- NLE allowed the same edits to be made in software, with undo, with multiple versions, with no consumable cost. The first generation of working editors who picked up Avid did so on the same premise as the synth's first-decade adopters: \emph{the tool will let me do what I already do, faster.} + +What NLE actually produced, by the mid-1990s and through the 2000s, was a fundamentally new editing \emph{grammar}. The average shot length in mainstream Hollywood drama dropped from roughly ten seconds in the 1960s to roughly four seconds by the mid-2000s~-- a change made trivial by NLE that would have been physically punishing to execute on a Moviola. The MTV-cut aesthetic, which had been a music-video novelty in the early 1980s, became the default grammar of contemporary action cinema by the 2000s~-- \emph{The Bourne Identity} (2002) is the textbook example, with shot lengths under two seconds across whole action sequences and an editing logic that depended on the viewer's now-trained ability to read a fast-cut grammar. The parallel-narrative structures of contemporary streaming drama~-- multi-thread, multi-timeline, multi-perspective storytelling, edited together with non-linear interleaving that would have been logistically impossible on tape~-- \emph{Lost}, \emph{Westworld}, \emph{Dark}, \emph{Severance}~-- are forms that NLE made possible. + +Walter Murch, the most respected film editor of the last fifty years and one of the few people to have edited at the highest level on both film and Final Cut Pro, made the point clearly in \emph{In the Blink of an Eye}: the tool \emph{does} change the grammar. Murch was characteristically careful not to claim that the change was an improvement or a degradation. He claimed only that it was a \emph{change}~-- that NLE permitted certain kinds of edit that physical-film editing could not, and that the new grammar would, over a generation, become as natural to its audiences as the slower-cut grammar of the 1960s had been to its. + +The same dynamic is, in 2026, visible in the AI-augmented production pipeline. Working creatives I know are doing things in their day-to-day practice that would have been physically impossible~-- not just expensive, \emph{impossible}~-- in 2020. Iterating across forty variants of a scene in an afternoon. Producing personalised localised versions for ten markets simultaneously. Re-cutting a feature against a different aspect ratio for vertical-video distribution while keeping the principal photography intact. Generating a sustained 4D point-cloud reconstruction of a real-world location from a phone-captured walk-through and using it as a virtual-production plate. Running a scratch-vocal session in seventeen languages off a single take. These are \emph{not faster versions of existing workflows.} They are workflows that did not exist three years ago. And, exactly as Murch predicted of NLE, the audiences for the work made on these workflows are already developing the perceptual literacy to read it. + +\section*{Six categories of newly-possible work} + +With those two analogues in mind, I want to walk through six categories of creative work that I believe are \emph{newly possible} in 2025--26~-- meaning, work that an individual creative or a small studio can produce now that they could not have produced before, and that an audience can experience now in ways the audience could not have experienced before. + +I will be honest, on each, about how much of the category is already shipping in finished form and how much is still in the \emph{demo and beta} layer of the toolchain. The whole point of being inside the work is that you can see the difference. + +I will also flag, throughout, the \emph{binding constraint} that runs underneath the entire chapter: \textbf{human attention is finite.} This is the most-underdiscussed structural fact of the AI creative-economy moment, and I will come to it at length in a moment. + +\subsection*{One: Remix at scale} + +The first category~-- the most visible and the most legally contested~-- is \emph{remix.} The infrastructure of AI generation makes it cheap, fast, and at scale to produce derivative work: alternate-style versions of existing songs, cover-style reinterpretations across genres, AI-dubbed translations of feature films into languages the original release never reached, image-to-image style transfers of canonical artworks, motion-transferred re-performances of choreography across body types. + +I want to be careful in describing this, because \emph{remix as a creative form} has a long pre-AI history. Hip-hop's relationship to sampling is the canonical example; Lessig's ``remix culture'' framing from the 2000s identified the dynamic in broad strokes well before generative AI; the \emph{Star Wars} fan-edit community, the mash-up era of Girl Talk and Danger Mouse's \emph{Grey Album}, the YouTube AMV community, the TikTok stitch-and-duet grammar~-- every one of these is, in operational terms, \emph{remix infrastructure that produces creative value through derivation}. The 2025--26 AI moment didn't invent remix culture. It made the \emph{production cost of derivative-but-original creative work} drop by more than an order of magnitude, and it shifted the technical bottleneck from \emph{skill at imitation} to \emph{judgement about what to imitate.} + +The 2025--26 examples I have followed most closely: + +\begin{itemize} + \item \textbf{AI-dubbed feature releases} crossing language barriers that the original production could not afford to cross. \emph{Watch the Skies}, the Swedish UFO feature dubbed into English using ElevenLabs voice cloning, getting US distribution in October 2025, is the canonical example I covered in Chapter~\ref{ch:1}. The dubbing is not, in any historical sense, a \emph{new translation}; what is new is that the translation is rendered into the original actor's voice rather than a session voice actor's, preserving the performance signal across the language transition. + \item \textbf{Cover-style reinterpretation at the long-tail of recorded music.} Suno and Udio's user economies have produced an extraordinary volume of \emph{style-transferred} renditions of existing songs~-- folk versions of pop hits, metal versions of show tunes, lullaby versions of EDM tracks. The vast majority of these are uninteresting. A small fraction, in my experience, are \emph{better than the original by some specific human listener's measure of better}~-- and that is the new commercial dynamic. + \item \textbf{The Andrii Daniels bomb-shelter clip} (Chapter~\ref{ch:12})~-- \emph{Deadpool and Harry Potter} as a Christmas mash-up, made in a Ukrainian bomb shelter, viral in December 2025~-- is a remix-at-scale artefact in the strict sense. It crosses two IPs that the rights-holders would never have collaborated on, in a stylistic register the original films could not have produced, and finds a global audience that responds to the \emph{idea} of the remix as much as to its execution. +\end{itemize} + +The legal layer of this category is still moving. \emph{UMG v.\ Anthropic}, \emph{Getty v.\ Stability AI}, the EU Copyright Directive's Article 17, the UK 88\%~-- these are the institutional structures that will decide whether the AI-remix category becomes a \emph{licensed and compensated} creative form (the Petrillo template applied to AI) or a \emph{grey-market} one that operates outside the rights system. The historical pattern~-- Sampling, post-\emph{Grand Upright}, became a licensed creative form, with the dense Bomb Squad style becoming commercially difficult but the basic technique surviving in a more clearance-friendly mode~-- says the remix category will, in some form, \emph{settle into a licensed category by the end of the decade.} The Petrillo template, again, is the answer the system already knows. + +\subsection*{Two: Mass personalisation, against the binding constraint} + +The second category~-- the one most often gestured at in platform-company keynotes and least well-served by them~-- is \emph{mass personalisation}: creative work that is \emph{individually different} for each viewer, listener or player. + +The early shipped versions in 2025--26 are these: + +\begin{itemize} + \item \textbf{Personalised playlist generation and AI DJs.} Spotify's DJ feature, YouTube Music's AI Hub, Apple Music's editorial-style algorithmic mixes~-- all of these are \emph{individual-level curation} of pre-existing creative work. The personalisation is in the \emph{selection}, not in the \emph{generated content.} + \item \textbf{Personalised game NPCs and dialogue.} Inworld, ConvAI, Ubisoft Teammates, Roblox's AI assistant~-- by spring 2026, the first wave of generative-NPC dialogue is shipping in player-facing form. The personalisation is in the \emph{moment-by-moment response} to the player's actions, not in the underlying game world. Whether this actually produces a personalisation a player can recognise~-- versus producing the same in-character dialogue from a wider statistical envelope~-- is, on the published shipping examples I have played, an open question. + \item \textbf{Personalised marketing creative.} WPP Open Pro, Adobe CX Enterprise, GenStudio~-- the platform infrastructure for producing per-segment, per-audience, per-context creative variations is now mature. Whether the audience experiences this \emph{as} personalisation, or experiences it \emph{as} a feeling of unease that the messaging knows too much, is the cultural question every brand creative is asking in 2026. + \item \textbf{Personalised educational content.} Khan Academy's Khanmigo and Duolingo Max are the most-mature shipped examples I know of. The personalisation here is genuine and measurable~-- the per-student tutoring response is different on the level of the individual learner. +\end{itemize} + +I want to draw a sharp limit around the personalisation category, because the binding constraint runs straight through it and I think every working creative thinking about this market needs to internalise it. + +\textbf{Human attention is finite.} Aggregate daily media-consumption time per person has, on the available Nielsen-style telemetry I have read, \emph{not} grown meaningfully in the past decade. The total of every form of media consumption~-- TV, streaming video, music listening, podcast listening, social media, gaming, reading~-- is, per the published data, on the order of 11--12 hours per US adult per day, and that number has been roughly stable for years even as the \emph{number of available} hours of content per day has exploded by orders of magnitude. The eye, the ear and the consciousness each have a finite capacity. \emph{Personalisation} does not, by itself, expand that capacity. It changes the \emph{distribution} of attention across content, but it does not increase the \emph{total} attention available to be spent. + +This is the structural ceiling on the \emph{commercial} value of mass personalisation. Producing a personalised version of a film for every viewer~-- to take the most extravagant platform-keynote framing~-- is, on the binding-constraint reading, a competitive move that \emph{reallocates} attention rather than \emph{expanding} it. The category will be commercially meaningful in segments where reallocation can produce premium prices (luxury advertising, premium educational content, top-tier video-game NPCs in IP that justifies the investment). It will be less commercially meaningful at the long tail, where the personalisation effort does not produce attention-reallocation big enough to pay for the agentic infrastructure underneath it. + +The trade-press framing of mass personalisation as \emph{infinite content for infinite audiences} is, on the binding-constraint reading, structurally incoherent. The audience does not have infinite attention. The producible content is, by 2026, effectively infinite. The economic question is \emph{which slices of the audience's existing finite attention budget} the personalised work can plausibly capture. The answer, by my read of the shipping evidence, is \emph{narrower than the platform companies' enthusiasm suggests.} + +I will come back to the finite-attention constraint at the end of the chapter, because it shapes every category that follows. + +\subsection*{Three: Audience participation in the creator economy} + +The third category~-- and the one I am most personally interested in~-- is the \emph{audience as participant.} The 2010s creator-economy framing was that the audience could \emph{make their own content} on platforms (YouTube, TikTok, Instagram), creating a long tail of user-generated work alongside the professional content. The 2025--26 AI framing extends this by an order of magnitude: the audience can now \emph{prompt, contribute to, remix and co-author} work in real time, often in collaboration with named professional creators. + +The shipped examples I have followed: + +\begin{itemize} + \item \textbf{TikTok / Instagram / Shorts remix mechanics}~-- duets, stitches, the \emph{Sora} iOS app's TikTok-style remix grammar (which crossed a million downloads in five days in October 2025). The barrier between \emph{watching the work} and \emph{making a related piece of work} has dropped to a single tap. + \item \textbf{Roblox's creator economy.} The platform's UGC ecosystem, by 2026, is the largest single audience-as-creator system in any creative medium. Roblox creator payouts run into the hundreds of millions of dollars annually. The line between the audience and the working creator on Roblox is, structurally, not a line; it is a gradient. + \item \textbf{Disney+'s announced (though not yet shipped at the date I am writing this) user-generated-AI-content tools using Disney IP.} If this ships in the form the platform has described, it will be the first time a major IP holder has \emph{deliberately given the audience tools to make work inside its canonical universe.} The cultural permission this would set~-- sanctioned fan-made \emph{Star Wars}, sanctioned fan-made \emph{Marvel}~-- would, on the historical pattern, expand the categorical \emph{Star Wars} / \emph{Marvel} canon at a rate the studio system itself cannot match. + \item \textbf{The fan-prompt economy.} Civitai, Promptbase, the LoRA marketplaces~-- the infrastructure for \emph{selling and sharing the creative inputs} that other creatives then use to produce work. The audience is participating not just in the work, but in the \emph{toolchain underneath the work.} +\end{itemize} + +The single cleanest piece of evidence on the \emph{generational} shape of this category came in May 2026, when \textbf{Snapchat} published research finding that \textbf{31\%} of \textbf{13--15 year-olds} on the platform were already using AI tools ``to be creative''~-- not, importantly, to do their homework, not to chat with a synthetic friend, but specifically to \emph{make things} they then shared with their peers.\footnote{Snap Newsroom, ``Snapchat Gen Z AI Creativity Research 2026.'' \url{https://newsroom.snap.com/snapchat-gen-z-ai-creativity-research-2026}. \emph{Dream Machine} Issue~30.} That number is the most legible quantitative indicator I have seen of where the audience-as-participant category is heading. The 13-to-15 cohort the survey describes will be the 18-to-20 cohort of 2029. By the time they reach the working-creative entry pool, \emph{making things with AI} will not, for them, be a category distinct from \emph{making things}. It will simply be how things are made. The studios that build for this audience now~-- not as a future they are anticipating, but as a present they are already serving~-- will, on the historical pattern of every previous generational shift, set the terms on which the next decade of cultural production runs. + +The thing I want to flag about this category~-- because I think it is the part the platform companies and the working studios have most systematically under-priced~-- is that \emph{audience participation reverses the direction of the creator-audience economic relationship.} In the pre-platform creative economy, the audience paid the creator. In the platform-era creator economy, the audience generated the content and the platform monetised the attention. In the 2025--26 AI-augmented creator economy, the audience is increasingly co-producing the content \emph{with} the creator, and the question of who gets paid for what is, structurally, harder to answer than it has ever been. + +This is one of the open frontiers of working-creative business model design in this period. I do not think anyone has solved it. The studios that figure out how to credit, compensate and structurally honour audience contributions to the work~-- without turning the work into the kind of crowdsourced mush that does not survive the slop ceiling~-- will, in my view, have the most defensible business position in the next decade. The studios that try to extract audience-generated work without compensating it (the 2010s social-media platform model applied to AI) are, on the historical pattern, walking into the next \emph{Viacom v.\ YouTube}-scale lawsuit. + +\subsection*{Four: Fan fiction and fan-made content, legitimised at scale} + +Closely related to the participation category~-- but worth a section of its own~-- is the \emph{fan-fiction / fan-content} category. Fan-made creative work has a long pre-AI history. The \emph{Star Trek} fanzine era of the 1960s; the \emph{Star Wars} fan-film tradition from the 1970s onward; the Archive of Our Own / Wattpad / FanFiction.net communities; cosplay; the anime fansubbing tradition; the \emph{Harry Potter} fan-fiction archive that, on some counts, contains more words of \emph{Harry Potter}-canon-derivative text than the original novels themselves. + +What AI does to this category is two things. \emph{One,} it raises the \emph{technical floor} of fan-made work toward what was previously professional-grade: a fan can now generate a \emph{Harry Potter} short film with production values that would have required a major-studio budget five years ago. \emph{Two,} it makes the \emph{canon-extension impulse} of fan culture practically infinite: every reader, every viewer, every player can~-- with current tools~-- produce a new piece of work inside the universe they love, in their own voice, on their own terms, for their own audience. + +The cultural and legal layer of this category is, in 2026, still moving. Disney's tolerance for fan content has shifted under AI, and the question of whether \emph{AI-generated fan content using Disney IP} will be treated more leniently than fan-made content has historically been is one of the open IP-policy fights of the year. Lucasfilm's tolerance for \emph{Star Wars} fan films has, historically, been generous; whether that extends to AI-generated \emph{Star Wars} features is unsettled. The Marvel Comics community policy on AI is one of the documents to watch in the next eighteen months. + +What is \emph{not} unsettled is that the audience is already doing this. The fan-AI-content economy is, by spring 2026, larger by volume than the official IP-holder output for almost every major IP in popular culture. The official IP holders can suppress this, license it, build platforms around it, or watch it consume their cultural authority. There is no fourth option. + +The working creative read on this, for anyone reading the book inside an IP-holding studio, is the one I made in Chapter~\ref{ch:7}'s discussion of the legacy industries' strategic vulnerability. The studios that move \emph{toward} sanctioned fan-AI content economies~-- Disney's announced UGC tools, the most generous of the cosplay-and-fan-film tolerances, the platform-and-fund models that pay fan creators for canonical contributions~-- will have a meaningful structural advantage over the studios that try to defend the closed canon against the audience that is, with or without permission, going to extend it anyway. The Petrillo template applied to fan culture is: pay the fan, structure the IP-holder's stake, \emph{participate} in the extension rather than fighting it. + +\subsection*{Five: Agentic support workers for the solo creative} + +The fifth category is the one that has~-- in my own practice and in the practice of the wider DreamLab community~-- produced the most dramatic and immediate productivity gains. The agentic-support-worker model. + +In the pre-AI creative economy, the small or solo creative practitioner~-- the independent filmmaker, the songwriter, the freelance illustrator, the indie game developer, the YouTuber~-- operated with a particular structural disadvantage. Their work was bottlenecked not on creative judgement (which the senior practitioner had in abundance) but on the \emph{production-coordination labour} that a larger studio would assign to junior staff: client communications, project management, asset organisation, scheduling, invoice processing, basic research, draft response, brief structuring, simple post-production. The senior practitioner spent an inordinate fraction of their effective working hours on labour that did not require senior judgement. + +The 2025--26 agentic toolchain~-- Notion AI, Adobe Express AI Assistant, Heygen Video Agent, Claude Apps, the personal-assistant features baked into the major platforms~-- has, in operational terms, \emph{given the solo creative the first four hires they would have made.} The personal assistant, the scheduler, the production coordinator, the asset manager~-- these are now, for working solo creatives in my circle, agentic functions running underneath the senior practitioner's day, costing roughly the price of a couple of midrange platform subscriptions, and producing genuine recoverable hours. + +The economic impact of this is, I think, the most under-priced shift of the period. The \emph{one-person studio} that, in 2020, would have been a part-time freelance practice supporting two to four projects a year is, in 2026, a \emph{full-business-class production operation} supporting twenty to forty projects across a wider range of disciplines. The Sienna-Rose / Xania-Monet / Hoyt-Dwyer single-creator AI-supported career~-- about which I have, in Chapter~\ref{ch:5}, made my reservations clear in terms of \emph{star formation}~-- is, on the \emph{production-economics} side, a genuine new business form. Whether or not Xania Monet becomes a Billboard-defining cultural figure, the \emph{operational machinery} underneath her~-- a single human creative, supported by an agentic stack producing music, marketing, distribution and merchandise at a scale that would have required a small label to support five years ago~-- is a working business model that did not exist before the toolchain shipped. + +The implication for working creatives at the senior solo level is direct. The first four hires you would have made~-- production coordinator, junior researcher, scheduling and admin, post-production junior~-- are now agentic. The economic ceiling on your individual practice has, structurally, lifted. The constraint is no longer the throughput of the labour underneath you. The constraint is your own senior judgement bandwidth~-- the briefing, the taste, the integration, the \emph{Why}~-- which the agents cannot replace and which, on the chess-grandmaster argument of Chapter~\ref{ch:15}, has more commercial leverage in this market than it has had in any previous period. + +\subsection*{Six: Hyperlocal and long-tail cultural production} + +The sixth category~-- and the one I think will, in retrospect, prove to be the most culturally significant~-- is \emph{hyperlocal and long-tail cultural production}. The collapse of the cost of producing professional-grade creative work means that, for the first time in the history of mass media, \emph{every linguistic community, every regional culture, every minority cultural tradition, every niche audience} can produce work in its own language, in its own visual style, for its own audience, at production values that compete with global commercial output. + +The early shipped examples: + +\begin{itemize} + \item \textbf{Korin AI}, the Africa-trained and Africa-built music platform launched in spring 2026, is the canonical example of a \emph{deliberately culturally-specific} AI tool. The training data is African; the outputs are African; the platform exists to serve African creators rather than to backfill global pop with African aesthetic markers. + \item \textbf{Indian AI cinema and the Trilok / Animaj / Filmax DinoGames cluster.} India's regional-language film industries~-- Bollywood, Tollywood, Kollywood and the dozen smaller regional industries~-- have been among the most aggressive adopters of generative AI in the period this book covers. The reason is structural: the regional film industries operate at production budgets where AI's cost-reduction effect has \emph{the largest proportional impact.} A regional Indian feature that would have cost \$200,000 to produce in 2020 can, in 2026, be produced for a meaningful fraction of that, with comparable production values. The category of films that this brings into commercial viability~-- every regional cinema with a million-viewer audience but a six-figure budget ceiling~-- is, by my estimate, \emph{an order of magnitude larger} than the category that was commercially viable before. + \item \textbf{The Tunisian \emph{Lily}}~-- winner of the \$1m Dubai AI Film Award in January 2026~-- is the cleanest individual example of a film made \emph{outside} the major-market financing system, at a production value competitive with it, by a creative team using AI tooling as the cost-reduction lever. + \item \textbf{The 800-creator declaration's signatories} include working creatives from a meaningful number of national contexts that the historical Anglophone film/music/games industries have under-represented. The \emph{Stealing Our Work Is Not Innovation} coalition is, structurally, a coalition that includes the long tail of global creative work. +\end{itemize} + +The implication of this category is the one I am most personally hopeful about, and I want to be honest that \emph{hopeful} is the right word~-- there is a less-hopeful version of the same data, in which Anglophone AI tooling homogenises the global creative economy faster than the regional creative economies can develop their own infrastructure. The 2026 evidence I have is mixed enough that both outcomes are still on the table. + +What is not in doubt is that the \emph{production-cost ceiling that has, for a century, kept hyperlocal creative work below the threshold of professional commercial viability} is, by 2026, no longer the binding constraint. The next decade of cultural production will, I am confident, contain more local, more linguistically diverse, more culturally specific creative work than the previous decade~-- and the most culturally significant individual works of the next decade will, on the historical pattern, come from communities the existing global creative economy has under-served. The question is whether those communities own the tooling that produces them. + +\section*{What is not yet possible} + +Before I close, I want to be honest about the categories that are \emph{not yet shipping} in the form the platform-company keynotes have promised them, because the book's credibility depends on accurately characterising the gap between affordance and rhetoric. + +\textbf{AI does not yet write a satisfying novel from scratch.} The 2025--26 evidence on long-form prose generation is that AI systems produce technically competent prose that loses \emph{narrative purpose} over the length of a novel. Working novelists I have talked to who have experimented seriously with this category all describe the same failure mode: the prose is fine; the \emph{book is not a book.} This is consistent with the \emph{House of David} ``hand inside a puppet'' critique of AI-augmented storytelling at feature length. + +\textbf{AI does not yet do live performance.} No AI is touring in 2026. Xania Monet has not performed at Madison Square Garden. The cultural permission for a synthetic performer to share a stage with a live audience does not, as of this writing, exist in any meaningful form. The structural reason~-- the audience experience of \emph{being in a room with another human consciousness}~-- is, on the slop-ceiling reading, not a permission gap; it is a category mismatch. AI work and live performance are, for now, different categories. + +\textbf{AI does not yet do sustained emotional storytelling at feature length without human authorial spine.} The auteur-driven cinema of the Cameron / del Toro / Spielberg generation is, structurally, a category that depends on a \emph{single human consciousness running through every creative decision in the film.} AI-augmented versions of this category exist; AI-native versions of it do not. The \emph{Citizen Kane} of AI cinema has not been made. Whether it will be is, in my view, the single most interesting open creative question of the next decade. + +\textbf{AI struggles with cultural specificity that the model has not been trained on.} The BBC India observation I referenced in Chapter~\ref{ch:13}~-- that AI screenplays produce \emph{cultural-memory failures} when generating content for cultural traditions the training data has under-represented~-- is the binding limitation on AI's promise as a \emph{globally-distributed creative tool.} The hyperlocal-cultural-production category I described above depends, structurally, on this limitation being addressed by purpose-built regional model infrastructure (Korin AI, the Indian regional-language tooling, the various Asian-built models). Until that infrastructure matures, AI cultural-production is still, by default, Anglophone and Western-modelled. + +\section*{The binding constraint, restated} + +I want to close by returning to the structural fact that runs underneath every category of newly-possible work in this chapter. + +\textbf{Human attention is finite.} + +I am not making a romantic argument about it. I am making an economic one. The aggregate daily media-consumption time per adult, in any market the Nielsen-class telemetry covers, has been roughly stable for at least a decade~-- eleven or twelve hours a day, across all forms of media, all formats, all platforms, all devices. \emph{That number has not grown with the rise of streaming. It has not grown with the rise of mobile. It has not grown with the rise of social media. It has reallocated, sometimes dramatically. It has not expanded.} + +The producible content, meanwhile, has expanded by orders of magnitude. Deezer in 2026 receives 75,000 AI tracks a day; the listener has the same number of waking ear-hours she had in 2016. YouTube uploads run at hundreds of hours per minute; the viewer has, in net, the same daily screen-time budget. The Sora app produced a million downloads in five days; the audience for the work those million users are about to make has, in total, the same total attention they would have had if Sora had never shipped. + +This is the binding constraint of the entire 2025--26 creative-AI moment. The cost of producing work has collapsed; the supply of attention has not. Every category I have described in this chapter~-- remix, personalisation, audience participation, fan content, agentic support, hyperlocal production~-- is being built into a market where the \emph{production} side of the supply-and-demand equation is racing toward infinity and the \emph{consumption} side is bounded by the finite cognitive and biological capacity of the human nervous system. + +This has three structural implications. + +\noindent\textbf{One.} The competitive advantage in this market accrues, with iron consistency, to the producer of work that the audience \emph{chooses to spend its finite attention on} rather than the producer of work that the audience could, in principle, choose. The slop ceiling, the authenticity premium, the chess-grandmaster move, the \emph{Why}~-- these are not romantic notions. They are the \emph{mechanisms by which finite human attention selects from infinite producible content}. + +\noindent\textbf{Two.} The platform business models that depend on \emph{expanding audience attention faster than supply} are, on the structural reading, walking into a wall. The platform companies' current trajectories~-- push more content, optimise for engagement, monetise more minutes~-- work only as long as the engagement budget is elastic. It is not elastic. The audience cannot, on average, watch more hours per day than it already does. The platforms that get to those audiences first, and that build the most-defensible \emph{retention} mechanics, will win the share-of-attention game. The platforms that come second will be competing for an attention budget that the first-movers have already claimed. + +\noindent\textbf{Three.} The new categories of work I have described in this chapter will produce, in aggregate, more \emph{total creative output} than the previous decade. They will not produce, in aggregate, more \emph{audience attention received per minute of output.} The ratio of attention-to-output, which is what working creatives actually live on, is going to fall~-- sharply, in some categories, more gradually in others. The working creatives who survive the next decade will be the ones who recognise that the attention-to-output ratio is the metric that actually matters, and who position their practice in the categories where the ratio is most defensible. + +The categories where the ratio is most defensible~-- on the chess-grandmaster reading and the slop-ceiling reading and the authenticity-premium reading~-- are the categories where the work is \emph{most deliberately un-machine-like}, \emph{most authentically human-authored}, \emph{most culturally specific}, \emph{most personally risked.} The newly-possible work in this chapter is real and will reshape the creative economy. But it is being made in a market where the binding constraint is, and will remain, the finite attention of the audience watching it. + +The synth made entirely new sounds possible. The audience for those sounds was finite. The musicians who learned to make sounds \emph{the audience would spend its scarce listening time on}~-- Trevor Horn, Kraftwerk, the Bomb Squad, Aphex Twin, Daft Punk, every electronic-musician who built a serious career~-- are the ones we still listen to. The musicians who learned to make sounds the synth made possible \emph{but that the audience did not develop a hunger for}~-- the long tail of 1970s and 1980s synth-record obscurities~-- are remembered, mostly, by collectors. + +The AI moment will, on the historical pattern, work the same way. The newly-possible categories will create work that did not exist before. The audience will, on the available evidence, allocate its scarce attention to the work that \emph{earns} that attention. The working creatives who position themselves in the newly-possible categories, \emph{and} who make work that the audience deliberately chooses, are the ones who will define the next decade of the form. + +That is the operating manual. The categories are open. The constraint is real. The choice~-- like the chess-grandmaster's~-- is yours. diff --git a/latex/chapters/ch11_the_orchestrator.tex b/latex/chapters/ch11_the_orchestrator.tex new file mode 100644 index 0000000..3dbb61b --- /dev/null +++ b/latex/chapters/ch11_the_orchestrator.tex @@ -0,0 +1,164 @@ +\chapter{The Orchestrator}\label{ch:11} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{n} \emph{Dream Machine} Issue~2, in October 2025, I described the \textbf{Human--AI Agency Continuum} as a way of mapping how much of any given creative function is being done by the human in the chair and how much by the machine. In \emph{Dream Machine} Issue~13, in January 2026, I made a prediction that I want to look at again in this chapter, because~-- six months on~-- it has held up better than most of the others I made that day. + +I called 2026 \textbf{``the Year of the Orchestrator.''}\footnote{\emph{Dream Machine} Issue~13, ``Editor's Pick: The Year of the Orchestrator,'' 9 January 2026.} + +The argument was straightforward. If 2024 had been the year of the \emph{generator}~-- the prompt-and-respond text-to-image, text-to-video model~-- and 2025 had been the year of the \emph{agent}~-- the system that could take goals, plan, decide and execute multi-step tasks autonomously~-- then 2026, I argued, would be the year that working creatives stopped being \emph{operators} of these tools and started being \emph{orchestrators} of them. + +By ``orchestrator'' I meant something quite specific: a person whose job is not to make the work themselves but to direct, brief, integrate and judge the work of a team of AI agents and human collaborators. Not a producer in the old sense. Not a creative director in the old sense. Something newer, with a different skill set, a different rhythm, a different relationship to craft. + +This is the role I think most working creatives will be holding by 2030. This chapter is about why, what it looks like, what it asks of you, and where it breaks. + +\begin{figure}[htbp] + \centering + \includegraphics[width=0.92\textwidth]{wardley_creative_economy} + \caption{Wardley map of the creative economy landscape, showing the evolution of creative roles from genesis through custom-built to product and commodity as AI tools mature.} + \label{fig:wardley-creative-economy} +\end{figure} + +\section*{Forty-nine Claude agents and seventy-two skills} + +In May 2026, in the second-to-last issue I wrote before this book went to draft, I reported on something that I think of as the canonical image of what the orchestrator role actually is. \textbf{Sony}, in announcing its ``all-in on AI for games'' strategic move, disclosed that one of its game-development studios was running a coordinated multi-agent team of \textbf{49 Claude Code agents}, working with \textbf{72 skills}, on game-development tasks ranging from asset generation through QA through engineering through animation.\footnote{\emph{Dream Machine} Issue~29, May 2026, reporting on Sony's 49-agent / 72-skill multi-agent game-development team.} + +This is, in operational terms, a small army of synthetic colleagues working on a single creative project. Each agent has a defined role. Each skill is a defined capability. The whole apparatus is overseen by a \emph{substantially smaller number of human developers and creative leads} whose job is to plan the team's work, brief the agents, judge their outputs, integrate their contributions, and decide what gets into the game. + +The ratio matters. The pre-AI version of this game-development team would have been, plausibly, 50 to 100 people working on the same scope of work over a much longer timeline. The AI-augmented version, as Sony has set it up, is a much smaller number of \emph{senior, judgement-heavy} roles~-- people whose value is taste, narrative sense, gameplay design instinct, IP fluency, engineering oversight~-- sitting on top of a much \emph{larger} pool of synthetic capacity. + +What you don't see, in the Sony picture, is the disappearance of the junior roles. Those roles haven't disappeared. They have been \emph{replaced}~-- by agents. The 49 Claude Code agents are, in effect, the new junior developers, the new junior animators, the new junior writers. They work cheaply, they work fast, they work in parallel. They are not~-- and this is important~-- \emph{replacements for senior judgement.} They are leverage \emph{for} senior judgement. The whole pipeline is designed to take the senior creatives' time and multiply its effective reach by a substantial factor. + +The orchestrator, in this configuration, is the senior creative~-- the writer-director, the gameplay lead, the art director, the technical director~-- whose taste and judgement set the boundaries that the agent team works inside. + +I want to flag the obvious labour question here, because it is the question every working creative is asking, and any chapter that handwaves past it is not being honest. If the senior roles still exist, and the junior roles are now done by agents, \emph{where does the next generation of senior creatives come from?} The pipeline that has, for fifty years, produced senior creatives in the film, TV, games, music and design industries has worked by \emph{starting people as juniors and letting them grow.} If we remove the junior rung, we are~-- over the next decade~-- also removing the apprenticeship infrastructure that makes the senior rung possible. + +This is the structural risk of the orchestrator economy that platform companies are, in my view, not yet taking seriously. I name it the \textbf{Apprenticeship Gap}, and I will come back to it in Chapter~\ref{ch:14}. + +\section*{What the orchestrator does} + +In the talks I have given since publishing the ``Year of the Orchestrator'' piece in January, the question I get asked most often is: \emph{what does an orchestrator's day actually look like? What are the skills? What does the job description say?} + +I want to try to answer that in this chapter, in the most concrete language I can find, because I think the gap between \emph{what working creatives think they will be doing in 2030} and \emph{what they will actually be doing} is unhelpfully large. + +The orchestrator does five things: + +\noindent\textbf{One. They define the brief.} The agents~-- and the human team~-- work to a brief. The brief is the thing the orchestrator owns. It is not the prompt. The prompt is a derivative artefact. The brief is the \emph{creative intent} that the project exists to deliver: who it's for, what it's trying to do in the world, what success looks like, what tone, what feeling, what audience, what context. The orchestrator's first job is to know~-- clearly enough to communicate it~-- what the work is \emph{for.} + +\noindent\textbf{Two. They allocate work.} Given the brief, the orchestrator decides which parts of the work get done by humans, which by AI agents, and which by the orchestrator themselves. This is the practical, day-by-day application of the Human--AI Agency Continuum we talked about in Chapter~\ref{ch:3}. It is not a one-off decision. It is a constant series of micro-decisions about where on the continuum each function sits, in this project, on this day, for this output. + +\noindent\textbf{Three. They brief the agents.} This is the closest the orchestrator role gets to what people currently mean by ``prompt engineering,'' but it is a meaningfully different skill. Briefing a human collaborator and briefing an AI agent are not the same activity, but they share a core: the ability to \emph{describe what is wanted with enough precision and enough context that the recipient can produce something useful, without over-constraining them in ways that prevent useful surprise.} This is, in my experience, the single biggest skill differentiator between effective and ineffective AI-era creatives. The people who can brief well~-- who know when to give the agent a tight constraint and when to let it explore~-- are the people who produce the best output. + +\noindent\textbf{Four. They judge the outputs.} When the agents deliver, the orchestrator's job is to look at what came back and decide what to ship, what to revise, what to throw away. This is \emph{taste} in the most operational sense. It is also, crucially, \emph{taste under abundance}~-- taste exercised in a context where you can have ten versions of the same scene back in ninety seconds and your job is to choose, not to make. Choosing well under abundance is a different cognitive skill than choosing well under scarcity, and most creatives have been trained for the latter. The grandmaster analogy from Chapter~\ref{ch:15}~-- top chess players, in 2026, deliberately playing \emph{sub-optimal} moves to put their opponents on uncomputed ground\footnote{\emph{Bloomberg}, ``AI Changed Chess. Grandmasters Now Win With Unpredictable Moves,'' 27 March 2026. \url{https://www.bloomberg.com/news/articles/2026-03-27/ai-changed-chess-grandmasters-now-win-with-unpredictable-moves}. \emph{Dream Machine} Issue~23. The chess analogy is developed in Chapter~\ref{ch:15}'s \emph{Age of the Why} section.}~-- is the cleanest available picture of what this looks like in practice. The orchestrator's value is not in choosing the \emph{most-likely-good} output of the ten variants the agent returned. The agent has, by construction, already centred its output on the most-likely-good. The orchestrator's value is in seeing which of the ten variants would be the \emph{un-machine-like} move at this specific point of this specific project, and choosing that one. \emph{Taste under abundance} is, operationally, the discipline of refusing the machine-optimal output in favour of the deliberately-chosen one. + +\noindent\textbf{Five. They integrate.} A film is not the sum of its scenes. A game is not the sum of its assets. A campaign is not the sum of its individual creatives. The orchestrator's job, at the end, is to take the outputs of the agent team and the human team and assemble them into a coherent piece of work that has a \emph{single sensibility.} This is the part of the job that I think~-- for all the AI tooling~-- is least likely to become a thing AI can do. The integrated voice of a piece of work is a function of a single human consciousness running through it. The orchestrator role is, at its core, the role that holds that voice. + +If you read those five things back, you will notice that none of them are \emph{making.} They are all \emph{deciding.} The orchestrator's work product is decisions: about what to make, who or what should make it, whether the made thing is good enough, and how the made things fit together. + +This is, in some sense, what every senior creative director and showrunner has always done. The change is not the shape of the role. The change is that the role is no longer a privileged senior position at the top of a pyramid of junior makers. It is, increasingly, \emph{the entire role.} And it is the role that, in 2026 and 2027, working creatives at every level are being asked to grow into faster than the career-development infrastructure of any of the creative industries is built for. + +\section*{Where the agents go wrong} + +I want to spend some time on the failure mode of agentic creative work, because the press cycle around Sony's ``49 agents'' framing~-- and the corresponding announcements at Adobe Summit, NVIDIA GTC and elsewhere~-- has been heavy on the upside and thin on the downside. + +The agents go wrong, in my experience and in the experience of every working creative I have talked to about this, in four characteristic ways: + +\noindent\textbf{One. They confidently produce the wrong thing.} This is the most familiar failure mode and the one the public discourse has covered most. Agents~-- like the LLMs underneath them~-- \emph{hallucinate.} They will produce an asset that confidently disregards a key constraint of the brief. They will generate a character with the wrong eye colour. They will produce a piece of music in the wrong key. The fix, with current systems, is \emph{human review at every gate.} The cost of this review, in time, is the largest single source of the ``AI was an expensive mistake'' experience that Charles Cecil described and that many studios have replicated. + +\noindent\textbf{Two. They produce the \emph{mean} of the training distribution.} This is the more insidious failure. Agents, by default, will produce work that sits in the middle of what they have been trained on. The middle of a training distribution is, by definition, the \emph{most average} version of the thing you asked for. For creative work~-- where the value is almost always in the \emph{non-average}~-- the default output is structurally weak. To get above-average output, the orchestrator has to push, prompt, and curate against the gravitational pull of the mean. This takes deliberate, conscious effort and it takes taste to know what \emph{above-average} looks like in this particular project. + +\noindent\textbf{Three. They lose context across long tasks.} Agents working on multi-step tasks accumulate errors over the steps. A small misalignment in step one becomes a larger one by step five. By step ten, the output is meaningfully off-brief. The orchestrator's role is to \emph{check in} at the right intervals~-- not so often that you negate the benefits of agentic execution, not so rarely that the team has wandered off the brief by the time you look. + +\noindent\textbf{Four. They cannot tell when to stop.} Agents, given an open-ended task, tend either to over-iterate (producing fifty variants of the same thing without converging on one) or to under-iterate (producing one variant and stopping). The orchestrator's job is to set the \emph{stopping criteria} for the agents, which is, in practice, a series of judgment calls about \emph{when good enough is good enough.} This is a craft skill the agents do not, as of 2026, have. It is also a skill that, in my experience, almost every working creative already has~-- they just haven't had to use it on synthetic colleagues before. + +The Anthropic blog posts on agent deployment patterns through Q1 2026 made the point I want to land on here cleanly: agentic systems work best when they are deployed by people who already have the taste and judgment to know what good output looks like. They \emph{accelerate} people who are already good. They do not, on their own, make people good.\footnote{Anthropic blog content on agent deployment patterns, Q1 2026.} + +That is the orchestrator's job: to \emph{be the human who is already good}, holding the taste line, while the agent team produces faster than the human pipeline ever could. + +\section*{Sundance, and the literacy turn} + +I noted in the last chapter that the platform companies have responded to the AI-literacy gap by becoming, in addition to software companies, \emph{training organisations.} The most institutionally credible example of this turn, in the period this book covers, was \textbf{Sundance Institute}'s launch of an \textbf{AI Literacy Initiative} at the 2026 festival.\footnote{Sundance Institute, ``Centering the Artist: Why We're Launching the AI Literacy Initiative.'' \url{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}. \emph{Dream Machine} Issue~16.} + +I want to spend a moment on what Sundance did, because the framing is important. + +The Institute's announcement did not say \emph{``AI is the future of filmmaking; here is how to use it.''} It said something more careful. It said that AI is a fact of the filmmaking landscape, that filmmakers are going to have to make decisions about whether and how to use it, and that those decisions should be made by \emph{informed} filmmakers with \emph{agency over their own practice}~-- not by filmmakers who have had the tools imposed on them by clients, by streamers, or by tool vendors.\footnote{Sundance Institute, \emph{op.\ cit.}} + +The framing was \emph{creator empowerment}. The mechanisms were free learning through Sundance Collab, community conversations, a fellowship and alliance model, and a Story Forum that specifically tackled the legal questions creators face when they use AI: whether AI-generated content can be copyrighted, how to protect projects in a world of contested datasets, how to negotiate AI clauses in production contracts.\footnote{Sundance Story Forum 2026 sessions on legal toolkits for producers using AI. \emph{Dream Machine} Issue~16.} + +Google funded this. The \$2 million the company put into the Institute, with the stated aim of training 100,000+ artists in foundational AI skills, was both an act of corporate generosity and a strategic investment in the \emph{category} of ``filmmaker who can use AI without losing their creative authority.''\footnote{Google blog, ``Sundance Institute AI Education.'' \url{https://blog.google/company-news/outreach-and-initiatives/google-org/sundance-institute-ai-education/}. \emph{Dream Machine} Issue~15.} Both motivations are real. Both can be true. What matters, for the working filmmaker in 2026, is that the institutional infrastructure for becoming an AI-literate orchestrator~-- without surrendering creative agency~-- now exists. + +The McKinsey AI report on film and TV production, released in early 2026, made the corresponding business case. AI would not, in McKinsey's view, replace film and television production. It would \emph{restructure} it~-- towards smaller teams, faster cycles, more iteration, and a heavier reliance on senior creative judgement.\footnote{McKinsey \& Company, ``What AI could mean for film and TV production and the industry's future.'' \url{https://www.mckinsey.com/industries/technology-media-and-telecommunications/our-insights/what-ai-could-mean-for-film-and-tv-production-and-the-industrys-future}. \emph{Dream Machine} Issue~16.} In other words: towards an orchestrator-shaped industry. + +\section*{The middle layer disappears} + +What is happening, structurally, in every creative industry that the \emph{Dream Machine} newsletter has tracked in these six months, is that the middle layer of the workforce~-- the layer of \emph{intermediate} roles, between the very senior creative leadership and the very junior entry-level~-- is being absorbed into the agent layer. + +This was the story behind \textbf{Ubisoft}'s decision in January 2026 to cancel five games, including the \emph{Prince of Persia} remake, while pouring more money into AI.\footnote{\emph{Metro}, ``Prince of Persia remake and five more games cancelled as Ubisoft focuses on AI.'' \url{https://metro.co.uk/2026/01/21/prince-persia-remake-five-games-cancelled-ubisoft-focuses-ai-26431926/}. \emph{Dream Machine} Issue~15.} It was the story behind \textbf{Square Enix}'s target of doing 70\% of its QA work via AI by the end of 2027.\footnote{\emph{PC Gamer}, ``Square Enix, makers of Final Fantasy, aims to have AI doing 70\% of its QA work by the end of 2027.'' \url{https://www.pcgamer.com/gaming-industry/square-enix-aims-to-have-ai-doing-70-percent-of-its-qa-work-by-the-end-of-2027/}. \emph{Dream Machine} Issue~7.} It was the story behind \textbf{Falcom}'s description of work that \emph{``previously took 2--3 hours'' being completed ``in 10 minutes''} with AI tools.\footnote{\emph{Eurogamer}, ``Falcom is the latest developer to buy into the AI hype machine.'' \url{https://www.eurogamer.net/falcom-is-the-latest-developer-to-buy-into-the-ai-hype-machine}. \emph{Dream Machine} Issue~12.} \emph{Eighteen-to-one productivity.} That ratio, taken on its own, is what re-shapes the headcount calculus for every studio's mid-level production work in the next eighteen months. It was the story behind the \emph{Take-Two CEO}'s explicit framing that AI ``won't invent the next \emph{Grand Theft Auto}''~-- meaning, the \emph{creative direction} won't come from the machines~-- even as Take-Two's QA, asset and engineering pipelines absorb AI capacity rapidly.\footnote{\emph{NDTV Profit}, ``Don't Expect AI To Invent the Next `Grand Theft Auto', Says Take-Two CEO Strauss Zelnick.'' \url{https://www.ndtvprofit.com/technology/dont-expect-ai-to-invent-the-next-grand-theft-auto-says-take-two-ceo-strauss-zelnick}. \emph{Dream Machine} Issue~6.} + +In film, you see the same pattern. \textbf{Spielberg} explained in March 2026 why he hadn't yet used AI directly\footnote{\emph{Dream Machine} Issue~21, on Spielberg's public position on AI.}~-- and the same press cycle reported that he had a substantial AI-augmented team working on production-pipeline tasks underneath him. \textbf{Steven Soderbergh} committed to ``a lot of AI'' on the Wagner Moura film and a John Lennon documentary, framing it explicitly as transparency: ``I owe people honesty.''\footnote{\emph{Dream Machine} Issues~25, 28, on Steven Soderbergh's AI work.} In every case, the structure is the same: a senior creative voice on top, an AI-augmented operational layer underneath, \emph{fewer mid-career intermediaries in between.} + +In advertising, the pattern was even more pronounced. \textbf{Independent agencies} faced what \emph{Digiday} called ``a new frontier as agency-in-a-box tools democratize creativity.''\footnote{\emph{Digiday}, ``Independent agencies face new frontier as agency-in-a-box tools democratize creativity.'' \url{https://digiday.com/marketing/independent-agencies-face-new-frontier-as-agency-in-a-box-tools-democratize-creativity/}. \emph{Dream Machine} Issues~6, 14.} \textbf{AI agent developers} became ``adland's in-demand role.'' The framing from one agency hiring lead, given to \emph{Digiday}, captures the shift better than any of the trend-piece coverage: \emph{``We actually need people who understand [AI], who are building systems organically within their day to day workflows. People who understand taking what took them 40 hours one week and turning it into 38 the next week.''}\footnote{\emph{Digiday}, ``AI agent developers have become adland's in-demand role.'' \url{https://digiday.com/marketing/ai-agent-developers-have-become-adlands-in-demand-role/}. \emph{Dream Machine} Issue~7.} The job description is no longer \emph{make the work.} It is \emph{make the system that makes the work~-- and keep shaving hours off it.} The PGA Tour expanded its AWS partnership to put AI content at the heart of its content distribution.\footnote{PYMNTS, ``AI Content Is Par For The Course With PGA Tour's Expanded AWS Partnership.'' \url{https://www.pymnts.com/artificial-intelligence-2/2026/ai-content-is-par-for-the-course-with-pga-tours-expanded-aws-partnership/}. \emph{Dream Machine} Issue~15.} \textbf{Mondelez} said it would use AI for TV ads in 2026.\footnote{\emph{The Verge}, ``Oreo-maker Mondelez will use AI for TV ads next year.'' \url{https://www.theverge.com/news/806047/mondelez-ai-generated-ads}. \emph{Dream Machine} Issue~5.} \textbf{Avocados From Mexico} turned to AI to advertise around the Super Bowl, \emph{instead of} a traditional TV buy.\footnote{\emph{Digiday}, ``Avocados From Mexico turns to AI to advertise around the Super Bowl instead of a TV buy.'' \url{https://digiday.com/marketing/avocados-from-mexico-turns-to-ai-to-advertise-around-the-super-bowl-instead-of-a-tv-buy/}. \emph{Dream Machine} Issue~15.} \textbf{Adobe} said that AI in marketing was now ``agentic creative intelligence.''\footnote{\emph{Dream Machine} Issue~26.} + +In journalism, the Reuters Institute's ``AI adoption by UK journalists'' survey found high integration of AI tools across newsrooms by late 2025.\footnote{Reuters Institute, ``AI adoption by UK journalists and their newsrooms: surveying applications, approaches, and attitudes.'' \url{https://reutersinstitute.politics.ox.ac.uk/ai-adoption-uk-journalists-and-their-newsrooms-surveying-applications-approaches-and-attitudes}. \emph{Dream Machine} Issue~9.} Daily Mail reported that Google's AI Overviews had ``killed click-throughs'' to news sites.\footnote{\emph{Digiday}, ``Daily Mail says Google AI Overviews have killed click-throughs.'' \url{https://digiday.com/media/daily-mail-says-google-ai-overviews-have-killed-click-throughs/}. \emph{Dream Machine} Issue~7.} \emph{The Times} was using AI to model synthetic focus groups from human audiences.\footnote{\emph{Digiday}, ``How The Times is using AI to model synthetic focus groups from human audiences.'' \url{https://digiday.com/media/how-the-times-is-using-ai-to-model-synthetic-focus-groups-from-human-audiences/}. \emph{Dream Machine} Issue~6.} In each case, \emph{the middle layer of the journalism workforce}~-- the sub-editors, the copy editors, the data journalists, the social-media producers~-- was the layer most exposed to AI substitution. + +I want to be honest about what this means. \emph{It does not mean that every working creative in the middle of their career is about to lose their job.} That framing~-- the apocalyptic one~-- has, for two years, been the most popular and the most wrong. What it means is that the \emph{shape} of the mid-career role is changing. Mid-career creatives who can become orchestrators of agent teams will, in many cases, \emph{gain} leverage and earning power. Mid-career creatives who cannot~-- who try to keep doing the maker-as-craftsperson job at the speed and price of the agents~-- will, increasingly, struggle. + +The Sundance literacy turn, the Adobe and Google training investments, the UK government's free-AI-training-for-all programme~-- these are the institutional response to that pressure. They are not enough on their own. They are, however, the right direction. + +\section*{The portfolio creative} + +There is one more shape of the orchestrator role that I want to flag, because it is the one I see most often in my own studio and in the wider DreamLab community: the \textbf{portfolio creative.} + +A portfolio creative is someone who, instead of holding a single specialist role, holds \emph{several} loosely-coupled creative roles across different disciplines, supported by AI tooling that lets them maintain useful proficiency in each. The portfolio creative is a writer-director, but also a creative technologist; a music producer, but also a video editor; a games designer, but also a brand strategist. + +The \emph{TechBullion} piece ``Why the future belongs to multi-skilled leaders,'' from November 2025, made the case for this from a corporate-leadership angle.\footnote{\emph{TechBullion}, ``Why the future belongs to multi-skilled leaders.'' \url{https://techbullion.com/playing-the-long-game-with-a-portfolio-career-why-the-future-belongs-to-multi-skilled-leaders/}. \emph{Dream Machine} Issue~9.} The Anthropic Skills framework~-- the system of named, reusable skills that Claude Code now uses to coordinate multi-agent workflows~-- is, in effect, an attempt to make the portfolio-creative model into a \emph{technical infrastructure} rather than a personality type.\footnote{Anthropic Skills framework via Claude Code, reported through \emph{Dream Machine} Issues~11, 16, 29.} The \emph{Forbes} piece ``AI Is Changing How Creators Work And Earn,'' from December 2025, surveyed the same phenomenon from the working-creator angle and found the same pattern: the most economically successful creators in 2026 are not specialists. They are \emph{integrators} who can work across disciplines using AI as the connective tissue.\footnote{\emph{Forbes}, ``AI Is Changing How Creators Work And Earn.'' \url{https://www.forbes.com/sites/kolawolesamueladebayo/2025/12/22/how-ai-is-changing-how-creators-work-and-earn/}. \emph{Dream Machine} Issue~13.} + +In my own studio, the move towards portfolio creatives has been a deliberate strategic choice~-- and an honestly difficult one to execute. The cultural expectation, in most creative industries, has been to hire specialists and stack them in a pipeline. The portfolio-creative model requires you to \emph{hire generalists} and let them move between disciplines as the work demands. The former is easier to manage, easier to bill, easier to explain. The latter, in my experience, produces better work in the AI era, because the human is doing the integration that the agents can't. + +The portfolio creative is the orchestrator at the level of an individual career. The orchestrated team is the orchestrator at the level of a project. The same pattern shows up at multiple scales. + +\section*{Five orchestrators, briefly} + +I want to give five working orchestrator case studies, because the abstract description above can sit in the head as a theory without the operational texture of \emph{what the role actually looks like} on a Wednesday afternoon. Each of the five is a specific working creative or organisation whose practice in 2025--26 I think represents a different \emph{shape} of the orchestrator role. Each is documented in the \emph{Dream Machine} newsletter archive. Each is, on my read, doing something that working creatives reading this book can learn directly from. + +\textbf{Andrii Daniels (Ukraine).} The independent filmmaker who, in December 2025, produced a \emph{Deadpool} / \emph{Harry Potter} Christmas mash-up in a Ukrainian bomb shelter using a Runway-and-Veo-and-ElevenLabs stack on a laptop running through a generator. The clip went viral and was picked up by Variety as a profile piece.\footnote{Variety, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter.'' \url{https://variety.com/2026/digital/news/ai-video-deadpool-harry-potter-andrii-daniels-1236624632/}. \emph{Dream Machine} Issue~16.} What Daniels did, operationally, was the orchestrator role at its purest: a single human creative, holding the taste and the narrative judgement, briefing a stack of generative tools to produce work whose production conditions would have been physically impossible eighteen months earlier. Daniels did not write, draw, animate, voice or render the work. He \emph{briefed} it. He \emph{integrated} it. He \emph{judged} what was good enough. He \emph{delivered} the finished piece, on his own, with no studio underneath him. The bomb-shelter context is the dramatic detail; the underlying operational pattern is what makes Daniels' practice replicable for working filmmakers in any production environment. + +\textbf{The Imaginae Studios / \emph{Art Awakens} team (Fremantle).} The AI-native studio I described in Chapter~\ref{ch:7} has, by mid-2026, settled into an operational pattern that maps cleanly to the five-function orchestrator description above. A small senior team of writer-directors, supported by an AI-augmented production pipeline that handles concept development, asset generation, scene assembly and post-production. \emph{Art Awakens}~-- Imaginae's flagship 2026 development project, fusing AI techniques with classical painting IP~-- has, on the published interviews with the team, been produced by a core human team of fewer than ten people running an agentic pipeline that, by their own estimate, produces output that would have required a sixty-to-eighty-person team five years ago. The 8:1 productivity ratio is the orchestrator economy expressed at the studio scale. + +\textbf{Sven Vincke / Larian Studios.} The opposite case, also instructive. Larian, the maker of \emph{Baldur's Gate 3}, has~-- as I described in Chapter~\ref{ch:7}~-- \emph{publicly refused} generative AI for its next major game while continuing to use AI-augmented tooling in \emph{adjacent} parts of the pipeline (QA, localisation, internal admin, asset management). Vincke's framing, in his January 2026 statements, was \emph{not} anti-technology. It was \emph{position-on-the-continuum}: certain parts of the game's authorial signature (writing, character design, world-building, dialogue) had to remain \emph{fully human} for commercial and cultural reasons; certain other parts (build tooling, QA automation, marketing-asset generation) could be AI-augmented at no audience-visible cost. Vincke is, in operational terms, \emph{an orchestrator at the level of the studio's continuum positioning}. He is making the agency-line decisions at the strategic level that the working filmmaker makes at the project level. The role is the same. The scope is different. + +\textbf{Xania Monet / Hallwood Media / Telisha Jones.} The case I have, in Chapter~\ref{ch:5}, been most equivocal about. The structural pattern is, on inspection, an orchestrator economy operating at the \emph{single-artist} level. Telisha Jones, the human lyricist, is the orchestrator. The Suno music-generation stack is the agentic capacity producing the \emph{executed} musical output. The Xania Monet persona is the \emph{audience-facing} product. Hallwood Media's \$3M deal pays for the orchestrated work as a unit, with the orchestrator (Jones) receiving the commercial credit and revenue that the synthetic-vocalist alone could not have generated. Whether this scales into a sustained cultural-star career~-- the Chapter~\ref{ch:5} slop-ceiling argument suggests, on six months of evidence, that it has not~-- is a separate question from whether it works as a \emph{business form}. As a business form, it is the orchestrator role at the level of a solo recording artist. + +\textbf{The Sony game-development teams running 49 Claude agents and 72 skills.} The canonical \emph{enterprise-scale} orchestrator case I opened the chapter with. The 49-agent / 72-skill stack is, in operational terms, an organisational design for the orchestrator role at the \emph{team} level: a small group of senior creative leads (writer-directors, gameplay design leads, art directors, technical directors) orchestrating a multi-agent synthetic team whose individual outputs require senior human review and integration. The 49 agents are not autonomous studio replacements. They are \emph{leverage} for the human orchestrators. The 72 skills are the \emph{reusable capabilities} the orchestrators can deploy across multiple projects. + +I want to be honest about what the five cases share, because the shared pattern is the operational lesson. + +In every case, the orchestrator's \emph{contribution} is the same five-function set I described above: brief, allocate, brief-the-agents, judge, integrate. None of the five is doing the production-execution labour themselves. All of them are making \emph{decisions} that direct a synthetic (and, in most cases, also a human) team to do the production-execution labour on their behalf. The \emph{value} the orchestrator brings to the work is, in every case, the senior judgement that the agents cannot supply: the taste that knows what good output looks like, the briefing skill that gets useful output out of the agents, the integration sense that assembles the agent outputs into a coherent piece of work. + +In every case, the orchestrator's \emph{leverage}~-- the ratio of finished output produced to working hours spent~-- is dramatically higher than the equivalent practitioner could produce without the agent layer underneath them. Daniels would not have made the Christmas clip in a week pre-AI. Imaginae would not have produced \emph{Art Awakens} at the pace and budget they are producing it at. Jones would not have shipped a Billboard-charting record without Suno. Sony's game-development teams would not have shipped on the cadence they are shipping at. The leverage is real. The leverage is what makes the orchestrator role \emph{commercially} viable as a new form of working practice. + +In every case, the orchestrator's \emph{fragility} is also the same: the practice depends on the toolchain underneath it continuing to be available, accessible, on commercial terms the orchestrator can sustain, with model behaviour that the orchestrator can predict and brief against. The platform-dependency of the orchestrator role is the structural risk that Chapter~\ref{ch:9} addresses. It is also the reason the \emph{open-the-black-box} argument I made in Chapter~\ref{ch:3} is operationally serious: the orchestrators who depend on closed-platform tooling without understanding the dependency are, structurally, exposed to platform-pricing and platform-policy decisions that they have no control over. + +The orchestrator role is, in operational summary, \emph{high-leverage and platform-dependent}. The working creatives reading this who are positioning themselves toward the role need to take both halves of that description seriously. The leverage is the upside. The platform dependency is the work that has to be done to defend the upside over time. + +\section*{The role this asks you to play} + +If you are a working creative reading this~-- and most of the readers of \emph{Dream Machine} are~-- the question I am sure you have is: \emph{what does this mean for me, this year?} + +The honest answer is that it depends on where you are on the continuum we drew in Chapter~\ref{ch:3}. But there are some things I would say to almost everyone I know in the creative industries right now, and I want to put them on the page. + +\textbf{Practice briefing.} It is the single most leveraged skill you can develop. Brief your AI tools as if you were briefing a junior who has thirty seconds to understand what you want and ninety seconds to do it. The discipline of \emph{being able to communicate what you want} will improve every other part of your creative practice. + +\textbf{Cultivate taste deliberately.} Look at more good work, harder, with a more critical eye. The agents will, by default, give you the average. Your job, increasingly, is to know what \emph{good} is. That knowledge is a function of how much good work you have looked at, how seriously, with how much craft attention. + +\textbf{Stay in the work.} Resist the temptation to abstract too far. The director who never picks up the camera, the showrunner who never writes, the music producer who never plays the instrument~-- these are the figures most likely to lose the touch that makes their judgement worth anything in the first place. The portfolio creative is \emph{not} a creative who has lost contact with the craft. They are someone who maintains craft contact in \emph{several} domains. + +\textbf{Choose your line on the Continuum, and defend it.} Decide where your craft sits, where you are willing to let the agents work, and where you are not. Write it down. Communicate it to clients, collaborators, your team. Be willing to walk away from work that would force you across the line you have drawn. + +\textbf{Build the apprenticeship.} If you are senior enough to be running a team, take seriously the question of where the next generation of senior creatives is going to come from. The orchestrator model breaks if there is no path from junior to senior for new humans entering the field. The studios and agencies that survive the next decade will be the ones that solve this problem~-- by keeping some junior roles in human hands, by creating new pathways through AI-tool-augmented apprenticeship, by investing in the literacy infrastructure that the platform companies and the institutes have started but cannot finish on their own. + +The Year of the Orchestrator is not a coronation. It is a job description. It is what most of us are now being asked to do, whether we have signed up for it or not. The people who do it well will set the terms of the next creative economy. The people who don't will, increasingly, be sat next to it. + +The thing I want to land before we leave this chapter is that the orchestrator role~-- for all the leverage it brings and for all the productivity it unlocks~-- depends, in the end, on something that the platform companies cannot ship and the agents cannot synthesise. It depends on the human in the chair \emph{being someone}. Having taste. Having judgement. Having a perspective. Having the kind of relationship with the work that the agents do not, and probably will not, have. + +That relationship~-- the kind of \emph{authorship} that makes the work feel like it belongs to a person rather than a process~-- is, increasingly, the only signal the audience trusts. + +That is the subject of the next chapter. diff --git a/latex/chapters/ch12_authenticity_new_scarcity.tex b/latex/chapters/ch12_authenticity_new_scarcity.tex new file mode 100644 index 0000000..233590b --- /dev/null +++ b/latex/chapters/ch12_authenticity_new_scarcity.tex @@ -0,0 +1,177 @@ +\chapter{Authenticity as the New Scarcity}\label{ch:12} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{n} early 2026, a stop-motion animator who goes by \emph{Tiny Grandma} on YouTube uploaded a short to her channel. It was a stop-motion piece~-- claymation, frame by frame, the kind of work that takes weeks to make a few seconds of. YouTube's AI-detection systems flagged it as AI-generated content and applied the platform's automated labelling. The video went viral, not because of the animation, but because the platform's automated system had wrongly flagged genuine human handcraft as synthetic.\footnote{\emph{Dream Machine} Issue~29 reportage of Tiny Grandma stop-motion content being wrongly flagged as AI by YouTube's automated detection, May 2026.} + +The story of \emph{Tiny Grandma} is the perfect inverse of the Tilly Norwood story we opened with in Chapter~\ref{ch:1}. + +If Tilly Norwood was the moment a synthetic creation tried to enter the working creative economy as if it were human, \emph{Tiny Grandma} was the moment a human creation was wrongly identified as synthetic by the very systems that were supposed to protect the public from synthetic content. Both moments tell you the same thing, from opposite directions: the \emph{signal} of whether a piece of creative work was made by a human is now an economic, cultural and legal asset of the first order, and the infrastructure for reliably establishing that signal is one of the most underdeveloped parts of the current creative economy. + +This is the chapter about \emph{provenance.} About why the question ``did a person make this?'' has become~-- in eight months~-- the single most important question in creative AI policy, and about what the people, companies and institutions trying to answer it are doing about it. + +\section*{The death threats} + +In April 2026, \emph{Dream Machine} Issue~23 reported, with as little editorialising as I could manage, that \textbf{Tilly Norwood's creator Eline Van der Velden} had received death threats.\footnote{\emph{Dream Machine} Issue~23, April 2026, reporting death threats against Eline Van der Velden following Tilly Norwood's continuing public role.} + +The threats were not, of course, justified by anything. Death threats never are. But the cultural reaction that produced them~-- the visceral, sustained hostility that built up around the \emph{idea} of a synthetic actress through the autumn of 2025 and the spring of 2026~-- was not random. It was a specific response to a specific kind of cultural transgression. \emph{You came here pretending to be one of us. You took something that belongs to us.} + +The death threats are the extreme tail of a much larger curve of audience response that has been quietly shaping the AI creative economy for these six months. The slop ceiling in Chapter~\ref{ch:5}~-- the 44\%-to-3\% Deezer ratio~-- is the polite version of the same response. The vehement audience pushback against AI art in \emph{Call of Duty: Black Ops 7} and \emph{Anno 117} in November 2025 is another version. The viral reaction to \emph{Spotify}'s AI music infiltrating Discover Weekly playlists, the public anger at \emph{McDonald's Netherlands'} AI Christmas ad, the ``\emph{disturbing}'' reception of \emph{Valentino}'s AI handbag campaign~-- every one of these episodes is the audience saying, in increasingly direct terms, \emph{we know what is human-made, we want what is human-made, and we are paying attention to who is trying to slip us something else.} + +This is the cultural pressure that \emph{authenticity-as-scarcity} describes. It is not, as some of the more dismissive AI commentary has framed it, a romantic attachment to old craft. It is a \emph{market signal.} The audience is allocating attention, money and trust on a basis that increasingly weights human authorship as a positive variable. I have come, in talks since the autumn, to call this the \textbf{Authenticity Premium}~-- the measurable excess of attention, willingness to pay, and cultural credit that audiences allocate to creative work whose human authorship can be verified. The Authenticity Premium is the \emph{positive} side of the slop ceiling: the slop ceiling tells you what audiences \emph{will not} engage with; the Authenticity Premium tells you what they \emph{will pay extra for.} Both are market findings. Both are produced by the same underlying audience behaviour. The data is unambiguous. The strategic implication, for every working creative and every studio operating in this period, is also unambiguous. + +In May 2026, \textbf{Bobby Berk}~-- the \emph{Queer Eye} design lead~-- articulated the working-talent version of the same finding in a single line that I think is worth quoting in full because it captures the Premium argument from inside the unscripted-TV business: AI, he said, will make \emph{reality TV and ``verifiably human content'' more valuable}, not less.\footnote{\emph{Hollywood Reporter}, ``Bobby Berk Says AI Will Make Reality TV \& `Verifiably Human Content' More Valuable.'' \url{https://www.hollywoodreporter.com/tv/tv-news/bobby-berk-ai-reality-tv-1236592920/}. \emph{Dream Machine} Issue~30.} What Berk is describing, in industry-of-the-thing terms, is the supply-and-demand mechanism the rest of this chapter is about. As the synthetic supply of \emph{any} content category expands, the \emph{verifiably human} corner of the same category accrues a scarcity premium. Reality TV is, structurally, the unscripted broadcast form most resistant to AI replacement~-- it is the form whose entire commercial proposition is \emph{real people, in real situations, producing unscripted reactions whose value depends on us knowing they are real.} That is the Authenticity Premium drawn down to a single broadcast genre, and Berk's read is, on the structural argument, exactly right. + +The chess analogy I develop at length in Chapter~\ref{ch:15} sits underneath this. The Authenticity Premium is what it looks like when an audience, faced with an infinite supply of machine-optimal work, allocates its scarce attention to the \emph{deliberately un-machine-like} move. The 88\% of UK respondents who wanted licensing-in-all-cases were articulating the same preference at the policy layer. The 44\%-to-3\% Deezer ratio was the same preference at the listening layer. The Television Academy's ``tools used to bring it to life'' language was the same preference at the institutional layer. The Authenticity Premium is, at its core, the \emph{commercial price} of the deliberately-human move~-- the move the engine, by construction, could not have made~-- and the audience's reliable willingness to pay it. + +The question is what the \emph{infrastructure} for honouring that signal looks like. + +\section*{Fingerprinting real media} + +I quoted Adam Mosseri~-- the head of Instagram~-- in Chapter~\ref{ch:4} making the case that the platforms should focus on ``fingerprinting real media'' rather than chasing AI slop disclosure. The fuller version of his argument, made repeatedly across late 2025 and early 2026, was that the current approach to AI content moderation~-- trying to detect and label everything synthetic~-- is unwinnable.\footnote{\emph{Digital Music News}, ``Instagram Chief Says We Should `Fingerprint Real Media' Instead of Tracking and Disclosing AI Slop.'' \url{https://www.digitalmusicnews.com/2026/01/05/instagram-chief-ai-slop-comments/}. \emph{WebProNews}, ``Instagram Head Warns AI Images Erode Trust, Calls for Verification Standards.'' \url{https://www.webpronews.com/instagram-head-warns-ai-images-erode-trust-calls-for-verification-standards/}. \emph{Dream Machine} Issue~13.} The volume is too high, the detection is too unreliable, and the labelling produces both false positives (Tiny Grandma) and false negatives (the AI hate-songs spreading across European Spotify charts in November 2025).\footnote{\emph{Digital Music News}, ``AI-Generated Far-Right Hate Songs Aren't Just a Problem in the US~-- Now They're Spreading Across Europe Too.'' \url{https://www.digitalmusicnews.com/2025/11/09/ai-generated-hate-songs-dutch-spotify-charts/}. \emph{Dream Machine} Issue~7.} + +The alternative Mosseri and others have argued for is \emph{the inverse:} instead of trying to catch what's synthetic, build infrastructure that can \emph{prove what's human.} A capture-time fingerprint~-- a cryptographic signature embedded by the camera, the microphone, the editing software, the upload pipeline~-- that travels with the file through its entire life on the public web. + +The technical infrastructure for this is, as of 2026, partially built. The \textbf{Content Authenticity Initiative}, an Adobe-led coalition of camera makers, software companies and news organisations, has been working on it since 2019. By late 2025, \textbf{C2PA} (Coalition for Content Provenance and Authenticity) standards were supported by most major camera manufacturers, most major editing platforms, and a growing number of social-media uploads pipelines. The standards are robust enough that a photo taken with a C2PA-enabled camera, edited in Photoshop with C2PA-aware tools, uploaded to a C2PA-supporting platform, can carry a verifiable chain-of-custody for its entire provenance, from sensor to viewer. + +Underneath this is \textbf{Google's SynthID}~-- a watermarking system that Google has been deploying across its AI generation tools, including Veo and Lyria.\footnote{Google DeepMind SynthID watermark roll-out across Veo, Lyria and Imagen products. \emph{Dream Machine} Issues~11, 12.} In December 2025, the company announced that users could ask the Gemini app, \emph{``Is this video made with AI?''}, and receive a reliable yes/no answer based on the SynthID watermark. By January 2026, this capability was available in the consumer Gemini product.\footnote{Google DeepMind, ``Verify Google AI-generated videos in the Gemini app.'' \url{https://www.linkedin.com/posts/googledeepmind_verify-google-ai-generated-videos-in-the-activity-7407748300688478208-fJgW}. \emph{Dream Machine} Issue~12; broader coverage in \emph{SmartBrief}, ``Google's Gemini can now spot AI-generated videos.'' \emph{Dream Machine} Issue~13.} At Google I/O 2026, the company reported that \textbf{SynthID had marked over 100 billion items} across its own ecosystem and was being extended to partner platforms including \textbf{OpenAI}, \textbf{ElevenLabs} and \textbf{Kakao}.\footnote{Google DeepMind, ``SynthID~-- 100 billion watermarks, expanding to partner ecosystems including OpenAI, ElevenLabs and Kakao.'' \url{https://deepmind.google/discover/blog/synthid-100-billion-watermarks-partners/}. \emph{Dream Machine} Issue~30.} That cross-vendor expansion is the single most consequential development on the provenance side of the period this book covers: a watermarking standard, born inside one platform, is~-- for the first time~-- being adopted across the foundation-model companies that have until now competed against one another on every other axis. If the C2PA Content Credentials standard is the \emph{capture-time} spine of authenticity infrastructure, SynthID-across-vendors is, as of May 2026, the closest thing the industry has to a \emph{generation-time} spine. + +These technologies are not, on their own, sufficient. Watermarks can be stripped by determined adversaries. C2PA chains break when files pass through non-compliant tools. The reliability of any given piece of provenance metadata depends on the integrity of every link in its chain. The trust infrastructure is still~-- relative to the speed of the AI rollout~-- early. + +But what these technologies are doing, collectively, is establishing the \emph{category.} They are saying: the question \emph{did a person make this?} is technically answerable, with high reliability, given the right tooling. The next decade of cultural and legal policy in the creative industries will be~-- in significant part~-- about who controls that tooling, who decides what it certifies, and what economic value it carries. + +If you want to know where the next ten years of investment, policy and platform politics in creative AI is going, watch the provenance layer. The companies that win the provenance infrastructure will be~-- in a real sense~-- the companies that own the \emph{signal of authenticity} that the audience increasingly demands. + +\section*{The trademark, the trust, the tax} + +The cultural pushback against synthetic content has produced, alongside the technical provenance infrastructure, a parallel set of \emph{legal and contractual} defences that working creatives have begun deploying around their own work and identity. + +\textbf{Taylor Swift} filed trademarks on her voice and image in early 2026, specifically citing AI deepfake concerns.\footnote{\emph{Dream Machine} Issues~23, 27 reportage on Taylor Swift's voice/image trademark filings.} \textbf{Matthew McConaughey} publicly drew the same line in January 2026.\footnote{\emph{Lawyer Monthly}, ``Matthew McConaughey Draws a Line to Protect His Voice and Image From AI.'' \url{https://www.lawyer-monthly.com/2026/01/matthew-mcconaughey-protects-voice-image-ai/}. \emph{Dream Machine} Issue~15.} \textbf{Madonna and Will Smith} appeared in AI videos by Higgsfield in early 2026, the Madonna piece becoming a marquee example of how a major artist could \emph{deliberately} deploy synthetic imagery as part of their own brand.\footnote{\emph{Adweek}, ``Meet the \$1.3 Billion Startup Behind Madonna and Will Smith's AI Video.'' \url{https://www.adweek.com/media/higgsfield-ai-marketing-startup/}. \emph{Dream Machine} Issue~16.} In the same vein, \textbf{The Rolling Stones} released \emph{In The Stars} in May 2026, with a music video that used AI to de-age the band~-- produced, in a small piece of cross-industry casting that says something about where this category is heading, by the AI company belonging to the \textbf{South Park} creators Trey Parker and Matt Stone.\footnote{\emph{Rolling Stone}, ``The Rolling Stones Release New Single `In the Stars'~-- With a Music Video De-Aging the Rockers Courtesy of AI.'' \url{https://www.rollingstone.com/music/music-news/rolling-stones-in-the-stars-ai-de-aging-video-1235142200/}. \emph{Hollywood Reporter}, ```South Park' Creators' AI Company Made The Rolling Stones Young Again for `In The Stars' Music Video.'' \url{https://www.hollywoodreporter.com/tv/tv-news/south-park-creators-ai-rolling-stones-in-the-stars-1236592855/}. \emph{Dream Machine} Issue~30.} \textbf{George Clooney}, in November 2025, gave Variety the working actor's read on the synthetic-star economy: \emph{``It's been just like a writer creating characters. You fall in love with your characters when you're writing them. It's a wonderful process. It wasn't like I just made her in a second, and that was it. You know, it took a long time.''}\footnote{Variety, ``George Clooney Says AI Actors Will Face the `Same Problem We Have' in Hollywood: `Making a Star Is Not So Easy'.'' \url{https://variety.com/2025/scene/columns/george-clooney-ai-actors-movie-stars-1236579661/}. \emph{Dream Machine} Issue~7.} Clooney was making, in his particular way, the same argument that the slop ceiling makes empirically: cultural stardom is a \emph{function of time and human relationship.} It is not a function of generation cost. \textbf{Jeremy Renner} threatened a ``multi-millions'' lawsuit against an AI documentary director he said had used his voice without permission.\footnote{\emph{Deadline}, ``AI Documentary Director Insists Jeremy Renner Agreed To Narrate Movie As `Hawkeye' Star Threatens `Multi-Millions' Lawsuit.'' \url{https://deadline.com/2025/11/jeremy-renner-lawsuit-threat-ai-movie-1236611830/}. \emph{Dream Machine} Issue~7.} + +In May 2026 the celebrity-defence layer took a meaningful \emph{organisational} step. \textbf{Cate Blanchett} co-founded \textbf{RSL Media}, a non-profit explicitly chartered to address \emph{consent around AI usage}~-- covering creative work, name, image and likeness~-- for performers across film, TV and music.\footnote{Variety, ``Cate Blanchett Co-Founds RSL Media, a Non-Profit to Address Consent Around AI Usage including creative work, name, image and likeness.'' \url{https://variety.com/2026/film/news/cate-blanchett-rsl-media-ai-consent-1236748255/}. \emph{Dream Machine} Issue~30.} This is, on my read, the first time the celebrity NIL-protection conversation has produced a \emph{standalone institution} rather than a string of individual lawsuits and trademark filings. RSL Media is small as of mid-2026, but its founding signal is important. Where the existing infrastructure on celebrity AI consent has been individual (Swift's trademarks, McConaughey's line, Renner's threatened suit) or statutory (the ELVIS Act, New York's AI-avatar disclosure law), RSL Media is the first attempt at a \emph{coordination layer} on the side of the talent~-- closer in shape to a Performing Rights Society than to a class action. If the Petrillo template I describe in Chapter~\ref{ch:6} eventually has to be reconstructed for the NIL question, RSL Media is the kind of body that the reconstruction will need to anchor on. + +In the same week, \textbf{Apple} acquired the talent and patents behind the AI-avatar company \textbf{Animato}, signalling~-- not for the first time~-- that the platform layer intends to own the celebrity-grade-avatar infrastructure rather than license it from third parties.\footnote{\emph{Bloomberg}, ``Apple Acquires Key Talent \& Patents Behind AI Avatar Company `Animato'.'' \url{https://www.bloomberg.com/news/articles/2026-05-19/apple-acquires-animato-ai-avatar-talent-patents}. \emph{Dream Machine} Issue~30.} The combination of an Apple-owned avatar pipeline and an RSL-administered consent regime is, in 2030 terms, the most plausible architecture for how the high-end NIL economy actually runs. + +Underneath the celebrity layer, the structural infrastructure was being built. The \textbf{ELVIS Act}, Tennessee's AI-impersonation law, had been used by the \textbf{Johnny Cash estate} to sue Coca-Cola over a tribute-act ad soundtrack.\footnote{\emph{Complete Music Update}, ``Johnny Cash estate uses ELVIS Act to sue Coke over tribute act ad soundtrack.'' \url{https://completemusicupdate.com/johnny-cash-estate-uses-elvis-act-to-sue-coke-over-tribute-act-ad-soundtrack/}. \emph{Dream Machine} Issue~9.} \textbf{New York} passed a law in December 2025 forcing advertisers to disclose when they were using AI avatars. The SAG-AFTRA statement on the law's passage captured the political theory underneath the moment: \emph{``These protections are the direct result of artists, lawmakers and advocates coming together to confront the very real and immediate risks posed by unchecked AI use.''}\footnote{\emph{The Verge}, ``New York's new law forces advertisers to say when they're using AI avatars.'' \url{https://www.theverge.com/news/842848/new-york-law-ai-advertisements-sag-aftra-labor}. \emph{Dream Machine} Issue~11.} \textbf{Governments around the world} were considering bans on Grok's app over an AI sexual-image scandal that broke in early 2026.\footnote{\emph{Fast Company}, ``Governments around the world are considering bans on Grok's app over AI sexual image scandal.'' \url{https://www.fastcompany.com/91474131/governments-around-the-world-are-considering-bans-on-groks-app-over-ai-sexual-image-scandal}. \emph{Dream Machine} Issue~14.} By \textbf{May 2026}, the \textbf{AI Disclosure Standard} had been launched at the \textbf{Cannes Film Festival} as an industry coordination point for production-side AI labelling.\footnote{Cannes AI Disclosure Standard, launched May 2026. \emph{Dream Machine} Issue~29.} The \textbf{Academy of Motion Picture Arts and Sciences} had~-- in a quietly consequential rule update~-- set the line \emph{``You must be human to win''} for its 2026 awards.\footnote{\emph{Dream Machine} Issue~28, May 2026, reporting on the Academy of Motion Picture Arts and Sciences' ``You must be human to win'' rule update.} The \textbf{Emmys} had set their own AI guidelines. The Television Academy's language was a model of how to write a policy that defends authorship without picking a fight with the toolchain: \emph{``The Television Academy reserves the right to inquire about the use of AI in submissions. The core of our recognition remains centered on human storytelling, regardless of the tools used to bring it to life.''}\footnote{\emph{The Hollywood Reporter}, ``Emmys Set AI Guidance.'' \url{https://www.hollywoodreporter.com/tv/tv-news/emmys-ai-guidelines-2026-awards-1236468434/}. \emph{Dream Machine} Issue~14.} \emph{Tools used to bring it to life}~-- not \emph{tools that did the work.} The grammar matters. \textbf{SAG-AFTRA}'s four-year contract~-- finalised by spring 2026~-- included what the trade press informally called the \textbf{Tilly Tax}: a structured set of provisions for compensation, consent and residuals when AI replicas of human performers are used.\footnote{SAG-AFTRA negotiation timeline through \emph{Dream Machine} Issues~7, 12, 15, 20, 26, 29.} + +Each of these is, on its own, a marginal piece of policy. Stacked together, they describe a new economic landscape: one in which \emph{human authorship and identity} have become legally protected categories of creative work, with specific procedural and economic mechanisms for asserting them, defending them and compensating their use. + +The cultural shorthand for this~-- \emph{authenticity as the new scarcity}~-- captures the supply-and-demand logic. The legal shorthand~-- \emph{human-authored work as a protected class}~-- captures the policy logic. Both are the same thing seen from different angles. + +\section*{What sincerity looks like in 2026} + +I want to come back to a distinction I made in Chapter~\ref{ch:4}, because it has held up through the last six months better than almost any other framing in this book. + +I argued that audiences distinguish, very quickly, between \emph{sincere} synthetic work and \emph{cynical} synthetic work~-- that the underlying technology is the same, but the fingerprint of human intent behind the work is visible to the audience at the speed of a swipe. + +The data from the spring of 2026 supports this. \emph{Marketing Week}'s analysis ``You can't dismiss AI ads as slop when they're winning in testing''\footnote{\emph{Marketing Week}, ``You can't dismiss AI ads as slop when they're winning in testing.'' \url{https://www.marketingweek.com/dismiss-ai-ads-winning-creative-effectiveness/}. \emph{Dream Machine} Issues~8, 13.} documented that AI-generated advertising creative could, in fact, win in standard creative-effectiveness tests~-- \emph{when the work was made with care, on a brief that respected the audience, by a team that had taste.} The same publication's parallel coverage of the audience pushback against the McDonald's Netherlands ad, the Valentino handbag campaign and a dozen other ``AI slop'' launches, made the inverse point. The technology is neutral. The intent is not. + +The strongest AI-authored creative work of the period this book covers has, almost without exception, \emph{not} tried to hide that it was AI-authored. Andrii Daniels' bomb-shelter clip foregrounded its conditions of making.\footnote{Variety, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter.'' \emph{op.\ cit.} \emph{Dream Machine} Issue~16.} Hoyt Dwyer's animated short for AI FilmFest Japan was upfront about its medium.\footnote{PR Newswire, ``From Apple TV Creative to AI Filmmaker: Hoyt Dwyer's Animated Film To Compete at AI FilmFest Japan 2025.'' \emph{op.\ cit.} \emph{Dream Machine} Issue~6.} \emph{Dear Upstairs Neighbors,} the Google DeepMind / Connie He collaboration that premiered at Sundance, was \emph{about} the constraints and possibilities of its production pipeline.\footnote{Google DeepMind, ``Dear Upstairs Neighbors.'' \url{https://blog.google/innovation-and-ai/models-and-research/google-deepmind/dear-upstairs-neighbors/}. \emph{Dream Machine} Issue~16.} \emph{Synthetic Sincerity}, Marc Isaacs' IDFA film, took the disclosure to the title of the piece.\footnote{\emph{The Hollywood Reporter}, ```Synthetic Sincerity' by Marc Isaacs.'' \emph{op.\ cit.} \emph{Dream Machine} Issue~8.} \emph{Watch the Skies}, the AI-dubbed Swedish UFO feature, disclosed the dubbing process as part of its identity.\footnote{Variety, ```Watch the Skies,' Swedish UFO Feature Film Dubbed Entirely With AI, Sets USA Distribution Deal.'' \emph{op.\ cit.} \emph{Dream Machine} Issue~5.} \emph{Lily,} the \$1m AI Film Award-winning Tunisian short, was framed by its director and reviewers as a piece \emph{about} the new toolchain.\footnote{\emph{Broadcast Pro Middle East}, ``Tunisian filmmaker wins \$1 million AI Film Award for `Lily'.'' \emph{op.\ cit.} \emph{Dream Machine} Issue~14.} The May 2026 \textbf{David Beckham / Lenovo} \emph{``Henchester United''} ad~-- in which the brand cheerfully used generative AI to render a Beckham-designed chicken coop for the footballer's home flock~-- is, in my read, the cleanest \emph{sincere} example of the period: the AI is visible, the brief is playful, the talent is in on the joke, and the cultural response was warm rather than wary.\footnote{\emph{The Drum}, ``David Beckham Designs `Henchester United' Chicken Coop in Lenovo Ad.'' \url{https://www.thedrum.com/news/2026/05/18/david-beckham-henchester-united-chicken-coop-lenovo-ai-ad}. \emph{Dream Machine} Issue~30.} + +The pattern, repeated across thirty or forty examples I have looked at carefully, is the same: \emph{AI work that owns its synthetic nature, and that is made with human creative intent, finds an audience.} AI work that tries to pass as something it isn't gets the audience response that Tiny Grandma's stop-motion got \emph{from the algorithm}~-- an immediate, automatic, suspicious flag. + +This is, in market terms, a stable equilibrium. It is the market that the slop ceiling and the audience pushback have built. And it is, for working creatives, a manageable and even encouraging environment to operate in. The audience is not against AI. The audience is against being lied to. + +\section*{What disclosure should look like} + +I want to lay out~-- because I have been asked this in every Q\&A I have done since starting the newsletter~-- what I think the \emph{practical} shape of authenticity infrastructure should look like for working creatives in 2026. + +It is four things, in increasing order of investment: + +\noindent\textbf{One. Disclose, consistently.} If you use AI in any part of your work, say so. In your credits. On your website. In your contracts with clients. In the metadata of your files. The act of disclosure does, in my experience, not cost you anything with the audience~-- the audience that is going to reject AI work would reject it anyway, and the audience that is going to accept it is the audience that values you being straight with them. The cost of \emph{getting caught} not disclosing, in this environment, is materially higher than the cost of disclosing. + +\noindent\textbf{Two. Document, deliberately.} Keep logs. Keep notes. Keep prompt histories. If a piece of work you make this year ends up being legally or culturally contested in 2030~-- and a non-trivial fraction of work made this year will be~-- your ability to \emph{show your workings} will be the difference between defending the work and losing it. The Sundance literacy initiative's emphasis on \emph{evidence of human authorship} is exactly right.\footnote{Sundance Institute AI Literacy Initiative emphasis on documentation: \url{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}. \emph{Dream Machine} Issue~16.} + +\noindent\textbf{Three. Watermark, where appropriate.} Use SynthID, C2PA, or the equivalent provenance layer that your toolchain supports. If your work doesn't yet support these standards, ask your tool vendors when they will. The market for tools that support provenance metadata is, in 2026, larger than the market for tools that don't. + +\noindent\textbf{Four. Build the chain.} If you are running a studio or an agency, build the \emph{internal} infrastructure for verifying and tracking the provenance of your work end-to-end. The cost of doing this in 2026 is moderate. The cost of \emph{not} doing it in 2029, when a client asks for the chain-of-custody on a piece of work and you can't produce it, is going to be much higher. + +These are not, on their own, business strategies. They are, in 2026, the \emph{minimum hygiene} for operating a credible creative practice in the AI era. Treat them as you would treat health-and-safety on a film set. Do them as a default. Do them well. Then get on with the work. + +\section*{The provenance infrastructure, named: thirty-six pieces of the puzzle} + +I want to lay out a more complete map of the provenance infrastructure that is being built in 2025--26, because the technical-and-policy stack is more advanced than the public conversation has caught up with, and working creatives reading this book need to know what is actually in the field. + +Stacking the moves I have referenced across this chapter and the rest of the book, the inventory is roughly this: + +\noindent\textbf{Capture-time signing and provenance metadata:} + +\begin{enumerate} + \item \textbf{C2PA / Content Credentials} (Adobe-led, with Microsoft, Sony, Nikon, Leica, BBC, Canon participation)~-- the cryptographic-signature standard for capture-and-edit-time provenance. + \item \textbf{Leica M11-P / M11-D}~-- first consumer cameras with C2PA at the firmware level (2023, expanded through 2025). + \item \textbf{Sony Alpha 1 II and Alpha 9 III firmware}~-- C2PA support across pro Alpha range. + \item \textbf{Nikon Z9 firmware}~-- C2PA support for the AP/Reuters wire-service workflow. + \item \textbf{Canon professional bodies}~-- Content Credentials integration through 2025 firmware cycle. + \item \textbf{iPhone Camera app} (selected models, 2025--26)~-- capture-time signature support. + \item \textbf{Adobe Photoshop, Premiere, Lightroom}~-- edit-time chain-of-custody preservation through Content Credentials toolchain. + \item \textbf{DaVinci Resolve, Final Cut Pro, Avid Media Composer}~-- partial C2PA support through 2025--26 update cycle. + \item \textbf{Capture One}~-- Content Credentials integration for the high-end commercial-photography workflow. +\end{enumerate} + +\noindent\textbf{Synthetic watermarking and detection:} + +\begin{enumerate}[resume] + \item \textbf{Google DeepMind SynthID}~-- embedded watermark for Veo (video), Lyria (audio) and Imagen (image) outputs. Over 100 billion items marked by May 2026; extended to OpenAI, ElevenLabs and Kakao as a cross-vendor standard. + \item \textbf{SynthID Verification via Gemini app}~-- consumer-facing yes/no detection. + \item \textbf{Lyria 3 SynthID extension}~-- audio verification across the Google music-model family. + \item \textbf{YouTube AI Detection Tool}~-- automated content classification (the \emph{Tiny Grandma} false-positive case demonstrating both its scope and its current accuracy ceiling). + \item \textbf{Deezer's AI-music detection pipeline}~-- identifies up to 75,000 AI-generated tracks per day at upload time. + \item \textbf{Spotify AI Transparency Beta}~-- voluntary creator disclosure surfaced in the consumer player UI. + \item \textbf{Beeble}~-- independent detection-and-watermarking infrastructure used by some news organisations. + \item \textbf{Cloudflare AI bot classification}~-- public-web-infrastructure-level tracking of AI crawlers and agents. + \item \textbf{Sony music-identification technology}~-- identifying source recordings inside AI-generated outputs at the catalogue level. +\end{enumerate} + +\noindent\textbf{Institutional and contractual disclosure:} + +\begin{enumerate}[resume] + \item \textbf{Cannes AI Disclosure Standard}~-- industry-coordination production-side labelling standard for the festival circuit (launched May 2026). + \item \textbf{Sundance AI Literacy Initiative}~-- creator-training programme funded by Google's \$2M commitment, training 100,000+ artists in foundational AI literacy and provenance practice. + \item \textbf{Academy of Motion Picture Arts and Sciences ``you must be human to win'' rule}~-- 2026 awards eligibility update. + \item \textbf{Television Academy AI guidelines}~-- ``tools used to bring it to life'' framing for Emmys submissions. + \item \textbf{SAG-AFTRA Tilly Tax provisions}~-- the consent, compensation and residuals framework for digital-replica use, included in the 2026 four-year contract. + \item \textbf{Equity (UK) strike ballot outcome}~-- 99\% vote authorising industrial action over AI provisions. + \item \textbf{PRS for Music AI Survey 2026}~-- UK music-creator sentiment baseline informing collective-licensing negotiations. + \item \textbf{GEMA ruling against OpenAI}~-- first European-rights-society legal precedent on AI training compensation. + \item \textbf{The 88\% UK consultation outcome}~-- political mandate for licensing-by-default. + \item \textbf{The \emph{Stealing Our Work Is Not Innovation} declaration}~-- 800-creator cultural marker. + \item \textbf{Bandcamp's outright AI-music ban}~-- distribution-platform-level disclosure-by-exclusion. + \item \textbf{Swedish Top Chart AI ban}~-- chart-eligibility-level disclosure. + \item \textbf{San Diego Comic-Con AI art ban}~-- convention-level disclosure-by-exclusion. +\end{enumerate} + +\noindent\textbf{Legal infrastructure protecting human identity:} + +\begin{enumerate}[resume] + \item \textbf{Tennessee ELVIS Act}~-- the most-cited state-level AI-impersonation statute, used by the Johnny Cash estate in the Coca-Cola tribute-act case. + \item \textbf{New York's December 2025 AI-avatar disclosure law}~-- requires advertisers to disclose AI-performer use. + \item \textbf{The Taylor Swift voice-and-image trademark filings} (early 2026)~-- celebrity-led use of trademark mechanism for identity protection. + \item \textbf{The Jeremy Renner unauthorised-voice lawsuit}~-- pending case testing voice-likeness protections. + \item \textbf{The pending EU AI Act enforcement}~-- training-data-transparency requirements coming into effect through 2026. +\end{enumerate} + +Each of these, on its own, is a marginal piece. Stacked together~-- capture-signing, watermarking, platform integration, festival rules, awards rules, union contracts, civil society declarations, legal protections~-- they describe a \emph{coherent infrastructure project} that the creative industries are, in eight months, jointly constructing. + +The project is, by any reasonable assessment of similar previous infrastructure builds, \emph{substantially ahead of schedule}. The C2PA standards body was founded in 2021 and was, by mid-2026, deployed across most major commercial capture and edit tooling. SynthID went from research demo in 2023 to consumer-facing detection in Gemini by January 2026. The SAG-AFTRA digital-replica provisions went from a 2023 strike demand to a contractual reality in 2026. The 88\% went from political abstraction to government statement of progress in twelve months. + +The thing this rate of progress tells me is \emph{not} that the work is done. The work is, in many places, half-done~-- there are gaps in adversarial robustness, in platform UI integration, in cross-jurisdictional enforcement, in coverage of the long tail of creator categories outside the major commercial industries. The work is also being done unevenly: the music industry has built more of the stack than the games industry, which has built more than the publishing industry, which has built more than the regional and minority-language creative ecosystems that the next decade will need to bring in. + +But the \emph{trajectory} of the work is unambiguous. The provenance stack is being built. The institutional disclosure infrastructure is being built. The legal protections are being built. The audience contract I describe in the next section is being written. Working creatives who position themselves on the \emph{inside} of this build~-- using the tools, contributing to the standards, showing up at the consultations, advocating with the unions, deploying provenance metadata in their own work as a default~-- will have, by 2030, materially more leverage than working creatives who waited for someone else to finish the project for them. + +\section*{What this means for the audience} + +I want to close the chapter with a thought about what this whole structure means for \emph{the audience}, because most of this book has~-- by design~-- been about the people who \emph{make} creative work, and the audience is sitting on the other side of the screen the whole time. + +What I think the slop ceiling, the provenance infrastructure, the disclosure norms and the legal protections are, \emph{collectively}, building is a \emph{new contract} between makers and audiences. + +The old contract was straightforward. The maker made the thing. The audience watched, listened, played, read. The signal of authenticity was implicit~-- most creative work was, by default, made by humans because there was no other way to make it. + +The new contract is, by necessity, \emph{explicit}. The maker discloses what was made by whom and how. The audience gets to make an informed choice. The platform, the union, the law and the institution all support both sides of the transaction. + +If we get this contract right, the AI era is not the end of human creative work. It is a \emph{renegotiation} of the terms on which human and synthetic creative work coexist in the public sphere~-- with the audience, for the first time in a very long time, getting a real seat at the table. + +If we get it wrong~-- if the disclosure infrastructure fails, if the provenance metadata is unreliable, if the platforms refuse to honour the audience's stated preferences, if the legal protections are not enforced~-- what we get is the world the \emph{Dead Internet} chapter described. A web of synthetic content, made by no one in particular, for no one in particular, churning past an audience that has lost the ability to trust any of it. + +The choice between those two outcomes is \emph{not, in 2026, a technical question.} The technical infrastructure for both is, by spring 2026, broadly in place. The choice between them is a \emph{political, institutional and cultural} one. It is about whether the people who set the rules~-- the platforms, the legislators, the institutions, the studios, the audience itself~-- collectively decide that \emph{knowable human authorship} is a public good worth protecting. + +I think, on the evidence of the last six months, that the choice is being made~-- slowly, contentiously, imperfectly, but recognisably~-- in the right direction. The 88\%, the Sundance literacy turn, the Cannes Disclosure Standard, the Academy's rule update, the SAG-AFTRA contract, the C2PA standards, the SynthID rollout, the audience's own attention behaviour: these all point the same way. + +The question for the rest of this book~-- Chapter~\ref{ch:13} on the organisational restructuring, Chapter~\ref{ch:14} on the labour-market reshuffle, and Chapter~\ref{ch:15} on the political choice~-- is what happens to the \emph{organisations}, the \emph{labour market} and the \emph{economy} of creative work when authenticity is the scarce good and the orchestrator is the new role. The implications for how teams are structured, how labour is paid and how creative careers are built are bigger than any single tool launch, and they are what the next three chapters are about. diff --git a/latex/chapters/ch13_coordination_collapse.tex b/latex/chapters/ch13_coordination_collapse.tex new file mode 100644 index 0000000..2343f45 --- /dev/null +++ b/latex/chapters/ch13_coordination_collapse.tex @@ -0,0 +1,189 @@ +\chapter{Coordination Collapse}\label{ch:13} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{T}{here} is a working assumption underneath almost every conversation about AI in the creative industries that I want, in this chapter, to make explicit and then take apart. + +The assumption is that AI is a \emph{technology change}, broadly equivalent in shape to other technology changes the industries have absorbed in the past~-- the arrival of digital, the move to streaming, the rise of mobile, the emergence of social. The implication is that the existing institutions of the industry~-- the studios, the agencies, the labels, the unions, the publishing houses, the broadcasters~-- will absorb this change the way they absorbed the previous ones: with some restructuring, some layoffs, some new hires, some new departments, and a generally familiar shape on the other side. + +I do not think this is what is happening. + +What I think is happening is that AI is, specifically and quite differently, a \emph{coordination technology.} It is changing~-- not at the margin, but at the core~-- what it is possible for a single person to know, decide and execute about a complex creative project. And because the existing organisations of the creative industries are, structurally, \emph{coordination architectures}~-- they exist to allow many people to work on a single piece of work~-- the change in coordination economics is changing the organisations themselves. + +This is the chapter about what happens to creative \emph{organisations}~-- studios, agencies, labels, broadcasters, indie companies~-- when AI reaches a certain level of capability. It is also, by necessity, the chapter about what happens to creative \emph{careers} when those organisations change shape. + +The shorthand I have come to use for what is happening is \textbf{coordination collapse}. + +\input{figures/tikz_coordination_collapse} + +\section*{What organisations are for} + +A studio, an agency, a label, a publishing house~-- these are not just brand names attached to creative outputs. They are \emph{organisational technologies} that solve a specific problem: how do you get fifty or five hundred or five thousand people to coordinate on a single piece of creative work, well enough that the result is coherent, on-budget, on-deadline and good enough to put out into the world. + +The way they solve that problem is by \emph{layering} the work into specialised roles, building \emph{hierarchies} that direct the work down through those roles, \emph{processes} that move material between the roles in predictable order, and \emph{cultural norms} that make the whole apparatus run with less explicit instruction than you would otherwise need. + +A film studio exists, structurally, because making a film requires the coordinated work of many specialists~-- writers, directors, actors, cinematographers, designers, editors, sound designers, composers, marketers, distributors. The studio is the \emph{coordination apparatus.} The film is the output of the apparatus. + +When AI starts to do the work of many of those specialists~-- not entirely, but at the level of \emph{first draft} or \emph{junior contribution}~-- the calculus of the coordination apparatus changes. Suddenly, a much smaller human team, working with a large pool of synthetic capacity, can produce the same coordinated output that previously required the large team. Suddenly, the \emph{bottleneck} of producing creative work is no longer the size of the team. It is something else: the ability of the small senior team to \emph{direct} the synthetic capacity well. + +The implication, which has been dawning on the creative industries through the autumn of 2025 and the spring of 2026, is that the existing organisational shape~-- the \emph{studio shape}, the \emph{agency shape}, the \emph{label shape}~-- was built for a coordination problem that no longer exists in the form it used to. + +This does not mean the studios will disappear. It does mean that the \emph{shape} of the studios is going to change, in a hurry, in ways that working creatives need to understand if they are going to be on the inside of the change rather than on the receiving end of it. + +\section*{The shadow workforce} + +The first symptom of coordination collapse, as it has shown up across the creative industries in this period, is the rise of what the workplace-research literature has started calling \textbf{shadow AI}~-- the practice of using AI tools in your job \emph{without telling your employer.} + +The numbers, from a series of 2025 studies I covered in \emph{Dream Machine} Issue~5,\footnote{\emph{Dream Machine} Issue~5, ``Industry Insights: Stealth, Shadow and Secret AI Users.''} are extraordinary. + +Roughly \textbf{half} of U.S.\ employees~-- 45--52\% in different surveys~-- have used AI in their jobs without telling their bosses, with Gen~Z and tech-sector workers being the most frequent secret users.\footnote{Azumo, ``AI in Workplace Statistics 2025,'' \url{https://azumo.com/artificial-intelligence/ai-insights/ai-in-workplace-statistics}. \emph{Tech.co}, ``Gen Z Most Likely Use AI Boss,'' \url{https://tech.co/news/gen-z-most-likely-use-ai-boss}. \emph{Dream Machine} Issue~5.} + +About a third~-- 29--33\%~-- pay for their own AI tools out of their own pockets without their employer's knowledge.\footnote{\emph{Exploding Topics}, ``AI Workforce Research,'' \url{https://explodingtopics.com/blog/ai-workforce-research}. \emph{Dream Machine} Issue~5.} + +Roughly \textbf{56--57\%} of regular AI users admit to \emph{hiding their usage or presenting AI output as their own work} to avoid judgement or stigma. Nearly half of executives do the same.\footnote{\emph{Forbes}, ``AI Tools Flood Workplaces as Employees Face a Double Bind,'' \url{https://www.forbes.com/sites/carolinecastrillon/2025/09/09/ai-tools-flood-workplaces-as-employees-face-a-double-bind/}. \emph{Dream Machine} Issue~5.} + +\textbf{52\%} of workers won't admit to using AI at work~-- \emph{even when asked directly.}\footnote{\emph{Blog IDC Europe}, ``Shadow AI: How Stealth Productivity Is Strangling Enterprise AI Adoption and Creating a Security Nightmare,'' \url{https://blog-idceurope.com/shadow-ai-how-stealth-productivity-is-strangling-enterprise-ai-adoption-and-creating-a-security-nightmare/}. \emph{Dream Machine} Issue~5.} + +These numbers describe a workforce that has, en masse, started running its own private parallel productivity infrastructure that bypasses the official organisational tooling, the official organisational processes, and the official organisational accounting of where the work is being done and by whom. + +This is not a niche phenomenon. \emph{Half the workforce.} And it is concentrated, the surveys suggest, in exactly the demographic~-- Gen~Z, tech-sector, knowledge worker~-- that is most likely to be the future workforce of the creative industries. + +The numbers escalate the more recent the research. By the end of 2025, enterprise-AI tracking data put active daily use at \textbf{88--89\%} of staff across organisations, with \textbf{71--80\%} of those users running their tools entirely outside any official approval or IT oversight.\footnote{Enterprise-AI workforce tracking, late 2025. Aggregated in the Deep Dive companion piece \emph{The Shadow AI Paradox in the Creative Industries}, drawing on Azumo's \emph{AI in Workplace Statistics 2025}, \emph{Tech.co}'s Gen~Z survey, and the IDC Europe shadow-AI security brief. \emph{Dream Machine} Issue~5.} What the workplace-research firms have started calling the ``Hidden Cloud Explosion'' describes a six-month period in which the average enterprise IT department's visibility into the AI tools its workforce was using simply collapsed: organisations believed they were running on roughly \textbf{91} public cloud services per enterprise, while network-level analysis put the actual figure at \textbf{1,220} active services~-- a 90\% visibility gap.\footnote{\emph{Hidden Cloud Explosion} analysis, IDC Europe, 2025. See \emph{The Shadow AI Paradox in the Creative Industries}, \S``The Epistemology and Scale of Shadow AI.''} In the same year, \textbf{20\%} of organisations reported severe security incidents linked directly to shadow AI, with the average breach cost going up by \textbf{\$670,000}; in \textbf{65\%} of those incidents personally identifiable information was exposed, and in \textbf{40\%} intellectual property was directly leaked.\footnote{Shadow-AI security-incident statistics, 2025, aggregated in \emph{The Shadow AI Paradox in the Creative Industries}, \S``The Epistemology and Scale of Shadow AI''; underlying data via IBM \emph{Cost of a Data Breach Report 2025} and IDC Europe.} + +For the creative industries this matters disproportionately, because the data being fed into public LLMs by shadow users~-- proprietary scripts, unreleased concept art, client briefs, internal pipeline code, unmastered audio stems~-- is the \emph{exact intellectual property} that organisations are simultaneously suing AI companies for scraping. The studio whose general counsel is in federal court against a frontier-model company is, on the same Tuesday afternoon, watching its own animation department paste asset descriptions into the same company's consumer chatbot to speed up metadata writing. Both things are true. Both happen at once. + +The shadow workforce, in coordination-collapse terms, is the symptom of an organisational architecture that is no longer aligned with the work the people inside it are actually doing. The official architecture says \emph{we hired these humans to do these specific jobs, in this specific way, at this specific pace.} The shadow architecture says \emph{these humans are now hybrid human-agent operators producing more, faster, with different qualitative properties than the official architecture is set up to manage.} + +What you get, when these two architectures sit on top of each other, is a workforce that is \emph{measurably more productive than the official metrics show}, doing \emph{more work than the official scope says}, with \emph{less institutional knowledge of how that work is being done} than ever before. + +This is, in coordination terms, an unstable equilibrium. It cannot last indefinitely. The question is how it resolves. + +\section*{The ``AI for thee, but not for me'' paradox} + +The pattern that the shadow-AI numbers describe is not random distribution of tool use. It is \emph{hierarchical}. Creative workers, across every survey I have read in this period, exhibit a consistent psychological pattern that the developer and creative-community discourse has named the \textbf{``AI for thee, but not for me''} paradox.\footnote{For the developer-community origins of the ``AI for thee, but not for me'' phrasing, and the full sectoral analysis of the paradox, see \emph{The Shadow AI Paradox in the Creative Industries}, \S``The Great Hypocrisy.''} The pattern works like this. Creative professionals identify some tasks as \emph{mine}~-- the writing, the cinematography, the composing, the performance, the lead concept~-- and other tasks as \emph{not mine}~-- the marketing copy, the project email, the deck assembly, the metadata tagging, the routine code, the contract redline, the rough mix, the asset variation. The first category is defended fiercely against AI substitution; the second is offered to AI substitution without much thought. The moral framing of the technology shifts depending on whose labour is being replaced. + +Look at the music sector. An industry survey of more than \textbf{1,100} professional producers, songwriters and audio engineers in 2026 found that \textbf{87\%} were actively using AI tools in their creative process.\footnote{Survey of 1,100+ professional music creators, 2026, summarised in \emph{Dynamics of Generative AI Adoption in the Creative Industries}, \S``Music Production and Sound Recording,'' and \emph{The Shadow AI Paradox in the Creative Industries}, \S``Sector-Specific Analysis.''} The internal distribution, though, tracked the hierarchy: \textbf{58\%} used AI for audio restoration and cleanup, \textbf{38\%} for mixing assistance, \textbf{33.9\%} for automated mastering~-- high-friction tasks that nobody felt sentimental about~-- while only \textbf{20.9\%} admitted to using AI for composition or lyric generation, the parts of the craft on which the personal artistic identity sat. \textbf{77\%} cited ``loss of originality'' as their primary concern, outranking even the fear of personal job displacement (\textbf{42\%}). The artist's relationship to the tool, in other words, is not consistent across the work. It is sharply conditional on whose labour is being substituted. + +The same hierarchy shows up in film. A survey of professional screenwriters before and after the 2023 WGA strike found that pre-strike covert AI use sat at around \textbf{34\%}; once the WGA's negotiated guidelines legitimised AI assistance for \emph{formatting, structural outlining and brainstorming}, that number jumped to \textbf{68\%} by 2024.\footnote{WGA screenwriter survey, pre- and post-strike, reported in \emph{Dynamics of Generative AI Adoption in the Creative Industries}, \S``Screenwriting and the Post-Strike AI Boom.''} What the regulation changed was not the technology. It was the stigma. The shadow use moved into the light, with no measurable decline in the work product. The covert hierarchy became an overt one. + +This is, in my view, the most uncomfortable observation in the entire shadow-AI literature, and it is the one that creative-organisation leadership has the hardest time admitting publicly. The same professionals who, in their public statements, treat AI training as a moral violation are, in their private practice, the heaviest users of the same underlying technology. The hypocrisy is not a character defect. It is a structural property of how knowledge workers self-defensively triage their own tasks under productivity pressure. Read charitably, working creatives are doing what every economic actor in a productivity transition has done: protect the highest-value labour and offload everything else. + +The cost of that triage is moral clarity. It is hard to credibly argue that AI training is theft when you are typing your portfolio description into Claude. The vocal-protest economy and the silent-adoption economy now run on the same desks, often within the same hour. + +\section*{The consumption gap: what the data actually says} + +I want to spend a section on the gap, because the gap is \emph{the} macroeconomic story of this period and I do not see anyone telling it cleanly. + +The gap is between \emph{what the creative industries are saying publicly about AI} and \emph{how the creative industries are actually using AI on a Tuesday morning.} The two pictures are not slightly different. They are, in significant measure, contradictory. + +Take Adobe, because Adobe is the cleanest single case study. Adobe's Firefly generative-AI suite~-- the same product that the working creatives in my surveyed circle are most ambivalent about~-- passed \textbf{22 billion AI-generated assets} by April 2025, eighteen months from public release.\footnote{Adobe Firefly milestone data, September 2023 -- June 2025, in \emph{Dynamics of Generative AI Adoption in the Creative Industries}, \S``The Ubiquity of AI in Visual and Digital Arts.'' \emph{Dream Machine} Issue~6.} By that point, \textbf{45\%} of all Creative Cloud subscribers had engaged with Firefly. \textbf{70\%} of active Firefly users were using the tool \emph{every week}, averaging 2.8 sessions weekly at 26 minutes each. Firefly contributed \textbf{11\%} of all new annual recurring revenue at Adobe in 2024~-- the company's fastest-growing revenue catalyst since the original move to a subscription model~-- and Adobe's AI-first ARR more than \emph{tripled year-over-year} in the first quarter of fiscal 2026.\footnote{Adobe quarterly financials, FY2025--FY2026; AI-first ARR growth reported in \emph{Dream Machine} Issue~21 and summarised in \emph{Dynamics of Generative AI Adoption}.} + +That is not the adoption curve of a niche professional tool. That is the adoption curve of a default productivity feature in the dominant creative-software stack on the planet. \textbf{72\%} of Fortune 500 design teams have formally integrated Firefly. \textbf{63\%} of marketing agencies. \textbf{58\%} of e-commerce design departments. \textbf{48\%} of UX/UI designers.\footnote{Adobe Firefly enterprise penetration metrics, in \emph{Dynamics of Generative AI Adoption}.} \emph{Twenty-five per cent} of new Adobe Stock contributions in 2024 contained Firefly-generated elements.\footnote{Adobe Stock submission analysis, 2024, in \emph{Dynamics of Generative AI Adoption}.} The Adobe MAX 2025 Creators' Toolkit Report's headline number~-- \textbf{86\%} of global creators using generative AI~-- sits inside this pattern, not against it.\footnote{Adobe, ``Inaugural Adobe Creators' Toolkit Report,'' October 2025, \url{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}. \emph{Dream Machine} Issue~6.} + +If you sat with the public discourse alone~-- the open letters, the boycotts, the strike statements~-- you would assume working creatives were broadly refusing AI integration. The actual platform telemetry, in a year where Adobe shared more of its numbers than usual, says the opposite. Working creatives are not refusing. They are adopting at a pace that Adobe's growth team is, by every signal I can read, struggling to keep ahead of. + +The same picture holds across the toolchain. ChatGPT, by mid-2025, was on \textbf{800--900 million weekly active users}.\footnote{ChatGPT weekly-active-user disclosures, mid-2025; consolidated in \emph{Dynamics of Generative AI Adoption}, \S``General Purpose LLMs.''} Anthropic's Claude was the writers' and developers' second favourite, with rapidly increasing usage in long-context creative tasks. Google's Gemini was growing desktop users at \textbf{155\%} year-over-year, more than six times faster than ChatGPT's 23\%.\footnote{Gemini desktop-user growth, year-over-year, in \emph{Dynamics of Generative AI Adoption}.} These are not user numbers that reflect a market in revolt. They are user numbers that reflect a market that has, in private, decided. + +And the consumer side mirrors the producer side. The Stanford AI Index 2025 found that \textbf{55\%} of individuals across 26 countries view AI products as offering more benefits than drawbacks~-- up from 52\% in 2022.\footnote{Stanford AI Index Report 2025, global-sentiment chapter. Summarised in \emph{Dynamics of Generative AI Adoption}, \S``The Perception Gap.''} A 2024 YouGov poll across 17 markets found that nearly a third of consumers felt \emph{more positively} about generative AI than the previous year, against only 22\% feeling more negatively.\footnote{YouGov 2024 multi-market AI sentiment survey, 17 countries. Summarised in \emph{Dynamics of Generative AI Adoption}, \S``The Perception Gap.''} In the gaming sector~-- which has produced some of the loudest anti-AI consumer backlash of this year~-- the same Quantic Foundry survey that showed audiences are \textbf{77--83\%} negative toward AI-generated quests and dialogue also showed that \textbf{60\%} of gamers remain entirely neutral about AI in a game's development \emph{provided the final product is of high quality.}\footnote{Quantic Foundry consumer-AI-in-gaming survey, 2025. Summarised in \emph{Dynamics of Generative AI Adoption}, \S``The Video Game Industry.''} The hostility is not generic. It is specifically aimed at AI in the creative roles where audiences expect to feel a human soul. Everywhere else~-- UI, backend, balancing, localisation, dynamic difficulty~-- the audience is, on aggregate, indifferent. + +Even the GDC sentiment data, which is often cited as evidence of an industry in retreat from AI, tells the same paradoxical story when you read it as a whole. \emph{Personal} generative-AI usage among professional game developers rose from \textbf{31\%} in 2024 to \textbf{36\%} in 2026, while \emph{industry sentiment} over the same period cratered from 18\% negative to \textbf{52\%} negative.\footnote{Game Developers Conference \emph{State of the Game Industry} surveys, 2024--2026, sentiment vs.\ usage trend. Reported in \emph{Dynamics of Generative AI Adoption}, \S``The Video Game Industry.''} Use went up while approval went down. The two lines should, in a coherent market, move together. They are not. They are diverging. + +I want to be careful about what conclusion to draw from this. It is \emph{not} that the public discourse is wrong and the silent adopters are right. The public discourse is doing genuine political and cultural work~-- it is what produced the 88\%, the SAG-AFTRA contract, the GEMA ruling, the Sundance literacy turn, the Cannes Disclosure Standard. Without the loud minority, the creative economy would have no political leverage at all. + +The conclusion to draw is more uncomfortable. The creative industries are, in 2026, operating with \emph{two parallel economies on top of each other.} In one, AI is a moral crisis, a labour threat, and a contested category of production. In the other, AI is a default productivity feature being integrated at the speed of any other software upgrade. The same individuals, the same teams, the same studios are participating in both economies simultaneously, often without acknowledging the contradiction. + +The question for the next eighteen months~-- the question I keep coming back to when I talk to studio leadership~-- is whether the two economies merge into a single, honest, integrated practice (the \textbf{path two} integration I describe below), or whether they continue to run in parallel, with the public economy producing the policy and the private economy producing the work. The first outcome is harder but produces better collective decisions. The second outcome is the path of least resistance, and is, in my view, where we will end up by default if working creatives, studios and unions do not deliberately close the gap. + +For the data and the sectoral mechanics behind this section~-- the linguistic markers of covert AI use, the labour-market dynamics of agentic displacement, the deeper analysis of Adobe / OpenAI / Anthropic adoption telemetry, and the consumer sentiment / consumption asymmetry~-- see the two research deep dives that this chapter draws on: Appendix~D (\emph{The Shadow AI Paradox}) and Appendix~E (\emph{Dynamics of Generative AI Adoption}). + +There is one further dimension of the consumption gap I want to flag here, because Chapter~\ref{ch:10} develops it at length and Chapter~\ref{ch:4} introduced it: the gap between \emph{production} and \emph{consumption} is not just an organisational misalignment, it is a \emph{biological} one. \textbf{Aggregate human attention is finite.} The same Adobe Firefly that has generated 22 billion assets, the same ChatGPT that serves 900 million weekly users, the same Sora app that hit a million downloads in five days~-- these are all systems whose \emph{production} side scales without bound and whose \emph{consumption} side is bounded by the eleven-or-so daily hours of media attention the average adult can physiologically deploy. The consumption gap I have described above is, at its widest, this binding constraint expressed as an organisational problem. Studios that produce AI-augmented content at the rate the toolchain now allows~-- without recognising that the audience cannot consume more hours per day than it already does~-- are, on inspection, optimising the wrong side of the supply-demand equation. The studios that integrate AI productivity gains into work that \emph{earns} a larger share of the audience's finite attention budget will win the next decade. The studios that integrate AI productivity gains into \emph{more output competing for the same finite budget} will, on the historical pattern, hit the slop ceiling on a balance-sheet timeline they did not plan for. + +\section*{The two paths} + +The shadow workforce can resolve, broadly, in one of two directions, and I think the choice between them will be the central organisational question for every studio, agency and label in the creative industries over the next three years. + +\textbf{Path one} is \emph{suppression}. The organisation decides that the shadow AI use is a risk~-- to security, to IP, to brand, to compliance, to the official productivity metrics~-- and shuts it down. Tightens the rules. Audits the work. Punishes the offenders. Reverts to the official architecture and the official tooling. + +This is, in my view, a losing strategy in the medium term, because the productivity advantages that the shadow workforce is capturing are real, and the workers who are capturing them will, given the choice, work for organisations that \emph{let them keep capturing them.} The suppressing organisation will progressively lose its most AI-fluent workforce to organisations that allow the hybrid practice. + +\textbf{Path two} is \emph{integration}. The organisation accepts that the shadow AI use is happening, decides to make it official, builds the infrastructure to support it, sets the norms to govern it, and re-shapes the work~-- and the workforce~-- around it. + +This is, in my view, the right strategy. It is also the one most major creative organisations have been quietly moving towards in the period this book covers. + +\textbf{EA}'s push of its 15,000 employees to use AI as a ``thought partner'' was, structurally, a path-two move. \textbf{Krafton's} transformation into an ``AI-first'' company in November 2025 was a path-two move.\footnote{\emph{Game Developer}, ``Subnautica owner Krafton outlines plans to transform into an `AI First' company,'' \url{https://www.gamedeveloper.com/business/subnautica-owner-krafton-outlines-plans-to-transform-into-an-ai-first-company}. \emph{Dream Machine} Issue~6.} \textbf{Disney's} Office of Technology Enablement was a path-two move. \textbf{WPP's} AI overhaul, \textbf{Adobe's} AI in everything, \textbf{Sony's} 49-agent game team~-- all path-two moves. + +The path-two organisations are, structurally, betting that integration produces \emph{more} output, \emph{more} quality and \emph{more} employee retention than suppression. The early evidence, six months in, suggests they are right. + +\section*{The mid-career squeeze} + +The cost of the path-two transition has not, on the whole, been borne by the senior creatives or the entry-level workforce. It has been borne by the \emph{middle.} + +In \textbf{April 2026}, \emph{Dream Machine} Issue~24 reported that the publisher behind \emph{Grand Theft Auto VI} had laid off the entire seven-year-old internal AI team it had built to develop in-house AI capability for the franchise.\footnote{\emph{Dream Machine} Issue~24, April 2026, on the GTA~VI publisher laying off its internal AI team.} The framing, in the press release and the subsequent industry coverage, was that the company had decided to use off-the-shelf AI tools instead of maintaining proprietary ones~-- and that the seven-year AI investment was, in retrospect, a ``backlash cleanup'' cost. + +The story was repeated across multiple studios. \textbf{Disney}, in April 2026, laid off staff including in its Marvel division, in moves the company did not blame on AI but whose timing was, as the trade press noted, ``loaded.''\footnote{\emph{Dream Machine} Issue~25, April 2026, on Disney layoffs including Marvel staff.} \textbf{Meta} had cut 10\% of its Reality Labs staff in January 2026 to refocus on AI.\footnote{\emph{SmartBrief}, ``Meta to cut 10\% of Reality Labs staff to focus on AI,'' \url{https://newsletter.smartbrief.com/sharedSummary/index.jsp?briefId=40A39351-5419-4681-94DF-31A53480B698}. \emph{Dream Machine} Issue~14.} \textbf{Scottish animation studio} Axis Animation collapsed in early 2026, with its closure publicly attributed in part to AI competition.\footnote{\emph{Dream Machine} Issue~23, April 2026, on Scottish animation studio collapse.} \textbf{Ubisoft} cancelled five games, including the \emph{Prince of Persia} remake, in January 2026, in order to refocus on AI.\footnote{\emph{Metro}, ``Prince of Persia remake and five more games cancelled as Ubisoft focuses on AI,'' \url{https://metro.co.uk/2026/01/21/prince-persia-remake-five-games-cancelled-ubisoft-focuses-ai-26431926/}. \emph{Dream Machine} Issue~15.} + +The pattern across these cases is the same: the \emph{mid-career} layer~-- the experienced specialists in the middle of their professional lives, doing the day-to-day production work that the senior creative leadership directs~-- is the layer absorbed into agentic capacity first. + +This is the unambiguous bad news of the AI transition. The \emph{Guardian} covered this directly in January 2026 with a piece titled ``AI is hitting UK harder than other big economies, study finds,'' which found that mid-career knowledge workers in the U.K.\ were experiencing disproportionate displacement compared to peers in the U.S., Japan, Germany and Australia.\footnote{\emph{The Guardian}, ``AI is hitting UK harder than other big economies, study finds,'' \url{https://www.theguardian.com/technology/2026/jan/26/ai-uk-jobs-us-japan-germany-australia}. \emph{Dream Machine} Issue~16.} \emph{Economist} coverage in late November 2025 had been the early signal: ``Investors expect AI use to soar.\ That's not happening''~-- meaning that the AI investment thesis was not, in the short term, producing the aggregate productivity gains the investors had hoped for, but \emph{was} producing concentrated labour displacement in specific sectors.\footnote{\emph{The Economist}, ``Investors expect AI use to soar.\ That's not happening,'' \url{https://www.economist.com/finance-and-economics/2025/11/26/investors-expect-ai-use-to-soar-thats-not-happening}. \emph{Dream Machine} Issue~9.} + +The OpenAI public-policy response to this, articulated through April 2026, was a series of proposals~-- robot taxes, public wealth funds, a 4-day workweek~-- designed to manage the economic disruption of AI-driven productivity gains.\footnote{\emph{Dream Machine} Issue~24, April 2026, on OpenAI's public-policy proposals around AI-driven economic disruption.} \emph{Dream Machine} Issue~24 covered these proposals at length. The framing OpenAI used was telling: the company was no longer arguing that AI would \emph{not} cause disruption. It was arguing that the disruption was inevitable and that society needed to build new mechanisms to manage it. + +The \emph{Economist}, in a piece titled ``Job apocalypse? Humbug! AI is creating brand new occupations,'' took the contrary position~-- that AI was, on net, creating more new jobs than it was destroying, and that the framing of mass displacement was overstated.\footnote{\emph{The Economist}, ``Job apocalypse? Humbug! AI is creating brand new occupations,'' \url{https://www.economist.com/business/2025/12/14/job-apocalypse-humbug-ai-is-creating-brand-new-occupations}. \emph{Dream Machine} Issue~12.} Both positions are partially right. The aggregate employment numbers, across creative industries in 2026, did not show the apocalyptic decline some had predicted. But the \emph{composition} of employment changed sharply. Senior orchestrator roles increased. Mid-career specialist roles decreased. New AI-specialist roles~-- AI agent developers, prompt engineers, AI ops specialists~-- exploded. The \emph{Forbes} piece from November 2025 noted that ``vibe coding''~-- natural-language software development~-- was an in-demand AI skill that paid up to \$220,000.\footnote{\emph{Forbes}, ``Vibe Coding~-- The In Demand AI Skill,'' \url{https://www.forbes.com/sites/rachelwells/2025/11/06/the-in-demand-ai-skill-and-certifications-that-pays-up-to-220000/}. \emph{Dream Machine} Issue~8.} + +What the labour market is doing, when you look at it carefully, is \emph{not} destroying jobs in the creative industries. It is \emph{reshuffling} them~-- towards a smaller number of senior strategic roles, a different mix of specialist roles, and a much larger pool of AI-tooling skills that span the old discipline lines. The mid-career creative who fails to make this transition is the one who is at risk. The mid-career creative who makes it well~-- by upskilling deliberately, by claiming the orchestrator role, by building a portfolio practice~-- has, by every indicator I can see, \emph{more} leverage in the labour market than they did before. + +The hard truth is that the transition is not equally available to everyone. It depends on access to training, on access to tooling, on workplace cultures that support experimentation, on time to reskill that workers with caring responsibilities or financial precarity often don't have. The institutional response to this~-- the Sundance Literacy initiative, the UK free-AI-training programme, the Adobe and Google educational investments~-- is real but partial. The structural inequities of who \emph{can} make the transition are real and concerning. + +\section*{The neurodiversity dividend} + +One genuinely encouraging finding from the period this book covers came from the U.K.\ Department for Business and Trade's research on neurodiverse workers in AI-tooled workplaces. + +The study, published in late 2025, found that workers with ADHD, autism and dyslexia were \textbf{25\% more satisfied} with AI assistants than neurotypical workers, and that they reported AI agents as actively helping them succeed at work.\footnote{U.K.\ Department for Business and Trade research on neurodiverse workers and AI assistants, autumn 2025. Reported via \emph{CNBC}, ``People with ADHD, autism, dyslexia say AI agents are helping them succeed at work,'' \url{https://www.cnbc.com/2025/11/08/adhd-autism-dyslexia-jobs-careers-ai-agents-success.html}. \emph{Dream Machine} Issue~7.} The interpretation, reported in \emph{CNBC} in November 2025, was that AI tools were lowering the cognitive load of tasks that had historically been disproportionately punishing for neurodivergent workers~-- coordinating complex calendars, parsing dense documents, structuring written outputs~-- and were, as a result, \emph{levelling the playing field} in workplaces that had previously underutilised neurodivergent talent.\footnote{\emph{CNBC}, \emph{op.\ cit.}} + +I want to flag this finding because it is one of the cleanest counterexamples to the ``AI is bad for workers'' framing that I have come across, and because it is a useful corrective to the labour-displacement narrative that has dominated much of the coverage of this period. + +AI is, demonstrably, \emph{good} for some workers. It is good for the workers who are most able to leverage it, and it is also good for the workers whose existing labour-market participation was being limited by structural barriers that AI happens to dismantle. Both are real, and both are important to keep in view. + +The \emph{Guardian's} parallel finding~-- that ADHD, autism and dyslexia workers were reporting AI agents as a major workplace enabler~-- was echoed in dozens of smaller reports across 2026.\footnote{\emph{Dream Machine} Issue~7 secondary references.} The implication, for the creative industries: a workforce that has historically been heavily neurodivergent (the writing, music, film and games sectors are all over-indexed on neurodivergent talent compared to the general population) stands to be one of the \emph{biggest beneficiaries} of well-deployed AI tooling in the workplace. + +This is not a reason to ignore the displacement story. It is a reason to be careful about which framings of the AI transition are accurate and which are reductive. + +\section*{Indies and the Global South} + +The other genuinely encouraging signal in this period is the rise of the \emph{indie} and \emph{Global South} creative sectors as direct beneficiaries of the AI cost reduction. + +\textbf{African film and tech} has been a recurring positive story across the period~-- from Korin AI, the ``trained with African datasets, built by Africans'' model that launched in May 2026,\footnote{Korin AI launch, May 2026. \emph{Dream Machine} Issue~27.} to the wave of African AI filmmakers that the trade press began covering in earnest in early 2026, to the African music industry's adoption of AI tools described in \emph{CNBC Africa} in October 2025.\footnote{\emph{CNBC Africa}, ``How AI is changing the landscape of the music industry in Africa,'' \url{https://www.cnbcafrica.com/2025/how-ai-is-changing-the-landscape-of-the-music-industry-in-africa}. \emph{Dream Machine} Issue~5.} + +\textbf{Indian cinema} has been awash with AI through the period covered by this book.\footnote{BBC Future, ``Lights, camera, algorithm: Why Indian cinema is awash with AI,'' \url{https://www.bbc.co.uk/future/article/20251223-why-indian-cinema-is-awash-with-ai}. \emph{Dream Machine} Issue~14.} The BBC's December 2025 piece ``Lights, camera, algorithm'' documented the structural shift, with major productions integrating AI for visual effects, dubbing and asset generation, and made an observation about the limits of the technology that has stayed with me: \emph{``You could create a sequel to a regional Indian movie using ChatGPT, but you would need to feed it the cultural memory of the original script. That script would have to be written by a human screenwriter.''} The cultural memory is the human contribution. The toolchain accelerates everything around it. The screenwriting itself~-- the act of \emph{knowing what the culture remembers}~-- remains stubbornly, irreducibly human. India's first AI-animated show, \emph{Legenda Bertuah}, launched in Indonesia in April 2026.\footnote{\emph{Dream Machine} Issue~25, April 2026, on Indonesia's \emph{Legenda Bertuah.}} + +\textbf{Latin American} and \textbf{Middle Eastern} AI film festivals proliferated through late 2025 and early 2026. The \$1m Dubai AI Film Award was won by Tunisia's \emph{Lily.}\footnote{\emph{Broadcast Pro Middle East}, ``Tunisian filmmaker wins \$1 million AI Film Award for `Lily'.'' \emph{Dream Machine} Issue~14.} Mexico's Avocados-From-Mexico Super Bowl campaign was AI-led.\footnote{\emph{Digiday}, ``Avocados From Mexico turns to AI to advertise around the Super Bowl instead of a TV buy.'' \emph{Dream Machine} Issue~15.} + +\textbf{Eastern European} AI filmmaking~-- typified by Andrii Daniels' bomb-shelter clip~-- became a recognised category.\footnote{\emph{Variety}, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter.'' \emph{Dream Machine} Issue~16.} + +\textbf{East Asian} AI development continued at a pace that, by spring 2026, had Chinese open-source AI models being used by approximately 80\% of startups pitching the Andreessen Horowitz fund.\footnote{\emph{Dream Machine} Issue~8 citing Andreessen Horowitz observations: \url{https://www.linkedin.com/posts/stevenouri_a-wild-stat-80-of-startups-pitching-a16z-activity-7396182718998351872-xTKR}.} Korea's Shift Up CEO described AI as the way to compete with Chinese game-industry scale, in language that captures both the geo-economic argument and what it means for individual workers: \emph{``Only when all these people are proficient in AI, so that one person can perform the role of 100 people, can we compete with industries like China and the US that rely on large-scale human resources.''}\footnote{\emph{PocketGamer.biz}, ``Shift Up CEO says AI is key to competing with China's game industry scale,'' \url{https://www.pocketgamer.biz/shift-up-ceo-says-ai-is-key-to-competing-with-chinas-game-industry-scale/}. \emph{Dream Machine} Issue~14.} \emph{One person performing the role of 100.} That is the East Asian games industry's framing of the orchestrator economy, and~-- if it is right~-- it tells you everything you need to know about the headcount maths every studio in the world will run between now and 2030. + +The pattern, when you stand back from it, is what I have come to call the \textbf{Geographic Inversion}. AI is~-- in significant measure~-- \emph{redistributing creative production capacity} away from the traditional centres (Hollywood, London, New York) towards regions that were historically capacity-constrained relative to their creative ambition. For most of the post-war period, geography concentrated creative work; for the first time in living memory, the technology is pushing the other way. This is not, on its own, a justification for everything AI is doing. It is, however, one of the clearest beneficial second-order effects of the cost reduction, and one of the most reliable signs that the creative economy that emerges on the other side of this transition will be~-- in geographic, demographic and economic terms~-- \emph{less concentrated} than the one that preceded it. + +If you are a working creative in a part of the world that has historically been on the wrong end of the global creative economy's geography of access, the AI era is~-- for all its risks~-- also opening doors that were welded shut for most of the previous century. + +\section*{What organisations should do} + +I want to close this chapter with a short and direct argument about what creative \emph{organisations}~-- studios, agencies, labels, broadcasters~-- should be doing right now, because the readers I hear from most often, after working creatives, are people running creative organisations and trying to figure out the shape of the next three to five years. + +The short version, drawn from everything I have read, watched and lived through these six months: + +\textbf{One. Move to integration, fast.} The path-two organisations will outcompete the path-one organisations on talent, on output and on cultural capital within three years. Suppression is not viable as a long-term strategy. + +\textbf{Two. Invest in your mid-career layer.} The biggest source of avoidable damage in this transition is the loss of mid-career specialist knowledge that takes years to rebuild. Find ways to upskill your existing mid-career staff into orchestrator roles. The institutional knowledge they carry is the most valuable asset you have. Do not throw it away because the labour-cost arithmetic in a single quarter says you can. + +\textbf{Three. Solve the apprenticeship problem.} The orchestrator economy structurally undermines the pipeline that has historically produced senior creatives. If you don't solve this~-- by maintaining some entry-level human roles, by building new AI-augmented apprenticeship pathways, by partnering with the institutes and the literacy initiatives~-- you are eating your own future. \emph{Your senior creatives of 2035 are the juniors you hire today.} Treat them that way. + +\textbf{Four. Build the disclosure and provenance infrastructure.} Chapter~\ref{ch:12}'s argument applies as much to organisations as to individual creatives. The organisations that can credibly disclose their AI use, that maintain documentation, that can produce chain-of-custody on contested work, will be the organisations that the audience trusts in 2030. + +\textbf{Five. Build for the new geography.} If your existing organisation is centred on the traditional creative capitals, the AI era is going to be much harder for you than for organisations distributed across the newly-accessible regions of the global creative economy. \emph{Take seriously the option of building distributed teams}~-- not as a cost-saving move, but as a creative-capacity move. The talent is global. The tools are global. The audience is global. The organisations that don't adapt to this fact will lose their relevance to the ones that do. + +\textbf{Six. Don't outsource your judgement.} This is the most important one and the easiest to get wrong. AI tools~-- even the very good ones, even the agentic ones, even the ones the platform companies are most eager to sell you~-- \emph{cannot replace organisational judgement.} The decisions about what to make, who to hire, what to invest in, what to refuse~-- these are decisions that have to live with the humans running the organisation. AI can inform them. AI cannot make them. The organisations I have watched make the biggest unforced errors in the period this book covers are the ones that abdicated organisational judgement to the tools. + +The shape of the creative economy in 2030~-- what it produces, who it employs, where it operates, what it pays, what it is for~-- is being decided, right now, by the choices that the working creatives, the organisations and the institutions of the creative industries make in this twelve-to-eighteen-month window. + +In the next chapter~-- the final chapter of the book proper~-- I want to argue, as directly as I can, for the \emph{kind} of creative economy I think we should be choosing. What a humane version of the AI-era creative economy looks like. Who has to do what to get there. And what working creatives reading this book should be doing on Monday morning to play their part in it. + +That choice is the last thing the book is about. diff --git a/latex/chapters/ch14_the_new_jobs.tex b/latex/chapters/ch14_the_new_jobs.tex new file mode 100644 index 0000000..695ab77 --- /dev/null +++ b/latex/chapters/ch14_the_new_jobs.tex @@ -0,0 +1,183 @@ +\chapter{The New Jobs}\label{ch:14} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{T}{here} is a binary that I have, for six months, watched dominate every conversation about AI and creative employment, and that I am going to spend this chapter taking apart. + +The binary is \emph{jobs apocalypse} versus \emph{jobs renaissance}. On one side, the visible argument: AI is coming for creative work, the trade unions are right, the displacement is real and accelerating, and a meaningful percentage of working creatives~-- particularly mid-career specialists in functions where AI has already become competent~-- will be out of the industry by 2030. On the other side, the equally visible argument: AI is creating more jobs than it destroys, the new categories of AI-orchestration work are paying more than the old ones, the freelance and indie sectors are expanding, the geographic boundaries of the creative economy are dissolving, and the next decade will be the most economically expansive period for creative labour since the post-war television boom. + +Both arguments have evidence. Both are partially right. Both are, taken on their own, \emph{wrong}~-- because the actual labour-market story of 2025--26 is not a binary. It is a \emph{restructuring} with sharp winners and sharp losers, in which the dividing line between the two is not ``AI'' or ``anti-AI.'' The dividing line is \textbf{AI literacy}~-- the practical capacity to deploy generative tools as instruments of one's own creative practice, with judgement, taste and structural understanding of where they help and where they harm. + +This chapter is about that restructuring. About which jobs are disappearing, which are emerging, which are simply being \emph{reshaped}, and what the working creative reading this should be doing~-- concretely, this year~-- to land on the right side of the line. + +I want to spend most of the chapter on the evidence, because the binary framings have been driven, in my experience, by people who have not done the reading. The evidence is messier and more interesting than either side wants to admit. + +\section*{What the headline numbers do not say} + +The aggregate employment numbers in the creative industries for 2024--26 did not show the apocalyptic collapse some had predicted. They also did not show the renaissance the platform companies' marketing teams have been selling. \emph{The Economist}, in a November 2025 piece titled ``Investors expect AI use to soar.\ That's not happening,'' argued that the broad productivity-gain thesis was, in the short term, not playing out at scale across the wider knowledge economy.\footnote{\emph{The Economist}, ``Investors expect AI use to soar.\ That's not happening,'' \url{https://www.economist.com/finance-and-economics/2025/11/26/investors-expect-ai-use-to-soar-thats-not-happening}. \emph{Dream Machine} Issue~9.} A month later, in ``Job apocalypse? Humbug! AI is creating brand new occupations,'' the same publication argued~-- using the same labour-market datasets~-- that AI was producing more new role categories than it was eliminating.\footnote{\emph{The Economist}, ``Job apocalypse? Humbug! AI is creating brand new occupations,'' \url{https://www.economist.com/business/2025/12/14/job-apocalypse-humbug-ai-is-creating-brand-new-occupations}. \emph{Dream Machine} Issue~12.} Both pieces were defensible. Both used real numbers. The two coexisted in the same magazine, six weeks apart, because the aggregate data is, on the current cut, ambiguous. + +What the aggregate data hides is the \emph{internal redistribution}. The mid-career specialist roles I described in Chapter~\ref{ch:13}~-- the experienced sub-editors, the junior animators, the staff illustrators, the in-house copywriters, the routine production-pipeline engineers~-- are visibly contracting. The senior strategic roles~-- the showrunners, the lead creative directors, the senior orchestrators, the IP-fluent producers~-- are visibly expanding their \emph{effective reach} if not their headcount. The new role categories~-- AI agent developers, prompt engineers, AI operations specialists, creative-AI ethics officers, model-curation specialists, AI-literacy trainers, custom-model fine-tuners, agentic workflow designers~-- are visibly growing from a near-zero base. + +The \emph{Guardian's} ``AI is hitting UK harder than other big economies, study finds,'' from January 2026, found that mid-career UK knowledge workers were experiencing disproportionate displacement compared to peers in the U.S., Japan, Germany and Australia~-- but that the displacement was concentrated in specific \emph{task categories}, not whole occupations.\footnote{\emph{The Guardian}, ``AI is hitting UK harder than other big economies, study finds,'' \url{https://www.theguardian.com/technology/2026/jan/26/ai-uk-jobs-us-japan-germany-australia}. \emph{Dream Machine} Issue~16.} The University of Wisconsin-Stout's January 2026 announcement, in which the institution set AI use as a \emph{baseline competency} in its filmmaking course, captured the supply-side response: the curriculum was being re-engineered around the assumption that working filmmakers in 2030 would be AI-literate by default.\footnote{University of Wisconsin-Stout, ``AI Reshaping Industry: New UW-Stout Course Sets AI-Use as Baseline Competency in Filmmaking,'' \url{https://www.uwstout.edu/about-us/news-center/ai-reshaping-industry-new-uw-stout-course-sets-ai-use-baseline-competency-filmmaking}. \emph{Dream Machine} Issue~15.} + +The labour market, in other words, is doing what labour markets always do in a productivity transition. It is reshuffling. The reshuffle is sharper than the headline employment figures suggest because the \emph{composition} of work is changing faster than the \emph{amount}. + +\section*{The roles that are disappearing} + +I want to be specific, because vague claims about ``creative jobs disappearing'' do not help anyone make a career decision. Based on the trade-press coverage tracked across the \emph{Dream Machine} archive, the survey data in Appendix~D and Appendix~E, and the studio-leadership interviews I have read or conducted, the roles under the most active substitution pressure in 2026 are: + +\textbf{Junior visual production roles.} Concept artists at the asset-variation level. Junior 3D modellers doing standard architectural / environmental fills. Storyboard artists working on commercial briefs that do not require performance staging. Background-plate compositors. Routine matte painters. Stock photographers and stock illustrators. Adobe's own data~-- 25\% of new Adobe Stock contributions in 2024 containing Firefly-generated elements\footnote{Adobe Firefly enterprise metrics, in Appendix~E: \emph{Dynamics of Generative AI Adoption}.}~-- is the clearest single number in this category. + +\textbf{Junior writing and copy roles.} In-house copywriters at brand agencies. Junior content marketers. Routine technical writers. Translation generalists where the source/target pair is well-resourced (English-Spanish, English-Chinese, etc.). SEO content writers. Sub-editors at digital publications. The Reuters Institute's ``AI adoption by UK journalists'' survey found high integration across newsrooms by late 2025; the \emph{Daily Mail}'s December 2025 report that Google's AI Overviews had ``killed click-throughs'' to news sites was the consumer-side mirror of the production-side pressure.\footnote{Reuters Institute, ``AI adoption by UK journalists and their newsrooms,'' \url{https://reutersinstitute.politics.ox.ac.uk/ai-adoption-uk-journalists-and-their-newsrooms-surveying-applications-approaches-and-attitudes}. \emph{Digiday}, ``Daily Mail says Google AI Overviews have killed click-throughs,'' \url{https://digiday.com/media/daily-mail-says-google-ai-overviews-have-killed-click-throughs/}. \emph{Dream Machine} Issues~7,~9.} + +\textbf{Mid-career routine production and post-production roles.} Routine audio engineering (the 1,100-creator music survey discussed in Chapter~\ref{ch:13} showed 58\% of producers using AI for restoration, 38\% for mixing assistance, 33.9\% for automated mastering\footnote{1,100-creator music survey 2026, in Appendix~D: \emph{Shadow AI}, \S``Music Production and Sound Recording.''}). Standard VFX compositing (62\% of Hollywood studios on automated AI compositing, 35\% reduction in post-production timelines\footnote{VFX AI integration metrics, in Appendix~E, \S``Visual Effects (VFX) Automation.''}). De-aging specialists (200 hours per actor down to 50). Particle simulation specialists (68\% adoption among top VFX houses by SIGGRAPH 2025). Routine matte-painting generalists (initial setup time from 4 hours to 1.2 per shot). + +\textbf{Routine games-development roles.} Square Enix's announced target~-- \textbf{70\%} of QA work via AI by end of 2027~-- is the cleanest signal here.\footnote{\emph{PC Gamer}, ``Square Enix aims to have AI doing 70\% of its QA work by the end of 2027,'' \url{https://www.pcgamer.com/gaming-industry/square-enix-aims-to-have-ai-doing-70-percent-of-its-qa-work-by-the-end-of-2027/}. \emph{Dream Machine} Issue~7.} Falcom's reported productivity ratio of \emph{2-3 hours of work reduced to 10 minutes}\footnote{\emph{Eurogamer}, ``Falcom is the latest developer to buy into the AI hype machine,'' \url{https://www.eurogamer.net/falcom-is-the-latest-developer-to-buy-into-the-ai-hype-machine}. \emph{Dream Machine} Issue~12.} tells you what is happening to the routine animation, asset and engineering layer underneath the games industry. Ubisoft's January 2026 cancellation of five games (including the \emph{Prince of Persia} remake) in order to refocus capital on AI signalled a structural shift in resource allocation that mid-career game developers are still digesting.\footnote{\emph{Metro}, ``Prince of Persia remake and five more games cancelled as Ubisoft focuses on AI,'' \url{https://metro.co.uk/2026/01/21/prince-persia-remake-five-games-cancelled-ubisoft-focuses-ai-26431926/}. \emph{Dream Machine} Issue~15.} + +\textbf{In-house AI specialist teams at non-AI-native companies.} This one is counter-intuitive but real. The publisher behind \emph{Grand Theft Auto VI} laying off its entire seven-year-old internal AI team in April 2026, in favour of off-the-shelf tooling, is the canonical case.\footnote{\emph{Dream Machine} Issue~24, April 2026, on the GTA~VI publisher laying off its internal AI team.} Companies that built proprietary AI capabilities in 2018--2024 are increasingly finding that the open-weight and commercial foundation models have caught up; the bespoke AI team becomes redundant. This is a real and rapid form of AI-driven displacement that the public discourse has not yet recognised, because the workers being displaced are themselves AI specialists. + +\textbf{Voice actors and session musicians in commodity work.} ElevenLabs' growth to \$500m ARR by April 2026\footnote{ElevenLabs \$500m ARR reporting, April 2026. \emph{Dream Machine} Issue~25.} is, in large part, the substitution of routine voiceover, audiobook, podcast-host and dubbing work. Live performance, voice work that requires acting craft, and specialty voice roles (animation leads, signature character voices) are not displaced. The middle of the voice market is. + +\textbf{Routine commercial illustration and design.} Brand assets, marketing imagery, social-media graphics, basic product visualisation. The Higgsfield growth curve~-- \$200M revenue in nine months, primarily serving social-media marketers\footnote{\emph{36kr}, ``AI Video Unicorn Higgsfield: Earns \$200M in 9 Months by `Serving' Social Media Marketers,'' \url{https://eu.36kr.com/en/p/3650517574312323}. \emph{Dream Machine} Issue~16.}~-- is the consumer-marketing equivalent of the Adobe Firefly enterprise curve. + +The pattern across these categories is consistent: it is \emph{routine} work, \emph{specialist} work, and \emph{mid-career} work that is under pressure. The pattern is \emph{not} aimed at junior on-ramp roles (which is a problem of its own~-- see below) or at senior creative judgement roles. It is concentrated in the middle of the pipeline, in the layer historically occupied by experienced operators of the toolchain. + +\section*{The roles that are emerging} + +The other side of the redistribution is equally real and substantially under-reported in the consumer press. + +\textbf{AI orchestrators / senior creative directors of agentic teams.} The most strategically important new role, and the one Chapter~\ref{ch:11} made the long-form case for. The Sony 49-Claude-agent / 72-skill stack is the canonical example.\footnote{\emph{Dream Machine} Issue~29, May 2026, on Sony's 49-agent / 72-skill multi-agent game-development team.} In adland, \emph{Digiday} reported in late 2025 that ``AI agent developers have become adland's in-demand role''\footnote{\emph{Digiday}, ``AI agent developers have become adland's in-demand role,'' \url{https://digiday.com/marketing/ai-agent-developers-have-become-adlands-in-demand-role/}. \emph{Dream Machine} Issue~7.}~-- a senior creative-strategic role that did not exist eighteen months earlier. + +\textbf{Prompt engineers / AI workflow designers.} The role is now broad enough to have its own specialisation tracks. \emph{Forbes} reported in November 2025 that ``vibe coding''~-- natural-language software development~-- paid up to \textbf{\$220,000} as an in-demand AI skill.\footnote{\emph{Forbes}, ``Vibe Coding~-- The In Demand AI Skill That Pays Up to \$220,000,'' \url{https://www.forbes.com/sites/rachelwells/2025/11/06/the-in-demand-ai-skill-and-certifications-that-pays-up-to-220000/}. \emph{Dream Machine} Issue~8.} The equivalent figures in the creative space~-- prompt engineers at major studios, freelance AI-workflow consultants~-- are running in the same band for senior practitioners. + +\textbf{AI literacy trainers and AI-education designers.} The Sundance Institute's AI Literacy Initiative, launched in January 2026 with \$2M of Google funding to train 100,000 filmmakers, is the institutional version of this role.\footnote{Sundance Institute, ``Centering the Artist: Why We're Launching the AI Literacy Initiative,'' \url{https://www.sundance.org/blogs/centering-the-artist-why-were-launching-the-ai-literacy-initiative/}. Google blog, ``Sundance Institute AI Education,'' \url{https://blog.google/company-news/outreach-and-initiatives/google-org/sundance-institute-ai-education/}. \emph{Dream Machine} Issues~15,~16.} The Adobe Ignite Day at Sundance, the UK government's ``Free AI training for all'' programme covering 10 million workers by 2030,\footnote{UK Government, ``Free AI training for all,'' \url{https://www.gov.uk/government/news/free-ai-training-for-all-as-government-and-industry-programme-expands-to-provide-10-million-workers-with-key-ai-skills-by-2030}. \emph{Dream Machine} Issue~16.} the Lovable-for-classrooms expansion,\footnote{Lovable for classrooms: \url{https://lovable.dev/classroom}. \emph{Dream Machine} Issue~11.} the UW-Stout baseline-AI competency course~-- these are the demand signal for a new category of educator that combines creative-discipline expertise with practical AI fluency. + +\textbf{Model curation specialists.} With foundation models proliferating and custom fine-tuning becoming a baseline capability, the role of \emph{selecting, training and maintaining} an organisation's model stack has emerged as a discrete specialism. Adobe Firefly Foundry~-- the service that lets companies train custom generative models on their own visual identity\footnote{Adobe, ``Firefly Foundry,'' \url{https://news.adobe.com/news/2025/10/adobe-max-2025-firefly-foundry}. \emph{Dream Machine} Issue~5.}~-- created an entire job category of brand-and-IP model trainers. Korin AI's launch in May 2026, ``trained with African datasets, built by Africans,''\footnote{Korin AI launch, May 2026. \emph{Dream Machine} Issue~27.} is the cultural-fluency variant of this role. + +\textbf{AI ethics, disclosure and provenance officers.} Following the SAG-AFTRA contract negotiations, the Cannes AI Disclosure Standard, the Academy's ``you must be human to win'' rule, the New York AI advertising disclosure law, and the proliferating C2PA-compliance and SynthID-tooling requirements, organisations across the creative industries have begun hiring (or designating) dedicated AI-ethics and disclosure leads.\footnote{\emph{The Verge}, ``New York's new law forces advertisers to say when they're using AI avatars,'' \url{https://www.theverge.com/news/842848/new-york-law-ai-advertisements-sag-aftra-labor}. \emph{Dream Machine} Issue~11. C2PA / SynthID infrastructure references in Chapter~\ref{ch:12}.} At DreamLab, we have a \emph{Continuum Lead} whose job is to make this work coherent across every project we run~-- three years ago, the role did not exist. + +\textbf{Indie and Global South creator-producers.} The cost reduction in production tooling has created a new viable role category that was not economically possible before: the \emph{one-person-or-small-team creator-producer} operating outside the traditional creative centres, with global distribution reach and a defensible aesthetic identity. \emph{Forbes} covered the broad category in ``AI Is Changing How Creators Work And Earn'' in December 2025.\footnote{\emph{Forbes}, ``AI Is Changing How Creators Work And Earn,'' \url{https://www.forbes.com/sites/kolawolesamueladebayo/2025/12/22/how-ai-is-changing-how-creators-work-and-earn/}. \emph{Dream Machine} Issue~13.} The Higgsfield revenue (built on social-media marketer demand), the Andrii Daniels bomb-shelter clip (a Ukrainian one-person production with global reach\footnote{\emph{Variety}, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter,'' \url{https://variety.com/2026/digital/news/ai-video-deadpool-harry-potter-andrii-daniels-1236624632/}. \emph{Dream Machine} Issue~16.}), the Tunisian \emph{Lily} (\$1M Dubai AI Film Award winner\footnote{\emph{Broadcast Pro Middle East}, ``Tunisian filmmaker wins \$1 million AI Film Award for `Lily','' \url{https://www.broadcastprome.com/news/tunisian-filmmaker-wins-1-million-ai-film-award-for-lily/}. \emph{Dream Machine} Issue~14.}), the Indonesian \emph{Legenda Bertuah} animated series,\footnote{\emph{Dream Machine} Issue~25, April 2026, on Indonesia's \emph{Legenda Bertuah}.} the Indian-cinema integration wave covered by the BBC's ``Lights, camera, algorithm''\footnote{BBC Future, ``Lights, camera, algorithm: Why Indian cinema is awash with AI,'' \url{https://www.bbc.co.uk/future/article/20251223-why-indian-cinema-is-awash-with-ai}. \emph{Dream Machine} Issue~14.}~-- these are not exceptions. They are the leading edge of a structural change in \emph{who can be a working creative}, and where they can live. + +\textbf{AI-augmented apprentices.} This category is still being built, and is the central labour-market design question of the next three years (more below). The early models~-- AI-tool-augmented junior animator roles maintained deliberately at \emph{Position Four} studios (Chapter~\ref{ch:7}), the Sundance Collab fellowship structure, the AI-augmented entry-level posts at WPP and the major Hollywood studios~-- are the early experiments. None of them, yet, has fully solved the apprenticeship problem. + +\textbf{Cross-disciplinary ``portfolio creatives.''} What I have been calling, in talks since the autumn, the \textbf{AI Literacy Premium} role~-- the working creative who, instead of a single specialism, holds several loosely-coupled creative disciplines together using AI as connective tissue. \emph{TechBullion}'s ``Why the future belongs to multi-skilled leaders,'' from November 2025,\footnote{\emph{TechBullion}, ``Why the future belongs to multi-skilled leaders,'' \url{https://techbullion.com/playing-the-long-game-with-a-portfolio-career-why-the-future-belongs-to-multi-skilled-leaders/}. \emph{Dream Machine} Issue~9.} and the Anthropic \emph{Skills} framework underneath Claude Code's multi-agent coordination,\footnote{Anthropic Skills framework via Claude Code. \emph{Dream Machine} Issues~11,~16,~29.} are the corporate-leadership and tooling-side manifestations of the same trend. The portfolio creative is increasingly the \emph{default} career shape for working creatives entering the field today. + +\section*{The AI literacy premium} + +If you stack the disappearing-roles list against the emerging-roles list, a single underlying variable does most of the explanatory work for who is winning and who is losing in the 2026 creative labour market. + +The variable is \textbf{AI literacy}~-- defined operationally as the combined skill of (a) knowing what generative tools can and cannot do well, (b) being able to brief them effectively, (c) being able to judge their outputs with taste, (d) being able to integrate them into a coherent creative workflow, and (e) knowing where on the Continuum your craft sits and why. + +The empirical case for the literacy premium is strong and consistent across the data: + +The Adobe Creators' Toolkit Report of October 2025, surveying 16,000 creators across the U.S., U.K., France, Germany, South Korea, Japan, India and Australia, found that \textbf{86\%} of creators were already using generative AI; that \textbf{76\%} of users said it had helped grow their business or brand; that \textbf{81\%} said AI lets them make content they otherwise could not have made; and~-- most significantly~-- that \textbf{70\%} were optimistic about agentic AI and \textbf{85\%} would use AI that learned their creative style.\footnote{Adobe, ``Inaugural Adobe Creators' Toolkit Report,'' October 2025, \url{https://news.adobe.com/news/2025/10/adobe-max-2025-creators-survey}. \emph{Dream Machine} Issue~6.} The numbers are not the numbers of a workforce in retreat. They are the numbers of a workforce \emph{adopting at scale} and reporting commercial benefit. + +The PRS for Music 2026 AI Survey, surveying U.K.\ music creators, found \textbf{four in five} music creators worried about AI-generated music competing in the streaming economy\footnote{PRS for Music, ``PRS for Music AI Survey 2026,'' \url{https://www.prsformusic.com/m-magazine/news/prs-for-music-ai-survey-2026}. \emph{Dream Machine} Issue~16.}~-- but also that respondents who were using AI tools in their own creative practice reported higher earnings and broader output reach than peers who were not. The two findings live together. The anxiety and the adoption are happening in the same head. + +The U.K.\ Department for Business and Trade research, reported in \emph{CNBC} in November 2025, found that workers with ADHD, autism and dyslexia were \textbf{25\% more satisfied} with AI assistants than neurotypical workers, with AI agents reported as actively helping them succeed at work.\footnote{\emph{CNBC}, ``People with ADHD, autism, dyslexia say AI agents are helping them succeed at work,'' \url{https://www.cnbc.com/2025/11/08/adhd-autism-dyslexia-jobs-careers-ai-agents-success.html}. \emph{Dream Machine} Issue~7.} Given that the creative industries are over-indexed on neurodivergent talent compared with the general population, this is a major equity-and-productivity story that the AI-displacement narrative has under-told. + +The McKinsey AI report on film and TV production, released in early 2026, made the broader business case: AI would not, in McKinsey's view, replace film and television production. It would \emph{restructure} it~-- towards smaller teams, faster cycles, more iteration, and heavier reliance on senior creative judgement.\footnote{McKinsey \& Company, ``What AI could mean for film and TV production and the industry's future,'' \url{https://www.mckinsey.com/industries/technology-media-and-telecommunications/our-insights/what-ai-could-mean-for-film-and-tv-production-and-the-industrys-future}. \emph{Dream Machine} Issue~16.} In other words: towards an \emph{orchestrator-shaped} industry, in which the working creatives best positioned to thrive are those who can operate the new toolchain rather than those who refuse to engage with it. + +The GDC State of the Game Industry surveys 2024--2026 (covered in detail in Appendix~E) showed personal generative-AI usage among professional game developers rising from \textbf{31\%} to \textbf{36\%} while industry sentiment cratered from 18\% negative to \textbf{52\%} negative.\footnote{GDC State of the Game Industry surveys 2024--2026, in Appendix~E, \S``The Video Game Industry.''} The interpretation: developers using AI are increasingly \emph{uncomfortable} about doing so, but they are doing so anyway, because the productivity advantage is too strong to ignore. + +The LANDR study reported in \emph{Ari's Take}, late 2025, found that \textbf{87\%} of musicians surveyed were using AI tools in some part of their practice.\footnote{LANDR AI music study, late 2025, referenced via \emph{Ari's Take}, \url{https://aristake.com/ai-tools-musicians-study/}. \emph{Dream Machine} Issue~8.} When the figure for ``musicians using AI'' approaches the figure for ``musicians using DAWs,'' you are not looking at a niche adoption pattern. You are looking at a baseline competency that the next generation of working musicians will be assumed to have. + +The Stanford AI Index Report 2025 found that across 26 surveyed nations, \textbf{55\%} of individuals viewed AI products as offering more benefits than drawbacks, up from 52\% in 2022;\footnote{Stanford AI Index Report 2025. Summarised in Appendix~E, \S``The Perception Gap.''} the YouGov 2024 multi-market sentiment data echoed the same direction.\footnote{YouGov 2024 multi-market AI sentiment survey. Summarised in Appendix~E.} Working creatives are sitting inside a consumer environment that is, on net, \emph{increasingly accepting} of AI in creative work~-- which translates, slowly, into client demand for AI-augmented services. + +The \emph{Digital Music News} survey of nearly \textbf{800 creatives} who signed the \emph{Stealing Our Work Is Not Innovation} declaration in January 2026\footnote{\emph{Digital Music News}, ``Nearly 800 Creatives Sign Responsible AI Declaration~-- `Stealing Our Work Is Not Innovation','' \url{https://www.digitalmusicnews.com/2026/01/22/stealing-isnt-innovation/}. \emph{Dream Machine} Issue~16.}~-- that same vocal-minority signal that produced political wins in Chapter~\ref{ch:6}~-- included, in its signatory base, a meaningful number of creators who were \emph{themselves} using AI tools in their own production work. The signing of the declaration was not a refusal of the technology. It was an insistence that the \emph{training data} be consented and compensated. Two positions, held at once, by the same working creatives. + +Stack these findings together and the labour-market picture becomes much clearer than the binary discourse allows. + +\textbf{Working creatives who hold AI literacy are gaining leverage.} Their effective output reach is larger. Their hourly rate is higher. Their client base is broader. Their geographic constraints are weaker. The orchestrator role, the portfolio-creative model, the literacy-trained newcomer~-- these are the positions on which the next decade of creative employment expansion is being built. + +\textbf{Working creatives without AI literacy are losing leverage.} Their effective hourly rate is being competed down by AI-augmented peers. Their client base is being eroded by faster, cheaper, mostly-adequate substitutes. Their career mobility is contracting as mid-career specialist roles in their domains are absorbed into agentic capacity. Their geographic constraints (London, New York, LA, Tokyo as the centres) are being preserved while their AI-fluent competitors operate from anywhere. + +This is, in practical terms, the structural transition the working creative reading this in 2026 is now facing. The choice is not ``use AI'' or ``refuse AI.'' The choice is whether to build the literacy that lets you remain in command of how AI shows up in your own practice, or whether to let the literacy build itself, badly, in your absence. + +\section*{The Apprenticeship Gap} + +I want to name the most underdiscussed structural problem in the AI-era labour market, because it is~-- by my read~-- the single largest threat to the long-term health of the creative economy and it has nowhere near the public attention it deserves. + +I call it the \textbf{Apprenticeship Gap}. + +For the entire history of the creative industries~-- from the medieval guilds through the post-war Hollywood studio system through the rise of digital media~-- the \emph{junior on-ramp} into creative work has been the structural foundation on which senior talent is built. Junior writers become senior writers by writing things that nobody pays much attention to, repeatedly, for a decade, under the loose mentorship of more senior practitioners. Junior animators become senior animators by drawing the in-between frames, by cleaning up the rough animatics, by handling the routine asset variations that the lead artists do not have the time for. Junior cinematographers become senior cinematographers by holding focus, by pulling cable, by lighting the second-unit shot. The junior tasks were not, in themselves, the destination. They were the \emph{training ground} on which judgement, craft and taste were built. + +The orchestrator economy, the agentic toolchain, the GDC-data picture of senior practitioners using AI to absorb the routine middle-layer work~-- these patterns, taken together, are progressively \emph{removing} the junior on-ramp from the industry. The junior writer is competing with Claude. The junior animator is competing with Cascadeur. The junior cinematographer is competing with Veo 3.1's plate generation. The junior coder is competing with Cursor and Copilot. In every case, the routine task that \emph{used to be the entry point} into the discipline is now economically uncompetitive against an AI agent that does it in seconds for cents. + +The studios are not~-- yet~-- replacing senior roles. They are absorbing the \emph{junior layer} underneath the senior roles, and then telling themselves a story about how the new tools will free senior practitioners to focus on the \emph{real} creative work. + +The story is partially true. It is also dangerously incomplete. If the junior layer disappears for a decade, the \emph{next generation of senior practitioners has nowhere to be trained}. The pipeline breaks. The 2035 cohort of senior creative directors, lead animators, showrunners, music producers, art directors~-- the people who, in 2026, would be five years into a junior career~-- will simply not exist at the volumes the industry needs. The discipline-specific knowledge, the embodied craft, the relationship-based mentorship~-- all of these were carried in the apprenticeship layer. Remove the layer, and you are eating the seed corn of the discipline. + +This is not a speculative claim. It is the underlying logic of every ``expensive mistake'' interview a working studio leader has given to the trade press in this period~-- Charles Cecil at Revolution Software, Todd Howard at Bethesda, the Larian and Aardman and Jagex public positions. The senior practitioners are saying, in different vocabularies, the same thing: \emph{we used to teach the next generation by giving them the routine work. The routine work is gone. We have not solved the teaching problem.} + +The institutional response to date is partial and patchy. The Sundance literacy initiative is real. The Adobe Ignite Day, the Sundance Collab fellowships, the UK Free AI Training for All programme, the UW-Stout curricular changes~-- these are the visible institutional moves. But they are training programmes for \emph{AI literacy specifically}, not full apprenticeship pipelines for the underlying creative discipline. They produce literate orchestrators. They do not, by themselves, produce the cinematographers, the composers, the writers, the lead artists, the showrunners of 2040. + +The deepest structural reform that needs to happen in the next eighteen months is the deliberate preservation~-- or rebuilding, or re-imagining~-- of the apprenticeship layer. Some of this is already happening: + +\textbf{Position Four studios maintaining junior roles by policy.} Aardman, Larian, Games Workshop, Jagex have, in different forms, made deliberate commitments to keep junior human roles in their pipelines even where AI could absorb them, on the explicit grounds that the future of the studio requires it. This is the most encouraging single trend I have observed. + +\textbf{Hybrid apprenticeship pathways.} The new role I called \emph{AI-augmented apprentices} above. A junior animator who uses Cascadeur, but who is \emph{paired with a senior animator who teaches them why} the AI's output is good or bad. The juniors are not doing the in-between frames any more. They are doing the \emph{judgement} on the in-between frames the AI produces, and the senior teaches them how to judge. This is a real model. It is not yet at scale. + +\textbf{Institutional reinvestment.} The cultural-institution training programmes~-- Sundance, the BFI, the national film schools, the BBC training schemes, the Royal College of Art and equivalent national schools~-- are, in different ways, recalibrating to deliver more comprehensive training in shorter timeframes, on the assumption that the years-on-the-job apprenticeship period is contracting. + +\textbf{Public funding interventions.} The UK government's \emph{Free AI training for all} programme, the EU's various creator-skills initiatives, and the U.S.\ state-level training credits being attached to AI-investment incentives are early signs that the apprenticeship gap is being recognised as a public-policy problem rather than a market problem. + +None of these is, on its own, sufficient. The Apprenticeship Gap is~-- by my prediction~-- going to be the single largest \emph{unresolved} labour-market issue in the creative economy of 2030. The studios, the unions, the schools and the platform companies are going to have to figure it out together. Chapter~\ref{ch:15}'s manifesto in \emph{Choosing the Future} lists it explicitly as one of the questions every working organisation has to engage with. + +If you are reading this as a senior practitioner: maintain juniors. Pair them with the new tools deliberately. Treat their on-ramp as a public good your industry depends on. + +If you are reading this as a junior practitioner: the on-ramp is contracting. You do not get to wait. The literacy you build \emph{in the next eighteen months} will determine whether the on-ramp closes before you are inside it. + +\section*{The geographic redistribution} + +The second-largest under-reported labour-market story of this period is geographic. + +For the entire post-war history of the global creative industries, professional creative employment has been concentrated in a small number of cities~-- Los Angeles, New York, London, Paris, Tokyo, Mumbai, with smaller secondary nodes in Berlin, Toronto, Seoul, Sydney. The geography was a function of the \emph{cost structure} of creative production: studios, equipment, distribution networks, talent pools and capital all concentrated in the cities that could afford to host them, and the working creatives followed. + +The AI cost reduction is, structurally, dismantling this geography. + +The Tunisian-made \emph{Lily} winning the \$1M Dubai AI Film Award.\footnote{\emph{Broadcast Pro Middle East}, \emph{Lily} award~-- \emph{op.\ cit.}} The Ukrainian one-person bomb-shelter production going viral globally.\footnote{\emph{Variety}, Andrii Daniels bomb-shelter clip~-- \emph{op.\ cit.}} The Indian-cinema AI integration wave covered by the BBC, with productions across regional cinema centres absorbing the new toolchain at scale.\footnote{BBC Future, ``Lights, camera, algorithm''~-- \emph{op.\ cit.}} The Indonesian \emph{Legenda Bertuah} AI-animated series.\footnote{\emph{Dream Machine} Issue~25, Indonesian \emph{Legenda Bertuah}.} The Korin AI launch~-- Africa-trained, Africa-built foundation model~-- and the broader \emph{CNBC Africa} coverage of AI in African music and film.\footnote{\emph{CNBC Africa}, ``How AI is changing the landscape of the music industry in Africa,'' \url{https://www.cnbcafrica.com/2025/how-ai-is-changing-the-landscape-of-the-music-industry-in-africa}. \emph{Dream Machine} Issue~5. Korin AI launch, May 2026~-- \emph{op.\ cit.}} The Singapore-based AI video startup Video Rebirth raising \$50M for studio-grade tooling. The Eastern European AI filmmaker community building around the success of creators like Andrii Daniels. The Latin American AI-film festival wave through 2026. + +These are not isolated stories. They are the leading edge of a redistribution that, taken together, is \emph{materially expanding} the global creative workforce beyond the previous-century cities. The reduction in cost-of-entry for serious creative production has, for the first time since the rise of cinema, made it economically viable to build a competitive creative practice from places that the previous geography had locked out. + +The Shift Up CEO's framing, in the \emph{PocketGamer.biz} piece~-- \emph{``Only when all these people are proficient in AI, so that one person can perform the role of 100 people, can we compete with industries like China and the US that rely on large-scale human resources''}\footnote{\emph{PocketGamer.biz}, ``Shift Up CEO says AI is key to competing with China's game industry scale,'' \url{https://www.pocketgamer.biz/shift-up-ceo-says-ai-is-key-to-competing-with-chinas-game-industry-scale/}. \emph{Dream Machine} Issue~14.}~-- is the strategic reading from inside the Korean games industry. The same logic applies in Mexico, in Egypt, in Nigeria, in Brazil, in Vietnam, in any creative economy that has historically been resource-constrained relative to its ambitions. + +For the working creative reading this in one of those geographies: the AI era is, for all its disruption risks, also opening doors that were welded shut for most of the previous century. The labour market is becoming, for the first time in living memory, \emph{less} concentrated. + +For the working creative reading this in one of the historical centres: this redistribution is not theoretical. The clients, the budgets and the IP that previously concentrated in your city are, increasingly, being competed for by capable AI-augmented competitors operating from anywhere on the planet. Your geographic advantage is contracting. + +\section*{What the working creative should do} + +I have, throughout the book, tried to land each chapter with practical takeaways. This chapter is the labour-market chapter, and the takeaways are the most concrete. + +\textbf{Build the literacy this year.} Not next year. The Adobe Creators' Toolkit Report, the LANDR survey, the GDC data, the McKinsey reading~-- all point in the same direction. The literacy premium is not a future variable. It is, in 2026, the single biggest determinant of mid-career creative employment outcomes. Free training programmes exist (Sundance Collab, UK Free AI Training, Adobe Express, the open-source ecosystem). Use them. Spend the equivalent of one week per quarter, deliberately, on building practical fluency in the toolchain. + +\textbf{Map your craft against the Continuum (Chapter~\ref{ch:3}).} Decide where your craft sits, function by function. Decide where you are willing to let agents operate on your behalf and where you are not. Write the map down. Update it quarterly. The working creatives I have watched make the most successful transitions in this period have been the ones who knew, in advance and explicitly, where their lines were. + +\textbf{Pick your role on the new map.} Orchestrator, portfolio creative, AI-literacy trainer, model curator, ethics-and-disclosure specialist, regional creator-producer, hybrid apprentice. The roles are real. They pay. They will, by every indicator I can read, continue to grow through the next five years. You do not need to invent your own category. You can pick one of the emerging ones. + +\textbf{Build your apprenticeship~-- or build the next generation's.} If you are early in your career, find the senior practitioners who are running hybrid apprenticeship pipelines and apply. If you are mid-career, identify the AI-augmented junior roles in your discipline and either fill them yourself or pair with one. If you are senior, maintain juniors in your team and pair them deliberately with the new tools. + +\textbf{Take the geography seriously.} If you have historically been outside the creative-economy centres, the AI cost reduction has opened a window. Use it. Build for the global creative market from where you are, with the cost advantages your geography offers. If you have historically been inside the centres, your geographic premium is contracting; build defensible craft, IP and relationships that survive the cost flattening. + +\textbf{Stay in the work.} This is the same advice the rest of the book lands on, and it is the same advice for this chapter. The maker who never makes is the maker whose judgement decays. Maintain craft contact, in at least one part of your practice, that does not depend on AI tooling. The contact will keep your eye sharp for everything else. The orchestrator who never operates the tools cannot brief them well. The orchestrator who only operates the tools loses the human signal the audience came for. + +\textbf{Speak.} The labour-market shape of the next decade is being decided right now, by the institutions of collective bargaining, by the policy-makers running consultations, by the platform companies building the rails, and by the creative organisations making integration choices. The 88\% in the UK consultation was made out of voices. The Tilly Tax was made out of voices. The Sundance literacy turn was made out of voices. Your voice~-- your testimony to your union, your trade body, your local government, your manager, your client~-- is the input the institutions need. The labour-market protections of 2030 will be the cumulative result of how loudly working creatives turn up to claim them in 2026 and 2027. + +\section*{A note on the binary} + +I want to close this chapter by returning to the binary I started with~-- \emph{jobs apocalypse} versus \emph{jobs renaissance}~-- because both framings, repeated often enough, do real damage to the working creative who is trying to make rational career decisions in real time. + +The apocalyptic framing is, in my view, the more dangerous of the two, because it produces \emph{paralysis}. Working creatives who become convinced that AI is coming for their job, full stop, often stop investing in the literacy that would let them stay ahead of the substitution curve. They become spectators of their own displacement. By the time the substitution arrives, they are unprepared. + +The renaissance framing is the less dangerous one but is also wrong, because it produces \emph{complacency}. Working creatives who become convinced that AI will simply expand the labour market often fail to invest deliberately in the literacy that lets them claim the expansion. They drift, expecting the rising tide to lift their boat without recognising that it lifts only the boats whose owners are paying attention. + +The accurate framing is harder to live with than either: the labour market is \emph{redistributing} in real time, with sharp winners and sharp losers, and the variable that most reliably predicts which side you land on is the \emph{deliberate, structured investment in AI literacy} that you make over the next twelve to eighteen months. + +The good news, against the dystopian end of the press cycle, is that the literacy is acquirable. It is not gatekept by class, by geography, by previous credentialling, or by institutional access. The tools are largely free at the entry level. The training programmes are largely free. The community of practice~-- the \emph{Dream Machine} readers, the DreamLab Collective, the open-source forums, the regional creator networks, the literacy initiatives at Sundance and elsewhere~-- is open and inviting. The barrier to entry is, by historical creative-industry standards, low. + +The harder news is that the literacy \emph{has to be acquired deliberately}. It does not arrive by osmosis. It does not arrive by reading the trade press. It arrives by \emph{doing the work}~-- by sitting at the desk, briefing the agents, evaluating their outputs, building the workflow, and shipping the result. Then doing it again. Then doing it again. The literacy is a \emph{practice}, not a credential. It is, in that sense, identical in shape to every other craft skill the creative industries have ever rewarded. + +The working creative in 2026 who treats AI literacy as a craft to be practised, not a technology to be debated, is the working creative who, in 2030, will look back at this period as the one in which their career took its most consequential turn. + +Build the literacy. Pick your role on the new map. Defend the apprenticeship. Take the geography seriously. Stay in the work. Speak. + +The labour market is moving. So can you. diff --git a/latex/chapters/ch15_choosing_the_future.tex b/latex/chapters/ch15_choosing_the_future.tex new file mode 100644 index 0000000..85e76a7 --- /dev/null +++ b/latex/chapters/ch15_choosing_the_future.tex @@ -0,0 +1,259 @@ +\chapter{Choosing the Future}\label{ch:15} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{ } want to start this chapter with a confession. + +When I sent out the first edition of \emph{Dream Machine} on 6 October 2025, I thought I was writing a newsletter about \emph{tools}. I thought it was going to be a weekly digest of new model releases, new app launches, new research papers~-- a useful reading list for people in the creative industries who wanted to keep up with what was, even then, an absurd pace of technical change. + +Six months later, I do not think that is what \emph{Dream Machine} has been about, and I do not think it is what this book is about either. + +The tools have mattered. The tools will continue to matter. Each chapter of this book has had to spend significant pages on what the platforms shipped, when, and to whom~-- because the platforms are setting the rails, and you cannot understand the choices the creative industries are now making without understanding the constraints those rails impose. + +But the \emph{book} has been about something else. About a question that the tools force every working creative, every studio, every union, every government, every audience member, and~-- eventually~-- every person who consumes culture, to answer. + +The question is: \emph{what kind of creative economy do we want on the other side of this?} + +That is what this chapter is for. To put the question on the table, in its sharpest form. To describe what a humane answer to it looks like. And to tell you, as directly as I can, what I think we should each do on Monday morning to start producing that answer rather than the alternative. The two chapters that follow this one~-- \emph{The Tools}, a categorised inventory of the toolchain, and the \emph{Epilogue}, a letter to the creative person reading this in 2030~-- are the practical reference and the closing register. The argument the book has been building toward lives here. + +\section*{The choice on the table} + +The choice, stated plainly, is between two creative economies. + +One is \textbf{extractive.} In this economy, the creative work of millions of human authors~-- their writing, their music, their images, their voices, their styles, their cultural specificity~-- is absorbed, without consent or compensation, into large statistical models owned by a small number of platform companies. The platforms then sell access to those models, mostly to the same brands, studios, and agencies that previously paid for original human work, at a fraction of the original cost. The aggregate result is a \emph{transfer of wealth} from the diffuse pool of working creatives to a concentrated pool of platform shareholders. The creative output of the economy continues~-- perhaps even increases in volume~-- but its \emph{meaning}, its \emph{cultural specificity}, and its \emph{connection to the lives of the people who used to make it}, decays over time. + +The other is \textbf{generative}, in the original sense of the word. In this economy, AI is treated as \emph{new craft infrastructure}~-- a set of tools that, like the printing press, the camera, the synthesiser and the digital editing suite, can be used by working creatives to make new kinds of work that the previous infrastructure didn't allow. The training data is consented to, attributed to, and compensated for. The platforms compete on the quality and integrity of their tools, not on the unpriced absorption of their users' work. The audience can verify the provenance of what they encounter, and pay attention accordingly. Working creatives are \emph{augmented} by the new tools, not \emph{replaced} by them. The output of the economy is bigger, more diverse, more accessible, more globally distributed~-- and recognisably continuous with the human creative traditions it builds on. + +These two economies are not, on the current trajectory, equally probable. Some of the rails being laid right now point at the first. Some at the second. The choice between them is not~-- as I argued in Chapter~\ref{ch:12}~-- a technical question. The technology to support either is, in spring 2026, broadly available. + +The choice is \emph{political, institutional and cultural.} It is about who gets to make the rules, who has the standing to enforce them, and what default the millions of small daily decisions that constitute a creative economy converge on. + +The good news, if you have read this far, is that more of those daily decisions than you might expect are pointing at the generative economy. The audience's behaviour around the slop ceiling. The UK consultation's 88\%. The Sundance Literacy turn. The Cannes Disclosure Standard. The Academy's \emph{you must be human to win.} The SAG-AFTRA Tilly Tax. The studio refusals~-- Jagex, Larian, Aardman, Games Workshop. The disclosure norms emerging in advertising and the platforms. The 800-creator declaration. The C2PA standards. The SynthID rollout. The free-AI-training-for-all programmes. The neurodiversity dividend. The Global South opening up. + +These are real. They are not a foregone conclusion. But they are real, and they are coming from a coalition of forces~-- creators, audiences, unions, governments, institutions and some of the platform companies~-- that has, six months in, more political and economic weight than the extractive trajectory's proponents are willing to acknowledge. + +What I want to argue, in the rest of this chapter, is that \emph{the generative economy is winnable}. It is winnable in the next eighteen months. But it requires the working creatives, the organisations, and the institutions that have been doing the work this book has documented to \emph{keep doing it,} with deliberate intent, against the gravitational pull of the extractive alternative. + +\section*{What I actually believe} + +Before I get to the principles, I want to put a piece of conviction on the page that has been implicit in everything else I have written but that I think deserves to be made plain. + +I believe in AI as an \textbf{assistive tool that amplifies human creativity.} Not as a replacement for it. Not as a substitute for it. As an instrument that, properly deployed, expands what a working creative can imagine, attempt and finish in a given afternoon~-- without displacing the human imagination, the human attempt, or the human finish. + +This is the operating assumption underneath every chapter of this book, and I have been deliberately cautious about stating it as my own view, because the whole point of the newsletter and the book has been to track the \emph{evidence}, not the \emph{enthusiasm.} The evidence has been mixed. The cultural reaction has been mixed. The economics have been mixed. None of those mixed signals would have served the reader if I had collapsed them, every week, into the version I personally find most hopeful. + +But the evidence has come in. The slop ceiling holds. The audience can tell the difference between work made with care and work made by a content farm. The toolchain rewards taste, judgement and intent more than it rewards raw computational throughput. The economic returns of agentic AI accrue, demonstrably, to the people who already know what good output looks like~-- not to a category of new ``AI-only'' creators replacing human ones, but to a re-tooled population of working creatives whose effective reach has grown. + +What is happening in 2026, on the evidence I have spent six months collecting, is not that machines are taking over creative work. What is happening is that the \emph{labour of execution} is being democratised, and the \emph{labour of intent} is being foregrounded. The \emph{how} is becoming a utility. The \emph{why} is becoming the scarce good. + +The deep-dive companion piece \emph{The Age of Intent}, which sits in the appendices to this book, makes the long-form case for this inversion~-- the philosophical and economic argument that, when the technical barrier to production collapses, the value of \emph{deciding what should be produced and why} rises in direct proportion. The artist of 2030, in that piece's framing, is less a \emph{manual laborer} and more an \emph{Architect of Meaning}~-- a curator, a noticer, a setter-of-intent~-- and the friction of human vulnerability is the irreplaceable component of the work that the machine cannot, by construction, supply. + +I think that framing is essentially correct. I think the working creatives who emerge from this transition with the most leverage will be the ones who took the AI tools seriously \emph{as instruments of their own intent}, and refused either to surrender that intent to the toolchain or to refuse the toolchain on principle. The maker-as-craftsperson and the maker-as-prompt-monkey are both poor models of where the work is heading. The maker-as-orchestrator~-- the architect, the editor-in-chief, the director of a hybrid human-agent team whose unifying signal is \emph{taste}~-- is the model that the next ten years rewards. + +This is not a small reframing. It is the reframing the rest of this chapter~-- and the rest of this book~-- has been building towards. The four principles I am about to lay out are not principles for \emph{restraining} AI. They are principles for \emph{deploying AI in service of the human creativity it is supposed to amplify.} The choice between the extractive and the generative economy is, in the end, a choice about which of those two we treat as the master and which we treat as the servant. + +I think the human creativity is the master. I think the AI is the servant. I think the creative economy that emerges on the other side of this transition will be the one that does not lose sight of that hierarchy. + +\section*{The age of the Why} + +I want to give this conviction a name, because the name will travel where the long-form argument cannot, and because a name makes the choice easier to hold in the head when the next platform launch tries to talk you out of it. + +We are leaving the \emph{age of the How}. We are entering the \emph{age of the Why.} + +By the \emph{age of the How}, I mean the long century in which the central question of working creative life was \emph{can you do the thing?} Can you draw the figure, light the scene, edit the cut, mix the record, model the asset, hold the camera steady, hit the note? The training pipelines of every creative industry the \emph{Dream Machine} newsletter has tracked were, at their core, infrastructure for answering that question. Conservatoires for the note. Film schools for the cut. Apprenticeships for the figure. Studios for the scene. Whole career structures built around the demonstrable, transferrable ability to \emph{execute}~-- to convert intent into finished work using the technical labour of one's own hands and ears and eyes. + +The \emph{How} was the bottleneck. The \emph{How} was the scarce thing. The \emph{How} was what you got paid for. + +The \emph{How}, in 2026, is~-- at a rate that I do not think the industry has yet fully metabolised~-- becoming a utility. The teenager in the bedroom with a midrange GPU and a Claude subscription can, at the time I am writing this, produce work whose surface qualities~-- composition, lighting, sound design, edit pacing, visual-effects polish~-- sit on a continuum with what a full studio could produce in 2020. The continuum is not yet at the very top end; the bedroom does not yet make \emph{Avatar}. But it is, on every available metric, closing the surface-quality gap at a rate that makes the next-decade trajectory unambiguous. \emph{Hollywood-level execution in a bedroom} is no longer a marketing slogan. It is, for working filmmakers and musicians I know, already true for non-trivial fractions of the work. + +When the \emph{How} becomes a utility, the \emph{Why} becomes the scarce good. + +I want to anchor this in a specific story that captures the dynamic better than any creative-industries example I have. In March 2026, \emph{Bloomberg} ran a piece on what artificial intelligence has done to elite chess.\footnote{\emph{Bloomberg}, ``AI Changed Chess.\ Grandmasters Now Win With Unpredictable Moves,'' 27 March 2026, \url{https://www.bloomberg.com/news/articles/2026-03-27/ai-changed-chess-grandmasters-now-win-with-unpredictable-moves}. \emph{Dream Machine} Issue~23. The behavioural pattern the piece describes~-- top grandmasters deliberately deviating from machine-optimal lines to put opponents on uncomputed ground~-- is the cleanest available analogy I have for the strategic shift the rest of this chapter argues for.} AI, the article reported, has driven the game towards \emph{perfect play} at the very top~-- Stockfish, Leela Chess Zero and their descendants have, between them, mapped out the optimal response to most board positions a top-twenty grandmaster is likely to encounter. The visible effect of this, through 2024 and 2025, was a striking rise in the \emph{draw rate} at top tournaments. When both players have memorised the machine-optimal lines, both players play optimally, and both players draw. The game, at the very top end, was being \emph{solved into stasis} by the machines that had been trained on it. + +The \emph{Bloomberg} piece reported the response. Top grandmasters~-- Magnus Carlsen among them~-- had started, deliberately, to play \emph{sub-optimal} moves. Moves that Stockfish would mark as inaccuracies. Moves that the machine-optimal line would not recommend. Moves chosen, specifically, because they were \emph{unexpected}, and because the opponent~-- having trained against the machine~-- had not memorised the human-grade response to them. The grandmasters had stopped trying to out-machine the machine. They had started, instead, to \emph{deliberately diverge from machine-optimal play} in ways that put their opponents on uncomfortable, uncomputed ground. + +The grandmasters are winning, in 2026, by \emph{doing the unexpected.} + +I want to dwell on this image, because I think it is the cleanest available picture of what working creative life looks like on the other side of the \emph{How} becoming a utility. When the machine has solved the optimal move~-- the perfectly-lit shot, the on-trend hook, the algorithmically-tested ad treatment, the mean-of-the-distribution image~-- the human edge is no longer in \emph{playing the optimal move better than the machine.} The machine plays the optimal move infinitely. The human edge is in playing the move \emph{the machine would not make.} The deliberately unexpected. The taste-driven. The risk-taking. The idiosyncratic. The personal. The locally-meaningful. The unrepeatable. + +This is the \emph{Why} in operational form. The \emph{Why} is not, in the practitioner's day, an abstract philosophical commitment to human creativity. It is a \emph{daily competitive practice} of choosing the move the machine would not make. The director who picks the actor the casting algorithm would not have picked. The songwriter who keeps the verse the chart-pattern model would have cut. The illustrator who renders the figure in a style no FLUX prompt would generate. The brand creative who builds the campaign around the audience question the marketing-AI did not surface, because no marketing-AI in 2026 has the lived context to surface it. + +The deeply human things~-- \emph{taste, intent, authenticity, the willingness to take a risk on a move the data does not yet endorse, the refusal to make the average thing in service of the meaningful thing}~-- are not, in the age of the Why, vestigial commitments held against the toolchain. They are, increasingly, the only things the toolchain cannot do, and therefore, by simple economic substitution, the things that have \emph{commercial leverage} in a market where everything else has been pushed towards zero marginal cost. + +The slop ceiling in Chapter~\ref{ch:5} is this dynamic measured at the audience layer: the audience, presented with the machine-optimal flood, reliably underweights it, because the audience can tell~-- at the speed of a swipe~-- that there is no human \emph{Why} underneath the work. The orchestrator role in Chapter~\ref{ch:11} is this dynamic operationalised at the working-creative layer: the orchestrator's daily craft is, exactly, the \emph{judgement to make the un-machine-like move at the right moment.} The authenticity premium in Chapter~\ref{ch:12} is this dynamic priced at the commercial layer: the audience pays extra, demonstrably, for work whose human \emph{Why} is verifiable. The four principles I am about to lay out are this dynamic codified at the policy and platform layer. + +The chess grandmasters did not stop using engines. They train on engines daily. They study machine-optimal play more closely than any generation of players before them. The chess engines, far from being their enemy, are their \emph{most-used analytical tool.} What the grandmasters refused to do is to \emph{let the engines define what counted as a winning move.} They use the engine to know what the optimal line is, and then they choose, \emph{for taste and surprise reasons}, to play another line. + +This is also, I should note in passing, the \emph{unflattering diagnosis} of the legacy entertainment industries' strategic position that I made in Chapter~\ref{ch:7}. Hollywood, commercial music and the AAA games business spent the past fifteen years optimising themselves \emph{toward} the engine-optimal move~-- toward the franchise-instalment, the streaming-tested chart hit, the open-world template~-- and arrived at the AI moment producing exactly the work the engines can now replicate most cheaply. The grandmasters' response to engines is the response legacy needs to make to AI. The new AI-native studios~-- Gossip Goblin, Critterz, Imaginae, Asteria, Wonder~-- have, by virtue of their newness, no calcified rules to unlearn and are, by default, playing the moves no machine would generate. The legacy industries that survive will be the ones that re-learn how to make the un-machine-like move. The ones that don't will, on the historical pattern of Chapter~\ref{ch:2}, be remembered as the cohort that defended the previous definition while a different cohort, with no inherited risk-aversion, defined the next one. + +That is the working operating model I think the next decade of creative work runs on. Use the engines. Learn the engines. Train against the engines. And then, in the actual encounter with the audience, \emph{make the move the engine would not have made.} + +The age of the Why is not the age of refusing AI. It is the age of mastering AI sufficiently that the only competitive question left is whether you can summon the \emph{deliberately unexpected, deliberately human, deliberately yours} move that the machine, by construction, cannot. + +\section*{Four principles} + +\input{figures/tikz_four_principles} + +I have been asked, by readers of the newsletter and by people who turn up to the talks I have been giving since the autumn, what a humane AI-era creative economy should look like. After six months of trying to answer that question, I have come down to four principles. They are not a programme. They are a \emph{test} you can apply to any policy, any contract, any product launch, any organisational decision~-- and ask whether it is moving us towards the generative economy or the extractive one. + +\textbf{One. Agency.} Every working creative should retain meaningful control over how AI is used in relation to their own work~-- both in \emph{what gets trained on their work} and in \emph{whether and how they choose to use AI in their own practice.} The Human--AI Agency Continuum from Chapter~\ref{ch:3} is the practical expression of this. Policy, contracts, platform terms-of-service and union agreements should all be evaluated against whether they preserve this control or undermine it. + +The 88\% of UK respondents who said training should require licensing in all cases were articulating this principle. + +\textbf{Two. Attribution.} When AI systems produce work that is derived, in any meaningful sense, from human-authored training data, the human authors should be identified and~-- where appropriate~-- compensated. The technical infrastructure for this~-- \emph{creative weight attribution} in Musical AI's framing,\footnote{\emph{Digital Music News}, ``The AI Licensing Shift~-- Creative Weight Attribution Emerges as Music Industry Game-Changer for Rights Holders.'' \emph{Dream Machine} Issue~16.} C2PA provenance metadata, SynthID watermarks~-- is the most important infrastructure question of the next two years. Policy should support its deployment. Contracts should require it. Audiences should expect it. Platforms that refuse to engage with it should be treated, in the policy and procurement environment, as the laggards they are. + +\textbf{Three. Access.} The benefits of AI tooling~-- the productivity, the creative leverage, the cost reduction~-- should be broadly available, not concentrated. This means free or near-free tools for creative entry; investment in literacy at the population scale; deliberate inclusion of historically excluded creative communities in the design, training and deployment of AI systems; and structural support for the indie, the regional, the Global South, the neurodivergent and the under-resourced creative ecosystems that the AI cost reduction has the potential to \emph{include} in the global creative economy for the first time. + +The Korin AI launch, the rise of Indian AI cinema, the African-trained model investments~-- these are early signs that the access principle can be operationalised. + +\textbf{Four. Audience.} The audience for creative work is not a passive market. The audience is~-- has always been, and increasingly is~-- a \emph{participant} in the cultural meaning of the work. AI policy, platform design and creative practice should treat the audience as such: with the right to know what they are encountering, the right to choose what they pay attention to, the right to refuse work that violates their cultural or ethical preferences, and the right to a creative economy that produces \emph{for} them rather than \emph{at} them. + +The slop ceiling is the audience exercising this principle. The cultural rejection of cynical AI work. The death threats and the BBC investigations and the \emph{Tiny Grandma} virality. The audience has been telling us what it wants. The institutions and the platforms are, slowly, beginning to listen. + +If you can hold these four principles~-- \emph{agency, attribution, access, audience}~-- in your head when you sit down to make a creative decision in 2026, you have a working test for whether you are building towards the generative economy or away from it. Apply the test. Often. Without too much agonising. The aggregate of millions of decisions made against this test, over the next eighteen months, is the choice we are collectively making about what comes next. + +The four principles are policy and platform tests. They describe what the rules of the new economy should be. They do not, on their own, describe what working creatives should be \emph{doing} with their hands, every day, to put themselves on the inside rather than the outside of the rule-writing. I made the case for the practitioner's version of this argument at length in Chapter~\ref{ch:3}'s \emph{Open the black box} section, and I want to put one summary sentence of it here, because the four principles cannot be defended by creators who do not understand the toolchain underneath them. + +\textbf{Working creatives need to open the black box of AI and own a real stake in how it is built.} Not just use it. Not just refuse it. Not just bargain over its terms. \emph{Open it.} Understand what the model was trained on. Read the EULAs of the platforms you ship work through. Run some part of your stack on open-weight infrastructure (Chapter~\ref{ch:16} is the practical map). Show up to the governance conversations~-- the Cannes Disclosure Standard rooms, the UK consultation responses, the SAG-AFTRA bargaining tables, the C2PA standards body. The cohort of working creatives that does this defines the next era's craft. The cohort that uses the toolchain without ever asking what is inside it has the era's craft defined for them, by the platform companies that built the toolchain. The four principles assume~-- they cannot deliver on their own~-- that the first cohort is large enough, organised enough and technically literate enough to do the work. The argument of this chapter, on its widest reading, is that turning up to the rule-writing is the practitioner's work. + +\section*{The cost we are not pricing} + +I want to break my own framing for a moment, because there is a category of cost the four principles only obliquely address, and any reader who has been paying attention to the wider technology press in the period this book covers will be wondering when I am going to put it on the page. + +The cost is \emph{the resource footprint of the systems we are building everything on top of.} + +Training and running large generative models, at the scale the creative industries are now using them, is an industrial activity. It is consuming enormous quantities of electricity, water, semiconductor manufacturing capacity, and rare-earth-mineral throughput, in a global infrastructure-build the planet has not seen since the rollout of mobile telephony. The trade-press coverage on this is patchy and the data the platform companies disclose is partial, but the direction is unambiguous. The data centres that produce the \emph{Sora~2} clip you generated for a client this morning, the \emph{Veo~3.1} sequence you cut into your edit, the \emph{Suno} track you used as scratch on a project~-- those data centres draw power on a scale that is, in aggregate, a meaningful new line item in the global energy mix. + +There is also a second category of cost, equally unpriced, that the four principles touch only by implication. The training, refinement and moderation of these systems involves an extensive workforce of human data labellers, content moderators and reinforcement-learning evaluators, much of it concentrated in low-wage labour markets in the Global South, much of it carrying significant psychological cost from exposure to the worst of what the models filter out. The creative economy of 2026 is, in part, sitting on top of that labour. The labour is not always visible in the marketing copy of the platform companies that depend on it. + +I have under-treated both of these costs in the chapters above, on the grounds that the book is specifically about the creative-industries transition rather than about AI's wider externalities. That is a defensible editorial choice. It is also an incomplete one, and a fair reader is right to ask why a manifesto for a humane creative economy stops at the edge of the studio. + +The honest answer is this. The four principles, as I have stated them, are \emph{necessary but not sufficient.} A creative economy that gets agency, attribution, access and audience right, but that does so on top of a platform stack whose energy and labour externalities are concentrated, opaque, and morally indefensible, is not a generative economy. It is an extractive economy with better creative-side ethics~-- which is, in some ways, the more dangerous animal, because the creative-side ethics provide ideological cover for the wider extraction. + +The implication for the working creative reading this is \emph{not} that you should refuse to use AI tools because of their environmental and labour costs. The implication is that you should \emph{demand the same transparency} from the platforms about their externalities that you demand about their training data. Energy disclosure, water disclosure, labour conditions in the data-supply chain, carbon accounting of inference runs~-- these should be standard procurement requirements for any creative organisation buying platform access at scale, in exactly the same way C2PA provenance is becoming a standard requirement for the work itself. + +If I were rewriting the four principles from scratch, I would probably make this a fifth: \textbf{Footprint.} The full resource cost of the work~-- energy, water, human labour, supply-chain externalities~-- should be visible to the people commissioning, making and consuming it. The principle would sit awkwardly alongside the other four, because it is the only one that does not run along the human-creative-vs-platform axis the book has otherwise been organised on. I have left the four where they are, because the rhetorical compression of \emph{Agency, Attribution, Access, Audience} is one of the more useful things I have written. But the fifth is real. It belongs in the conversation. I want, in this section, to have at least said so on the page. + +The deeper point, which I will not dwell on further because it is the subject of a different book by a different writer who I hope is writing it now, is that the AI transition is~-- like every previous industrial transition~-- being paid for somewhere. The creative-industries part of the bill is, in 2026, becoming visible. The energy and labour parts of the bill are still, by deliberate platform-company design, harder to see. A humane creative economy will have to insist on seeing both. + +\section*{The DreamLab model} + +I want to talk briefly about the \textbf{DreamLab} model~-- not because I think the studio I run in the North West of England is some kind of ideal, but because it is one specific, concrete instance of how a working creative organisation has tried, deliberately, to build for the generative economy rather than against it, and because I think the choices we have made are useful to share. + +DreamLab is a collective of about fifty practitioners~-- artists, technologists, directors, games developers, storytellers~-- based in the North West, with collaborators across the U.K.\ and internationally.\footnote{DreamLab AI Collective, team page: \url{https://dreamlab-ai.com/team}.} We are emphatically \emph{not} an AI company. We are a \emph{creative} company that happens to use AI heavily. + +The choices we have made, since we started thinking deliberately about how to operate in this environment in early 2024, are not heroic. They are pragmatic. They include: + +\textbf{A disclosure-first practice.} We tell clients, in the brief, what AI tools we propose to use and what for. We document our use. We can~-- and have, when asked~-- provide chain-of-custody on contested work. + +\textbf{A continuum-first contract.} Our client contracts identify, function by function, where on the Human--AI Agency Continuum the work will sit. Some functions are 100\% human (performance, lead creative direction, story). Some are mixed. Some are mostly AI (asset variations, plate generation, certain post-production tasks). The client knows. The team knows. The line is negotiable but it is drawn. + +\textbf{A literacy-first hiring approach.} We hire~-- and we invest in upskilling~-- generalists rather than specialists. We expect every working member of the collective to understand the AI tools in \emph{adjacent} disciplines well enough to brief them and judge their outputs. The portfolio creative model from Chapter~\ref{ch:11} is the operating practice. + +\textbf{An open-toolchain commitment.} We use a deliberately diverse toolchain~-- Adobe, Runway, ComfyUI, World Labs, Hunyuan, open-source models on Hugging Face, internally built tooling. We refuse exclusive dependency on any single platform. If one of the tools shifts in a direction that violates the four principles, we have alternatives. + +\textbf{A community-first relationship to the city.} The collective is intentionally based in the North West of England, not in London or Los Angeles. The aim, explicitly, is to build creative infrastructure in places that the previous generation of the creative economy did not invest in. We hire locally. We train locally. We work, where we can, with regional partners. + +\textbf{A newsletter, an archive, a public record.} \emph{Dream Machine,} the publication this book is built out of, exists in significant part because \emph{putting the work in public}~-- keeping a transparent, citable record of what is happening, what is being said, what is being decided~-- is itself a form of building the generative economy. Hidden knowledge concentrates power. Shared knowledge distributes it. + +None of these choices are unique to DreamLab. Many of them are being made, in different forms, by studios, agencies, labels and indie production companies all over the world. What I would say, having lived inside this set of choices for the period this book covers, is that they \emph{work.} The studio's output has been better, our team has been happier, our clients have been more loyal, and our market position has been more defensible than I had any right to expect when I started writing the newsletter in October. + +The generative economy, as a practice, is not abstract. It is a set of operational choices that working organisations can make on a Monday morning. The choice produces real, measurable outcomes. It is not, as some of the more pessimistic AI commentary frames it, a luxury for organisations that can afford to be high-minded. It is, in our experience, the most \emph{commercially} sustainable position available right now. + +\section*{What working creatives should do on Monday morning} + +This book is mostly aimed at working creatives. The studios and the institutions and the platforms have been the subject of the chapters, but the audience for the chapters has been you~-- the writer, the director, the songwriter, the games designer, the photographer, the editor, the producer, the agency creative, the indie filmmaker, the YouTuber, the freelance illustrator, the student looking at a creative career and trying to figure out whether to be discouraged or excited. + +What should you do on Monday morning? + +I will keep this brief, because the rest of the book has been the long version. + +\textbf{Read your own newsletter.} Whatever your version of \emph{Dream Machine} is~-- the publication you trust to tell you what is happening in your discipline week by week~-- read it carefully. The pace of change in 2026 is too fast to absorb by osmosis. You need a deliberate reading practice. If you can't find one you trust, build one. + +\textbf{Draw your lines.} Write down, for your own practice, where on the Human--AI Agency Continuum you want to sit, function by function. Update the lines as the technology and your judgement evolve. Be prepared to \emph{show} the lines~-- to clients, to collaborators, to yourself. + +\textbf{Practise briefing.} It is the most leveraged skill of the era. Brief the agents. Brief your collaborators. Brief yourself. Get clearer, every week, about what you actually want from a piece of work \emph{before} you start making it. + +\textbf{Cultivate taste, on purpose.} Look at more good work. Look at it harder. Articulate, every week, what makes something good~-- and what makes the average thing average. The agents will, by default, give you average. Your job is to know better. + +\textbf{Disclose.} Tell people what you are using, how you are using it, and where the human work in your output lives. The transparency is, in 2026, not a cost. It is a competitive advantage. + +\textbf{Stay in the work.} Resist the temptation to abstract too far. The maker who never makes is the maker whose judgement decays. Maintain craft contact, in at least one part of your practice, that does not depend on AI tooling. The contact will keep your eye sharp for everything else. + +\textbf{Find your coalition.} The 88\% in the U.K.\ consultation didn't get there by accident. It got there because creators turned up alongside other creators alongside professional bodies alongside unions alongside institutions. The political and economic shape of the next decade of creative work depends on creators being \emph{organised.} Join your union. Sign the declarations. Show up to the consultations. The institutions of collective bargaining and political representation that your forerunners built are the institutions that will defend your work in 2030. + +\textbf{Build for the new geography.} Wherever you are in the world, the AI cost reduction has made it more viable than ever to build a serious creative practice in places that were previously locked out of the centre. Take the opportunity. The next century of cultural production is not going to belong to the cities that owned the previous one. The next generation of canonical creative work will, on the trajectory I see, come from more places, in more languages, in more forms, than ever before. + +\textbf{Make the work.} None of the rest of this matters if you do not make the work. The AI era is not a reason to stop. It is a different set of conditions under which to keep going. Working creatives have always operated against the technological grain of their day. The maker in 2026~-- like the maker in 1926 and 1826 and 1626~-- is the person who finds, in the conditions of their actual moment, the work that needs to be made and then makes it. + +The conditions have changed. The need has not. + +\section*{Predictions you can check me on} + +Books on the cusp of a transition tend to age in one of two ways. Either they were broadly right about the shape of what was coming and look prescient five years on, or they were embarrassingly wrong and quietly disappear from the recommended-reading lists. The honest thing to do, at the end of a book like this one, is to write down predictions specific enough that the future can grade them. + +Here are mine, dated May 2026. + +\textbf{By the end of 2027.} Every major studio, label and agency has, in its standard production contract, a clause requiring AI-use disclosure across the production pipeline. \emph{Position Four}~-- \emph{AI in the workflow, not in the work}~-- is the dominant operational posture in legacy creative organisations. The number of \emph{Position Three} refusing studios has stabilised at roughly 10--15\% of the mid-and-upper market, concentrated in IP-led franchises where the audience contract depends on a human-craft signal. + +\textbf{By the end of 2027.} The 44\%/3\% Deezer ratio (Chapter~\ref{ch:5}) has stabilised on the upload side at 50--65\% AI by volume, with consumer streams of fully-AI tracks still under 5\% of total play time. \emph{Audience-disclosed} synthetic music is a small but real category~-- under 10\% of paid streams~-- and is concentrated in mood/background and synth-driven genres rather than in artist-led popular music. + +\textbf{By the end of 2028.} A \emph{Position Two} studio~-- Imaginae, Wonder, Obsidian, Asteria or a name we have not heard yet~-- produces the first AI-native feature that wins material awards recognition \emph{for its writing or direction} (not for its technology). The audience response is mixed; the cultural permission for AI-native cinema has shifted from contested to accepted-with-asterisks. James Cameron's ``horrifying'' line is still being quoted but the position it describes has narrowed to \emph{AI that displaces a specific actor in a specific scene}, not the general toolchain. + +\textbf{By the end of 2028.} At least one large national government~-- most likely the U.K.\ or one of a few EU member states~-- has passed legislation requiring licensing of copyrighted work for AI training. The U.S.\ has not, but the litigation environment (UMG v Anthropic and the cases that follow it) has produced de facto licensing markets that platform companies have grudgingly entered. The technical infrastructure for \emph{creative weight attribution} is mature enough to underpin real revenue distribution to working creators. + +\textbf{By the end of 2029.} World models, not flat video, are the dominant medium for new high-production-value creative work. Marble-class tools are commodity infrastructure; the differentiated work is being done by orchestrators with strong \emph{world curation} skills (Chapter~\ref{ch:8}). The boundary between film, games and immersive media is functionally gone for new productions, while legacy formats retain prestige and a real audience. + +\textbf{By the end of 2029.} The audience contract has been substantively re-written. C2PA-class provenance metadata is supported in the major capture, edit and distribution tools by default. Platforms that do not honour provenance have lost meaningful share to ones that do. The \emph{Tiny Grandma} error mode~-- human work mis-flagged as synthetic~-- is a solved problem in the principal platforms; the inverse error~-- synthetic work mis-flagged as human~-- is the harder one and remains the central audience-trust question. + +\textbf{By the end of 2030.} The orchestrator role (Chapter~\ref{ch:11}) is a named seniority track in every creative discipline that survives the transition. \emph{Senior orchestrator} is a credentialled title. The apprenticeship problem (Chapter~\ref{ch:11}, Chapter~\ref{ch:13}) is partially solved by a combination of three things: AI-augmented junior roles maintained deliberately by \emph{Position Four} studios; new pathways through literacy initiatives like Sundance Collab and its successors; and an explicit re-funding of cultural-institution training programmes by national governments. + +\textbf{By the end of 2030, but I'm less confident about this one.} A major creative-industry union has negotiated a \emph{productivity dividend}~-- a structural share of AI-driven productivity gains that flows to the human workforce, not just to the platform companies and the studio shareholders. The mechanism is novel and contested but the underlying maths is unanswerable; the industry that does this first becomes the template for the others. + +\textbf{I am wrong about something on this list.} I do not know yet which item. If you are reading this in 2030 and one of these predictions has aged badly, send the receipts to the \emph{Dream Machine} newsletter address. I will publish them. + +The predictions I have \emph{not} made~-- about which AI company will dominate by 2030, about which specific platform companies will go bust, about whether AGI arrives in the period and what it does to all of this~-- are absences I have made on purpose. Anyone confident about those questions in 2026 is selling something. The shape of the \emph{creative economy} is more predictable than the shape of \emph{the platform layer underneath it.} That is the bet this book has been built on. + +\section*{A note to those who are afraid} + +I want to write directly, for a paragraph or two, to the readers I know are sitting with this book~-- and with the larger transition this book describes~-- in a state of real, well-founded fear. + +If you are reading this and your livelihood depends on a creative discipline that the AI tools are getting unsettlingly good at~-- if you are a junior animator, a session musician, a copywriter, an illustrator, a translator, a stock-image photographer, a voiceover artist, a foley artist, a concept designer, a stage actor in a regional theatre, a working musician on tour, an indie filmmaker, an entry-level games artist, a video editor at a small post-production house~-- and the news cycle has, over and over again, told you that your job is going away, I want you to know two things. + +The first is that the news cycle is, on this question, almost always too negative. The aggregate data on creative-industry employment in 2026 does not show the collapse the headlines have been predicting. It shows a \emph{restructuring,} with a lot of disruption, and with real pain in specific places, but with~-- net~-- more creative work being done by more people in more forms than was being done a year ago. The Sundance literacy initiative is not happening because the industry is dying. It is happening because the industry, freshly, has more entrants than ever and needs to train them. + +The second is that the most important strategic move you can make in this moment is not to be afraid in private. It is to \emph{speak.} To your union. To your trade association. To your local government's consultation. To your manager. To your audience. To the people on your team. The 88\% was made out of voices. The Tilly Tax was made out of voices. The Bandcamp ban was made out of voices. The Sundance literacy turn was made out of voices. The institutions of the new creative economy~-- the ones that will protect your work in 2030~-- are being shaped \emph{right now} by the people who turn up to be counted. The people who don't turn up, or who turn up only in private, are the people whose interests get absorbed into the policies of the people who do. + +You are not powerless in this. You are, if anything, the most powerful constituency in this whole story, because you are the people who are actually making the work that the audience is paying attention to. You are the constituency the unions represent, the institutions exist to serve, the audience cares about, and the platforms~-- ultimately, despite themselves~-- depend on. The choice between the extractive and the generative economy is, in large part, the choice you collectively make about how to use that power. + +Use it. + +\section*{The Dream Machine} + +I want to close the argument of this book with the phrase the newsletter started with. + +\emph{Welcome to the Dream Machine.} + +When I named the newsletter, in late September 2025, I had no clear idea what the phrase meant. I had a half-formed sense that ``dream'' caught something about the strange, vivid, slightly hallucinatory quality of what the new tools produced, and that ``machine'' caught something about the industrial, scaled, infrastructural nature of the platforms behind them. The phrase was, more than anything else, a placeholder for a feeling I couldn't quite articulate yet. + +Six months on, I think I know what the phrase means. + +A \emph{dream machine} is, in the sense I am using it, an apparatus capable of producing something that has~-- until very recently~-- required a human mind to produce. Not just images, or videos, or songs, but \emph{constructions} of meaning, of place, of presence, of emotion. The apparatus is not, in itself, doing the dreaming. It is amplifying, multiplying and distributing the dreaming of the humans who direct it. + +The question this book has been about, in every chapter, is \emph{whose dreams the machine amplifies.} + +If the machine amplifies the dreams of a small number of platform shareholders, optimised against extraction, the creative economy it produces will be~-- to use Kehlani's line about Xania Monet~-- a place where ``the person is doing none of the work.'' The dreams of the audience are \emph{for sale.} The dreams of the creators are \emph{training data.} The dreams of the culture are \emph{outputs of an algorithm tuned for engagement.} + +If, on the other hand, the machine amplifies the dreams of the working creatives~-- supported by the audience, defended by the unions, regulated by the institutions, contained by the four principles, made transparent by the provenance infrastructure~-- the creative economy it produces will be the largest, most diverse, most accessible expansion of human cultural production in the history of the species. + +We are, in May 2026, sitting in the moment between these two outcomes. + +The signals from the last six months~-- the 88\%, the slop ceiling, the Sundance turn, the Cannes Disclosure Standard, the Academy rule, the SAG-AFTRA contract, the audience behaviour, the creator coalition, the regional opening, the literacy investment~-- all point at the second outcome being achievable. Not inevitable. \emph{Achievable.} + +It is going to require the working creatives to keep turning up. It is going to require the studios, agencies and labels to keep making the integration choices we covered in Chapter~\ref{ch:13}. It is going to require the institutions~-- the unions, the rights bodies, the festivals, the universities~-- to keep doing the slow, unglamorous work of building the rails. It is going to require the platforms to be pushed, by their users and by their regulators, towards the side of provenance and attribution and consent. It is going to require the governments to keep the policy moving in the direction the 88\% asked for. + +It is going to require the audience to keep paying attention to the human signal. + +And it is going to require people like you~-- the people who have read this far, who have been doing the work of figuring out what creative life looks like in this moment~-- to make, in your own practice, the daily decisions that build the generative economy rather than the extractive one. + +This is the choice. This is what is on the table. This is the work. + +Welcome to the Dream Machine. diff --git a/latex/chapters/ch16_the_tools.tex b/latex/chapters/ch16_the_tools.tex new file mode 100644 index 0000000..d6b88cf --- /dev/null +++ b/latex/chapters/ch16_the_tools.tex @@ -0,0 +1,851 @@ +\chapter{The Tools}\label{ch:16} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{ } have, until this chapter, deliberately kept the \emph{tools} out of the foreground. Thirteen chapters about creative AI without a chapter on the toolchain is, on the face of it, a strange editorial decision, and I want to begin by explaining it. + +The reason is that I think the most common mistake people make about this period is to confuse \emph{the tools} with \emph{the transition}. Tools are the visible surface of the change~-- the thing the press cycle covers, the thing the platform companies want you to talk about, the thing that has a price and a logo and a launch date you can put on a slide. The transition is everything underneath: the economics, the labour, the audience contract, the law, the institutions, the rails. The tools change weekly. The transition is slower, deeper, and is what will still be true in 2030 when most of the tools in this chapter are obsolete. + +The first sixteen chapters were about the transition. This chapter is about the tools. + +I have written it last on purpose. Read in this order, the tools sit inside the architecture the book has been building~-- the Continuum, the Slop Ceiling, the four positions, the orchestrator role, the four principles. Read in any other order, they collapse back into the format the platform companies prefer: a tools-arms-race in which the only question is which model is best this week. + +That format is, in 2026, the most reliable way to misunderstand what is happening. + +A note on the date stamp. Everything in this chapter is current to May 2026. By the time you read it, some of these tools will have been bought, renamed, killed, surpassed or repositioned. The point is not that the specific tools matter. The point is the \emph{shape} of the toolchain~-- what categories exist, what they do, who builds them, and how a working creative builds a coherent stack on top of them. The shape, in my experience, holds. + +\section*{How to think about the toolchain} + +\input{figures/tikz_toolchain_layers} + +Before the inventory, the frame. + +I think the creative-AI toolchain in 2026 is best understood as a stack of seven layers, each with its own dominant players, its own pace of change, its own integration model. The layers, from foundation to consumer, are: + +\begin{enumerate} + \item \textbf{Foundation models}~-- the large multimodal systems underneath everything else (OpenAI's GPT-class, Anthropic's Claude, Google's Gemini, Meta's Llama, the major Chinese open-source models). These are the raw capability layer. Almost no working creative uses them directly except via wrappers. + \item \textbf{Modality models}~-- specialist models for video (Sora, Veo, Runway Gen-4.5, Kling, Hunyuan, Wan), image (Firefly, Midjourney, FLUX, Imagen, SDXL/Stable Diffusion variants), audio (Suno, Udio, ElevenLabs, Mureka), 3D and world (Marble, Genie~3, WorldGen, UNI-1, Hunyuan 3D-PolyGen, ECHO). These are what most working creatives think of when they say ``AI tools.'' + \item \textbf{Agent platforms}~-- systems that compose modality models and external tools into multi-step workflows (OpenAI's AgentKit, Anthropic's Claude apps and skills, Google's Project Genie, Heygen's Video Agent, Sony's 49-agent / 72-skill stack). The agent layer is where the ``orchestrator economy'' of Chapter~\ref{ch:11} actually runs. + \item \textbf{Creative software with AI baked in}~-- the legacy creative suites that have been rebuilt as AI-first platforms (Adobe Creative Cloud, Autodesk, Foundry, Unreal Engine, Unity, DaVinci Resolve, Pro Tools, Logic Pro, Ableton). This is where most paid professional work still happens. + \item \textbf{AI-native creative apps}~-- new entrants whose product is a single-purpose AI workflow (Runway, Higgsfield, Krea, Freepik, Magnific, Synthesia, Heygen, Hedra, Cascadeur, Pika, Luma). Most working creatives use 4 to 10 of these in rotation. + \item \textbf{Open-source and workflow infrastructure}~-- the technical-creator layer that wires everything together (ComfyUI, Hugging Face, SuperSplat, OpenEnv, the open-source model ecosystem). This is where the most interesting innovation often happens first. + \item \textbf{Consumer surfaces}~-- the apps that put generative capability on every phone (the Sora app, CapCut/Dreamina with Seedance, the Gemini app, the various TikTok-style remix platforms). This is the layer the audience touches. +\end{enumerate} + +The mistake I see most often, both in the press cycle and in studios planning their internal AI roadmaps, is to optimise for layer~2 (modality models) without understanding that the actual leverage is in how you compose layers~2,~3,~4 and~6 into a coherent workflow. The tool that ``wins'' is rarely the tool with the best benchmark. It is the tool that integrates cleanly into the rest of your stack. + +With that frame, the inventory. + +\section*{Video} + +The video layer changed faster than any other modality between October 2025 and May 2026, and is the one most likely to look different again by the time you read this. Treat the names as snapshots, not as a stable league table. + +\textbf{Sora 2} (OpenAI) is the model that opened the period this book covers. Its September 2025 launch~-- physical realism, audio integration, multi-shot world-state persistence~-- is the moment Chapter~\ref{ch:1} is about.\footnote{OpenAI, ``Sora~2 is here,'' 30 September 2025, \url{https://openai.com/index/sora-2/}. \emph{Dream Machine} Issue~1.} The iOS app launched alongside it hit a million downloads in five days\footnote{LinkedIn News aggregation: ``Sora Tops 1 Million Downloads in 5 Days,'' \url{https://www.linkedin.com/news/story/sora-tops-1m-downloads-in-5-days-6684988/}. \emph{Dream Machine} Issue~3.} and is the consumer-facing edge of the AI video market. For professional production, Sora~2 is impressive on isolated single-clip generation and remains the model most cited in the mainstream press, but most working filmmakers I know use it less than its cultural prominence would suggest. + +\textbf{Veo 3.1} (Google DeepMind), released in mid-October 2025, is the model the professional filmmaking community has, on average, gravitated toward~-- for narrative coherence, controllable camera composition, cinematic lighting vocabulary and sound integration.\footnote{Google DeepMind, Veo~3.1 launch, mid-October 2025. \emph{Dream Machine} Issue~3.} Sora~2 wins on raw physics in single clips; Veo~3.1 wins on the kind of sustained directorial control most actual production pipelines need. + +\textbf{Runway Gen-4.5} (and Gen-4.5 Image-to-Video, the Workflows product, Story Panels, Characters API, Apps for Advertising) is the most-integrated commercial AI-video stack of the period.\footnote{Runway product cycle: Gen-4.5 (December 2025), Gen-4.5 Image-to-Video (January 2026), Workflows, Story Panels, Characters API, Apps for Advertising~-- \emph{Dream Machine} Issues~10,~14,~15,~16,~20.} Runway has shipped product faster than any other AI video company in this market, and CEO Crist\'obal Valenzuela's ``fifty indie films instead of one \$100M blockbuster'' framing is the cleanest articulation I have seen of the case for AI as creative leverage rather than cost-cut.\footnote{Runway CEO on indie films vs.\ blockbusters, \emph{Dream Machine} Issue~26.} + +\textbf{Kling} (Kuaishou), \textbf{Hunyuan Video} (Tencent), \textbf{Wan 2.5} (Alibaba), \textbf{Seedance 2.0} (ByteDance)~-- the Chinese-built models that, in aggregate, have rivalled or surpassed the U.S.\ labs on specific capabilities (motion physics, character consistency, render speed) at significantly lower cost.\footnote{Chinese open-source AI video model releases, 2025--2026. \emph{Dream Machine} Issues~3,~12,~22.} Hunyuan's open-source releases have been the single most important contribution to the wider open-source AI video ecosystem in this period. + +\textbf{Pika 2.0}, \textbf{Higgsfield}, \textbf{Luma} (Dream Machine and UNI-1) round out the commercial layer. Each has carved a niche: Pika on iteration speed and creator workflow; Higgsfield on social-media marketing video at scale (\$80M raised, \$1.3B valuation, \$200M revenue in nine months\footnote{\emph{SiliconAngle}, ``Higgsfield raises \$80M on \$1.3B valuation,'' \url{https://siliconangle.com/2026/01/15/higgsfield-raises-80m-1-3b-valuation-scale-ai-video-platform/}. \emph{36kr}, ``Higgsfield: Earns \$200M in 9 Months,'' \url{https://eu.36kr.com/en/p/3650517574312323}. \emph{Dream Machine} Issues~15,~16.}); Luma on the world-model bridge to spatial content. + +\textbf{Heygen} ships Video Agent~-- a full scripting-to-assembly agent built around reference images.\footnote{Heygen Video Agent, \url{https://www.linkedin.com/posts/heygen_introducing-the-new-video-agent-activity-7421597801240801282-d1CF}. \emph{Dream Machine} Issue~16.} \textbf{Synthesia} holds the corporate AI-avatar market (\$4B valuation, having reportedly rejected a \$3B Adobe acquisition offer).\footnote{TechCrunch, ``Synthesia hits \$4B valuation,'' \url{https://techcrunch.com/2026/01/26/synthesia-hits-4b-valuation-lets-employees-cash-in/}. \emph{Sifted}, ``Synthesia rejects \$3bn Adobe acquisition offer,'' \url{https://sifted.eu/articles/synthesia-acquisition-offer}. \emph{Dream Machine} Issues~5,~16.} \textbf{ElevenLabs} runs the dominant audio-AI layer underneath much of the new video work (\$500m ARR by April 2026).\footnote{ElevenLabs Series funding, April 2026. \emph{Dream Machine} Issue~25.} + +\textbf{Gemini Omni} (Google DeepMind), announced at Google I/O 2026, brings text, image, audio, video and live interaction into a single multimodal model~-- the first foundation-model release in this category that meaningfully unifies the modalities working creatives currently have to bridge across five different tools.\footnote{Google DeepMind, ``Introducing Gemini Omni: Create Anything from Any input,'' \url{https://blog.google/technology/google-deepmind/gemini-omni-launch/}. \emph{Dream Machine} Issue~30.} \textbf{Beeple Canvas}, Mike Winkelmann's gen-AI compositor~-- launched May 2026~-- is the first AI-native compositing application to ship from a working visual-effects artist's own studio, and is structurally distinct from the AI-features-bolted-onto-existing-compositors pattern in the legacy-software section below.\footnote{Beeple Canvas~-- Generative AI compositor, \url{https://www.beeple-canvas.com/}. \emph{Dream Machine} Issue~30.} + +If I had to name a single video product that, in my experience, working creatives have settled on as a default in 2026, it would be Veo~3.1 for finished work and Runway for iteration and integration. Sora is the brand name the audience knows. The actual production pipelines run on the other two. + +\section*{Image} + +The image layer is more stable than video~-- the technology has matured, the differences between top models are narrower, and the dominant question has moved from ``which model'' to ``which workflow.'' + +\textbf{Adobe Firefly} (Image Model~5, plus Foundry for custom-trained corporate models, plus integration across Photoshop / Illustrator / Express / InDesign) is the default for any working creative who is also a Creative Cloud subscriber~-- which is, by Adobe's own numbers, 45\% of Creative Cloud users actively using Firefly, 70\% of those weekly, more than 22 billion assets generated by April 2025.\footnote{Adobe Firefly milestone data, in \emph{Dynamics of Generative AI Adoption in the Creative Industries}, \S``The Ubiquity of AI in Visual and Digital Arts.''} The Firefly adoption curve is the single best evidence I have for the consumption-gap argument in Chapter~\ref{ch:13}. + +\textbf{Midjourney} remains the aesthetic-leadership product in the category. Slower to ship, more opinionated about output style, dominant on Discord and X among the working AI-art community. + +\textbf{FLUX} (Black Forest Labs) is the open-source and pro-creator favourite for fine control, having largely replaced Stable Diffusion XL as the open-weight default through 2025. + +\textbf{Google Imagen} (and the \emph{Nano Banana} fast-image variant integrated into Gemini, Photoshop and Unreal Engine via the various plugins) has become the most-integrated image model in the consumer toolchain, by virtue of Google's distribution. Nano Banana inside Photoshop and Nano Banana inside Unreal Engine were two of the more consequential cross-platform integrations of the period.\footnote{Nano Banana inside Photoshop and inside Unreal Engine cross-integrations, October--November 2025. \emph{Dream Machine} Issue~1.} + +\textbf{Krea}, \textbf{Freepik}, \textbf{Magnific}, \textbf{Recraft}~-- the higher-control consumer / pro-creator products built on top of foundation image models. Each is competing on specific workflow advantages (real-time generation, upscaling, vector output, brand-consistency control). + +The image workflow most commonly cited in my circle in mid-2026 is: a base generation in Firefly / Midjourney / FLUX, character-consistent variation in a controllable wrapper like Krea or Magnific, finishing inside Photoshop with the AI-assisted masking, generative-fill and object-removal tools that Adobe shipped through the autumn 2025 and spring 2026 update cycle. + +\section*{Music and audio} + +The music layer split into three categories during this period, and the split is, in my experience, more important than the specific products in each category. + +\textbf{Generative music tools} that produce finished tracks from prompts~-- \textbf{Suno} (Studio launched late 2025\footnote{Suno Studio launch, \url{https://www.techradar.com/ai-platforms-assistants/i-tried-suno-studio-the-new-platform-that-mixes-ai-music-generation-with-hands-on-editing-like-garageband-but-smarter}. \emph{Dream Machine} Issue~1.}), \textbf{Udio}, \textbf{Mureka} (with its Music Agent Studio, six specialised AI agents for songwriting, arrangement and production\footnote{Mureka, ``Music Agent Studio'' launch. \emph{Dream Machine} Issue~4.}). These are the tools that produce most of the AI-music flood Chapter~\ref{ch:5} describes. They are also, paradoxically, the tools most working musicians use the least directly~-- the consumer market for AI-generated finished tracks is large and growing, but professional musicians overwhelmingly use AI tools at a different layer. + +\textbf{Production and post-production AI}~-- the tools that handle audio restoration, mixing, mastering and isolation. The 1,100-creator music survey discussed in Appendix~D found that 58\% of professional producers used AI for audio restoration, 38\% for mixing assistance, 33.9\% for automated mastering. \textbf{iZotope Ozone 12}, \textbf{LANDR}, the Pro Tools and Logic Pro AI suites, \textbf{CleanvoiceAI} for podcast post~-- this is where the silent-adoption majority of the music industry lives. + +\textbf{Voice and audio synthesis}~-- \textbf{ElevenLabs} is the dominant player, with \$500m ARR, BlackRock / NVIDIA backing, and meaningful share across audiobook narration, dubbing, podcast synthesis and AI character voice work.\footnote{ElevenLabs Series funding, April 2026. \emph{Dream Machine} Issue~25.} The Cardiff band that found their music had been used to train an ``AI artist'' outperforming them on Spotify\footnote{\emph{MusicTech}, ``Cardiff band speaks out after AI artist trained on their music outperforms them on Spotify,'' \url{https://musictech.com/news/industry/its-shocking-disheartening-and-insulting-cardiff-band-speaks-out-after-ai-artist-trained-on-their-music-outperforms-them-on-spotify/}. \emph{Dream Machine} Issue~1.} is one of the cautionary tales of this layer; the Andrii Daniels bomb-shelter clip\footnote{\emph{Variety}, ``AI Creator Behind Viral `Deadpool,' `Harry Potter' Christmas Clip Made His Film in a Ukrainian Bomb Shelter,'' \url{https://variety.com/2026/digital/news/ai-video-deadpool-harry-potter-andrii-daniels-1236624632/}. \emph{Dream Machine} Issue~16.} is one of the success cases. + +\textbf{Sound-effect foundation models} emerged as a new sub-category in May 2026. \textbf{Sony AI's Woosh} is the first foundation model explicitly trained for the professional sound-effects discipline.\footnote{Sony AI, ``Woosh~-- a sound effect foundation model,'' \url{https://ai.sony/blog/woosh-sound-effect-foundation-model/}. \emph{Dream Machine} Issue~30.} \textbf{Mirelo SFX~1.6} shipped the first sound-effects model that lets you \emph{edit} a generated sound rather than only regenerate it~-- a structural shift in the discipline equivalent to the move from rendered images to layered Photoshop files.\footnote{Mirelo SFX~1.6, ``edit sound, not just generate it,'' \url{https://mirelo.ai/sfx-1-6}. \emph{Dream Machine} Issue~30.} \textbf{Stable Audio 3.0} (Stability AI) shipped as an open-weight audio model family explicitly aimed at artistic experimentation.\footnote{Stability AI, ``Stable Audio 3.0 released,'' \url{https://stability.ai/news/stable-audio-3-0-released}. \emph{Dream Machine} Issue~30.} \textbf{Tamber}, the ethically-trained AI music suite described in Chapter~\ref{ch:6}, shipped alongside a gestural-control interface that lets the musician steer the generation with arm movements.\footnote{Tamber product page: \url{https://tamber.ai/}. \emph{Dream Machine} Issue~30.} \textbf{Beatport's Track ID} rolled out as the real-time identification standard for the DJ market.\footnote{Beatport Track ID: \url{https://www.beatport.com/track-id}. \emph{Dream Machine} Issue~30.} + +The deal flow underneath this layer is the second-fastest-changing in the toolchain. The Stability AI / Universal Music alliance, the Stability AI / Warner Music deal, the Splice / Universal partnership, the GEMA / OpenAI lawsuit, the Wixen / Meta lawsuit, the UMG / Anthropic \$3B suit~-- these are the structural moves I would track if I were a working musician trying to plan a five-year toolchain.\footnote{Music industry AI deal flow, October 2025 -- May 2026. See Chapter~\ref{ch:5} footnotes, and \emph{Dream Machine} Issues~5,~7,~8,~12,~14,~16,~17.} + +\section*{3D, world models, spatial} + +The category that, more than any other, I think defines the next decade of creative work. Chapter~\ref{ch:8} is the long-form argument; this section is the inventory. + +\textbf{Marble} (World Labs, Fei-Fei Li's company) is the first commercial product I would put on a professional toolchain.\footnote{World Labs, ``Bringing Marble to Life,'' \url{https://www.worldlabs.ai/case-studies/bringing-marble-to-life}. \emph{Dream Machine} Issue~7.} Public release November 2025; Sony Pictures' use of it in virtual production reportedly running 40$\times$ faster than the legacy workflow.\footnote{Sony Pictures Marble VP integration. \emph{Dream Machine} Issue~8.} DreamLab has been in the beta since October 2025, and Marble is, today, the world-model product most integrated into a working pipeline I have used. + +\textbf{Google DeepMind Genie~3} is the most ambitious research-grade world model, named by \emph{Time} as one of the best inventions of 2025. Made publicly available to Google AI Ultra subscribers via Project Genie in January 2026.\footnote{Google DeepMind, ``Genie~3,'' \url{https://deepmind.google/blog/genie-3-a-new-frontier-for-world-models/}. Project Genie: \url{https://blog.google/innovation-and-ai/models-and-research/google-deepmind/project-genie/}. \emph{Dream Machine} Issues~3,~17.} + +\textbf{Meta WorldGen}, \textbf{Tencent HY World~1.5} (open-sourced December 2025, alongside the Hunyuan 3D Studio integration\footnote{Tencent, ``HY World~1.5'' and Hunyuan 3D Studio. \emph{Dream Machine} Issue~12.}), \textbf{SpAItial ECHO}, \textbf{Stanford Wonderzoom}, \textbf{OpenArt Worlds}, \textbf{Luma UNI-1} (the most important \emph{category} announcement of spring 2026, combining world generation with reasoning\footnote{Luma AI, \emph{UNI-1} launch, March 2026. \emph{Dream Machine} Issue~22.})~-- the rest of the world-model commercial layer. + +The May 2026 world-model wave extended this layer further. \textbf{NVIDIA SANA-WM} is the first open-weight world model at meaningful scale (2.6B parameters), with 60-second video generation and explicit camera control.\footnote{NVIDIA SANA-WM model collection, \url{https://huggingface.co/collections/nvidia/sana-wm}. \emph{Dream Machine} Issue~30.} \textbf{Odyssey Starchild-1} is, by Odyssey's own framing, \emph{``the first ever real-time multimodal world model''}~-- a system that doesn't just generate a world but simulates and reasons about it.\footnote{Odyssey, ``Introducing Starchild-1, the first real-time multimodal world model,'' \url{https://odyssey.ml/introducing-starchild-1}. \emph{Dream Machine} Issue~30.} \textbf{Odyssey Agora-1} is the multiplayer companion to Starchild, putting four players inside the same AI-generated world (built, in a small piece of provenance theatre, on the bones of a 1997 shooter).\footnote{Odyssey, ``Introducing Agora-1~-- four-player AI-generated world built on a 1997 shooter,'' \url{https://odyssey.ml/introducing-agora-1}. \emph{Dream Machine} Issue~30.} \textbf{Apple Headsup} is a research-grade 3D Gaussian head-reconstruction pipeline built for multi-view captures from consumer iPhones, extending the Vision-Pro-Personas Gaussian-splat thread into the open research layer.\footnote{Apple Machine Learning Research, ``Apple Headsup: a Large-Scale High-Quality 3D Gaussian Head Reconstruction from Multi-View Captures,'' \url{https://machinelearning.apple.com/research/apple-headsup-3d-gaussian-head}. \emph{Dream Machine} Issue~30.} + +Underneath this layer, the Gaussian-splatting infrastructure has matured into a stable workflow: \textbf{SuperSplat} (PlayCanvas) for editing, \textbf{Spark 2.0} for open-source streaming of 100-million-splat scenes to browsers, the SOG / WebP equivalent compression standard.\footnote{SuperSplat / Spark~2.0 / SOG releases through 2025--26. \emph{Dream Machine} Issues~1,~25.} Apple's confirmation that its Vision Pro Personas feature is powered by Gaussian splatting under the hood made it, by some margin, the most-deployed Gaussian-splat technology in consumer hardware as of late 2025.\footnote{Radiance Fields, ``Apple Confirms that it's Gaussian Splatting that powers their personas,'' \url{https://radiancefields.com/apple-confirms-personas-use-gaussian-splatting}. \emph{Dream Machine} Issue~5.} + +For the 3D-asset and material side: \textbf{Hunyuan 3D-PolyGen~1.5} (Tencent's ``art-grade'' 3D generative model), \textbf{Hitem3D}, \textbf{Meshy}, \textbf{Rodin}~-- the rapidly-maturing 3D-asset generation layer that is being integrated, model-by-model, into Unreal Engine, Unity and Blender pipelines. + +Ubisoft's open-sourcing of its \textbf{CHORD} PBR-material model in December 2025,\footnote{ComfyUI Blog, ``Ubisoft La Forge Open-Sources the CHORD Model,'' \url{https://blog.comfy.org/p/ubisoft-open-sources-the-chord-model}. \emph{Dream Machine} Issue~11.} and the Blender Foundation's patronage deal with Anthropic announced in May 2026,\footnote{Anthropic / Blender Foundation patronage, May 2026. \emph{Dream Machine} Issue~27.} are two of the more strategically significant moves in this layer~-- both pushing the production-grade open-source tooling forward at a pace the commercial alternatives have struggled to match. + +\section*{Agent platforms and orchestration} + +The category I think most working creatives are still underestimating, six months after Chapter~\ref{ch:3} argued it was the inflection point of the era. + +\textbf{OpenAI AgentKit} (Agent Builder, ChatKit, connector registry, eval framework) launched October 2025 and is the developer-facing platform underneath most third-party agentic creative tools.\footnote{OpenAI, ``Introducing AgentKit,'' \url{https://openai.com/index/introducing-agentkit/}. \emph{Dream Machine} Issue~2.} + +\textbf{Anthropic Claude apps} and the \textbf{Skills framework}~-- the system of named, reusable capabilities that Claude Code uses to coordinate multi-agent workflows. The Sony 49-agent / 72-skill game-development stack is built on this.\footnote{Anthropic Skills framework. \emph{Dream Machine} Issues~11,~16,~29.} In May 2026, \textbf{Google} released its own \textbf{official skills for AI agents}~-- a parallel, cross-vendor skills layer that lets Google-side agents do what Anthropic's Skills framework has been doing for Claude-side ones.\footnote{Google, ``Official skills for AI agents,'' \url{https://github.com/google/agent-skills}. \emph{Dream Machine} Issue~30.} The convergence of two named ``skills'' frameworks across the foundation-model vendors is, in my read, the first sign that the orchestration layer is settling on a shared vocabulary rather than continuing to fragment. + +\textbf{Tencent Ardot}, the company's AI-native design-agent platform launched May 2026, is the most ambitious non-Western agent-platform launch of the period~-- an integrated environment in which generative design agents handle layout, asset generation, brand application and iteration as a single coordinated pipeline.\footnote{Tencent Ardot, AI-native design agent platform, \url{https://ardot.tencent.com/}. \emph{Dream Machine} Issue~30.} In the same week, \textbf{Viktor} raised \$75M to embed an agentic \emph{coworker} directly into Slack and Microsoft Teams~-- i.e., the agentic layer landing not as a standalone product but as a colleague-shaped presence in the chat surface the working creative is already in all day, as discussed in Chapter~\ref{ch:9}. + +\textbf{Heygen Video Agent} for end-to-end video assembly.\footnote{Heygen Video Agent. \emph{Dream Machine} Issue~16.} \textbf{Adobe CX Enterprise} (announced at Adobe Summit 2026 with NVIDIA) for ``agentic creative intelligence'' across the full content lifecycle.\footnote{Adobe Summit 2026 CX Enterprise. \emph{Dream Machine} Issue~26.} \textbf{NVIDIA + Google Cloud} for the underlying creative-AI infrastructure most enterprise pipelines run on.\footnote{Adobe + NVIDIA / Google + NVIDIA partnerships. \emph{Dream Machine} Issue~21.} + +\textbf{ComfyUI}~-- the open-source node-based workflow editor~-- sits underneath much of the technical-creator community's agentic work. ComfyUI raised \$17M in October 2025\footnote{ComfyUI funding round, \url{https://www.linkedin.com/posts/comfyui_we-raised-17-million-to-build-an-os-for-ugcPost-7373743341236236288-wkCc}. \emph{Dream Machine} Issue~1.} and hit a \$500M valuation by May 2026;\footnote{ComfyUI \$500M valuation, May 2026. \emph{Dream Machine} Issue~27.} the platform has become the de facto OS for the open-source side of the creative-AI ecosystem. In May 2026 \textbf{Anthropic's Claude} was added as an official partner node inside ComfyUI, joining the existing Google, OpenAI and open-weight nodes~-- meaning the three frontier foundation models can now be orchestrated side-by-side inside the same open-source pipeline.\footnote{Anthropic, ``Claude is now available as a partner node in ComfyUI,'' \url{https://www.anthropic.com/news/claude-comfyui-partner-node}. \emph{Dream Machine} Issue~30.} + +\textbf{Hugging Face}, \textbf{OpenEnv} (Meta / Hugging Face), the \textbf{Hugging Face / Google Cloud} partnership~-- the open-source agentic-development infrastructure.\footnote{Hugging Face / Google Cloud and Meta / Hugging Face OpenEnv. \emph{Dream Machine} Issues~5,~8.} + +For working creatives, the practical agent stack in 2026 is some combination of: + +\begin{enumerate} + \item A foundation model (Claude / GPT / Gemini) for the orchestration brain. + \item A modality model layer (video, image, audio, 3D) doing the actual generation. + \item A workflow integration layer (ComfyUI for technical work, the in-app agent surfaces for less technical work). + \item A judgement layer (the human at the desk, doing what Chapter~\ref{ch:11} calls \emph{briefing, allocating, judging and integrating}). +\end{enumerate} + +The team I work with at DreamLab runs this stack in production every week. The agents that handle our daily work in May 2026 are, in aggregate, doing the labour of what would, two years ago, have been a team three to four times our size. The human team has not shrunk. We have just become substantially more leveraged. + +\section*{Legacy creative software, repositioned} + +The most under-reported strategic story of this period, in my view, has been the speed at which the legacy creative-software vendors have rebuilt their products as AI-agent platforms. + +\textbf{Adobe}~-- I have written enough about Adobe in Chapter~\ref{ch:9} that I will not repeat it here. The short version: Creative Cloud is, today, a stack of AI agents wearing a Photoshop / Premiere / After Effects / Illustrator / InDesign / Acrobat skin. The agents are inside the apps; the apps are inside ChatGPT; the apps are inside Adobe Express; the apps are inside the new CX Enterprise platform. The repositioning is complete. + +\textbf{Unreal Engine} (Epic)~-- the games engine that has, through plugins, integrations and the Nano Banana / Gemini partnership, become a hybrid game-engine / virtual-production / AI-generation hub. The Unreal Engine~5 AI Assistant, announced at the end of 2025,\footnote{Unreal Engine~5 official AI Assistant, \url{https://www.linkedin.com/posts/wouterweynants_theres-an-official-ai-assistant-coming-to-ugcPost-7369377204226379776-pGiH}. \emph{Dream Machine} Issue~1.} is one of the more consequential single-product launches of the period. The \textbf{ECABridge} connector, launched May 2026, is the most-cited Unreal-Engine MCP integration of the spring.\footnote{ECABridge~-- Unreal Engine MCP integration, \url{https://ecabridge.dev/}. \emph{Dream Machine} Issue~30.} In a separate but related move, an \textbf{Epic Games veteran} announced an AI-heavy ``Fully European'' game-engine project in the same week~-- the first plausibly-credible new entrant in the AAA game-engine market since the early 2010s, framed explicitly around AI as the core operating layer.\footnote{\emph{Video Games Chronicle}, ``Epic Games Veteran Claims He's Building AI-Heavy `Fully European' Game Engine,'' \url{https://www.videogameschronicle.com/news/epic-games-veteran-ai-heavy-fully-european-game-engine/}. \emph{Dream Machine} Issue~30.} + +\textbf{Unity}~-- Unity's AI Open Beta (May 2026), an in-editor AI suite for the full games-development pipeline, alongside the company's AI Council formation in October 2025.\footnote{Unity AI Council (October 2025); Unity AI Open Beta (May 2026). \emph{Dream Machine} Issues~1,~28.} + +\textbf{Autodesk}, \textbf{Foundry}, \textbf{SideFX}~-- the VFX-pipeline vendors integrating generative AI into Maya, Nuke and Houdini at the speed the VFX industry's adoption curve (62\% of Hollywood studios on automated compositing, 35\% reduction in post-production timelines\footnote{VFX AI integration metrics. See Appendix~E, \S``Visual Effects (VFX) Automation.''}) demanded. + +\textbf{Blender}~-- open-source 3D, now a recognised industry-grade tool, beneficiary of the Anthropic Foundation patronage deal.\footnote{Anthropic / Blender Foundation patronage. \emph{Dream Machine} Issue~27.} + +\textbf{DaVinci Resolve} (Blackmagic), \textbf{Avid Media Composer}, \textbf{Pro Tools}~-- the editorial and audio post environments, all now shipping AI-augmented features that have become baseline expectations. + +The thing to note is that the legacy software did not get displaced by the AI-native products. The legacy software \emph{absorbed} the AI-native capability and kept the underlying user community. Adobe was supposed to lose to Midjourney in 2024; Adobe is, instead, the dominant generative-AI player by aggregate creator engagement in 2026. The platform companies bet on this absorption pattern, and that bet has, so far, paid off. + +\section*{Open source} + +The open-source ecosystem has, against the odds and against most VC predictions in 2024, held its ground through this period and is, in several categories, the leader rather than the follower. + +\textbf{Hugging Face}~-- the operating system of open-source AI, expanding aggressively through 2025--26. + +\textbf{ComfyUI}~-- already discussed. + +\textbf{Open-source models from Tencent (Hunyuan)}, \textbf{Alibaba (Qwen, Wan)}, \textbf{DeepSeek}, \textbf{Meta (Llama)}, \textbf{Mistral}, \textbf{Stability AI}~-- collectively, the open-weight ecosystem that, by the spring of 2026, was being used by approximately 80\% of startups pitching the Andreessen Horowitz fund.\footnote{Andreessen Horowitz pitch-deck observations on Chinese open-source model usage, \url{https://www.linkedin.com/posts/stevenouri_a-wild-stat-80-of-startups-pitching-a16z-activity-7396182718998351872-xTKR}. \emph{Dream Machine} Issue~8.} \textbf{NVIDIA's SANA-WM} (May 2026) extended this list to world-models for the first time at meaningful parameter scale. + +\textbf{PhotoGIMP}, the open-source skin that takes GIMP and makes it look and feel exactly like Photoshop, became, in this period, a credible Photoshop alternative for working creatives who wanted to opt out of the Adobe subscription stack.\footnote{PhotoGIMP~-- the open-source GIMP skin that mimics Photoshop, \url{https://github.com/Diolinux/PhotoGIMP}. \emph{Dream Machine} Issue~30.} + +\textbf{OpenEnv} (Meta / Hugging Face) for open-source agentic development. \textbf{Korin AI} (the Africa-trained, Africa-built model launched May 2026\footnote{Korin AI launch, May 2026. \emph{Dream Machine} Issue~27.}). \textbf{SuperSplat}, \textbf{Spark~2.0}, \textbf{PlayCanvas SOG}, \textbf{Blender}~-- the open-source spatial / 3D infrastructure layer. + +If you are a working creative trying to build a long-term, defensible toolchain that does not depend on the unilateral pricing or policy decisions of a single platform company, the open-source ecosystem in 2026 is materially viable in a way it was not eighteen months ago. We have built significant parts of the DreamLab pipeline on top of it precisely for that reason. + +\section*{Tools I do not use, and why} + +I want to be specific, because lists of ``best tools'' without exclusions are not useful. + +I do not use AI tools whose terms of service claim ownership over my output, or that train on user inputs without an opt-out. Multiple consumer-facing AI products in this period have shipped with terms that working creatives should read carefully before adopting. + +I do not use AI tools whose training data provenance I cannot, in some material way, verify or trust. The growing infrastructure for \emph{creative weight attribution}, watermarking and C2PA compliance is, in my view, the right side of the market to be on; tools that explicitly reject that infrastructure are tools that I have, increasingly, kept out of our production pipeline. + +I do not use the AI products that have made the most noise in the consumer press cycle. The marketing-driven launches~-- the products whose first appearance is a viral demo and whose second appearance is a Series-A round~-- are, in my experience, the products most likely to have collapsed or pivoted by the time you need them in production six months later. + +I do not, finally, use AI tools to produce work in the disciplines where my own craft is the value I am bringing to the client. The Continuum frame from Chapter~\ref{ch:3} is, for me, a daily operational practice, not a theoretical model. The places I sit on the right edge of the line are deliberately chosen. The places I sit on the left are deliberately defended. + +\section*{The complete toolchain: a categorised reference} + +This section is a reference inventory, not a recommendation list. It catalogues every tool, model, platform, app, plugin, LoRA, workflow and service that \emph{Dream Machine} tracked across its 29 issues, from October 2025 to May 2026. Some are dominant; some are niche; some have already been bought, renamed or discontinued by the time you read this. The point of the list is not ``what to use.'' The point is \emph{what existed}, in this period, in the creative-AI toolchain~-- so that the \emph{shape} of the field is on the record. + +A word on the list's grain. I have tried to err on the side of inclusion. Where a single company ships multiple closely-related products~-- Adobe's \emph{Sneaks} portfolio, the Runway Gen-4.5 family, the Qwen-Edit LoRA series~-- I have grouped them under the parent entry but called out the constituent tools, because in this period each constituent shipped to working creatives separately and changed at its own cadence. Where a tool was a one-issue demo I could not later verify, I have still listed it; that the demo existed \emph{at all} is part of the field's history. Where a tool's name conflicts with another (there are at least three things called ``Wonder'' in the period the book covers) I have annotated. + +The list runs to roughly six hundred entries. Skim it. Use the categories. Come back to specific sections when you need them. + +\subsection*{Foundation models / LLMs} + +\begin{itemize} + \item \textbf{ChatGPT / GPT-5 / GPT-5 Pro} (OpenAI)~-- the dominant consumer LLM and reference foundation model; 800--900M weekly active users; GPT-5 / GPT-5 Pro announced at DevDay 2025. + \item \textbf{Claude / Claude Code / Claude Apps / Claude Skills} (Anthropic)~-- the writers' and developers' favoured second; strong long-context performance; the agentic coding environment that underlies Sony's 49-agent / 72-skill stack; Claude for Legal launched May 2026. + \item \textbf{Gemini / Gemini 2.5 Flash / Gemini 3 / Gemini 3.1 Flash} (Google)~-- Google's multimodal LLM family; desktop users growing 155\% YoY in 2025--26; Gemini 3.1 Flash TTS is the most controllable Google voice model as of spring 2026. + \item \textbf{Llama} (Meta)~-- the dominant open-weight foundation model. + \item \textbf{Mistral / Mistral Voxtral / Mistral Transcribe~2}~-- European open-source LLM; Voxtral is the next-generation speech-to-text family. + \item \textbf{Qwen / Qwen 3.5-Omni} (Alibaba)~-- Chinese open-source LLM, image, video and audio variants; Omni is the multimodal family covering text, images, audio and video. + \item \textbf{DeepSeek}~-- Chinese open-source LLM used heavily in agentic stacks. + \item \textbf{Phi / Phi Mini} (Microsoft)~-- lightweight foundation models. + \item \textbf{Lyria / Lyria~3 / Lyria~3 Pro} (Google DeepMind)~-- text-to-music foundation model family; Lyria~3 ships with SynthID watermarking and the Lyria Camera interactive demo. + \item \textbf{Grok} (xAI)~-- xAI's LLM family, surfacing in the creative stack through Grok Imagine; voice cloning via the xAI API from May 2026. + \item \textbf{Cohere Transcribe}~-- enterprise transcription model; 33 hours of audio in 12 minutes. + \item \textbf{Microsoft VibeVoice}~-- open-source frontier voice AI model. +\end{itemize} + +\subsection*{AI video models} + +\begin{itemize} + \item \textbf{Sora / Sora~2} (OpenAI)~-- the model that opened the period; physical realism, audio integration, multi-shot world-state persistence; iOS app hit 1M downloads in 5 days; Sora~2 Character Creation surfaced on fal in March 2026. + \item \textbf{Veo~3 / Veo~3.1 / Veo~3.1 Ingredients to Video / Veo~3.1 Lite} (Google DeepMind)~-- the working filmmaker's preferred model for cinematic control; Ingredients to Video shipped to YouTube Shorts and YouTube Create; Veo~3.1 Lite is the lower-cost text- and image-to-video tier. + \item \textbf{Runway Gen-4 / Gen-4.5 / Gen-4.5 Image-to-Video / Workflows / Story Panels / Characters API / Ad Concepter / Apps for Advertising} (Runway)~-- the most-integrated commercial AI-video stack; Story Panels generate three-panel storyboards from a single image; Characters API ships real-time intelligent avatars; the Vera Rubin-powered real-time model runs <100\,ms latency. + \item \textbf{Kling / Kling~2.5 Turbo / Kling~O1 / Kling~2.6 / Kling~3.0 / Kling~X-Dub / Kling Motion Control~3.0} (Kuaishou)~-- strong on physics and trajectory control; 3.0 adds multi-shot control, multilingual audio and 4K image generation; X-Dub is the context-rich visual dubbing variant. + \item \textbf{Pika~2.0 / PikaStream~1.0}~-- iteration-speed-focused video generation; PikaStream brings AI agents into live video calls. + \item \textbf{Luma Dream Machine / UNI-1 / UNI-1.1 / Ray3 Modify / Luma Dream Brief}~-- Luma's video, world-and-reasoning, and modification stack; UNI-1.1 ships with prompt enhancement and built-in research; Dream Brief is the \$1M Cannes Lions competition. + \item \textbf{Wan~2.2 / Wan~2.5 / Wan~2.6} (Alibaba Qwen)~-- camera-controlled video generation; 2.6 adds character reference and multishot capabilities. + \item \textbf{Hunyuan Video / Hunyuan Image-to-Video} (Tencent)~-- open-source video model. + \item \textbf{Seedance~2.0 / SeeDream~4 / SeeDream~4.5} (ByteDance)~-- image-to-video and finished-video models, integrated into CapCut / Dreamina and Freepik; per-second cost fell below \$0.14 by March 2026. + \item \textbf{Higgsfield / Higgsfield Sketch-to-Video / Higgsfield Popcorn / Higgsfield Relight / Higgsfield Shots / WAN Camera Control}~-- social-media-marketer video platform; \$80M raised at \$1.3B valuation, \$200M revenue in nine months; Shots produces multiple storyboard images from a single shot. + \item \textbf{LTX-2 / LTX-2.3 / LTX-2.3 Colorizer / LTX-HDR / LTX Studio / LTX-2 Audio-to-Video / LTX-2 Lip Sync / LTX-2 Real-Time}~-- open-source video generation with audio sync; LTX-2.3 is high-resolution, fast, cinematic with native lip-sync; LTX HDR (beta) ships HDR processing. + \item \textbf{Odyssey~2}~-- real-time interactive video generation. + \item \textbf{Vidi~2} (ByteDance)~-- multimodal video understanding and creation. + \item \textbf{MotionStream}~-- real-time interactive video with mouse-based motion control. + \item \textbf{Blockvid}~-- one-minute video with improved structure and visual consistency. + \item \textbf{Video Rebirth} (Singapore)~-- studio-grade AI video platform; \$50M raise. + \item \textbf{LiveGS}~-- mobile Gaussian-splatting video. + \item \textbf{Time-To-Move}~-- motion control for generated video. + \item \textbf{Ovi / Ovi~1.1} (Character.AI)~-- open-source video with speech sync. + \item \textbf{CraftStory}~-- image-to-video for long-form AI video with human ``actors''. + \item \textbf{Decart Lucy~2.0}~-- realtime world-editing video model; 1080p at 30~fps. + \item \textbf{Decart LSD~v2}~-- real-time video-to-video with prompt-on-the-fly. + \item \textbf{Xmax X1}~-- the first real-time interactive video model. + \item \textbf{FastVideo}~-- 30-second 1080p generation at 4.5\,s latency. + \item \textbf{HiAR} (Tencent)~-- scalable long-video generation. + \item \textbf{Alli AI}~-- system for creating and editing 8K video up to 60 seconds. + \item \textbf{AERA AI TV}~-- automated storyboard generation, editing and serialised video production. + \item \textbf{AnchorWeave}~-- world-consistent video generation with retrieved local spatial memories. + \item \textbf{CubeComposer}~-- generates native 4K 360\textdegree\ video from standard perspective footage. + \item \textbf{MatAnyone2}~-- high-fidelity video matting with finer detail. + \item \textbf{VFace}~-- training-free video face-swapping for any diffusion model. + \item \textbf{DreamActor M2.0} (fal)~-- drive characters from a single image + template video; multi-character supported. + \item \textbf{ByteDance ALIVE}~-- unified audio-video generation. + \item \textbf{Magnific Upscaler for Video / Magnific Precision~v2 / Magnific Precision for Video}~-- upscaling and 4K detail enhancement, including dedicated video upscaling. + \item \textbf{NetFlix VOID}~-- object removal from video with physics-interaction removal. + \item \textbf{Ponder}~-- agentic video editor. + \item \textbf{ArcReel}~-- multi-agent video generation from written stories. + \item \textbf{Scope}~-- real-time interactive generative AI pipelines (LTX-2.3 real-time runs on Scope). + \item \textbf{NotebookLM Cinematic Video Overviews} (Google)~-- video generation from notebooks. + \item \textbf{Omnia}~-- AI-native browser video editor. + \item \textbf{NVIDIA RTX Video Super Resolution}~-- upscaling node with ComfyUI integration. + \item \textbf{Google M2SVid}~-- monocular-to-stereo video conversion. +\end{itemize} + +\subsection*{AI image models / tools} + +\begin{itemize} + \item \textbf{Midjourney / Midjourney V8.1}~-- the aesthetic-leadership product; Discord/X-native; V8.1 ships native 2K HD rendering at 3$\times$ the speed and 3$\times$ the cost reduction. + \item \textbf{FLUX / FLUX~2 / FLUX~2 Max / FLUX.2 [klein]} (Black Forest Labs)~-- open-weight, fine-control, the open-source default through 2025--26; klein is the 4B-parameter lightweight model. + \item \textbf{Adobe Firefly / Firefly Image Model~5 / Firefly Foundry / Firefly Boards / Firefly Precision Flow}~-- Image Model~5, Foundry (custom corporate training), Firefly Boards (moodboards), Precision Flow (granular AI editing control, beta); 45\% of Creative Cloud users active, 22B+ assets generated by April 2025. + \item \textbf{Imagen~3 / Nano Banana / Nano Banana Pro / Nano Banana~2} (Google)~-- most-integrated image model in the consumer toolchain; Photoshop and Unreal Engine plugins; Nano Banana Pro ships professional capabilities at lightning speed. + \item \textbf{Stable Diffusion / Stable Diffusion~3} (Stability AI)~-- the foundational open-source image model. + \item \textbf{Krea / Krea AI / Krea~2 / Krea Realtime / Krea Realtime Edit / Krea Nodes / Krea LoRA Trainers}~-- real-time AI image generation, now open-source; Realtime Edit takes complex instructions in real time; the LoRA Trainers cover Qwen-2512 and Z-Image. + \item \textbf{Qwen-Image-2512 / Qwen-Image-Edit-2511 / Qwen 2511 Time Travel / Qwen-Edit 2509}~-- the dominant open-source image-editing model family; constituent LoRAs (relighting, multi-angle, time-travel, AnyPose) discussed in the LoRAs section below. + \item \textbf{ChatGPT Images / ChatGPT Images~2.0}~-- image generation integrated with Adobe Express, Photoshop and Acrobat; 2.0 ships thinking-level intelligence. + \item \textbf{Grok Imagine / Grok Imagine API} (xAI)~-- image and video generation; the API bundles end-to-end creative workflows; reference-to-video and video extend added in March 2026. + \item \textbf{Vision Banana}~-- unified model for image understanding and generation. + \item \textbf{Freepik / Freepik Spaces / Freepik Speak / Freepik 3D Scenes}~-- design platform; Spaces is the real-time collaborative canvas; Speak is the lip-sync talking-video tool; 3D Scenes generates full environments from an image. + \item \textbf{Recraft}~-- brand-focused AI design. + \item \textbf{Weavy}~-- node-based AI creative platform; acquired by Figma. + \item \textbf{Canva}~-- design platform with ``Creative Operating System.'' + \item \textbf{Civitai / Civision}~-- community-models and LoRAs platform; Civision is the free Civitai/Hugging-Face hybrid alternative. + \item \textbf{Replicate}~-- model-hosting marketplace and API. + \item \textbf{GFPGAN}~-- face restoration. + \item \textbf{UpscalyAI / Upscayl / Topaz Gigapixel AI / Real-ESRGAN / Clarity Pro Upscaler}~-- upscaling tools; Clarity Pro reaches 10K. + \item \textbf{PractiLight}~-- practical light control via diffusion. + \item \textbf{PercHead}~-- 3D head reconstruction from single images. + \item \textbf{Loveart AI}~-- layer separation and editable text (Live Editable Text, LET). + \item \textbf{NVIDIA ChronoEdit}~-- temporal reasoning for image editing. + \item \textbf{Beeble Switchlight~3 / Beeble Background Remover}~-- AI masking and relighting. + \item \textbf{CanvAI}~-- turns rough sketches into polished AI art. + \item \textbf{MakeComics / Make Comics}~-- generates custom comics with characters and storylines in seconds; from prompt to full comic book. + \item \textbf{Seethrough}~-- illustration decomposition into layered PSD. + \item \textbf{Best Face Swap (Flux~2 LoRA)}~-- specialised face-swap. + \item \textbf{PixelSmile}~-- fine-grained facial-expression editing across 12 expressions. + \item \textbf{Earth Cinema}~-- Chrome extension using Google Earth for cinematic images. + \item \textbf{360Anything}~-- lifts any perspective image or video to a 360\textdegree\ panorama. +\end{itemize} + +\subsection*{AI music / audio tools} + +\begin{itemize} + \item \textbf{Suno / Suno Studio / Suno~5.5}~-- the dominant prompt-to-track generative music platform; \$250M raised at \$2.45B valuation; Suno Studio is the ``world's first generative audio workstation''; 5.5 adds Voices. + \item \textbf{Udio}~-- prompt-to-music; partnered with Universal Music Group; indie-label licensing via Merlin. + \item \textbf{Mureka / Music Agent Studio}~-- six specialised AI agents covering songwriting, arrangement and production. + \item \textbf{ElevenLabs / ElevenLabs~v3 / Scribe~v2 Realtime / ElevenMusic / ElevenCreative / ElevenLabs Flows / ElevenAgents Expressive Mode / ElevenLabs Voice Changer}~-- the dominant voice/audio synthesis stack; \$500M ARR; BlackRock + NVIDIA backed; Scribe~v2 transcribes in 150\,ms across 90+ languages; ElevenMusic is the discovery/creation/earning marketplace; Flows is the node-based creative canvas. + \item \textbf{iZotope Ozone~12 / Stem EQ}~-- AI-assisted mixing and mastering. + \item \textbf{LANDR}~-- AI mastering and distribution. + \item \textbf{Riffusion}~-- spectrogram-based music generation. + \item \textbf{Stable Audio~2.5} (Stability AI)~-- generative audio. + \item \textbf{MusicGPT}~-- local music generation. + \item \textbf{ACE Studio / ACE Studio~2.0 (TIMEDOMAIN) / ACE Studio Video-to-Music / ACE-Step~1.5 / ACE-Step~1.5 XL}~-- all-in-one AI music studio; video-to-music for visuals; ACE-Step generates full songs in under 10 seconds on <4\,GB VRAM. + \item \textbf{Music Lens} (Musixmatch)~-- catalog-intelligence agent. + \item \textbf{Melosurf}~-- voice-controlled assistant for Ableton Live. + \item \textbf{Songscription}~-- audio-to-notation transcription; \$5M raise. + \item \textbf{Groundhog Audio Pedal / Groundhog OnePedal}~-- AI guitar tone matching. + \item \textbf{Spotify DJ / Spotify AI / Spotify AI Prompted Playlists / Spotify AI Transparency Beta / Personal Podcasts on Spotify}~-- playlist personalisation, voluntary AI disclosure beta, agent-created podcasts. + \item \textbf{YouTube Music AI Hub}~-- AI music hosting and DJ features. + \item \textbf{Epidemic Sound Studio}~-- AI music for video creators. + \item \textbf{AIODE}~-- ethically-trained music creation DAW. + \item \textbf{Overtune}~-- virtual music studio for Roblox. + \item \textbf{Space DJ} (Google DeepMind)~-- interactive music exploration. + \item \textbf{Minimax Music Generator}~-- song generation. + \item \textbf{Roland AI Pedal}~-- concept for AI audio processing. + \item \textbf{Roland + Sony CSL Melody Flip}~-- AI music tool. + \item \textbf{BandLab Voice Cleaner / BandLab Palette}~-- background-noise removal; AI loop-matching. + \item \textbf{Claimy}~-- missing-royalty recovery agent. + \item \textbf{Fish Audio S1 / Fish Audio S2}~-- text-to-speech; S2 ships expressive TTS with emotional control (6$\times$ cheaper than ElevenLabs at S1). + \item \textbf{Tempolor Guitars} (Quwan)~-- AI to make songs playable on guitar. + \item \textbf{GEMIDI}~-- music playground powered by Gemini. + \item \textbf{Lalal AI / Lalal AI plugin / Lalal AI API~v1}~-- AI stem separation, music removal, voice changing; first stem-separation plugin native to a DAW. + \item \textbf{StemDeck}~-- local stem separation; free, no upload required. + \item \textbf{Mirelo} (Berlin)~-- automatic sound-effect generation for video. + \item \textbf{PromptSep}~-- separates any sound by text description. + \item \textbf{SAMAudio} (Meta)~-- Segment Anything for audio editing. + \item \textbf{SonicLab SPATAI}~-- generative audio engine for immersive spatial production. + \item \textbf{Apple Logic Pro AI}~-- synth player and personal music-theory expert; chord-progression generation. + \item \textbf{Apple GarageBand}~-- consumer music creation. + \item \textbf{Musicful AI}~-- music-video generation for AI-generated songs. + \item \textbf{Latent Space Explorer}~-- interactive audio data visualiser using Stable Audio VAE. + \item \textbf{Voicebox}~-- open-source local voice cloning from a 3-second audio clip. + \item \textbf{Voice-Pro}~-- AI speech recognition / translation / transcription / multilingual dubbing. + \item \textbf{PersonaPlex} (NVIDIA)~-- full-duplex model that listens and speaks simultaneously; open-source natural-sounding voice. + \item \textbf{Phoenix-4}~-- advanced real-time human-rendering model with 10+ emotional states. + \item \textbf{NVIDIA D-Rex}~-- photorealistic digital humans under any lighting. + \item \textbf{Qwen3-TTS / VoiceDesign / VoiceClone}~-- text-to-speech with voice design and cloning. + \item \textbf{Greysound}~-- self-engineering music-production studio. + \item \textbf{TAC (Timestamped Audio Captioning)}~-- timestamped captions for audio and audiovisual content. + \item \textbf{Insanely Fast Whisper}~-- 2.5 hours of audio transcribed in 98 seconds. + \item \textbf{smol-audio}~-- local audio model notebooks and scripts. + \item \textbf{AudioStream / Walzersymphonie} (Ars Electronica Futurelab)~-- AI composition system for classical music using Ricercar. + \item \textbf{Ricercar} (Ars Electronica)~-- creative AI for artistic composition. + \item \textbf{Krotos Video-to-Sound}~-- expanded platform for audio professionals (foley, sound design). + \item \textbf{Jamu}~-- AI co-producer agent for Ableton Live. + \item \textbf{Moises}~-- AI music platform; Charlie Puth as Chief Music Officer. + \item \textbf{Music Mogul AI}~-- tour-booking automation. + \item \textbf{Sonilo + Shutterstock}~-- video-to-music AI training deal. + \item \textbf{Clearnote}~-- AI music-contract platform to end deal delays. + \item \textbf{Sony music identification tech}~-- identify original music inside AI-generated songs. + \item \textbf{Cactus Music}~-- artist-ops support. + \item \textbf{Rebel Audio}~-- AI podcast startup. + \item \textbf{ROLI Airwave \& AI Music Coach}~-- hand-tracking (27 joints) with real-time AI piano practice coaching. + \item \textbf{Sony AI ICASSP papers}~-- music understanding and generative audio research papers (April 2026). +\end{itemize} + +\subsection*{3D, world models and spatial} + +\begin{itemize} + \item \textbf{Marble / Marble~1.1 / WorldLabs API / RTFM} (World Labs / Fei-Fei Li)~-- first commercial generative world model; 40$\times$ faster than legacy VP workflow; 1.1 adds real-world location 3D reconstruction and restyling; the API generates persistent 3D worlds from text, images and video; RTFM is the real-time frame model. + \item \textbf{Genie~3 / Project Genie} (Google DeepMind)~-- research-grade world model; \emph{Time} Best Inventions 2025; rolled out to Google AI Ultra in January 2026. + \item \textbf{WorldGen / WorldMirror} (Meta / Tencent)~-- interactive 3D world generation. + \item \textbf{UNI-1 / UNI-1.1} (Luma)~-- world generation + reasoning combined; 1.1 adds prompt enhancement and built-in research. + \item \textbf{Hunyuan 3D / Hunyuan 3D Studio / Hunyuan 3D-PolyGen~1.5 / HY3D~3.0 / HY-Motion~1.0} (Tencent)~-- art-grade 3D generative model family; PolyGen~1.5 is the art-grade text/image/sketch-to-3D model; HY-Motion~1.0 is text-to-3D human motion. + \item \textbf{HY World~1.5 / HY-World~2.0 / WorldCompass / ShotVerse} (Tencent)~-- open-source real-time world-model frameworks; WorldCompass is the RL post-training framework; ShotVerse handles cinematic multi-shot camera control. + \item \textbf{ECHO / Echo-2} (SpAItial)~-- spatial foundation model; Echo-2 adds world decomposition. + \item \textbf{Wonderzoom} (Stanford)~-- multi-scale 3D world generation with infinite zoom. + \item \textbf{Matrix-Game~3.0} (Skywork AI)~-- real-time interactive world model; 720p at 40~fps with long-horizon memory. + \item \textbf{AMD Micro-World}~-- AMD's entry into world models. + \item \textbf{LingBot-World}~-- free/open-source world model on Wan~2.2; real-time interaction at 16~fps. + \item \textbf{Moonlake}~-- \$28M-seeded world model platform now in beta for games and simulations. + \item \textbf{NVIDIA Lyra~2.0}~-- explorable generative 3D worlds. + \item \textbf{NVPanoptix-3D} (NVIDIA)~-- single-image 3D indoor-scene reconstruction. + \item \textbf{Kimodo} (NVIDIA)~-- kinematic motion-diffusion model trained on 700 hours of mocap. + \item \textbf{InSpatio-WorldFM}~-- open-source real-time generative frame model. + \item \textbf{Code2Worlds}~-- workflow for generating 4D scenes with environmental/object generation and feedback refinement. + \item \textbf{OpenArt Worlds}~-- 3D navigable environments from a single prompt. + \item \textbf{Rodin / Hyper3D / Rodin Hyper 3D Gen~2}~-- high-precision 3D model generation. + \item \textbf{Meshy / Meshy~6 / Meshy Image-to-3D}~-- 3D model generation; Meshy~6 ships natively inside ComfyUI; Image-to-3D generates poses. + \item \textbf{Hitem3D}~-- high-resolution 3D generation. + \item \textbf{Microsoft Trellis~2}~-- native compact structured latents for 3D. + \item \textbf{ByteDance Seed3D~2.0}~-- 3D object generation from image or text. + \item \textbf{Pixel3D} (Tencent)~-- 3D object generation. + \item \textbf{Tripo~3.1}~-- 3D-asset creation; ComfyUI partner nodes. + \item \textbf{PATINA} (fal)~-- image or text to full PBR material maps. + \item \textbf{M-XR PBR Model}~-- 4K PBR material maps for 3D assets. + \item \textbf{CHORD} (Ubisoft La Forge)~-- open-sourced end-to-end PBR-material generation. + \item \textbf{Autodesk Wonder~3D}~-- generative AI tool creating editable 3D assets from text or images. + \item \textbf{Autodesk Flow Studio Rigging}~-- AI rigging and neural layers. + \item \textbf{AI4AnimationPy} (Meta)~-- pure-Python 3D character animation. + \item \textbf{MocapAnything} (Huawei)~-- unified 3D motion capture for arbitrary skeletons from monocular video. + \item \textbf{FreeMoCAP}~-- open-source markerless mocap from any camera. + \item \textbf{MuJoCo}~-- physics engine for robotics and animation. + \item \textbf{Mesh2Motion}~-- auto-assigns and exports 3D model animations. + \item \textbf{One-to-All Animation}~-- alignment-free character animation and image pose transfer. + \item \textbf{Cascadeur / Cascadeur AI Animation~v2025.3}~-- AI animation tool for character movement; local interpolation. + \item \textbf{Move AI}~-- motion capture. + \item \textbf{MoCap / UE5 Motion}~-- camera-only motion capture. + \item \textbf{SCAIL}~-- studio-grade character animation via in-context learning. + \item \textbf{Vanast}~-- garment-transferred human animation from images. + \item \textbf{CompHairHead}~-- one-shot 3D head avatars with deformable hair. + \item \textbf{Reallusion Headshot~3}~-- digital-double creation. + \item \textbf{MoRo} (Meta)~-- human motion recovery via masked modelling for occlusions. + \item \textbf{Meta Sapiens~2}~-- pose estimation, body-part segmentation and surface normals. + \item \textbf{NVIDIA Audio2Face / Audio2Face-3D}~-- facial animation from audio. + \item \textbf{NVIDIA UniRelight}~-- shot relighting technology. + \item \textbf{Apple SHARP / LiTo}~-- photorealistic 3D view synthesis from a single image in under a second; LiTo is the surface light-field tokenisation method. + \item \textbf{Pixel3DMM}~-- screen-space single-image 3D face reconstruction. + \item \textbf{VISTA4D} (Netflix + Eyeline)~-- live-action to navigable 4D point clouds. + \item \textbf{SuperSplat / SuperSplat~v2.16} (PlayCanvas)~-- free, open-source Gaussian-splat editor. + \item \textbf{Spark~2.0}~-- open-source Gaussian-splat streaming framework; streamable LoD for WebGL2. + \item \textbf{PlayCanvas SOG / SplatTransform~v2.0.0}~-- WebP-equivalent compression for Gaussian splats; SplatTransform~v2 ships automatic high-quality collisions for splats. + \item \textbf{Cesium / CesiumJS / Cesium for Unreal}~-- geospatial 3D platform; Cesium agentic workflows let natural-language commands interact with 3D geospatial data; supports Gaussian splats natively. + \item \textbf{SPAG-4D}~-- 360\textdegree\ photos to 3D Gaussian splat conversion. + \item \textbf{Animated Gaussian Splats} (4DV.ai)~-- 4D Gaussian-splat animation. + \item \textbf{Open3Dmap}~-- crowdsourced 3D mapping with Gaussian splats. + \item \textbf{Hyperscape / Hyperscape Capture} (Meta)~-- Gaussian-splat capture on Quest. + \item \textbf{Apple Vision Pro Personas}~-- Gaussian-splatting consumer feature. + \item \textbf{Common Sense Machines}~-- converts 2D images into 3D digital assets (Google acquisition). + \item \textbf{NVIDIA Omniverse Fixer}~-- rendering-artefact removal for Gaussians. + \item \textbf{DecartAI / Decart LSD~v2 / Decart Lucy~2.0}~-- real-time world transformation by voice; LSD~v2 is real-time video-to-video; Lucy~2.0 is realtime world editing at 1080p/30fps. + \item \textbf{VoxeloAI}~-- 3D creation for e-commerce. + \item \textbf{Mosaic / Mosaic~3D}~-- 3D reconstruction. + \item \textbf{Depth Anything~3} (ByteDance)~-- visual-space recovery from any view. + \item \textbf{SAM~3 / SAM~3D / SAM~3.1} (Meta)~-- object detection and 3D segmentation; SAM~3.1 is 7$\times$ faster, tracking 128 objects on a single H100. + \item \textbf{Seen2Scene}~-- realistic 3D scene completion with visibility-guided flow. + \item \textbf{PixARMesh}~-- reconstructs full indoor scenes from a single photo into lightweight meshes. + \item \textbf{Confidence-Based Mesh Extraction from 3D Gaussians}~-- algorithm for high-quality mesh extraction from Gaussian splats. + \item \textbf{Rhizomatics Sword Tip Visualization System}~-- fencing tracking at 60~fps. + \item \textbf{Mixar}~-- AI-native Blender-fork editor positioned as ``Cursor for 3D artists''. + \item \textbf{Sprite Booth}~-- pixel-character animation tool (ComfyUI API required). + \item \textbf{AutoSprite}~-- character-to-animated-sprite-sheet conversion. +\end{itemize} + +\subsection*{Voice, avatar, digital human} + +\begin{itemize} + \item \textbf{Synthesia}~-- AI avatar platform; \$4B valuation; rejected \$3B Adobe offer. + \item \textbf{Heygen / Heygen Video Agent / Heygen Motion Designer / LiveAvatar / Heygen Elements / Heygen CLI}~-- AI-avatar and end-to-end video generation; LiveAvatar is hyper-realistic real-time interactive; Elements builds scenes from reusable components; CLI ships videos from the command line. + \item \textbf{Hedra / Hedra Audio Tags / Hedra Elements}~-- digital-human creation; Audio Tags assign precise emotions to audio. + \item \textbf{Live Avatar} (Alibaba)~-- streaming real-time audio-driven avatar generation with infinite length. + \item \textbf{Avatar Forcing}~-- real-time interactive head-avatar generation for natural conversation. + \item \textbf{PersonaLive}~-- real-time expressive portrait animation. + \item \textbf{Weclone}~-- digital avatar built from a user's chat history. + \item \textbf{Particle6 / Tilly Norwood}~-- AI-performer studio and synthetic actress. + \item \textbf{Xania Monet}~-- AI music artist; Billboard chart entries; \$3M Hallwood Media deal. + \item \textbf{Bleeding Verse}~-- AI band; Hallwood Media signing. + \item \textbf{Sienna Rose}~-- anonymous AI artist with millions of Spotify streams. + \item \textbf{Breaking Rust}~-- AI country artist; \#1 country digital song sales. + \item \textbf{Trilok}~-- Indian AI band. + \item \textbf{Copresence / ConvAI / Inworld}~-- avatar and NPC-character technology for Unreal Engine, games and interactive media. + \item \textbf{ROXi}~-- AI-generated TV presenters. + \item \textbf{Facelooker}~-- interactive headshot generation. + \item \textbf{FellinAI}~-- AI film director. + \item \textbf{ego AI}~-- in-game character platform. + \item \textbf{Character.AI}~-- play characters in your favourite books; Ovi open-source video with speech sync. +\end{itemize} + +\subsection*{Agent platforms and orchestration} + +\begin{itemize} + \item \textbf{OpenAI AgentKit / Agent Builder / ChatKit / Connector Registry / Eval Framework}~-- the developer-facing agent platform underneath most third-party agentic creative tools. + \item \textbf{Anthropic Claude Apps / Claude Skills / Claude Code / Claude Design / Claude for Legal / Anthropic Academy}~-- interactive Claude in workplace tools; the Skills framework powers Sony's 49-agent / 72-skill game-development stack; Claude Design ships prototypes/slides/one-pagers; Anthropic Academy is free Claude Code training. + \item \textbf{Claude Code Game Studios}~-- 49-agent, 72-skill coordinated AI game-development team. + \item \textbf{Gemini API Agents / Google Antigravity / Opal / Fabula / Google Stitch} (Google)~-- agentic capability surface across Google's stack; Antigravity is the agentic development platform; Opal is the no-code mini-app builder; Fabula is the interactive AI writing tool; Stitch generates mobile/web UI. + \item \textbf{Heygen Video Agent}~-- end-to-end video-assembly agent. + \item \textbf{Adobe CX Enterprise / GenStudio / Adobe Film \& TV Fund / Adobe Ignite Day}~-- agentic creative intelligence across the full content lifecycle; GenStudio is the brand-intelligence system for personalised content at scale. + \item \textbf{NVIDIA + Google Cloud / Avid + Google Cloud / Speechmatics in Adobe Premiere}~-- agentic-creative infrastructure partnerships; on-device speech-to-text inside Premiere. + \item \textbf{n8n}~-- workflow automation with AI. + \item \textbf{ComfyUI / ComfyUI Cloud / ComfyHub / ComfyUI App Mode / ComfyUI Simple Mode}~-- node-based AI workflow editor; \$500M valuation by May 2026; App Mode turns workflows into shareable no-install apps; Simple Mode lowers the complexity threshold. + \item \textbf{Replicate}~-- model marketplace. + \item \textbf{Hugging Face}~-- open-source model hub and agentic platform; partnered with Google Cloud and Meta. + \item \textbf{Meta OpenEnv}~-- open-source agentic-development environment. + \item \textbf{fal / FAL MCP}~-- generative-model deployment marketplace; FAL MCP exposes 1,000+ generative models to Claude/Cursor. + \item \textbf{Unity Official MCP / Unity MCP}~-- Unity Editor control via MCP protocol. + \item \textbf{Blender MCP / Blender Buddy / OpenClaw + Blender MCP}~-- Claude-to-Blender control for 3D workflows. + \item \textbf{VibeComfy}~-- open-source tools letting agents understand, build and run ComfyUI workflows with Claude. + \item \textbf{MooshieUI}~-- beginner-friendly ComfyUI desktop frontend. + \item \textbf{Lenny} (Maroofy)~-- AI agent for live-music event organisers. + \item \textbf{AdsGency}~-- autonomous paid-marketing agent platform; \$12M seed. + \item \textbf{Invideo AI / Invideo AI Agent}~-- full video-ad generation from prompt; built on Gemini. + \item \textbf{Pomelli} (Google Labs)~-- AI marketing agent for small business. + \item \textbf{Inception Point AI}~-- podcast hosting with AI hosts (3,000+ episodes/week). + \item \textbf{Slapshot}~-- AI camera tracking. + \item \textbf{Photoroom}~-- AI photobooth. + \item \textbf{Jabali.ai}~-- AI game-development platform (Sony-backed). + \item \textbf{Fifth Door}~-- AI-powered game creation; \$20M raise. + \item \textbf{Atlas AI Agents}~-- game-production pipeline agents. + \item \textbf{Ad Concepter} (Runway)~-- ad-concept exploration agent. + \item \textbf{AE GPT}~-- AI assistant for After Effects (expressions, scripts). + \item \textbf{Career-Ops}~-- AI job-search pipeline built with Claude Code. + \item \textbf{Auto-Dream} (MyClawAI)~-- personal AI assistant wrapper. + \item \textbf{Clicky}~-- AI screen-aware tutor/buddy interface. + \item \textbf{MemPalace}~-- high-scoring AI memory system. + \item \textbf{TikTok AI Agents for Ads}~-- TikTok's automated ad-creation agents. + \item \textbf{Amazon Creative Agent}~-- agentic AI generating professional-quality ads. + \item \textbf{Playad}~-- AI marketing agents for ad creative. + \item \textbf{Moltbook} (Meta acquisition)~-- AI agent social network. +\end{itemize} + +\subsection*{Legacy creative software, AI-augmented} + +\begin{itemize} + \item \textbf{Adobe Creative Cloud}~-- Photoshop, Premiere Pro, After Effects, Illustrator, Express, Acrobat, plus the Express AI Assistant, the Premiere Object Mask, the Photoshop generative-fill, selection and Rotate Object tools, the Photoshop AI Assistant public beta, and Illustrator Turntable. + \item \textbf{Adobe Sneaks 2025--26}~-- Adobe's research-preview portfolio shown at MAX 2025 and Summit 2026: + \begin{itemize} + \item \textbf{Project Scene It}~-- image-to-3D and 3D-to-image with object tagging. + \item \textbf{Project Surface Swap}~-- AI-powered texture recognition and swap. + \item \textbf{Project Turn Style}~-- edit and transform 2D objects as if they were 3D. + \item \textbf{Project Trace Erase}~-- removes objects, shadows, reflections and distortions. + \item \textbf{Project New Depths}~-- edit depth like brightness. + \item \textbf{Project Frame Forward}~-- apply changes across video from a single frame plus text. + \item \textbf{Project Motion Map}~-- bring static vector graphics to life. + \item \textbf{Project Sound Stager}~-- analyses video visuals and generates synchronised soundscapes. + \item \textbf{Project Clean Take}~-- corrects mispronunciations and isolates voices. + \item \textbf{Project Light Touch}~-- spatial lighting mode for relighting photos. + \item \textbf{Project Graph}~-- node-based workflow editor in the ComfyUI / Weavy lineage. + \item \textbf{Corrective AI}~-- changes the emotional register of voice-overs. + \item \textbf{Edit-by-Track} (Adobe Research)~-- generative video motion editing with 3D point tracks. + \end{itemize} + \item \textbf{Adobe Acrobat}~-- AI converting PDFs into podcasts. + \item \textbf{Unreal Engine~5 / UE5 AI Assistant / UE5 AI Motion Plugin / Unreal to Gaussian Splat / Prompt-to-Player} (Epic)~-- official AI assistant; camera-only motion capture; UE5 scene-to-splat conversion; Prompt-to-Player generates 3D characters and auto-rigs/animates them. + \item \textbf{Unity / Unity AI Open Beta / Unity AI Council / Unity AI Tools Suite / Unity Prompt-a-Game}~-- in-editor AI suite for the full games pipeline; Prompt-a-Game demoed at GDC March 2026. + \item \textbf{Autodesk Maya / Autodesk Flow Studio / Autodesk Wonder~3D / Autodesk Flow Studio Rigging}~-- motion capture, 3D animation, generative 3D and neural rigging. + \item \textbf{Foundry / Nuke / Nano Banana $\times$ Nuke}~-- AI-augmented VFX; Weta FX / AWS collaboration; the Nuke node connecting Nano Banana through fal's API. + \item \textbf{SideFX Houdini}~-- procedural modelling with AI integration. + \item \textbf{Blender / Blender MCP / Blender Buddy}~-- open-source 3D; Anthropic Foundation patronage; MCP enables Claude control. + \item \textbf{DaVinci Resolve} (Blackmagic)~-- colour and editorial with AI features. + \item \textbf{Avid Media Composer / Avid + Google Cloud}~-- professional editorial; Pro Tools agentic AI in the Google Cloud partnership. + \item \textbf{Pro Tools}~-- audio editorial with AI features; Claude integration in Ableton. + \item \textbf{Logic Pro / Apple Logic Pro AI}~-- music production with AI; synth player and music-theory expert. + \item \textbf{Ableton Live / Claude in Ableton / Jamu / Melosurf}~-- music production with Claude assistance, Jamu co-producer agent and Melosurf voice control. + \item \textbf{GarageBand}~-- consumer music creation. + \item \textbf{CapCut / Dreamina / Snapchat AI Clips in Lens Studio} (ByteDance / Snapchat)~-- mobile video editing with AI; Snapchat AI Clips in Lens Studio. + \item \textbf{Final Cut Pro}~-- editorial with FX Factory plugins. + \item \textbf{Keyframe}~-- AI models inside After Effects. + \item \textbf{Tether}~-- AI animation inside After Effects. + \item \textbf{Deep Pan}~-- animated stills in Premiere Pro. + \item \textbf{FX Factory}~-- AI plugin suite for Premiere and Final Cut. + \item \textbf{VEED Transitions}~-- AI transition generation. + \item \textbf{Electric Sheep}~-- web-based projection mapping and AI visual orchestration. +\end{itemize} + +\subsection*{AI-native creative studios and apps} + +\begin{itemize} + \item \textbf{Imaginae Studios} (Fremantle)~-- AI-native studio; \emph{Art Awakens} project under Google AI Futures Fund. + \item \textbf{Wonder Studios}~-- AI-native film studio; \$12M raise; Wonder Film Festival. + \item \textbf{Asteria} (Natasha Lyonne / Lightstorm / Topaz Video)~-- AI animated short \emph{All Heart}; hybrid AI workflows with Topaz. + \item \textbf{Promise} (Google-backed)~-- GenAI filmmaking and VFX for legacy media. + \item \textbf{Obsidian Studio} (Imagine Entertainment / Ron Howard, Brian Grazer)~-- AI production partner. + \item \textbf{Goldfinch enGEN3}~-- AI cinematic universe platform. + \item \textbf{Chapter41} (Beta Film / Munich)~-- AI startup. + \item \textbf{Kartel} (Kevin Reilly)~-- AI startup; ex-HBO leadership. + \item \textbf{Holywater} (Fox Entertainment investment)~-- AI microdramas. + \item \textbf{CenterStage} (David Boies / Zack Schiller)~-- interactive AI entertainment. + \item \textbf{Superlunar + Eden Studios}~-- \emph{Little Plastics} dystopian AI film. + \item \textbf{Particle6} (Eline Van der Velden)~-- AI-performers studio. + \item \textbf{Imago Pictures}~-- 3D + ComfyUI workflows. + \item \textbf{LKDN AI Production}~-- node-based AI filmmaking. + \item \textbf{Deep Fusion Films} (Cardiff)~-- AI documentary production; acquired by John Gore Studios. + \item \textbf{Palo Creators} (MrBeast alumni)~-- AI for viral video creation. + \item \textbf{Refik Anadol Studio Dataland}~-- first museum of AI art. + \item \textbf{Animaj}~-- Google AI Futures Fund partner for kids' content. + \item \textbf{Gossip Goblin}~-- AI filmmaking studio. + \item \textbf{Critterz} (Vertigo + Federation)~-- AI-assisted animated-feature production. + \item \textbf{Filmology Labs}~-- \$250M studio for vertical micro-dramas and AI-driven media formats. + \item \textbf{escapeAI} (John Gaeta)~-- streaming apps for AI-generated content across Roku, Fire TV, Samsung and LG. + \item \textbf{Primordial Soup} (Darren Aronofsky)~-- AI production studio. + \item \textbf{Toonstar}~-- AI animation house. + \item \textbf{CinemersiveAbout Labs / Cinemersive Labs}~-- UK machine-learning and computer-vision company; acquired by Sony. + \item \textbf{My SMASH Media}~-- AI film startup with Allison Gardner (ex-Glasgow Film Festival). + \item \textbf{Framestore AI Platform / Framestore Futon}~-- ML and GenAI in the VFX pipeline. + \item \textbf{Mito AI}~-- \$4.5M-raised platform empowering video professionals. + \item \textbf{Filmax DinoGames}~-- AI-driven 3D animated film project. + \item \textbf{Abundantia Entertainment + InVideo}~-- AI film studio launched in India. + \item \textbf{Luma Production Studio + Wonder Project}~-- feature collaboration. + \item \textbf{Lionsgate Chief AI Officer (Kathleen Grace)}~-- first major-studio CAIO hire. + \item \textbf{CreateAI}~-- AI animation production. + \item \textbf{Netflix Ben Affleck AI Studio Acquisition}~-- AI filmmaking company acquisition. + \item \textbf{DreamLab AI Collective} (the studio that produced this book)~-- AI-augmented creative practice across film, games and immersive. +\end{itemize} + +\subsection*{Games-development AI} + +\begin{itemize} + \item \textbf{NitroGen} (NVIDIA + Stanford)~-- plays-any-game model trained on 40,000 hours across 1,000+ games. + \item \textbf{SIMA~2} (Google DeepMind)~-- agent that plays, reasons and learns in 3D virtual worlds. + \item \textbf{CHORD} (Ubisoft La Forge)~-- open-sourced end-to-end PBR material generation. + \item \textbf{Ubisoft Teammates}~-- voice AI for in-game team communication. + \item \textbf{YouTube Playables Builder} (Gemini~3)~-- text-to-game prompt-to-playable web app. + \item \textbf{Roblox AI Tools / Roblox AI Assistant / Roblox Reality / Metain}~-- creator-facing AI for game development; Reality is Roblox's productised AI assistant; Metain is the prompt-to-Roblox-Studio interface. + \item \textbf{Epic xAI Studio}~-- Elon-Musk-affiliated game-dev AI. + \item \textbf{General Intuition}~-- spatial-reasoning research lab. + \item \textbf{ReBlink ARBO}~-- AI-powered strategy battler. + \item \textbf{Halo Studios}~-- AI woven into the production pipeline. + \item \textbf{Dabgg}~-- AI gaming with interactive platform. + \item \textbf{RosebudAI / Spawn / LudoAI}~-- vibe-coding games and interactive apps from prompts; Spawn is the ``games made with words'' community platform; LudoAI is the ideation and planning scaffold. + \item \textbf{Verse8}~-- AI-driven game-creation platform. + \item \textbf{Sett}~-- AI agents for game marketing. + \item \textbf{Meta Horizon Studio AI Assistant}~-- Horizon Worlds creator AI. + \item \textbf{Gambo}~-- vibe-coding game agent. + \item \textbf{Project Motoko} (Razer)~-- AI-powered gaming headset. + \item \textbf{Bethesda AI Toolset}~-- Todd Howard's game-dev AI integration. + \item \textbf{StarBerry Games / Merge Mayor}~-- AI-all-in game studio. + \item \textbf{Astrocade}~-- interactive entertainment platform; \$56M Series B. + \item \textbf{GameByte}~-- AI-powered game creation platform; \$1M raise. + \item \textbf{Studio Atelico Bobium Brawlers}~-- AI-based iOS game with pro-human approach. + \item \textbf{Bitmagic}~-- AI-created version of classic Civilization. + \item \textbf{Helika AI Publishing Engine}~-- AI publishing engine for game studios. + \item \textbf{Xbox Game Studios ``git gud'' AI}~-- Xbox patent for AI tech that plays games for you. + \item \textbf{Gaming Copilot} (Xbox)~-- console AI copilot. + \item \textbf{NVIDIA DLSS~5}~-- gaming upscaling. + \item \textbf{PS5 Pro PSSR}~-- PlayStation upscaling. + \item \textbf{Gizmo} (Meta acquisition)~-- vibe-coding app for creating mini-games. + \item \textbf{Voyage} (Latitude / AI Dungeon)~-- AI RPG platform. + \item \textbf{DoomGen}~-- prompt-driven DOOM mod prototyping app. + \item \textbf{Sony AI tools for PlayStation}~-- animation support, QA automation, asset generation and performance-capture-to-facial-models pipelines. + \item \textbf{PROWL} (Odyssey)~-- RL agents for game-world model testing. + \item \textbf{MagicDawn} (Tencent)~-- AI lighting tech. + \item \textbf{ReActor} (Disney)~-- RL motion-transfer method. + \item \textbf{Origin Lab}~-- game-world AI training data; \$8M raise. + \item \textbf{Daughter of the Inner Stars}~-- Unreal Engine~5 AI-driven game. + \item \textbf{Genesis AI}~-- robot cooking and piano playing systems (demonstrating embodied agents). + \item \textbf{Quilty}~-- AI platform for script development and assessment. +\end{itemize} + +\subsection*{Marketing and advertising AI} + +\begin{itemize} + \item \textbf{WPP Open Pro}~-- agency-wide AI marketing platform. + \item \textbf{Sightly}~-- AI advertising and brand performance. + \item \textbf{Pomelli} (Google Labs)~-- small-business marketing agent. + \item \textbf{AdCreative.ai}~-- mobile pro ad creation. + \item \textbf{Epiminds}~-- AI marketing team builder. + \item \textbf{Octave AI}~-- AI podcast/radio ad creation. + \item \textbf{AdsGency}~-- autonomous paid-marketing agent. + \item \textbf{Aimy}~-- AI TV advertising on the Comcast API. + \item \textbf{Brand Networks}~-- AI television advertising. + \item \textbf{Fullthrottle.ai}~-- automotive-focused DSP. + \item \textbf{Channel~4 AI ads}~-- AI-driven TV-advertising tool for SMEs. + \item \textbf{Sky Studio Challenge}~-- interactive AI ad creation via Starlink. + \item \textbf{Google Demand Gen}~-- AI-powered image tools for the ad platform. + \item \textbf{Amazon DSP}~-- AI one-stop-shop advertising infrastructure. + \item \textbf{Amazon Creative Agent}~-- agentic ad creator. + \item \textbf{Playad}~-- AI marketing agents. + \item \textbf{Runway Ad Concepter App}~-- ad-concept and composition exploration. + \item \textbf{TikTok AI Agents for Ads}~-- TikTok ad-creation agents. + \item \textbf{Instagram Edits}~-- AI video generation for advertisers. +\end{itemize} + +\subsection*{Open-source ecosystem and infrastructure} + +\begin{itemize} + \item \textbf{ComfyUI}~-- node-based AI workflow editor; the operating system of the open-source creative AI ecosystem; \$17M raise (October 2025), \$500M valuation (May 2026). + \item \textbf{Hugging Face}~-- open-source model hub; partnerships with Google Cloud and Meta. + \item \textbf{Meta OpenEnv}~-- open-source agentic-development environment. + \item \textbf{PlayCanvas SOG / SplatTransform}~-- open Gaussian-splat compression and conversion. + \item \textbf{Civitai / Civision}~-- community-models and LoRA platforms. + \item \textbf{LoRA / PEFT / DiffSynth-Studio / Qwen-Image-i2L / Llama Factory / AI Toolkit / LTX-2 Trainer}~-- fine-tuning frameworks and training pipelines; DiffSynth turns a single image into a custom LoRA; Llama Factory enables zero-code fine-tuning of 100+ models; AI Toolkit covers LTX-2.3 fine-tuning; LTX-2 Trainer is the fal-hosted variant. + \item \textbf{PyTorch / TensorFlow / Ollama / LLaMA.cpp / MuJoCo}~-- the open infrastructure layer. + \item \textbf{Korin AI}~-- Africa-trained, Africa-built foundation model. + \item \textbf{DecartAI}~-- real-time world transformation. + \item \textbf{Replicate}~-- model hosting and API marketplace. + \item \textbf{fal / FAL MCP}~-- generative-model API platform. + \item \textbf{llmfit}~-- hardware scanner for local-model compatibility. + \item \textbf{Open Vision Agents}~-- toolkit for building agents that watch, listen and understand video. + \item \textbf{NotebookLM}~-- Google's research-and-content-generation surface; cinematic video overviews launched March 2026. + \item \textbf{OpenAI Gym / Gym Retro / ARC}~-- research benchmarks (referenced in the games-AI literature). +\end{itemize} + +\subsection*{ComfyUI ecosystem~-- nodes, extensions and workflows} + +\begin{itemize} + \item \textbf{Mesh2Motion} (ComfyUI)~-- mesh-to-motion conversion node. + \item \textbf{NanoBanana Pro LoRA Dataset Generator}~-- creates training datasets for image-editing models in minutes. + \item \textbf{ComfyUI Music Tools}~-- professional-grade music-processing node pack. + \item \textbf{ComfyUI HY-Motion1 plugin}~-- Tencent HY-Motion implementation. + \item \textbf{ComfyUI Audio Reactive Node Pack} (VisualFrisson)~-- spatial audio-reactive nodes. + \item \textbf{ComfyUI-BlendPack}~-- nodes for video transitions. + \item \textbf{KJNodes}~-- use audio as input for LTX-2 inside ComfyUI. + \item \textbf{WhatDreamsCost ComfyUI Nodes}~-- LTX sequencer, keyframer. + \item \textbf{Luminance Keyer Node}~-- luminance-based keying. + \item \textbf{Camera Tracking \& Body Pose tools (ComfyUI)}~-- work-in-progress camera and pose tracking. + \item \textbf{Multiple Angle Camera Control Node}~-- multi-angle camera control. + \item \textbf{FeedbackSampler} (Deforum-inspired)~-- iterative feedback sampling. + \item \textbf{Day-to-Night with Qwen Edit LoRA}~-- day/night transformation workflow. + \item \textbf{Sora~2 API Nodes}~-- Sora~2 access from ComfyUI. + \item \textbf{QWEN-AI Compositing}~-- Qwen-driven compositing workflow. + \item \textbf{Street View URL Parser}~-- Google Street View ingestion. + \item \textbf{Minim}~-- ComfyUI model-linker extension. + \item \textbf{Hunyuan 3D~3.0} (ComfyUI partner nodes)~-- HY3D~3.0 inside ComfyUI. + \item \textbf{Kling~3.0 ComfyUI node}~-- Kling~3.0 partner node. + \item \textbf{Kling Video~2.6 Motion Control} (ComfyUI)~-- Kling motion control inside ComfyUI. + \item \textbf{Kling Motion Control~3.0} (ComfyUI)~-- the v3 motion control variant. + \item \textbf{Seedance} (ComfyUI partner node)~-- Seedance inside ComfyUI. + \item \textbf{LTX-2} (ComfyUI native support)~-- audio-video model natively supported. + \item \textbf{LTX-2 ComfyUI Audio-to-Video}~-- audio-driven video inside ComfyUI. + \item \textbf{ACE-Step~1.5} (ComfyUI)~-- full songs in under 10 seconds on <4\,GB VRAM. + \item \textbf{ElevenLabs ComfyUI Partner Nodes}~-- ElevenLabs inside ComfyUI. + \item \textbf{Luma Uni-1 ComfyUI Partner Node}~-- Uni-1 inside ComfyUI. + \item \textbf{Meshy~6} (ComfyUI native)~-- Meshy~6 inside ComfyUI. + \item \textbf{Grok Imagine} (ComfyUI)~-- xAI image generation inside ComfyUI. + \item \textbf{MatAnyone2} (ComfyUI)~-- high-fidelity video matting inside ComfyUI. + \item \textbf{Tripo~3.1} (ComfyUI partner nodes)~-- Tripo~3.1 inside ComfyUI. + \item \textbf{NVIDIA RTX Video Super Resolution Node}~-- RTX upscaling node. + \item \textbf{Depth Anything Custom Node}~-- Depth Anything inside ComfyUI. + \item \textbf{SAM~3 / SAM~3D ComfyUI integration}~-- Meta SAM~3 / 3D inside ComfyUI. + \item \textbf{Sora~2 Full Loop Workflow}~-- end-to-end Sora~2 pipeline. + \item \textbf{Krea Nodes}~-- Krea inside ComfyUI. + \item \textbf{Gaussian Splats + Qwen Edit workflow}~-- explore 2D images and generate new camera views. + \item \textbf{ComfyUI App Mode / ComfyHub}~-- turn workflows into shareable no-install apps. + \item \textbf{ComfyUI Simple Mode}~-- share and iterate complex workflows more easily. + \item \textbf{ComfyUI Cloud (private models)}~-- private model hosting inside ComfyUI Cloud. + \item \textbf{ComfyUI Action Director}~-- interactive 3D viewport for ControlNet. + \item \textbf{Complete Style Transfer Handbook (ComfyUI)}~-- style-transfer guide. + \item \textbf{VibeComfy}~-- agents that understand, build and run ComfyUI workflows with Claude. + \item \textbf{MooshieUI}~-- beginner-friendly ComfyUI desktop frontend. + \item \textbf{Creative Control Using ComfyUI on NVIDIA RTX}~-- NVIDIA's official ComfyUI/RTX tutorial series. +\end{itemize} + +\subsection*{LoRAs, fine-tuning and training} + +\begin{itemize} + \item \textbf{QwenEdit-2509 Light Transfer LoRA}~-- simple, powerful image relighting via reference. + \item \textbf{Qwen-Edit Relighting LoRA}~-- atmospheric relighting control. + \item \textbf{Qwen-Image-Edit-2511 Multiple Angles LoRA}~-- multi-angle perspective generation. + \item \textbf{Qwen-Image-Edit-2511 AnyPose}~-- pose transfer from a reference image. + \item \textbf{QwenEdit-2511 Anything2Real LoRA}~-- realistic-image transformation. + \item \textbf{Qwen Edit LoRA Object Removal}~-- bounding-box-precision edits. + \item \textbf{Qwen-Image-Edit 2511 Gaussian Splash 3D Camera Motion}~-- 3D Gaussian-splat motion control. + \item \textbf{Qwen 2511 Time Travel Workflow}~-- temporal image effects. + \item \textbf{NextScene (Qwen Image LoRA)}~-- cinematic image sequences with natural progression. + \item \textbf{Best Face Swap (Flux~2 LoRA)}~-- specialised face-swap. + \item \textbf{FLUX.2 [klein] LoRAs (fal)}~-- open-source: Outpaint, Zoom, Object Removal, Background Removal. + \item \textbf{Krea AI LoRA Trainers}~-- train LoRAs for Qwen-2512 and Z-Image inside krea.ai. + \item \textbf{LTX-2.3 Character LoRA Training (AI Toolkit)}~-- character LoRA training tutorial. + \item \textbf{Gaussian Splats Repair LoRA}~-- Klein-9b LoRA for repairing 3D views and geometry. + \item \textbf{LTX~2.3 Colorizer (LoRA)}~-- black-and-white footage colorisation. + \item \textbf{Music Finetunes in ElevenCreative}~-- stylistically consistent vocal and instrument generation. +\end{itemize} + +\subsection*{Provenance, watermarking and detection} + +\begin{itemize} + \item \textbf{C2PA} (Content Authenticity Initiative / Adobe-led)~-- cryptographic provenance metadata standard. + \item \textbf{SynthID / SynthID Verification} (Google DeepMind)~-- synthetic-content watermark; deployed across Veo, Lyria and Imagen; verifiable inside Gemini. + \item \textbf{YouTube AI Detection / YouTube AI Deepfake Detection}~-- automated AI-content detection; \emph{Tiny Grandma} false-positive case study. + \item \textbf{Deezer AI Music Detection}~-- identifies up to 75,000 fully AI-generated uploads per day. + \item \textbf{Spotify AI Transparency Beta}~-- voluntary disclosure feature. + \item \textbf{Beeble}~-- detection and watermarking tools. + \item \textbf{Cloudflare AI Bot Classification}~-- public-web infrastructure tracking AI crawlers. + \item \textbf{Human Provenance AI Disclosure Standard (Cannes)}~-- industry-coordination labelling standard. +\end{itemize} + +\subsection*{Consumer surfaces and distribution platforms} + +\begin{itemize} + \item \textbf{Sora iOS app} (OpenAI)~-- TikTok-style AI video remix; 1M downloads in 5 days. + \item \textbf{CapCut / Dreamina} (ByteDance)~-- consumer video editing + AI generation. + \item \textbf{Gemini app} (Google)~-- Google's consumer AI surface. + \item \textbf{ChatGPT app} (OpenAI)~-- mobile ChatGPT; Shazam integration. + \item \textbf{Perplexity AI}~-- Samsung Smart TV AI assistant integration; consumer AI search. + \item \textbf{Grok / Grok Imagine}~-- xAI consumer surfaces. + \item \textbf{TikTok / Reels / Shorts}~-- AI-content distribution surfaces. + \item \textbf{YouTube Shorts / YouTube Create}~-- destinations for Veo~3.1 Ingredients-to-Video. + \item \textbf{Bandcamp}~-- banned AI music outright, January 2026. + \item \textbf{Deezer}~-- published the 44\%/3\% data; built and licensed AI-music detection. + \item \textbf{Spotify}~-- declined an AI-music filter; voluntary disclosure beta; \emph{Personal Podcasts} agent feature. + \item \textbf{YouTube Music}~-- labelling, the AI Detection Tool, viewership of AI content. + \item \textbf{Steam}~-- AI-content labelling controversy; \emph{Clair Obscur} Game of the Year stripping. + \item \textbf{Sweden's Official Music Chart}~-- banned AI-generated entries. + \item \textbf{San Diego Comic-Con}~-- banned AI art at the 2026 event. + \item \textbf{Roblox}~-- creator-tools AI with continued controversy. + \item \textbf{Fortnite}~-- Chapter~8 AI-art controversy; Disney partnership. + \item \textbf{Netflix}~-- AI in production (de-aging, plates, retention engine, Ben Affleck studio acquisition). + \item \textbf{Disney+}~-- user-generated AI content features. + \item \textbf{Luna} (Amazon)~-- AI-powered Snoop Dogg game. +\end{itemize} + +\subsection*{Studios, programmes, festivals and institutional infrastructure} + +\begin{itemize} + \item \textbf{Sundance AI Literacy Initiative}~-- Google-funded \$2M creator-training programme; Sundance Collab learning, Story Forum, Ignite Day. + \item \textbf{UCL / RCA / Brandtech Centre for Creative AI}~-- UK research hub. + \item \textbf{AIMICI Training Program}~-- ScreenSkills-accredited AI training. + \item \textbf{AI FilmFest Japan}~-- annual AI-film festival. + \item \textbf{Dubai AI Film Award}~-- \$1M prize won by Tunisia's \emph{Lily}. + \item \textbf{Cannes AI Disclosure Standard / Cannes Lions}~-- industry coordination for AI labelling; Luma Dream Brief \$1M prize. + \item \textbf{Future Vision Film Competition}~-- Google / XPRIZE / Range Media collaboration. + \item \textbf{Runway AI Festival}~-- film and creative-discipline awards. + \item \textbf{Wonder Film Festival}~-- AI-native film festival. + \item \textbf{Academy of Motion Picture Arts and Sciences}~-- ``you must be human to win'' rule. + \item \textbf{Television Academy / Emmys}~-- AI guidance for submissions. + \item \textbf{SAG-AFTRA}~-- contract negotiations and the Tilly Tax. + \item \textbf{Equity (UK)}~-- strike ballot; 99\% vote in favour. + \item \textbf{PRS for Music AI Survey 2026}~-- UK music-creator sentiment data. + \item \textbf{GEMA}~-- German rights society; won against OpenAI. + \item \textbf{Splice + UMG}~-- sample library; AI-music tools partnership. + \item \textbf{Stability AI + Universal Music / Stability AI + Warner Music}~-- alliance and deal on the AI-music side. + \item \textbf{Vizrt Viz One~8.1}~-- broadcast AI features. + \item \textbf{Tesseract}~-- AI platform at MIPCOM. + \item \textbf{Sphere + Google Cloud}~-- AI technology behind the \emph{Wizard of Oz} experience. + \item \textbf{Anthropic Joins Blender Development Fund}~-- patronage deal, May 2026. + \item \textbf{Sony AI ICASSP papers}~-- music-understanding and generative-audio research, April 2026. + \item \textbf{Google Flow Music + Believe Partnership}~-- AI music distribution partnership. +\end{itemize} + +\subsection*{Techniques, methods and recurring workflows} + +\begin{itemize} + \item \textbf{Vibe Coding}~-- prompt-led creative prototyping, especially for games and interactive apps; Rosebud, Spawn, Gizmo, Gambo are the canonical surfaces. + \item \textbf{Trajectory Control (ATI)} (Wan / Qwen)~-- control of video trajectories at frame and clip level. + \item \textbf{Reference-to-Video} (Veo~3.1 + Gemini)~-- consistent character generation from a reference image. + \item \textbf{Motion Control nodes / Time-To-Move}~-- frame- and segment-level motion controls in generated video. + \item \textbf{Layer Separation \& Live Editable Text (LET)} (Loveart)~-- extract and edit text and subjects from images as PSD layers. + \item \textbf{Temporal Reasoning} (NVIDIA ChronoEdit)~-- physics-aware edits and world simulation. + \item \textbf{Practical Light Control} (PractiLight)~-- foundational diffusion for relighting. + \item \textbf{3D Gaussian Splatting}~-- the spatial backbone running through PlayCanvas SOG, Hyperscape, Apple Personas and the open-source splat ecosystem. + \item \textbf{World Models}~-- recurring topic spanning Marble, Genie, HY-World, UNI-1, ECHO, Matrix-Game, LingBot-World, Moonlake. + \item \textbf{Multi-Shot Consistency}~-- Kling~3.0, ShotVerse, Higgsfield Shots, Veo~3.1~-- the multi-shot turn that defined the spring-2026 video pipeline. + \item \textbf{Camera Control / Multi-Angle Generation}~-- WAN Camera Control, ShotVerse, ATI, Multiple Angle Camera Control Node. + \item \textbf{Style Transfer (the ComfyUI handbook)}~-- the canonical workflow ladder for style transfer. + \item \textbf{Audio-Reactive Generation}~-- Audio Reactive Node Pack and the Lalal-API / ACE-Step pipelines. + \item \textbf{Real-Time Generation Pipelines}~-- Krea Realtime, MotionStream, Decart Lucy~2.0, Xmax X1, Phoenix-4, LTX-2.3 Real-Time on Scope; the \emph{interactive-generation} category that emerged in Q1 2026. + \item \textbf{Agentic Workflows / Multi-Agent Stacks}~-- Sony Game Studios (49 agents, 72 skills), Adobe CX Enterprise, OpenAI AgentKit, Heygen Video Agent, Claude Skills. + \item \textbf{Provenance-First Capture}~-- C2PA + SynthID + on-device detection in Premiere and YouTube as the emerging \emph{standard} of provenance-aware production. + \item \textbf{Music Stem Separation as a primitive}~-- Lalal AI, StemDeck, BandLab~-- stem separation moving from end-product to upstream primitive. + \item \textbf{MCP (Model Context Protocol) as the connective tissue}~-- Unity MCP, Blender MCP, fal MCP; the protocol the agentic creative ecosystem is converging on. + \item \textbf{Brief-First, Generate-Second}~-- the workflow practice the book argues for in Chapter~\ref{ch:11} (and Chapter~\ref{ch:16}'s \emph{toolchain in layers} section). +\end{itemize} + +This is the catalogue. By the time you read it, it will be incomplete~-- new tools have shipped, some on this list have been bought, renamed or killed. Treat it as a snapshot of one year of toolchain at the moment the toolchain became a stack rather than a list, and use it to orient yourself in whatever the state of play is when you pick the book up. + +For a deeper analytical treatment of the adoption telemetry behind many of these tools~-- Firefly's 22B-asset growth curve, ChatGPT's 800--900M WAU figures, the Veo / Sora professional split, the GDC sentiment-vs-usage divergence~-- see Appendix~E: \emph{Dynamics of Generative AI Adoption}. + +\section*{How to build a toolchain you can defend} + +The last thing I want to say in this chapter is something I have said in talks more often than anything else, because working creatives ask me this question, in some variant, every week. + +\emph{How do I decide what tools to use, in a market that is changing this fast, without burning my whole month re-learning interfaces?} + +My short answer is: build the toolchain in \emph{layers}, and accept that the layers move at different speeds. + +The bottom layer~-- your foundation model, your modality stack, your agent platform~-- will change frequently. Treat it as ephemeral. Pick the best tools available \emph{this quarter} and be ready to swap them next quarter. + +The middle layer~-- your creative software (Adobe / Unreal / DaVinci / Pro Tools / Blender / Logic)~-- will change more slowly, and is the layer in which the AI capability will be progressively absorbed. Treat it as the long-term home of your craft. Learn it deeply. + +The top layer~-- your \emph{judgement}, your \emph{taste}, your \emph{briefing skill}, your \emph{integration sense}~-- does not change. It is the layer the agents cannot copy, the layer the platforms cannot ship and the layer the next model release does not depreciate. Spend more time here than the toolchain wants you to. + +The mistake I see working creatives make most often is to over-optimise the bottom layer and under-invest the top. The platform companies want you to spend your working hours chasing the new model release; the work that pays the bills, the work that finds an audience, and the work that survives a transition is built on the layer the platform companies cannot reach. + +The toolchain, in the end, is the means. The work is the end. The tools change. The work, if it is any good, lasts. + +That is the working operating model my studio has run on for the period this book covers. It is the model I would commend to anyone building, this year or next, a creative practice that survives the rest of the decade. + +The transition is going to keep going. The tools will keep changing. The work that matters, on the other side, will be made by the people who kept their attention on the right layer. diff --git a/latex/chapters/ch17_five_years_inside.tex b/latex/chapters/ch17_five_years_inside.tex new file mode 100644 index 0000000..3995315 --- /dev/null +++ b/latex/chapters/ch17_five_years_inside.tex @@ -0,0 +1,154 @@ +\chapter{Five Years Inside the Dream Machine}\label{ch:17} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{I}{ } called the newsletter \emph{Dream Machine} in late September 2025 because the phrase caught something I couldn't yet articulate. I have said elsewhere in this book~-- in Chapter~\ref{ch:15}, and in the front matter~-- what I think the phrase has come to mean over the period the book covers: an apparatus capable of producing what until recently required a human mind, amplifying and distributing the dreaming of the humans who direct it. + +What I have not done, anywhere else in the book, is let myself off the leash about what the apparatus might \emph{become}. I have been careful, chapter by chapter, to put the evidence in front of the argument. The predictions in Chapter~\ref{ch:15} are dated, falsifiable, defensive~-- written so the reader picking up the book in 2030 can grade them with a stopwatch. + +This chapter is the opposite. This is the chapter where I let myself imagine what the next five years might look like if the trajectory of the previous eight months extends, accelerates, breaks and recombines in the ways I half-suspect it will but cannot, in any conventional analytical register, \emph{prove}. + +I want to be honest about the rules I am giving myself for this chapter, because they are looser than the rules the rest of the book has run on. + +The rule is: each scenario has to be \emph{argued from} something already in the book~-- a chapter, a number, a framework, a quoted source. I am not allowed to introduce a new mechanism out of thin air. But I am allowed to take a mechanism that is, in spring 2026, present in small or early form, and ask what it looks like by 2031 if it follows the curve I think it is on. + +That is the contract for the next thirty pages. Wild but rooted. Speculative but cited. The kind of writing that the rest of the book would not have permitted, and that the closing letter to 2030 in Chapter~\ref{ch:epilogue} would deflate if I tried to put it there. + +If a reader in 2031 has bought this book to grade my predictions, this is the chapter where you can grade me most harshly. Some of what follows will look, by then, embarrassingly off. Some of it will look, in the unflattering retrospect that books-on-transitions always get, banal~-- the obvious thing nobody had quite said yet. The interesting category~-- the predictions that turn out to be \emph{roughly the right shape, badly miscalibrated on timing}~-- is the one I am writing for. + +Six scenarios. Then the upside I am most hopeful for. Then the downside I am most afraid of. Then a handoff to the letter that closes the book. + +\section*{One. The Petrillo settlement actually happens} + +In May 2026, the structural argument of Chapter~\ref{ch:6}~-- that the institutional response to the AI training problem will, on the historical pattern, converge on the \emph{levy-and-redistribute} mechanism James Caesar Petrillo built in 1948 for recorded music~-- is still, on the page, an argument from analogy. The 88\% is the political mandate. The GEMA ruling is the legal precedent. The Stability / UMG-style alliances are the commercial templates. The Musical AI creative-weight-attribution work is the technical infrastructure. None of it has yet been \emph{assembled} into a working settlement. + +By 2031, I think the assembly is done. Not perfectly, not globally, not without exclusions~-- but done, in at least one major jurisdiction, as a working mechanism that a working creative encounters on a bank statement. + +The shape of the thing I expect: a national or supranational \emph{AI Performance Trust Fund}, modelled on the MPTF, capitalised by a statutory per-output levy on commercial generative output, governed by a joint labour--platform body, distributed to working creatives whose training-data contributions were identifiable through the creative-weight-attribution layer described in Chapter~\ref{ch:12}. The first cheques are small. A working illustrator opens a statement and sees the line \emph{AI Royalty Distribution: \pounds 43.18}. A session musician sees \emph{\pounds 127.42}. A photographer whose backlist sat in a Getty-class licensed dataset sees a meaningful four-figure annual sum. + +The cultural significance of those small numbers will, I think, be larger than the numbers themselves. The first cheque is the moment the 88\% becomes a \emph{fact} rather than a \emph{demand}. The mechanism is on the books. The architecture is real. The question stops being \emph{whether there will be a Petrillo settlement} and starts being \emph{how much, to whom, on what calibration}. + +The bargaining ground for the next decade is set on that question. + +\section*{Two. The internet bifurcates, formally} + +Chapter~\ref{ch:4} made the case that the web of 2026 was, in measurable ways, splitting into two distinct attention environments~-- the \emph{Dead Internet} of synthetic content optimised for synthetic attention, and the \emph{Living Web} of provenance-stamped, human-verified work made for an audience that had organised itself around the difference. + +By 2031, I think the bifurcation is no longer a cultural metaphor. I think it is \emph{operational infrastructure}. + +The provenance stack the book has spent so many pages cataloguing~-- C2PA, SynthID, the Cannes Disclosure Standard, the AP and BBC wire-service signing chains, the Adobe content credentials~-- will, by 2031, have stitched together into a functioning verification layer. Major browsers will render an indicator. Major platforms will, under pressure from advertisers tired of paying for bot-on-bot impressions, surface verified-human content separately from synthetic. A handful of \emph{human-only} subscription services~-- I would not bet against the BBC, \emph{The New York Times} and one or two of the streaming-music incumbents launching first~-- will offer ``no synthetic content ever'' as a paid product. + +The split internet is not, in the version I expect, a \emph{clean} split. The synthetic layer will dwarf the verified layer in volume, by perhaps a hundred to one. But the verified layer will capture an outsized share of \emph{paid attention}, \emph{advertiser dollars}, and~-- most importantly~-- \emph{cultural credit}. The slop ceiling of Chapter~\ref{ch:5}, measured at 44/3 on Deezer in April 2026, will by 2031 have hardened into a roughly stable ratio across most major content categories: synthetic supply dominant on the upload side, verified-human attention dominant on the consumption side. + +The Living Web is, by 2031, no longer an aspiration. It is a \emph{distribution layer} you can buy access to, with a different economics from the synthetic layer running underneath it. + +\section*{Three. World models replace flat video as the default high-end medium} + +Chapter~\ref{ch:8} argued that the most important technical shift of 2025--26 was not the video models but the world models~-- Marble, Genie 3, the Hunyuan 3D family~-- and that the rate at which spatial-AI tooling was moving from research demos to consumer product was the underappreciated structural story of the period. + +By 2031, I think we look back on flat 24-frame video the way 2026 looks back at black-and-white silent cinema. Still made. Still loved. Still occasionally the right medium for the work. But not the \emph{default}. + +The default high-end production format, by 2031, is a \emph{navigable spatial render}~-- a world that the camera moves through in post, that the audience can choose to view from any angle through a Vision-class headset, that an editor can re-cut from a different perspective two months after principal photography is done. The boundary between film, games, immersive and live performance that Chapter~\ref{ch:8} described as eroding is, by 2031, functionally gone for new productions. + +The career implications, for working filmmakers, are substantial. The skillset of the director-of-photography fragments into world-curation, lighting-prompt design, and post-spatial composition. The skillset of the editor expands into multi-angle viewer choreography. New roles emerge~-- \emph{spatial continuity supervisor, world dramaturg, perspective director}~-- that have no clean analogue in the 2026 production pipeline. + +This is also where I expect the legacy industries' Chapter~\ref{ch:7} strategic positioning to come back to haunt them. The studios that bet on flat AI-generated video as the next medium will discover, between 2027 and 2029, that they bet on the second-to-last format of the previous era. The studios that built world-model fluency into their pipelines~-- Sony's documented experiments, the AI-native studios like Imaginae and Critterz, a handful of regional players in Korea, Japan and India~-- will be the dominant 2031 producers of \emph{the kind of work that uses the medium the way it actually works}. + +\section*{Four. The orchestrator becomes a credentialled guild} + +The orchestrator role~-- central to Chapter~\ref{ch:11}, referenced through Chapter~\ref{ch:13} and Chapter~\ref{ch:14}~-- was, in 2026, a \emph{description of an emerging practice}. The Sony 49-agent / 72-skill team was the most-cited case study. The working title circulated in studios and agencies but did not yet carry contract weight. + +By 2031, I think the orchestrator is a \emph{credentialled profession} with collective bargaining power. + +The guild structure I expect~-- and this is the most institutionally specific of the six predictions, so the most likely to be wrong on detail~-- will look something like the IATSE locals that govern below-the-line film labour, or the Writers Guild's apprenticeship and credit system. \emph{Senior orchestrators} will carry the credential, demonstrate competence in agent stewardship across a defined toolchain, negotiate over rates and over the \emph{quantity of agent labour} a single orchestrator can supervise. The Writers Guild will, I think, be among the first to formalise the role; SAG-AFTRA, Equity and the games-development unions will follow within eighteen months of whoever moves first. + +The collective-bargaining angle is the part that will, in 2031, look most novel and most obviously inevitable in retrospect. If a single human orchestrator can supervise the work of, say, twenty agents~-- a number that today's productivity research is pointing at, with substantial variance~-- then the question of \emph{who pays whom for the productivity gain} is exactly the Petrillo question from earlier in this chapter, applied to the orchestrator's own labour rather than to the underlying training data. The answer the guild will negotiate is a \emph{productivity share} of the agent-team output, with the orchestrator's individual rate tracking the value of the supervised work, not the volume of the orchestrator's keystrokes. + +This is one of the more concrete reasons I am cautiously optimistic about the working-creative position over the next five years. The job that emerged in 2026~-- the maker-as-orchestrator~-- is a job for which collective bargaining is \emph{unusually well-suited}, because the value being created is unambiguously human in origin and unambiguously measurable in output. Unions exist for exactly this kind of bargaining problem. The Petrillo template, again. + +\section*{Five. An AI-native studio wins the Palme d'Or before Hollywood does} + +This is the prediction that will, depending on the reader, look either obviously safe or wildly provocative in 2031. + +Chapter~\ref{ch:7} catalogued the new AI-native studios~-- Imaginae, Wonder, Asteria, Obsidian, Critterz, Gossip Goblin~-- and made the case that their structural advantage over the legacy studios is not technical. It is \emph{cultural}. They have no calcified rules to unlearn. They have no inherited risk-aversion. They have no franchise-template gravity to pull them back to the engine-optimal move. By the chess-grandmasters analogy in Chapter~\ref{ch:15}, they are, by default, in a better position to play the move the machine would not have generated. + +By 2031, I think one of them~-- or, more likely, a successor company emerging from a director who learned in their orbit~-- wins the Palme d'Or, the Golden Bear, the Silver Lion or one of the other top European festival awards. \emph{For its writing or direction. Not for its technology.} + +The cultural moment when that happens will be larger than the prize itself. It will be the \emph{Petrillo Settlement} of cinema-craft acceptance: the moment the question shifts from \emph{can AI-native cinema be art} to \emph{which AI-native film will be canonical}. The follow-on year, I expect the Academy~-- having spent 2025--28 reinforcing its \emph{you must be human to win} rule for above-the-line crafts~-- to add a parallel category, or modify the existing one, to recognise hybrid human-orchestrator-AI authorship under contested but workable rules. The festival juries will get there before the Academy does. They almost always do. + +The corollary, for the legacy studios, is bleak. The diagnosis in Chapter~\ref{ch:7}~-- that Hollywood, commercial music and AAA games spent fifteen years optimising toward the engine-optimal move and arrived at the AI moment producing exactly the work the engines can now replicate cheapest~-- will be on full display when the first AI-native Palme winner is, recognisably, \emph{not} a tentpole. By 2031, the Hollywood studio system will be in the position the major-label music industry was in around 2008: still dominant by revenue, visibly losing the cultural argument, scrambling for the next operating model. + +\section*{Six. The platform monopoly cracks} + +The reason I am giving this prediction last among the six is that it is the one I hold most loosely. The structural argument is clean. The timeline is the thing I cannot pin. + +By 2031, I do not think the OpenAI / Anthropic / Google triad of frontier-AI dominance will look the way it does in May 2026. The pressures pushing against it, catalogued in different chapters of this book, are: + +\begin{itemize} + \item The open-weight ecosystem~-- Tencent's Hunyuan, Alibaba's Qwen and Wan, DeepSeek, Meta's Llama, Mistral, Stability~-- collectively used by, per Chapter~\ref{ch:16}, some 80\% of startups pitching the major venture funds by spring 2026. Open weights compound. Closed weights, by structure, do not. + \item The consent-trained category from the new section in Chapter~\ref{ch:6}~-- Adobe Firefly, Bria, Getty's licensed model, Moonvalley Marey, AIODE, the Stability / UMG-style alliances~-- which, by 2031, has either \emph{forced} the frontier labs to license their training data retroactively, or has \emph{displaced} them in the enterprise procurement environment by carrying indemnities the frontier labs cannot match. + \item The sovereign-model trend, only just starting in 2026, in which national governments~-- I would put France, Korea, India, the UAE, Brazil, Japan on the early list~-- fund consent-trained, citizen-licensed foundation models as a strategic asset, governed under sovereign rules, distributing royalties through national rights-holder bodies. + \item The bifurcating internet from earlier in this chapter, which by 2031 makes \emph{which model trained on what} a visible product-marketing claim, in the way \emph{fair-trade-certified} or \emph{organic} became visible product-marketing claims in food. +\end{itemize} + +By 2031, the AI model market I expect looks much more like the 2024 cloud market than the 2025 AI market. Multiple major model families. Sovereign options. Open-weight defaults at the long tail. Indemnification and provenance as standard procurement requirements. The frontier-lab valuations of 2025 either justified by deep enterprise penetration in narrow categories, or remembered the way AOL's 1999 valuation is remembered. + +The corollary I want to put on the page, because it has not yet been said cleanly anywhere else in this book: the platform companies dominant in May 2026 are, on the historical pattern, \emph{unlikely to be the platform companies dominant in 2031}. The history of computing is that the dominant platform of one era is rarely the dominant platform of the next. The Wintel of the 1990s, the iOS / Android of the 2010s, the AWS / Azure of the 2020s~-- each was a dominant pairing whose successor came from a direction the incumbents did not see. Whatever the dominant generative-AI platform of 2031 is, I think there is a non-trivial chance it is a company most readers of this book~-- including me~-- have not yet heard of. + +\section*{The upside I am most hopeful for: the Dream Machine becomes literal} + +I want to spend the rest of this chapter on two scenarios that do not fit cleanly into the \emph{predict and date} register, because they are the ones I think about most when I am away from the work and most off-script when I am in it. + +The first is what happens if the title of this book turns out to be a literal description. + +The phrase \emph{Dream Machine}, as I have used it through the newsletter and the book, has been a metaphor for the apparatus of generative AI. A composite name for the platforms, models, infrastructure and human labour that, between them, produce the new creative work. + +I want to entertain the possibility that, by 2031, the phrase describes a \emph{literal piece of consumer hardware}~-- a wearable creative-cognition prosthetic, sitting somewhere on the continuum between a Vision Pro and a brain-computer interface, that watches a working creative make work, learns their taste, infers their intent, and contributes~-- in real time, in collaboration, at the speed of thought~-- to the work in progress. + +The technical building blocks are visible. Apple's Vision Pro and the next-generation headset class are mature consumer products by 2031. The brain-computer interface category, dominated in 2026 by medical applications, is on a trajectory the consumer hardware press has been undercounting. The agentic orchestration layer that I described in Chapter~\ref{ch:11} is, by 2031, no longer something a human types instructions into. It is something a human \emph{converses with}, \emph{gestures to}, \emph{thinks at}. The interaction model of \emph{prompting} is, by 2031, an obsolete UX pattern, remembered the way command-line interfaces are remembered now. + +The literal Dream Machine, in this scenario, is not a separate device. It is the orchestration layer made \emph{embodied}. A creative cognition prosthetic that allows a working creative to externalise, manipulate, sketch, iterate and finish creative work at a fluency that is, today, available only to the smallest set of professionals who have spent thirty years building the relevant neural pathways. The leverage the device provides is not \emph{replacement} of the human imagination. It is the closing of the gap between the human imagination and what the human hand can, today, get out into the world. + +If this device~-- or one like it~-- ships at consumer price in the period this chapter covers, the \emph{access} principle from Chapter~\ref{ch:15} gets a lift I cannot easily exaggerate. The bedroom-Hollywood dynamic from Chapter~\ref{ch:14}~-- the teenager with a midrange GPU producing studio-quality output~-- extends to \emph{every} discipline, including the ones that today still require expensive equipment and decades of haptic training. The new geography I argued for in Chapter~\ref{ch:15}~-- the dispersion of canonical creative work to places the previous century forgot~-- becomes structurally inevitable rather than aspirational. + +The Dream Machine, in this scenario, is not the platforms. It is the \emph{prosthetic}. The platforms are infrastructure underneath it. The dreaming is, finally, located where the title was always insisting it was located: in the human at the centre of the apparatus. + +I want this scenario to be the one that comes true. I think there is a real chance~-- not a high probability, but a meaningfully non-zero one~-- that it does. + +\section*{The downside I am most afraid of: the audience becomes synthetic} + +The corresponding worst case I want to put on the page is the failure mode the slop ceiling cannot, by construction, defend against. + +The slop ceiling, as I described it in Chapter~\ref{ch:5}, works because \emph{the audience can tell}~-- at the speed of a swipe, in the aggregate, with reliability~-- that synthetic content does not carry the human signal real human attention is calibrated to. The ratio holds, the 44/3 holds, the audience underweights the slop, because there is an audience, and the audience is made of humans, and the humans are still, in May 2026, paying attention to one another. + +The downside scenario is that, by 2031, that last condition has decayed. + +The mechanism is the one the Dutch researchers cited in Chapter~\ref{ch:5} and the bot-traffic investigations cited in Chapter~\ref{ch:4} were already, by spring 2026, beginning to document. As synthetic content production becomes free and synthetic attention-allocation agents become widely deployed, the \emph{measured} audience for any given piece of content drifts further from the \emph{human} audience. Platforms optimise against the measured audience, because that is what their analytics surface. The content the platforms surface, in turn, becomes the content the synthetic audience underweights least. The synthetic audience grows. The human audience, exhausted, exits. The platforms continue to grow on the measured numbers because the measured numbers are increasingly bot-on-bot. The cultural production layer continues to produce, but produces \emph{for bots watching bots}. The work loses meaning slowly, then quickly, because the audience that produced meaning has stopped being part of the loop. + +This is the version of 2031 I am most afraid of. Not because AI replaces creators. Creators are not the load-bearing structure. \emph{The audience is the load-bearing structure}, and the audience is the thing the architecture of the synthetic internet, deployed without the verification layer described in scenario two of this chapter, is structurally positioned to dissolve. + +The corresponding fight, the one I think the next five years has to win to avoid the downside, is the \emph{audience verification} fight. The C2PA-equivalent for \emph{who is watching}, not just for \emph{who made}. The mechanism that lets a creator know~-- and lets an advertiser pay for, and lets a platform surface~-- the work that \emph{real humans were really paying attention to}. The early signals in this direction are there, in the form of platform attestation experiments and the bot-traffic regulatory pressure documented in Chapter~\ref{ch:4}. None of them are, in May 2026, anywhere near the scale of the upstream provenance work. + +If the next five years build the verification layer for production but not for consumption, the slop ceiling holds in the short term and collapses in the medium term. The creators win the upstream battle. The audience disappears anyway. The downstream meaning of the work, by 2031, is gone~-- not because human creativity has been replaced, but because the social fact that creativity is made \emph{for} somebody has been quietly dissolved underneath the work. + +This is the failure mode I think we are most exposed to and least talking about. + +\section*{What we make of it} + +I want to close this chapter the same way I open the next. + +The phrase \emph{Dream Machine} was, when I named the newsletter, a placeholder for a feeling. By the end of Chapter~\ref{ch:15} it had become an argument: that the apparatus we are building amplifies, multiplies and distributes the dreaming of the humans who direct it, and that the question every working chapter of this book has been about is \emph{whose dreams the machine amplifies}. + +What this chapter has tried to do is take that argument out to five years and let it run. + +Six things I think happen. The Petrillo settlement, made real, on a working creative's bank statement. The internet, formally split. World models, displacing flat video as the default. The orchestrator, credentialled and bargained-for. The first AI-native Palme d'Or. The platform monopoly, cracked. One upside I am hopeful for~-- the Dream Machine made literal, a creative cognition prosthetic that closes the gap between human imagination and finished work. One downside I am afraid of~-- the audience layer collapsing under synthetic capture, leaving the work without anyone to make it \emph{for}. + +Three of the six will, almost certainly, be wrong. One of them will be wrong in the direction of \emph{I undersold this}. One of them will be wrong in the direction of \emph{the timeline was slower than I thought}. One of them will be wrong in the direction of \emph{the thing I described did not happen because the thing that happened instead was weirder and more interesting}. I do not know yet which is which. + +The point of the exercise is not to be right about the six. The point is to put a \emph{shape} on the page, in 2026, for the conversation that the working creatives, the studios, the unions, the policy people and the audience will be having with each other, week by week, between now and 2031. The four principles from Chapter~\ref{ch:15}~-- \emph{agency, attribution, access, audience}~-- are the test you apply to each daily decision. The scenarios in this chapter are the \emph{direction} the aggregate of those decisions is, on my read of the available evidence, most likely pointing in. + +The title of this book, I have come to think, was always slightly mis-named. The Dream Machine is not the apparatus the platforms built. It is not even the prosthetic the consumer-hardware companies might ship by 2031. The Dream Machine is the \emph{whole system}~-- the platforms, the prosthetics, the working creatives, the audience, the unions, the institutions, the regulators, the literacy initiatives, the newsletters, the festivals, the awards, the lawsuits and the daily decisions of millions of people about whose work to make and which work to pay attention to. The thing the title points at is the \emph{coupled human-machine cultural production system} that the period this book covers brought into existence. + +What we make of that system, between May 2026 and the moment a reader picks this book up in 2031 to grade me, is the work. + +The letter in the next chapter is what I want to leave that reader with. + +Welcome to the Dream Machine. diff --git a/latex/chapters/ch18_epilogue.tex b/latex/chapters/ch18_epilogue.tex new file mode 100644 index 0000000..f6c629f --- /dev/null +++ b/latex/chapters/ch18_epilogue.tex @@ -0,0 +1,89 @@ +\chapter{Epilogue}\label{ch:epilogue} + +\begin{center}\large\emph{A Letter from the Dream Machine}\end{center} + +\lettrine[lines=3,lhang=0.15,findent=0.1em]{T}{o} \emph{the creative person reading this in 2030, picking the book up out of curiosity or for a class or because someone older than you said you should:} + +I want to write you a short letter, because by the time you are reading this, more than half of what is in this book will already be wrong. + +Some of the tools I have spent chapters discussing will be obsolete. Some of the companies will have been bought, broken up or sunk. Some of the law I described as new and contested will have settled into precedent that everyone takes for granted. Some of the people I quoted as authorities will have changed their positions, and some of the predictions I made~-- the ones I let myself make~-- will have aged in ways I would now find embarrassing to read back. + +This is fine. It is, I think, the right outcome for a book written in the moment that this one was written in. The job of a book about a transition is not to predict where the transition lands. The job is to \emph{describe the moment honestly}~-- what was being argued about, by whom, with what evidence, and what was at stake~-- so that the reader picking it up later has, at minimum, an accurate record of \emph{what the people in the room thought they were doing.} + +There are a few things I want to flag for you, looking back from your time at mine. + +\section*{What we got right} + +We got the slop ceiling right. I am almost certain of this, even sitting here in May 2026, because the underlying mechanism~-- that audiences allocate attention to \emph{meaning}, not to \emph{quantity}~-- is one of the most reliable findings in the history of cultural production, and there is no plausible scenario in which it stops working. + +If you are reading this in 2030 and there is a thriving creative economy, it is because the slop ceiling held. The audience that turned away from synthetic content in 2026 either kept turning away, or the platforms and the creators figured out how to make AI-augmented work that genuinely earned attention~-- sincere, transparent, made with care. Both outcomes preserve the underlying contract between maker and audience. Either way, the ratio between volume and attention is still doing its work. + +If, on the other hand, you are reading this in 2030 and the creative economy looks bleaker than the one I have described, it is~-- almost certainly~-- because the architecture of the internet was allowed to drift further in the direction the Dutch researchers identified in 2025: an attention market optimised against meaning, where the ratio between volume and attention stopped functioning because the \emph{audience itself} had become indistinguishable from the bots. + +The slop ceiling was real. The question for your decade is whether you protected the \emph{audience} that produced it. + +\section*{What we got wrong} + +We got the timeline wrong, in both directions. + +In some places, we expected the change to be slower than it turned out to be. The pace at which world models moved from research demos to consumer features in the eight months I documented in this book was something almost nobody~-- including me~-- would have predicted in late 2024. + +In other places, we expected the change to be faster. The full AI-native film studio that was supposed to replace Hollywood by 2027 is still, in the spring of 2026, mostly a series of well-funded prototypes. The fully autonomous game-development pipeline is, even at Sony, still an \emph{assisted} pipeline rather than an \emph{autonomous} one. The headline futures the platform companies have been selling are, in the main, still further off than the press cycle suggested. + +If you are reading this in 2030, I suspect that the timeline gap will look in retrospect like the most obvious thing about the moment we were in. The interesting changes were the ones nobody put on a slide. The boring changes~-- the slow institutional repositioning, the contract-by-contract renegotiation of how creators are paid, the patient construction of the C2PA standards, the union by union recalibration of what counts as a fair use of a performer's likeness~-- were the ones that actually shaped your decade. + +This is, I think, almost always true of technology transitions. The press loves the visible. The structural change happens in the unvisible. The fact that you can pick this book up in 2030 and read it without unusual cost or effort is the result of a thousand small infrastructure decisions, made by people whose names did not appear in this book, that none of us thought to celebrate at the time. + +\section*{What I want you to know about us} + +We were, in 2026, frightened. Most of the working creatives I knew that year were carrying a layer of low-grade fear~-- about their livelihoods, about their crafts, about the institutions that had organised their working lives~-- that I do not think showed up in the trade press or the platform keynotes or even in this book as much as it should have. + +We were also, I think, more hopeful than we said out loud. Most of the working creatives I knew that year were also doing some of the most experimental, most curious, most adventurous work of their careers, because the tools made things possible that had been impossible the year before and they wanted to find out what. + +Both states were true at the same time. They will be true again in your decade, about whatever the next transition is. I don't think we managed the fear well. I think we did okay with the hope. I am proud of the people who turned up, week after week, to argue about how all of this should go. + +\section*{A specific request} + +If the institutions of the generative creative economy~-- the unions, the rights bodies, the consultations, the literacy initiatives, the disclosure standards, the festivals, the regional studios, the indie filmmakers in places that the previous century forgot~-- are still doing their work when you read this, \emph{thank the people who built them.} Most of those people have not become rich, or famous, or particularly comfortable. They were working creatives, union officers, policy officers, festival organisers, technologists, lawyers, professors and freelancers who chose, in their unglamorous moments, to do the slow institutional work that this kind of economy needs. + +The platform companies will not remember them. The audience will not know their names. The cultural histories will record the names of the directors and the songwriters and the celebrity AI controversies. The institutional work happens in the basement and the archive and the union office and the policy briefing. + +If you are inheriting a creative economy that works, you are inheriting it from those people. Thank them while they are still around to be thanked. + +\section*{A specific request to working creatives in 2030} + +Keep going. + +The pace of change will be at least as fast in your decade as it was in mine. The next paradigm of AI tooling~-- whatever it is~-- will, I am sure, make the world models and agents of 2026 look as quaint as Photoshop in 1996. You will have your own version of \emph{the day Sora landed.} You will have your own \emph{Tilly Norwood week.} You will have your own \emph{88\%.} You will have your own choice between the extractive and the generative economy. + +Whatever the new tools are, the principles I tried to articulate in Chapter~\ref{ch:15}~-- \emph{agency, attribution, access, audience}~-- will, I am confident, still apply. They are not specific to the 2026 transition. They are general properties of how a humane creative economy organises itself, and they will work in any technology environment that produces creative outputs at scale. + +The deeper conviction underneath the principles will, I think, also still apply. The age of the \emph{How}~-- the long century in which the central question of working creative life was \emph{can you do the thing?}~-- was, by 2026, visibly ending. The age of the \emph{Why}~-- taste, intent, authenticity, the willingness to take a risk on the move the data does not endorse~-- was visibly starting. The image I borrowed from elite chess in Chapter~\ref{ch:15}, of grandmasters winning by deliberately playing the move the engine would not have played, will still be the picture I would commend to you. By the time you read this, the engines will be better. The pressure to play the engine's optimal line will be stronger. The competitive advantage of the \emph{deliberately un-machine-like} move~-- of the move that is yours because no machine, trained on what came before, could have generated it~-- will, if anything, have widened. + +Apply them. Argue for them. Build for them. Defend them when they are under pressure. + +And~-- this is the part I want you to take seriously even when it feels grandiose~-- \emph{write the newsletter}. Whatever your version of the newsletter is. The thing that, when the moment comes, you sit down on a Monday morning and decide to write because nobody else seems to be doing it. Most of those newsletters won't matter. A few of them will. The one you are reading was, for me, one of the most consequential decisions I ever accidentally made. + +You will know which moment is the moment, when it arrives. You will know because the people you respect will be staring at the same news cycle, looking at each other in the same way, asking the same question. + +When that moment arrives in your decade, write the newsletter. + +\section*{Closing} + +I want to end this letter the same way I have ended every issue of \emph{Dream Machine} for the past six months, because the line has come to mean more to me than I expected it to: + +\begin{quote} +\emph{If you've got any recommendations or things we need to know about for our next edition, please feel free to reach out.} +\end{quote} + +That sentence was, for all the time the newsletter has run, my way of acknowledging that I did not have the picture on my own. That the readers were the network. That the work was a \emph{conversation}, not a broadcast. The newsletter has only ever been as good as the community of creatives, technologists, union reps, academics, festival programmers, indie filmmakers, working musicians and audience members who have, week after week, sent me the things I would otherwise have missed. + +If you are reading this in 2030, the newsletter is still~-- in whatever form it has taken by then~-- that same conversation. Keep adding to it. The Dream Machine, in the end, is not the AI. It is the network of humans who, between them, are deciding what the machine is \emph{for.} + +Welcome to the Dream Machine. + +\bigskip +\begin{flushright} +\emph{--- Pete Woodbridge,}\\ +\emph{DreamLab, the North West, May 2026} +\end{flushright} diff --git a/latex/figures/Makefile b/latex/figures/Makefile new file mode 100644 index 0000000..c45837b --- /dev/null +++ b/latex/figures/Makefile @@ -0,0 +1,9 @@ +.PHONY: upcycle clean-hires + +PYTHON := /nix/store/lrqqa60iglhqz9n0virx01s6jr1lbx0p-python3-3.12.13-env/bin/python3 + +upcycle: + $(PYTHON) upcycle_diagrams.py + +clean-hires: + rm -f *_hires.png *_fig.tex demo_pipeline.mmd demo_pipeline.png diff --git a/latex/figures/back_cover.png b/latex/figures/back_cover.png new file mode 100644 index 0000000000000000000000000000000000000000..e274c669f885e72e80ebf11043bc4fbb2c5674ae GIT binary patch literal 271066 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ɀxt`ld~-n&dWr#Ds7@yge89Uf5KCI#0jO3 zCW%5%x7heO`?HR1hq;0z$Ufcd<|GcYZ(6N1ariPZp0T)AJM=#yIr}G)0zG)Gq+$-y zdKHu{XjMUy1Bl$EiNkolcmySMM}&OhDR*zxb+x>HANMJ-L#a7*RRqnynj; zReDUf9d)Cnm^~Ygv$~G>B6G(!Sv9%aD>lOxk?K0sYnGz2kyOy9%Uf1MP=v3fd(Bn| zG41fnP7f1`de4c*O!;>$LOv5X&R8$dRkHl&6#9LrsRZ32zvSO5J1|@7TTN18l;etM zYE|NX2Apb&T}$DN(GBds`Wb_LdNN1c(ybu+fCksXk5wwaysT7cJ-wYm1SoMEFdSAi zQ^VDIWtykG$m&9-#AoirpRS6w<*6_*D1ez-yV>dD0D-=7HxY%F=cpB?XhuNG9fG}A zAb%7Ul}o?zm6GRAWgixKuV?cYco8x_&7f%CB&M7D}nx><9EIg2pj zymr4JfJ$93%P{fYs8Na_0BCatS!@$brEGk-I7 zh_Jh3)_+a|x!XK$7cwaWMX#no0EFHLIHQl6yNNnL2n0H7 z*M$y2RxNF<@`bY4LBG0Omcm85u{WDv&_a~DXCjA->F^6UL>~jzN0R75*2WyPE^d76 z@AFi6xDA>W!fN?E98Th%N+zC^zW_ADDcPW?Ujw3E9P|mviUnP7E3C!W@cv9z(#nWK z@#^Q{b*CPJd1-VvTl&reO`QTEVOy}J$8TXH;=(6&;fAq(m!ik&3p;ma1ySKp^5pWS z>DkNso#(@@0{1yaY!6wn*>=ezthLPd@=(8Js9L++yPc*}cg@i>NE5I8oYtg3sV0R; zZYI79C!L1Q3~+zcUE7k6Zbz1eFsUvCO{frd$pm`74EHaTUnhH8yx?mJ&|We20!RVC z1otEB{(wpR7Wa=zQON^pL@DKI{N)j~tFX&RRRLeV$SGL9fl_b2ORl=EuM? zxANpyrE?`R(0N@XsHac`%3YBz=-DeW!f$O%rrh*f895w_u=Mg)1J0$0qDVOeAuXb> z!4i){@k3|^RSqFf zw1GyB^kM)!(Vu1L7zB{U-+bH+hO^nMxTE5+*0S8&CC)|aR0v|*>#?jvf}|3!OIgpN zM_4|RyxtYI)-GMSSH5@M+J+SVk475_CSCx(-Oq!st%Z zM}YN_r>)=q z4VnF{02u*`Vuk6&IxwWlkh>yUcbg>!Jhhmn{~5qP<^S*x^of-2)GkC7$?@8m8m6A0 zoN^?i6oIshk4g4{VT+o5Sd24dto@g=Y)7~EF|tj0f|EEbcI)r2k`-sXy!?#%=jk(_ zzXP<(a+A)j^jh7XUDbnVBQ2ceG0+bo6tLs*Q_p|5H&TK1kI?bXJ9ys4s{$mmB1M2R zEl~)N*(*h6Um67X|8^8E$ywZbYYfvKs1f>rosXp~#T|b8L03*vEcL5x=la%b(y{;H zC#KhX;}!t2Q}vRiqy|SiSTt+7jWaaA8v|5zB{d@Q9kxr^xPLp#qH`T9 zt^5fyLk*QY{31WTIIYgU()=*6t8Qf^lABk+V>8Zn91i~crMcSA@>OV4E}`&sGBf(i z*{6OY-9s%VH&h<=5Sc{y> zkqL5A1Z!f-0eW9$%w1*sHd*zMjA?PI3kHS@4#dh~&XBcWhU5?M%0#P+9yHJ2y!XvI zmhH~Mb!-#hXiHt5rIgMmn7s67xVE3auzt}>v#XD1&s=UhT`8;u4}r+gIn3qh^pzc4 ztSadW8qpvk(@l%6YPnc%@MA*B%VTz1y`10l8otQStii9E{4P}B$}8uKoQ+puIOHR~ z^`0Kr{SSMVt)%((GqJn*9DOq^R?(fR)*vI}PrQ_{AvB2t<2---vyn{nP=+R1LT-dN zTg6Odwlf&^b4nAo+U8q1R6pm2+oBLl33(v0B4A@ie(Cqc@Ks4FV-v(QaC-4Mb86Nr z$md%^dy);tLX5Jk=?4Yut^g_WxdH&woT1GSrPW5oWJ_@U8H0r~ubWB1=YM6bIp4~v zO>CX_L%sig8O(2^!Hc#JK>--2a$3&0jUjY^s|$ANa-Nd5C*Z{LiLMTs-0x8i+Rco5VnX&!lorf zIdCf*cNR%>K1N400_#~;s!d#)cuuY$!m9~MGaGZu=~^EgId(EIV=$E0ZtUIJ-EBO2ZFo1ySv*N&$IS=-|OsOaKUd6SR_9)&T9*1nHL_iL96hG@2CV}$5ud?9IOXkjKRyAvN3CJk~6lD{~M zd+p+F3U;p|j_<D}5&Tb1XPqR&NqUL5C*ft~Thir?MdV<$u6-pb3j>VxzH@w!tq&eq&gnzG~7=j16HNKbxt`q0GlmOv74v#{+3gTxW}ar%BqyqrpP?4xjZo_r((7RXmzns5Gp@KDchB3_4O6YNe=!3?_hgZ>V|??Z5j5^N1#Ard|93h?(_p%TDCy>_$ec4Omx zVTD?GRKMuZKC4uoJ|-{|cDR?jh$gtJZ!NWWjuXZOur|i-#^$AEW!_46Wg7tMv6XKq zqd&)fgV9K4PIEqOB%$wDKAu{q9Ck}~DOoKdP%{J6rhh7+-pXG2AP75~+a9MTmRCXQ zkNd)|Hp^KaXCYIp?ZUaMCLVH?P9cIb-n99W)LS~S%q>Okx1!_frFyLvR#w3qkLKp5 zpS_Dv*-C;iB}}qOCm}&KQdR6a|NT>%du8Il8yL>R0BT9By+4THS#H`;)V*bdVU$3P zkTwU~EM>2*9tP_)1pBj+1&sJ9_JI_AVF8)lLeQ;D6PvQY(YVK$=T;&D+fRPWVB4Y! z7AtDy&2Q>lq7&vJw!ewFVE5x1##x6muPOAMBgYbeyJ>_!fvnMBM|>RBpf<_RnVA-zoTJZL{FSA5rYxVr$tnIIa^>d3 zxeE#)ZmGX!=!YIrq)Ptf?#n5tnc%XXg=5%3cMWXJy4wG(d+tN=K5-^gmBjYNltafo zQyL=3IeLG&f}!3iVbia~&(30&d}J|R^oD`)qmmT)OBupYextdETy&MEIIdO273@v_ zS0YfOK*)@8h*jT#(DX`3PJN>BHaZh=^vb5K$t5yriiF?Eyvl*d%_8m=Ejl>ZqAcJs zxAHA<-tEWSeC~w-BVdJ z)nu|1M9V5b&s_9z&%iA{VY6)aK&P?aRm*ZgZ#VFs6pe0#87%#AX27CI`)Qt3%8GuO zE68*U;??*dr&ukc&gmF^BbBlD7wM{HhBm^F^ac;d}myZ-*P!jx9&QQS~_k*sKDVmDfL!3(3?kSL%X$+{webKq1NbwFr_CbDQWmIUoB^ za2nMwJ-3AC(pQ={nWMUtVmo>#@Jpj6fAyaQ5~C&HEP`vc>fhzconPugaKO@6*-fR4 z3OYn_dr1P=GQtV#Un;4!<{pK$XQ&xFFJdyHjEqBFzjAK>Vd+@SVkti#$_?``w^R)g zQ0->REvXum2jL1*E-l=S z^w*3lcTTfTRD7>sbg8rw#(u zm3|!&c;dcE9~ToGtRHV1KWaZoPb1X@FRJ2Yzp5#UXe#j#ZtZLt@PZUoEun@Dlyj^% zIvl4?@ANtL`QUgNuA8kdq`MgZoA%i87QE8-@y2DBvpwif`qu5g;h=`d!bwI_*50Mz ztd^Q~r#4e07TCJF`n(jrnyiaZv5jgUnc~{%u)DU!P+; z>B>u#vw5yJj6TdOYh&Sh(6=Q-W`m96{i;aw9gDJ9g8;|W?XLh7PtcaIVY}H2zKRFM zaC&5jjy}cdw^>{XCz;VDYcn81^er`C zG`pwwH*D})W-iDj^$}27kFa^|&RwmWikVTNFq>zSYUu4c-X!_Bwv_n)Bq@szGdUK99?t>f!T#=6rCY8WJjZgUMx$ES!yM%`7qjCBxWBxs@n~Q3|eu8QpmD zDTthF;cwpQvMSEir@91Y*g9Tl?{8w#eYT?$c)U3EkhX^Dk zDq(9Bc+OHGNF;Z|U1UC(p-O~{jF9xw)1-oy?#Pymb-xrWtv0libp#3(;A zx0UBhWew%Pxa17h5*`Hw$c6^Nx7rI0#4;X>2j&c-3VW`P9pstRkk2HHpTbqdgP_rb z4ZpHgrO*nqr`@|-P=7|Zs}-94j6|e9_W|WSU+`ymGH*YQ=2TK+gY~0yLmO>@lc5yU zq$2LWAAzP$j@65obIO|Ut^T#dlL~si(`?L$oZ;{<)W4>!c}6+KiUrNH11LW)U>$b( z4KQd`RkMw`M|=WTF9tl~@(@a2Z=G2I*hvro3b_NhPoJBWG-8ctP%Lps^h&r(l2%b` zxiK-eq|{I&w#Th-YLsAaeJX9lP$PRV>}z!}?#rcL*7Ccd_6g`=OBlSU#8!t_Ym*+J zF1#icZMXA()o#_I%Ze9G7KI92gYQS-gHhtBQYU5HOj?St4neH}!*(9*v|%rQE?=8* z^i!mFCq1|#e9Fb1EESC|>-SEXkN^*t*AP!s;Ea%*%M|mTXz$Vw-1}K!u2cafR$>st zOU_&q&)aleZnd?F%r7qTr_^ZkhWPCJ#+fs5^Omrg1u2}&<$ED1y2B1=_fylBwu%)t zr#Tk7xrdWE{FdDL{bJLPT`<@h{GRm29;>o$EjpKX%QJd4nE$a{s&K2+<Px3yaykQ|xNW){SBKT4NlHMOX z9u~fksUNUfqI~6tslP1g#O#niF9g}l?jTwqDK3D{fPbUkl{;ouoYHC;L4@fh~AvZS!N-c zdG()S$AdBLGgR(Esj82XA z*qW8Cx>F%Mh4XE3qpOrrd$j`09353Itu{*#@^-lXgv!G*k5>DA!kv|2d1@SGw-d$8 zX3%Q?mq6s{ywU{&A3S3p0T@cHU#-@FVDwb~SPMvRwY~QekQh%f21D`cXgOl~E3)qY zGr#=*&adxLZn%I1D^tNTFRasle1ju6<`O;diB<1G*9_NArcNKFucq9EbXsmfS2u&l z)u!&6W11W&`8>eHe+8I5-FvbA0!(#mPmVvf88EBqEW}lK9G3o$wjmPjjD`)g=ASSq z9gWg=-rv6BMU(WFBo3&~-W3<-!%3)Qrg{y4>PG8)uD|wBxaTUVCb0<>pY@r%Iw>k? zh^LN_?OU_!E0-UIYLob~COH*QXSF!`W!y}c=mTQI(R-@)t;x3-vbTHL9<>TCTU zezW`@U6X%eSHK)2rQZRC13IMc?j8$=El`xW{)Dz7&5*cvkKN?f1(#>Aw`ufIF)LhfAh;eV$Ahn6O- zzKQw16f)wp=?sl_bIbcAbFY5hC&7gu+8_;lv>xEifPnAqTy{95v>E%c7xURJz$DCh*Aa=S|!im(mZPhbn!>Y06R!UJQO z`HP>fXd$vXLT1<;Kq}a3=`CkOBs;J==zW3Mn0LdB_J(%PTF~4XR)9ktyX76oD}TWO z=97Kud2rYG7#Q#KJ_=~ei4q|Y*~4SN=RSzEsn+6pkA&tL*im(9{Wxo{{Ae2vqHA(- zzLn^*eY*KIp*0Jbv=a;&HNZ|R!dPm<0vNcT0GRP-#w5G?Inp2`0$8^?UrqP+Yw)U$ z424=SR{_9fL3^qJraM#PMv4s}JYWIH&NI>2w7lgl9|0Lag#c&IROPr^Q$AO~n3-(| zcZrJllURQZE0}1R3(S&{wdyl~=OY4V`7BE~m@lQ;tvzE0e9#;mF{^sM@|7|8%lRgc zG(pj&A%SvLswp^FG3Rd;KLBeL10Z#Zk@Br_rZaj8;#mOHN^`K}_pjeA-vP^Ss6i&w zP?6$s6fu%DVuIG#9IftK6cM1P9C$ z2Qv3koNMEXyHIp#con-=)iZ!TysUpSO`)$$y9U+<;5XluMtj@_$Ya~#!S+C@U@rSG zTXw{?Sn2~-LvI!y2%Q<+h<^tLMD-73=l5R+;99u@Ly;W}h~^kj%!qv8 zz`#tox&b7W&8mnpAWaxZWKLjL*Zv7i;H2x%9%pMPxWI7 zO7B(YcReO%EwssFJf_dy-&kGwQ@Z7b(uct0l^~r?XmhDuxVM1it^0V1jnG3!xU}X| zYdxKk#yj{pmUrHL;?KYP^CwB$w;w?;;&yeVxP>(jW`5gdyWQq_|dC9z#_~G&|xtE-gE#n0#)o?q7mQim2V23ODW=-#u5R z+Pur#l#{IB^aobTYs&zagj8u%lT~|w3LI>cz;?Kpm$qxwe2$MOU|1sw=qz>munk}c zmGJ`rJLlRP%Aq_&oiZR^s@sO0Dmq`l`17!SqiM~#V0FQ?h}#!QceAbNpE%QrYry0! z^gT(X_MDo)>^(82(+Nf=MTi3fp%7qPS1^{GF3c@U_TJBNZDO1~ZHknDNu+w1v!V?a z@^afqxC?8>7UNk_s(LO**=-I_w=R{C0%*~}i$TXS+fULfi3qttqFf84Qsm_-ta(CN z%veoYf8wOy$f{dn$m6HW-?oxoe*9eoKSuoG`QuWk=4s0N1cSRY(Zl|(bRvz|(5Tb2 z39PR+OB*z{oQOr|p#tbnmCJ&zKQj>Va4zVyV7L3TE@4Hkjo{0bTCMd*&ZZw|e-;G@ zuV)>GS2R)=bRyKiMG#6ZRVH}+5bWdP8CPce2JZO@uKcXUCx5rm6!O&t-N| zplV)E+v+**9W5Tb_7~U@5#WKre<^Z^wQGZ2f?}AeS3Ay?Dh@(EFxb6Hp6(br|C9}s zL`h3HHUWpXqyXd)K)j1Li~b4p4Nak9S-ZN$teG}!aWiqP#0FQx+^w|@3NJra;od_; zGlP)ss5+Y^`9waRg@xTZ&}4)os~%?rztbIgJ->9>Z|gvD_V;au zQTa$d!-&ZZt1mWW+2`HeE@Hd+T7%Rb_r=f%5G~Zy505Qs(g(X{+t?dg|4RDk9M>`? z?x8XtPPOv)-LII~K%*h&8p*%ROS6M$3Ez?T*86c}0b}&DFv6W=^XYf=N~KjmYKnDX z%@U^MKO>Y|oLw*S6?=bWUs)QzhMc)8{ZgId`|ASr`myyF))k8W%(jhid?7_JG^xw} zLnLhj*P50;!ZeH-k;1|qYKynPsxbRD9K3vd0ZSs@=r#o4qX5!OwU@EJp2#Y3p`{qy zkwRyR94ibW>a|X8n$_up2>6r_4V@0O5qDT3b>VhE5XKTvg%i2@sw=0mnhM9-ID75r zg1{fRmp@t~8k!8IOxOwY*xuiVTPh$ZsA?9yGZ$y}2&BllrW$K9XlLZwU9N zDLkA5A-OBJAxT$lG#XtNCDl$_^LKt zwbe9tURxL#M-zI$Nh~Aq)~U#{B**ghV~skmNF6!&E=2jOdYaG7)%1MCliBsrIk58g zhQ8^b$3`LFC(&5DZOrZlXYs*Yk>;HJ$|>Bq7iY4Q-a^^`3+bVGxH#3Aanbyzq&PI1 zJJDmP{Hpb=NMJ152E}B@Q*M)aJt?G&?8b(p^YyyKDyzMG`+ZoC=0vI;LwY+Z*Fy*71NEj|O?k_e0`KhkQo%lcu6GXk>IsZ*{TE_DUw9~*wc+&1+ za_fqxgUlXT_U6bIz*a8NIh%@FZqC4KeY+UXQ`KN@r+<6dm2G?!eyV zp?5#u>+WgP7bLd=Au!gpL_GHGG1s>`obI1dm|HOTtiP^mM7bmIEqH&}4!AgbJj3$C zgmXlhikt9wotar|JMxe_tumqVCZJBsb$+wO4R$nsV-G-{&jY;wi7d_^4@r5d#mpOn z9#wndeof|f*uY>E=^|*xSDh!_6%$=M>(0n~uLb1?#nO*+Eh@;mOuS#|Gk@wKdH%Td zddDyf%EPsVfp5)}755qeN-n9dYU9s>?v*+z3eVS2cvDc5h|`H}IR>Z@NNRIDRRsd3 z{}30Yy>vED#3ZS9yK7S3nH+3*mNRc+Q-&%$p1ElHBlmF4?}!6u=LSkZ1S>MZfJK6r zs0B6eQnrx`y&yF;z3P`KJPmxjf$!LM0+yII`d&nuSODEf1nB2#yh_e{XN}fHr{Zf@H(U1aXRVM`0cYsKi0<<=%SP` z=hI{xIK30)g zcEAJx0fhE@#r{^s9g?ft2n}ux8b+%IV;KH%~}RxF4W~yy)WP!8~8^^Ac8O2 zWF$B$)zdOh8JL7fGcPRPtuA8QE`F@{BNagLI=3u%)h3<}8@B9SJT!2BAAD!jLAFA$ z?u$svY&9_);nm)36Ndp+lxQxeWwh;?ZeZP~V(o<*zUmH4Cz^akBK;nQFMTBh4*CW{ z=UxJqzy0ZN-n-icPwD0Nfdx^Adqb^rN~bmZ#ehH1yjuszf>Y7Th`8^Qbb`Vr(&ik18=>v&7i`&eKC&!(-j zq3Ffp;DzS+f&1F^dbG&<;7EmE+4xqTwT9$OD*6HcZTwAKg#Z-bX#J9#8Zcg-rSoeHriCFJ0{TpYidWC5Z(k>px%x~(L{v)QY2CQWAH zF#=XRKxZxS`W6dr;3X7TAG9g)DRnqtJV$Y)>LuFyguK5rTH*7?HX>;D)-ZZn?VkYH zmGg-Sowd7X_{B6bzj^6&2?Zv_TlwSpZY!b)F0B&`m?a&NpixH7BB^>|Wg|3{*9p;= z+`L4~?6K&3=qWy;k#zO*p`1DL#q=H~xC4hcs}gc46)y{ghp5j>VMGBDJ1`)UCZ1i_ z$~`C=3uE^R;3UNt2H=+W3Gz*7itG$GDbUP#j1P$<2SXdlXrsS;p5n_+93}}+_h#SJ zfY#Fu+CE^ee0$fsPhJ{KN<>cmE)!j{&%xr&w&%fOgUnr1TQS`-%gyPBVKgzQfj0Bp zO_<)F%JVT~()MbFBBh@<_sk@zvWnaw*devnM6%ia!`-YIV&hE4uR*}DeTdl#zNSjN z?rMJk;)rN=KJNVL3qUL<9Q2b6jYA#OB)mUg1~}p@PRN#F)TN8F4-gZO0*SeR-@$NB zx5~GC^_KC^U@)3gB(dcmpv+0#h|S6k10qJzBv?+8nn@OSeo~)&eUK&gb??E&r%7oR zNHPK(u`k8`lW8O77DF^+_mmppY0tmjD1FhO!Dg|5^^Mbr9Z7fyquQBD#_=Sn(w!@5 z@xzT#Y7K3Rx^mCM{!!`XD7E*i>Y3HT_(cUR z2u_=WiRL0QKf-T*IdY_n>}a6(qePln$Gfr~b`S8gm}+*1sc|~!cZn21`Spx5!#QoX zk?V5m%Kd=U4e?@ma!gjaF~;N3Ck^pw2g&Y9u81EfZdyS^(;rozi)A4ZId2 zWk6U&2-u0S|55M6BGhTeYzT~o3e$W@AhQgfc)BkhRC>cGV@+%@h8nBhhvu$mlyws? zTPNz;Q@?#x15=YDqP(BC86KYj-w)sUO;nKFq&_YtmU3x>tC0!}Yzw$S;7(kaX9xpT zrus!6#zZ$w5Q?jsKPfCWT!`jaye&_O$qh?gV#pR9J*mKV#=-6-*G~LrkmrN={lIyJk)j!=sjVxzKYiR8&hIFalwNpP) z=#2`Nywc&8zpLn;Q(E6RUkc?mC@E@z29YJ|Gz3~7ySe(d9qBfqep*rQKaA(fLU(#d zR+0LsV#Mm*&rM}}%?0BU16qe@-VjgvCR*oE=MQP4L{copY|B1UmBQ%c2W$ra&Q>JU z3>+vRsZx`Y%9gsM#IGg}RFJx?%#0BJDbt)N00@@4GsdDN6MxB*NH(R;D`_`k*M&lx zOOFo0h*e?4%3{$5oWuP2hTU@I>H^B(!Ak9xwNl0X#0>=XG zYAusv`Rvg;|3IM5uPDTc;NDEncibP~)wW|nYQ`PccAXzh2WovN;tpoM#UG@b_es;s zgj%0*PyJ8}@u>DSvF0>Pu_uz03wQ0S&qwIgqI6OE9feA~Qk$u}V&C@1@*cUK+$yS{ zUV8U_d~ZDK<|CPl&P8Q;I9MSX;Uvl9d~Cq4Tx4vVKAL<;kn4OZZ5WNvXIM2knC)^c zzVqF1u3&?6z8ns8KesutEMobA%!y5V&V5oImt?LdwEVeRbl?+kPYKjJ2+Vu!YLn-E z7mr1!m1Rj^bDONm!B3&Ri7X}oRAGp$9~9iw0uyer{-2^_w>aez8umU3&7D}f#Afef3vK9s!__E z?!ynCX{w3}qtWFqO?pYHupWwKx<3-Ppqgmksh(GNti%xhG*6=5@KA2+T4xpHb7BjOE^2a z`J1_p#_)np3=-U0yxaZ#b$jN!Hzg|>}$@P&d&2kGB<7(ixS`dbZGCxE0K4$KYdtwzujm6 zOvi`oFWUOZ)WBb*KIvX7vD1xTwkfpWQw1ca=kE3O7W~}&L5Q9Y2_E($T@F6_K1DH! z?13gt0xw>imOLM2`BJW4iL)$N&IL0+B97$}m-98=y|ZXhBav7HL+~R;S!9=o)6}pj zQ76`~(#IUCfv}C0z42Arj6|{u+OVR0>fgle%ea=*p)5|H=PDnAH>FcmjRl|68tp&1 z-uqSFZNs6z22|%06sI__vW1h?Bii5{oC|5mjW?V>kKAeqP+LIJ=AZ{Bmp=%dOGvye zEonp(#a5b0dHEELaZQ$E8^j8{DIQUbcD_{;sF;^i7*?$QrbeW9iyZ$+$2B`YJv)39 zf*`%Ma=t;pyV_YAR5r$1#8d6F)jxG;3a^71)6d}P{P#(9LgjP>EXcdM+Cy(ENUrD; zLvT$wki*DRw=*4DF4exdm>!?#M*jqM{Le`lb}V^1myaA@2a?O}U}jM-%F?@j!&xZ0 zEGU+04qgAcSLQca`F$=y-2nRxN!oNx?jyM+^WwWxLcVyRu)nPi&8ezp^U>!#=D!A` z2G^pjKACT~&3m!n9$O?wqh$kfw1a!Iz~KnUCCT3ef73=2m(vft4ctWG09v!8x1gF% zScAm6aox_7QF7?1C_EDLAcCbio`bOE_h@juTLfbBoSkhW&R*|bUv*s9C~!z;Eji3Z z6>oMU72IMU9rqjkN9db^;aQOFr~k>nzjZ06Wq1-FS;)|~uh)b-uUd8CXBlUGr8?FA z9%ZPuG0n#4kl%un2POU6djsBZR}rE#yZTPGq9t9cBhQv9Y_vr0n3@v0NTW_$=JgBU z3}$x6ozLc#U%J)!4`42WW|_7AsozBO+w0QdxKV!e#Aiim@T~MSFhhkG#jNdxt6yv^-`An$79?(N&G; z!YbaQ*RJwJaERKL(e7pKt5Rj%^oy1NOZkR|T_B!l+J;-ed6Dn`lNmv@h1>+{Bd`8= z6Se4i`b&)~{-|u14Qn75A8edDK{4H*p_!xY>^vskx!{7o)o*%Plk)Bv14ODE3vLVN z^TADGOm>|Vwj3hsGSjBQx;~@j|7i&D7E%Lrk2cSgO*N^J@J5f-9mRzUgyzENi!lQHb{J2C^j1GDV83gZLe+^C{Ja{m)RHX5N(t-SwPITJdF%q7-dCkT68gHw)u)WqS02Y&vlweD zCFIT8V7gEY9=FMud7^C-ql92mMqH|?K;x!GeOeY4&L7RRw2|G3K?_AAn zF$iqN)D;oTrGIiBL=%%&+Ld7!Qg~=v;r&rRtG|K2_tFVPnT6$L0=5;dukT}W!P{~A zH<^$hF^#ecI}U(S@dsI6VsK(blI++9mtm7$SyFDc7l&tBEZmN>+MuJFDw?1AS*LaYUN=FQ+o9~7 z+`quNXn7B}S_SG$zMA;Y&pty1CBI6r%^}5ASqMDVGUX&uU!`v{+Yp32_DrMwk*V%z z6)>yhl%y~yJg6iTWY6tJYRxJHkaC8LSxYV)-bwzhI>pE!Gd0O8s;fY|UxN3t{$4{j zd>b1k&pJX(A)k0&=!{OV*!BQIo)cpE6KN_m?zxlCr3+w|Ib42#e?yvPLrz_SyjSIs z0ZoQ8Mwjy)m7FOXhOkN4Ig$q0J4|{Xh!8SO{-EnCjwO&+`yv=2un?Hffm<<(oo_9y z;u1fi^oR$Wy)Ee?T1zbW1zzRUU!Q^Hc z4IVh54PO4OltV|MDsNpR^%oCo-Tt~CsY#nU717rR<4k5Dt_&oTBoxVnRy1sx}CCnau7r6-C zg-sC-DSQ7+sneo_nB(>ltUVPW=d$*Thoty;Cz53wfjzw*tI+GuNzaRYg=_+(phUK@ z2OwDcD(VsQm2mLziCS77h%;4zFD|O#X`<>w8$dthq3^XLx!iPhvM8W~pIA#Qb<2l8 z7fDKBX8AL__Eec)&+3X00R>wwb87<0!fOjHvp+w@IR>VNvJ&;w3Qk?KxsZcM;PZKB z#jBzSB~iLAg_Za)Gw<0M2}Hy58!^IH1RNkfgLVJN4l2f*O>L%1V4$^Zz7gz+TG*rI z2QP%oVNPb-71Y1_AlFNev4HKfcs22mf-G;qIQoz%Ot7J6+{RV(5mi(@8fLPNQA$`q zgN?Rkqx+bBfQr`F={;pNoJ1ZW2=%t8?@|?Rz}&M$$Y?U38H-B4b78rzfb#OY{=9cM zikDvSp09@H@X%L10hiK(T+uj1biqL554i!cK?>T7mGqw^+QqksMk=KD{@O(*{^;kp^21y3ooiMaZi ztv~`PecS2EE%wX#nCh)Wy7>ikc3a--|a}FVb0WmIZYG!oOSMv-VHeaRrGU^rUzcD5S;xECzsENZh5(nYH z&scQMWmEp~)4-=L@gqd~7egE)B1VH>n%Ka@t$?GS5*mZ& zY}Ri=Q#XONDL4F?0+cqOOW(`Y#oN2_tL zzHmBzI(qwdEiy4)`P^}ykx6hiTG^E~O_;Zy`opGGN2kmC;vputR`2zK{fP)NK4qfs zvk!4ieBn|hYV=OS#N^*c4Xg7i?O0l!$-5t$mKoGlm4!Ud%d;Zd;iIJAl(bp4JRe+K znm$Zl*mc%U+)jv_8H>;LYcj!Kd^T*@Yrb$oA+0Vpf9>h#F@O5t`151FHNG~)>$xf`rx1OppHzyh%;_th>!I(7yYNOm z^95T|*KQTg@Aj7v9lHdE)FptFjIMHZL&$`oOLONA*LS~fiOd8)9g=k0PbXpE?hZWuwd)eQ3pT#J--P2ljFeR4#ly+L>$LQ3ue5Wod7A`Tk+n<$={2EWBD=Z zG`96l^TQm?uO#-Y=kebIdHae5I%n(^dJOyZla>lw^rPM(hiNdo7EQL$+hhDWPU(3Xp+0+%>sN%h zmwrX#IRNK0(9U|u{>RGj*U7S4QT`wpGE@&T0!c`ARSGe+t&jIb(SWC19Mwhp1NWTD zU3vtD=5olWf(Da}6@u*Y^xV*VR~zGX&1b3f%lmoc{A&LYEP9P+E>v}wnL4NvZZfIDc{fS3N^=+^FYycR_(h(C#IZq@ zj6(MIdtJ9|jq`vIWVm8tQ`}iBUdXY9aL_FPT}mG&bT+J9yg)~$coU_AU=AN=;p}tZ zcYdKM>xJOe-!i+Z9QaV6(dDdk*P!0=t5k6UimcS@V z1ml`$VnSATYDF$`!F%|sLM8Zw_IBNnE`@O(GIck2UMb?NqI1yH`E;|bZKo+2(j}zQ zKfS{1<#0#(_$4v!2Am!usqQyChw`lt>7v-~To$)_rRrq;3An-mSoiWz>yRLnh$Nk> zTY(tp6&C`VKQsI9!!tY8{)Z6-JWf4BH2&&Q(Y7d&-9m1kyGR`D+@{_v$AYJ{9D`;= z_P0G#x*EOxr$S}x09+r(rDcZRj5V!E#7W~QJ%b!~iz zFb};`Kgxse-8eK^+Wx!)k%ca^?GEgQB^7korP^MyM|Qxv(jD!H#@4GA$~>@sG~OK< zEkDU^=)tfw&0Ufd+^zFZ*1I`b>TcaY9{=V#A>_r_w4=VVisT!Jr@x56d;VudXqvB! z<;9n9oO=1Qqgsm;VxGBrdTdA9BYm=~y!urz2Eq+NSKL%}ev>Aix)gceGyBbdu_Hl_ z0^r8wo@F3=oZ2g_FrC4Q=>tHx0*~z~_~XjjHwR8mZ5y}zp5-~yz27;Mtb#r1kM9d| zo3G0F)Nt00^2K37ZDj`i<%9c9z8yN5kfwuDDwxb)pncl|QfHUt#LzG{C0ZODWRIsy ziv{E)(DY%U6d%wlBIvN=I1)&{n%9QNOO6mqRc_^HEuJflR8(JXvB4gFkA7f zfSWc%ki@$_!oi{u-kD?1Qujmu&2!pZLcgcDJSb8z=ba%j#%boraauEVNXtf9(|a+P z7)$fIG<-;xRC;i@b*4yJ-U~f8D7Be8URCJ2g!Q@(qIMLZ z`9nq_;r!t^o)xKt1$cnbH0)V4OunflMT5XyD75vCE-`pB?B0Yi8zkDes)!&;+y<%| zJ*|E1Wc$2EDrz#VSO#~Da(Z~WsxTLdq7Z0aQ}_5Mo<~+gZk58WRWam2!zQ+ua;>_R z(A&8H!Xv*1HlGES?@^`RpNCwmMAc%9^Et7vbvdx^$B-q%5e#iPxj| zdlplobc>z6)HDqNmjlJy>(`~5ZK!1e@H|IMkL$w6wyd(eY+!6MfH4I#7v=uwSZJ_) zPf|!+SVOw7i}a$<`d;MDORzPti1jd`NJqv`7N*ift7whtS15mAWW#yXt{Y}_8$@Mw z-X!h%Mk)IN$!Tn4!z~083K$x&U9jRUylm|llN1eM<4sjk!Vh&qD*RN+K zy=y}bb&-p(4qJtFJa-Wp9@IwUW2;Vi;}&x-Pv(h!)_k01i=h1~(f~=XQ&G}iZiCX* z#=&WA?(MIw)Qa+Uc}*!DZve;NqT|hvRfB7Xg(zh*D#VgT{4RH4nc}-{Lsq8;i}91^ z#<>`Fo>YC>RZp_RqT|JG{!BH1c=$rghg-C45~zjrSRyfbFzs;RG2&KJ6RrN<6{T_` zeY_!%kLz$jZxbtC-sqep2osty?)W+(y`Zzd;Zb|d;TfHC9b0Gay!vI?qvtKMDWg1H zFv3>kef5qcv9lheQHZa>A=e^Hois29#KhNO`@^0g_dDmj_ghb)Fvw#0X+Es2wBj{6GiVP!^tf z!7MswXY^RW(~f^l#it6_u%{D-)nf#qR9>bSk<--GDK7FdId9m^Zn?D}uidxc>6R7GawPnIf6J@u0)VewQ$YEpGJ*_o@gPZ6jIxaQwyp97$QmpwQ$8Fi3H5;G`cir= zb7P?D`&HP`6f~kzrEYx=q!A;j8Dj%wj^Ulv8T0P|Gslva6A=+YE>rT+#ib;xtPZ(U zNucm3Ox;XStAqFUda}bpG%~;Y`w73BoSl7iSzDb!mV1rs6*DORWs5u3GQH2TOi0CL zT*h;|+95W>t<`2T2VyoZWmI*Pb)|m$J$32@iTx^Sv`z!+o8Wt@s?%1_g!?d-n#8fin0sqk2J8Lt(+u{C2Pi&hOhpfR#U_4^XHHfmH+wuDr}zoc?6Hb3j25XO;bAV z$87ko{nAUh-YCNI*Gkmz<*Am>4U|R!jN-}~7<)TnWyD~D^Z@-jVl zgPej7xJx-w;<57VDaF5$Eym_G;@6$l>)oQ?EJQ?d*$&=&mzN^!<<`LtQ^ewgE=n4o z&to)|J4>yx^S(_jq;DSm=eUuR<|0pRh27D2y(DNXsJ&OjzVJnPx_X(}Y2o$oEf_9Y zIx*aQ?ku51lB|SOjz3))OLXg6j5-g=>pjCBG>pE|@}%NIBk8?ud!CV(*yO~``jy#6 zqJT8P*{F!e+3-DSrp#wwvya_Zu-2W?e;u_9`dm{SlUUTU{LP(Z}&zs>#c+P6F#~ z#nTlpyC&=ttkbKh$E#vl#iDX}4#I8`uczbro6WpMm?;>HKhMy)g(E(g@2T5{OrFrxHbtfcE zEz@aHUeAF`NMCIfy}-cI;Gm4an6(|r{>YSQ4XAzD@(dsCd!kiMh0#5`YPl`1|D_>V zjKy4yki8V8ju%ORZ)1gK0}f^>s#k{t?u%qDI&2tLT5EzOC|peE;-m6CoUKwN?U!Ph zpb4tt&6;1~?9-dxJ3YdxpQrluB}o}L)ns?t5(l@r)%PCQaTY;0Ft8+|FW|P?6b46~ zKCLuQ;!XK2^n#^&Mvl~)jr=fTI8qNjcgMRmi1K5iPSOTV*}C$QqcTu;{!sJj^LKI< z{wSj#v`i$9nKl5r4nhyc_eTFRe4&5CQD#r6<1#+(r>MUUToa`KgolcVXOMS`J zbxU3IgJ@hIeVL{781hlO3*NK%e8nOsK+{{Hi zv!13Q>kvv{Ek#XrrA#{r8(6Wu8^>dq%pt%mzrzTC&FVZqNr5C_IF!g|RYv|)Yg9M; z6wO@O<+ItKMrW*A9^Ut>e?K8L=JL)|8 z)$j6E!#@$?ssc9rOiq+ivzL81z8xeC`=sh;JPp@<&iIuh4NT%pD-SSA$vg|QJ|Su>sy)YLzUU`u>`L?n zEYdGeIlkBu2D3(tmMIAc9Mfk10LENXymm>h)IGf0;pv8wuRT5TS0J3ms2IDOLjRGNiDZ(zURs&h@;J%I4>hp;AfsgYn zt9#g!#egx-V}B{(+4Fj3)PPGuc+RN#RQQW=A@BcT@2$e>YMwn|qCkMKaSM=*!$yKT z1b252?hxD|xCeLGxVt-q;O=h0-QB;H_dWkP&zY<5Zsub8h6mQ7dv$en$*;Sr+^58G zb}E1WJKwKC?xP9FOidpvhAd`Flv_8>@NM~`u;N5n2)v4EJgaEj7W;)&O8aHy8!U>R z$QJ>@>9qNtiSKN=YG7}9|kuH&1 z{+Hk@bzdm5_pn=!n@tRvrX!P?*vaU#t2foL@uXBP)Jl0z)U(1=uK51_D!4bgK|mmZ zcvE~u!7}h}`>tg80hME3cWsx2!hr($zi*ued=Z?K6K>?({I~=TrPM$6BocNw5XZ5* z@%Z8zdQ}Jny8La<0@zu56iXGavtgb3UPsOQ=y+>Y?4l*f4!L3Zg+f{g%>QAd5nexV@<(3nud7vae<61+6 z*eT5$Z`JN?#bP)K@uXYlh<7l|#-~HoixT5zBswo9+nuHccBR>mc;{!%m$r8mqj6Dn znHaDV5XR%utI_htx1hhP^)8=%{X_HN!5Yt76C)=l>UZRMs`o{dRHR0b_{zdBPCLPm z(;IQ!<9i0PH;&yA^$_1TjJMWlt@V#6a34a&J zZ>x9^r@uH{x8|q5eDpk9xXhGdj*W3{<-V{7u#w{tw2|oNz>fydz2Z{kJ%JP=gvuz` zbaFq7yZfypUYv8UcEymcktPu{#l)j6F{ayEL5KMrUkK^X`g*SVt+{Mod+`|YD15KS zvfUcDl`$$q=(1j&DPZsr`E{*YEM6z2+~#0R+xYv(Ewx3T?*JsCDyb{|*MboD@fAWIlEmVXG8F%L!@7cER^5{Q>w;NEEw zeIZl)^8=(OGO)ojL3bHIUBo~Ie&Uyzi$)IxMY}epBxf#|nfAVpNmO7>Um=~Ip^|_0 zFU0D6`E_n4)B352{%|0G`d`xjaR+uxRM986Kivbnp(ly9+T_~S$Z9y%)m%p4XJw7P zEY&3{tlFv0EF#={No$J;!)P*{L;HM=W^o6z1kzc;#Hj zT4xl%a`@Z6Rs-GZW+{k?m2$HNrZET;xUcL{e@*_TFa@L8|ggvjI9{&3g??YRxMUaTkapSs$%`cuZx97wRo#+gHQRM9!vAnJRf+n z(2l8tCH1n?IZeo=)*dvVPUO+wP!=2462zlKS&r`yrbKiulKuIp1nWJIsAl;s&7mNE z8r(E{W8K83KX`W#azCMNVRe$><|_>Mk8l!@dj-2uWwY4tiF0t@0uTqy7&E_?Z^ z$nk4e^PZ;RQu&HMo@J|~KEr9hJt!Kr>p?P`^f+lNPBx>)BBkdS4ST?JcyPbk`iDd? zC0Kn(VC%}Z#X6(I$Zkzx2~rxbgdL9hw~s_IziLa^5!OX%<* zx>jtR=Nxb8tTo-a{C-TiX0}LQ?R!pQj;5w$}_V5_*EAb>4oNBi>E>wkR5{i zNhiN{ps7*24LefhKsRGS!pp}KfEIyhjs$8AeViu8>N$tKdq$X|L+n6i*Ogn`r5&BY zIfqp@)jtb?Uyl;Z9*{!*=R+&nJ_{L6Rusxl5}#!dqh~RSiP?=F7rODT&9Y(zv5w#V zL7}u z-?2sVG5@6`IbVR0{vP5DT5GD{!=BphY*il2{hZuZ>Z|t8lIMeYMa3T^6!$?%PlJR? zE^@(YE|wPtvqF&itA%cF9s&U>YSh=FA65llkqS|jq=FSJ`)N&;$@e2Mz_~xLetB)1`3m7uqSG^4fY#|JEM^1ea2K7 z$i~X6-VhA`y_rrpOkhp=d8@I~qNvKI#C&5E#7{vY1`h7U4R5X0PH-qg!U=zQ`dWXW zlAbIxV1wO)Y7lV@ohL;c=1zGb_BHY7ICCv}5@8wNMR~d`tdXUmi4eTv7tLDO2racL z0XX0$4O>su0E^NO$STuXZr|+rjE7~U;{vfayHIOUb2;2HzHfJM8y2b?6M$RmyGcLx zD%ieebnLy%8O>Zb+t_z{sXSfEwZaN(Nq8>J8~K#RVOMi8E$94zTwV+P&51t6H37ld zo1SN?p2>bmZ*B9k+z#~8db#DVZ??EpNv_G>TZM9+hRW2b6q0P+E+x%6a^V7bLzZ&| zw<>l)0+;q8%z>8|rx`4D2x75}!<4WN%{*JQ0aR1suwKu5R>l$t)9d1mFXQ_WCAH#T z{6^>n%hjRyO%7Jp>vO}_N>Dt`(?Rk@YuF>{iO#;EuC;Xc>yb2uBRx!D?wwx|>8Uv^ z26hV_^%}3TxDv{?zZ5L==gx$R=Y8qQup-B8PEoR{)okNgI8(f`oqZxp%eS{TZxyh~ z)l?@CODpBBn>z9Z7RQ89Yp}Z2HH&N2#nq#zrhcMJj^(f*ZI`2XCGXjp1W2v_bOp$n z0PnxFZq~X4siYh%j*d3(&5l*w7v7a-&b(JO9Fu#ne)PtqwpY{?7kRJI3wxKz4`(j3 zV$$08o;%#*fZI&K06~`}k7Z$zGz8)+MVyNtq-abgFT@mW+wxr5ora{*$`;2_b=~!Q zBmiK)2CObnXO>9la7nH)EqPpN_{o*<=EIi`4rHM~s>Tn67 zml3rQwY|PKSUMXgiCB4ixJ8gY?0BI0xRC4kCREF_qd*PFu*Al3S$%mOlcLjv8sTsR zUeKU23oahcon++1`v3#;M_V?_R&}V&p2aW6)uyOH9)6hO38W1t1{M>>z1mwSrPECF zT62FGT0*eKQW=aR{-NdfpSg6J}nZ z5VApEe`(7~Bmsy)N7xAL|xpRq#>* zl@r?UPwsZ;YDTpmMtDOZTl?LG>*DN1Sk3-qTEHef-HqU7ectZKi6q%#D`QD^W3}>l z-mkSz$FnG~l>4N_gS~3z$}v-rrrC78-gr-J&WVTgmo7otGTN=Hc7Fs4@5}pp+pjG4 z|J%UH`DSh#aw8axb!g_HT{tA273QFIa^IQt`K5J{Dj_BA2O8IBBxmT zx_r6xuS>-tkLN=(+0I#+f=J{i%UQSRnGXDwYpx4qf#Y@YhgL+@ZU0^?2_E<(G8H|5 zjDwgz0J6x5@i(w0;Sozs8W#W?|MAXY0iJ!iA6ZE|>I*6!-Zrq@VzjHKOK&}>1{m+p zE3{TaF{_+thz<7XUr+s!w;I<6#199o0LhIT>fho2O#S2g+Y-J<)WmMsT8ClGL(0ukjt_pfFx^1yM1rO!fKxD*0a&E zlaX=SiNImP)tdHi8+&u;$?Nrsn|qph`s!i2-1Dkfr{mw6RKS0|P_!+Uh@W4GfIn+y4dnz`z8-HT-4Qe;Wwp`+uMuAV~+&pZ@?tfZHMX>;Db( ze~xsG(-<(GAbaq`qwIb7O4qz&VF8?j&06bDK96n5^i>F4CDj(eY6{O3F{XYN6{=Lj z=>u=6X6@X*tJYo)@)hD^_pr~5y_H$NtD&>*wg7qYV!~sB3)Ae?RM}i^jcn9gDQYcN zyR&-a07ac&0#pzvJo!ZKM-j6J?Y$-$u@5m+D?kXyYJb|TE-kY*vC!;i=!{U{TX;`6*L^Es95H@`Ijgc1HS=^5VXm=gZv_o+HcB+ zIy?{JTvc+F;$D$;nfa z3orX-p&BP5Z$7rJHuV(M!-HL`R*D8-$XUv7Nn{+4ABVW*<><>bA4`3a2>ldg9X-x@ zTzGUn?b)RaS!)d74c22s7|O57N9>tsyLuNG%5UNVu|im-&f0OCDq+i1D=76Z=x_5M zN_gP-`!>mcf;#rD2gB#O!-idF6s}xFYL%{DDHmxRy%#)`UvM(jk~yxs{|pD7_VziM z_@T0|g&{Cgs?rrgGD@PML7!g$4>dGOF#2dV9FmoR&MYax7wvcG;k zx@vgESK!gzsKYgR+x$dWr{)1rbit5m!1{YXgP_0>?ILXtozapztEN7(X5}xW%6<^U z_Szo|WO>M(zCR+KG?d&9*ItYpG#y(w>>4$;RPhil?zTPT z*Pv%hl_Awef1gJq%vKh9D}U1UzCcO_q1NP3FXiY%-BfM-W});V293t#gqZ}@o4=$G z!#}9gDzsFq{9vM`h~FY0^W85K@i#g2hTt@SS#au(u>B$-ROmh+RKnWk zZ^d{+&F-XVc=ZvIGY-fyBqQ_994H_p6v|5ag-x2pI@2G+q6oDVgU&QU7bd^_#&I%? zSgBIv+_9Aps_^*7{MncXG+9EC@N}v+=SlESMXeuoQL_LhF!&QNXV5jeaFyI-n2pT8 zhT8rWNj*UVZq*RRlH^XB6@%B>YuwBUrynKT&oia=86vT$Sym$(I)N8aDv|x!)kG>3 z?9f?-(@pL|(*;PKvOl2KM)Kl-<+sF{1@&g-ySHm_G3{lc=Lf^p7Pllw&ou+=3lE{Bpi zr510tq4^BNKZRUF3FnvbWH2)4N=Hex!JM#570xFJ?fh-D5G+?wV^zu$XbsoxkNA75 zAgTBGg`V>T773cJo3h2lFmqjWMnSsms>}O~(&gU|1lMMQGaO#O`X(q~VG)DXkfWro zC@W-`%%Dw|&^;yiWzA0<2qbcrE=petd6~x|hu(ZwrA-E|K1b1SWBV(XVMg zqQ5NL{|jkcuPbEfX|rsq(#n*cwjeqKp~j;88_0!Lx7jE>K$dKhJK`uf-7*1dgI|lJ zsa~H8Nsaeu*f{7bD)G^x=L@aODybi+e+;8^MU7^Ki~WgC2IOrI94DT-Kf2dF^lP16Sn7#Y(%hVRHW*Ab5Be{X8F|?l&VeLsk6(_( z2#=$%Q2C`u{2t8Uz(Az-SWNPQ!oVs$&y6=qd49o%qB-ZR8g#7v-wQG%esBSqyXxXJ zD@@$gFFDiU_<9Nre%B>v{Ep8v%jPw{->|FXPN?XXnRy-t^M_OFJ=UZz*bd$^KFB2J zy9W#9?o_rGX0y8h1S6v7N>}B)7olsIAE1ceD%EM@=1C@fO^+@mGhHib`MfhqyTaXb zH#4%@sF5U!Ha;eQ1>Bz63;daK7UHYZ8aIN}_Wm_JiIz<9bjR{8Zp#HKHMh3Fe26tO+_dH8_@m@Z@0n~Y|tG)XM{m#)RV9wO>{$tL-;bsG6T2V_m( zi(j1ZYRs|fD!bi?c#Sx2_|rYsw77XTzRx+>TdPxf*t+w}Xkwvyn?*jofBiW090LhA ziX1U^G}6J9&705@B6_c;VT}-gGI@X>H{nptNXW6r+^RE+TsGjbVN zrk7v46U{EJP_ZC=1-SJKSlIhE8;`|74P2E=L9K%VOsk~L(a7fZ`uvMPPB{9oMC}6z zE!UUi_M_;#LWZP$Pg|#Ti)KaHAhPr3bk(X+hD*g|#T@R{wx)}dvMNvYCM%;uyYj@B zI^O!yr#r9<3s{*n0e3Odo?ETlN+;R%md2cat1LgD8utBWQqE$QGUL-){Wc-n&hxV< z=^(zI(!RTq@uEyUg+ih5Xbw4ge@vR&^VLI|c*E_y3IMN@>EgK!*i+psa|ci2>#3PS z$J?$cWDv#5ofJb^rG^iA_onCGWuiMp~tZwD#z*CvGE2~Sx0hzIv_acKC`hU zW4Pv%JZvIC3^#v*^65T4opEw{uCw)SOkNMf-`=s6Om(IC!iVyZEnALnOj(;K!J!X3fCuDh6GKy~Vhg=!aUMb%cT0ePQc=;aQrZp>A z&tF6~lU$g!%VLr9I3$9Irn=M8T}G4XB%m^LBhIXaPOQG{of8D%UIOTyr8+I0^;N^4 z4gu+?-~KSLP@lZ}`?S58m7d>F-GT31(fHb*uQEf@^U-8OJZJ#SK!Zy-tbMh26QUIS zg0Zk@C{HitIBW4Vz*#+tTU@60H@Q}HOC7m_<-BG*wV~U#vP|wdMyFCkcYO&=m zBRiHl0rBy!4cM`#Cn$pqA_kK6(m_2?)%ZZKPOpdo0_*}OMXY1qos)x%EdU;d$mJ=_ zzwvelUHvR-YvGCXF#Q~a3=}+J^eE1vd(+F$$XaDG^z<8NQ3Q$ZP3aykRhVOydMoN9 z#ThWdZQVukG=ZtB>g^wly1^5@>dH4emuR<{OxbFk5*YQ z=ML&xw+Rh5Uhu^IHA0*-qcRn9ReJ)IB9uQVSZJ=~Yf7IxviB;foch+``nwKAvSD4{ za$DYP-?`qJP|&w4$tc~_%_UR=@3(hI5|oPi2&D*{N}=$_M;(rF-1H&5)@OGRS-&9; zq6)iUo=`KCK-&(rJHM(^V}#L#1qfid6P76sM+5B<7wpCym5dQ5J5VF2fSq_77t@im zyjA0drtImdMAD!oDKSWVXie$3*Doaes7CUZTDzWlDj8WL&IHjz--x{6lD`^ntfQ^Z zp~v51he#9di|r&<=;0xh+~HTzA-+4~i=1v2#ZGxmoxa^x&D!S+7@wIl7QdEmuHRCI zfaGzsFRw5ANCxpIJ&JW@+-dI_=3w%2-o9%4 zA>`swouu+cs=m+m4GUZ)5W#wJjWT5No57I8>^-41Xv=2{bDAh-qW}&KJW?PgYBp!aLd-5ZN_uvuLXVU+XZ4l`k@wrOITcb>vqVK@E>y8P=SWO zn=qMY)8+z2$mJw8|6wxFt;I^HhS$c)t{2VH*nDYAwkODF@5>t1=2Yd^5fT2NGBz{y z1FkRh6X5q3&_sMX`sBF6R7WVN<-`iEz@p#mq7w=HQwkh{%*|wuqit-Is0-m>FHo;m zFAWnQOdxL>FrdmXPKER9;{cPeL@ATKk+MHX!${~=O%^0mqZK3EJF65J7I$$T*A#>w zpF_~i2wMZ4Ng*zQO1pY}s*#HMBO=}_%=;ytoz{B$sNfrCuc%o*>LM9hkHOjGWE0?e z>fOU+y558kr!xXoYh7bih9cPs5$IUL{8-=g;f@_3Pgkv@{AFyA;nhLqo~^Z>5h>rsF?^Oy||twhL=dsw3f+!iP0sYSOfJtTyz*Oz<(~ zkjj;|8U=s-`k;45^Ej6H$E@R1o9|#1JDQ`6VRJo(1#W3|)3p>P|EHASsDzc&lbm~s zJNo&Xjc?P&bcM)aLr;nPrUH_E3%N#}BkxT2on>`2T3Z(qS=^AMa@AUPd}ho4QW5^S zE4Nt%7c8hx=a<fT z0_g=jjKHS~hQ8(~FS$OwwB;&%&cCn4G88W(*dFOO=3v;=6=sF0BeR41k6 z`L(@^PAz@Wo~gi9DxGCb7X&#sKZ<~}Uv(exb4SS=Tv@r5!H_`FngWJ6vmEEkK&W!B z=M6?V3dJi<$>*OojA$fJ_eBCNe&0({FAf-4-f0q%3Cft{vBsP+(j>FIMKfftSdeZ%szIHoCl0hTMH@9u;W&?s!+_Fk6O~$GFwSc*F@$o_AQZOy) z#^KNCO>mr&+b78jIch5Vu8oOix@~JhR)aLPWH5*bH=xAaviAJgMFaIVSmsmG!!J?2 z9Id}d2-{iYxkc5>IGzR8@T<>`!Ir7x>J9YmdX13@y}V|F+?9y|Loz!ApD163s2S0v zk|eJlhez3zQk3WYJq>fT)?rGc07zKb2o z2aF_gKku>H2mTqIbI!Z*(lT#0X_E>_F#EykhjlGQz2pWB3IKwGvTe-1)+w)W<{P%; zYLMrcMl6uQ3>l33?YZJXEfyRJEMQ2B#Q!XCF|qRE@}Vkr6If@tAJ zILRi;Z{|^N3kOY|meFSB(6es8)M4c+jWEDND)kEGl4B#p?h=nCyWMEft&$AdL=1_R zZ^92OuxLV&6i?JWLAn9N4$6RQlWABy6o2Sy>$LAYTLhc50oPhYFPr#WizXbld?VV) z6>m>ds$8aiIeA6|*bPJ6Y*qF<4Oikj$WC(%dy0-UlAZ>&ok9$kf~_p76}SXoT(<#5 zaq7jLOu%nbavWyV31^7ge@MS(s%H~%S9rrJ2+33t&GR~HP`FG`jShU?O{)uqOtQpV zU#(jcUN(_g=d!34l)8}A@^N_8bb3n7q)`GiCSVc97-yDnNiqm%Gnc% z=suu;y6x^>$4Y}{*+sf@IZzS zA!kCSLyRVUTYKT0=x(B!c7X@?c44><0=Uodo->x{V&9KYvaqWjhRUG>t1KPVR6H|e%16H0 z`S!sR@?k6YoB-GOr_5UiHulWbl=1%+`f{bEMh7%QTMhoO!UBkexmvuFFZ;Iu>ga)v zkmR!4D^(M+$vgxLQ*dW<<(zDiTRX@me%aPiyL@`Y8vEhwD3Nd+&9{;a=K`nbJ}P}8tE ztCzXlJLH?dD^|h5NUZhCwuYkWT)ccTqb?4v3VE8_Yd!-V>;djNR?jvmDoR1LTZFnW z^(!nqeJVSQ0v3bx5$1xATS@IUTkdc76>8f}$X@hsq4nr&*>FeUWwbK=b9`YV8uv-B zj+BmpbP-UA2_(bgsLWukp|PYnHnA`dR)06_P;ZTpQ~@;A&_D=suJLWW)vwbo>zC0J zTLm#14agD`^K;Uyd(eB!=n4F2P~E}sV_9s()yox9lCQ_PCVxSw51H$*aovPOFJsL& z+q{9HIi!4TDrHjtkTTmnH3TU)Kk|S|8{zc%v-xIjrIMy$Upyb+tZ@V$3kUvVLhG9~ zs=&S)ie|my$`LUiV!AHVS(*99OtvqrqN%3eV?QJjklyVX?Xp@;=Z2YC*Y4_aRJey5 zvzNh4YIx5C(Pol&Lb)FNKw7(ZDaD+gRa!~n!5Cs=@5=WiTARQ#4i@J$JYiC*8Vy!( z(wfNlnPYNWC8}d|az}K@#Y>Ne@b>ck1Jc@g$N|G&b{oVK+}!DocCyCNuFj!%!K-YV zO-7ExDJn{2{Qc)h5?z`Of7kGym=CM0*}6RixWS_Y=gEd;0tPPaFx)<@n_&A!8v6Uy z(og66ezB?ZSj0M(BpmJ!J!AImNhER1%al3frYQL zEbAf9m+5=wB2*cTrCjft;^e@~z4UU02S9uBd?@=_5yXmIrKFJ#1S#&J$iylrytu#F z3tweZc*<-;d&MNArjvgMgh1AAJMdqdA`C}75{wfmZ(c@0XZ}b@wr`ccj&w$8qrn-GRN#o z>QYKsA$;#upBdrqHM^)~>@>TyXsd|EwQU)+e`BSV0Eo*MnD4mI(oXFeZKx;gh^7#1 zVUstDm_C}RYw~cxiz>%t|arP;Ka&XQn?V_c=T@AgJyDd;f5nyvd5u;vRolRT0 z61Ch5J?6Clzb{M|Rd_)-Y(0>W5w8x1H}rd|X}cY;Edhp=W%@DJXPFqpFQK1!u{x1D z2)Fj&-W{8!L2%uOh7ofdTq6ZOTSDJnATgiX%o!U*Z{blA#>AV9W)w3BFkSPDZXS|~ zqgZ?e>{y%X1PSp5Up(s8(WQ_rXc#XSt}y}LiGRUBDW-m+Mx#ZggiwfQas!ux_)mg+A2 zgEKWOj2;2??~Q4=T~r$!O*8xoxqqW|e%|@Pbc!20cv^7oL1DkiB@+5x?xUQkoC*d) zOGbSY!^$VSPl@bD&JjPw!4eYmg

_ZQ`Z2?MIf7I!50Pjdd<1e(w3?aQ6e;^J>Wa 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�QK@5+Sk;2~RnhLUr?b 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

ynJ4sqBfp~H>KADeVD>{OwT^G5wQ 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 NNQ*0oRfre`{x9!FwvGS* literal 0 HcmV?d00001 diff --git a/latex/figures/tikz_88_percent.tex b/latex/figures/tikz_88_percent.tex new file mode 100644 index 0000000..10c3e7c --- /dev/null +++ b/latex/figures/tikz_88_percent.tex @@ -0,0 +1,73 @@ +\begin{figure}[htbp] + \centering + \begin{tikzpicture}[ + font=\small, + every node/.style={align=center} + ] + + % --- Horizontal stacked bar --- + % Total width = 10cm representing 100% + % 88% darkblue = 8.8cm + % 3% chaptergrey = 0.3cm + % 9% lightgrey = 0.9cm + + \def\barheight{1.2} + \def\bary{0} + + % 88% segment (darkblue) + \fill[darkblue, rounded corners=3pt] + (0, \bary) rectangle (8.8, \barheight); + + % 3% segment (chaptergrey) — give it 1.5cm minimum width for visibility + \fill[chaptergrey] + (8.8, \bary) rectangle (9.1, \barheight); + + % 9% segment (lightgrey) + \fill[lightgrey, rounded corners=3pt] + (9.1, \bary) rectangle (10.0, \barheight); + + % Bar outline + \draw[chaptergrey!60, thin, rounded corners=3pt] + (0, \bary) rectangle (10.0, \barheight); + + % Segment dividers + \draw[white, thin] (8.8, \bary) -- (8.8, \barheight); + \draw[white, thin] (9.1, \bary) -- (9.1, \barheight); + + % In-bar labels + \node[text=white, font=\large\bfseries] at (4.4, 0.6) {88\%}; + % 3% too narrow for in-bar text + + % --- Annotation lines and labels below bar --- + + % 88% label + \draw[darkblue, thin] (4.4, \bary) -- (4.4, -0.5); + \node[darkblue, font=\small\bfseries, anchor=north] at (4.4, -0.55) + {88\% -- Support licensing\\as default}; + + % 3% label + \draw[chaptergrey, thin] (8.95, \bary) -- (8.95, -0.5); + \node[chaptergrey, font=\scriptsize\bfseries, anchor=north] at (8.95, -0.55) + {3\%\\opt-out}; + + % 9% label + \draw[chaptergrey!70, thin] (9.55, \bary) -- (9.55, -0.5); + \node[chaptergrey!70, font=\scriptsize, anchor=north] at (9.55, -0.55) + {9\%\\other}; + + % --- Statistics annotation above bar --- + \node[chaptergrey, font=\small, anchor=west] at (0, 1.75) + {Total respondents: \textbf{11,514}}; + \node[chaptergrey!80, font=\scriptsize, anchor=west] at (0, 1.35) + {of whom 10,112 responded via the Citizen Space portal}; + + % --- X-axis ticks --- + \foreach \x/\lbl in {0/0\%, 2.5/25\%, 5.0/50\%, 7.5/75\%, 10.0/100\%}{ + \draw[chaptergrey!50, thin] (\x, \bary) -- (\x, \bary-0.15); + \node[chaptergrey!70, font=\scriptsize] at (\x, -1.65) {\lbl}; + } + + \end{tikzpicture} + \caption{UK DSIT Copyright and AI Consultation results (December 2025): 88\% of respondents supported mandatory licensing.} + \label{fig:88-percent} +\end{figure} diff --git a/latex/figures/tikz_agency_continuum.tex b/latex/figures/tikz_agency_continuum.tex new file mode 100644 index 0000000..40c00ca --- /dev/null +++ b/latex/figures/tikz_agency_continuum.tex @@ -0,0 +1,39 @@ +\begin{figure}[htbp] + \centering + \begin{tikzpicture}[font=\small, every node/.style={align=center}] + % Five coloured segments + \fill[darkgreen] (0,0) rectangle (2.4,0.7); + \fill[darkgreen!75!darkblue] (2.4,0) rectangle (4.8,0.7); + \fill[darkgreen!50!darkblue] (4.8,0) rectangle (7.2,0.7); + \fill[darkgreen!25!darkblue] (7.2,0) rectangle (9.6,0.7); + \fill[darkblue] (9.6,0) rectangle (12,0.7); + + % Outline + \draw[chaptergrey, thick] (0,0) rectangle (12, 0.7); + + % Position labels + \node[text width=2.2cm, font=\scriptsize] at (1.2, -0.55) + {\textbf{Human-only}\\[1pt]{\color{chaptergrey}traditional craft}}; + \node[text width=2.2cm, font=\scriptsize] at (3.6, -0.55) + {\textbf{AI-assisted}\\[1pt]{\color{chaptergrey}spell-check, auto-tune}}; + \node[text width=2.2cm, font=\scriptsize] at (6.0, -0.55) + {\textbf{AI-augmented}\\[1pt]{\color{chaptergrey}Copilot, Firefly}}; + \node[text width=2.2cm, font=\scriptsize] at (8.4, -0.55) + {\textbf{AI-directed}\\[1pt]{\color{chaptergrey}orchestrates agents}}; + \node[text width=2.2cm, font=\scriptsize] at (10.8, -0.55) + {\textbf{AI-autonomous}\\[1pt]{\color{chaptergrey}approves/rejects}}; + + % End labels + \node[darkgreen, font=\small\bfseries, anchor=west] at (0, 1.15) + {Full Human Control}; + \node[darkblue, font=\small\bfseries, anchor=east] at (12, 1.15) + {Full AI Autonomy}; + + % Arrow + \draw[-stealth, chaptergrey, thick] (0, -1.4) -- (12, -1.4); + \node[chaptergrey, font=\scriptsize, anchor=west] at (0, -1.65) + {Increasing AI agency}; + \end{tikzpicture} + \caption{The Human--AI Agency Continuum: five positions on the spectrum of creative control.} + \label{fig:agency-continuum} +\end{figure} diff --git a/latex/figures/tikz_coordination_collapse.tex b/latex/figures/tikz_coordination_collapse.tex new file mode 100644 index 0000000..69cd13c --- /dev/null +++ b/latex/figures/tikz_coordination_collapse.tex @@ -0,0 +1,90 @@ +\begin{figure}[htbp] + \centering + \begin{tikzpicture}[ + font=\small, + every node/.style={align=center}, + >=stealth + ] + + % Central node + \node[ + draw=darkblue, fill=darkblue, text=white, + rounded corners=4pt, minimum width=2.8cm, minimum height=1.0cm, + font=\small\bfseries + ] (centre) at (0,0) {Creative\\Organisation}; + + % Ring nodes (6 positions, evenly spaced) + \node[ + draw=darkgreen, fill=darkgreen!15!white, text=darkgreen!70!black, + rounded corners=3pt, minimum width=2.2cm, minimum height=0.85cm, + font=\scriptsize\bfseries + ] (talent) at (0, 3.6) {Human Talent}; + + \node[ + draw=darkblue, fill=darkblue!12!white, text=darkblue, + rounded corners=3pt, minimum width=2.2cm, minimum height=0.85cm, + font=\scriptsize\bfseries + ] (ai) at (3.12, 1.8) {AI Agents}; + + \node[ + draw=rulegold, fill=rulegold!15!white, text=rulegold!70!black, + rounded corners=3pt, minimum width=2.2cm, minimum height=0.85cm, + font=\scriptsize\bfseries + ] (clients) at (3.12, -1.8) {Clients}; + + \node[ + draw=chaptergrey, fill=chaptergrey!12!white, text=chaptergrey, + rounded corners=3pt, minimum width=2.2cm, minimum height=0.85cm, + font=\scriptsize\bfseries + ] (audience) at (0, -3.6) {Audience}; + + \node[ + draw=rulegold, fill=rulegold!15!white, text=rulegold!70!black, + rounded corners=3pt, minimum width=2.2cm, minimum height=0.85cm, + font=\scriptsize\bfseries + ] (rights) at (-3.12, -1.8) {Rights Holders}; + + \node[ + draw=darkblue, fill=darkblue!12!white, text=darkblue, + rounded corners=3pt, minimum width=2.2cm, minimum height=0.85cm, + font=\scriptsize\bfseries + ] (platform) at (-3.12, 1.8) {Platform APIs}; + + % Solid lines: traditional coordination paths (intact) + \draw[darkgreen, thick] (centre) -- (talent); + \draw[chaptergrey, thick] (centre) -- (audience); + + % Dashed lines: AI-disrupted paths + \draw[darkblue!50, thick, dashed] (centre) -- (ai); + \draw[rulegold!70!black, thick, dashed] (centre) -- (clients); + \draw[rulegold!70!black, thick, dashed] (centre) -- (rights); + \draw[darkblue!50, thick, dashed] (centre) -- (platform); + + % Broken connections: draw with red X marks + % Broken: AI Agents <-> Human Talent + \draw[alertred, thick, dashed] (ai) -- (talent); + \node[alertred, font=\Large\bfseries] at (1.9, 2.8) {$\times$}; + + % Broken: Rights Holders <-> Platform APIs + \draw[alertred, thick, dashed] (rights) -- (platform); + \node[alertred, font=\Large\bfseries] at (-3.12, 0) {$\times$}; + + % Broken: Clients <-> Audience + \draw[alertred, thick, dashed] (clients) -- (audience); + \node[alertred, font=\Large\bfseries] at (1.9, -2.8) {$\times$}; + + % Legend + \begin{scope}[shift={(-5.0,-4.8)}] + \draw[darkgreen, thick] (0,0) -- (0.7,0); + \node[anchor=west, font=\scriptsize, text=chaptergrey] at (0.8,0) {Traditional path (intact)}; + \draw[darkblue!60, thick, dashed] (0,-0.45) -- (0.7,-0.45); + \node[anchor=west, font=\scriptsize, text=chaptergrey] at (0.8,-0.45) {AI-disrupted path}; + \draw[alertred, thick, dashed] (0,-0.9) -- (0.7,-0.9); + \node[alertred, font=\small\bfseries] at (0.35, -0.88) {$\times$}; + \node[anchor=west, font=\scriptsize, text=chaptergrey] at (0.8,-0.9) {Coordination failure}; + \end{scope} + + \end{tikzpicture} + \caption{Coordination Collapse: the multiplication of interfaces between human and AI stakeholders overwhelms traditional organisational structures.} + \label{fig:coordination-collapse} +\end{figure} diff --git a/latex/figures/tikz_four_principles.tex b/latex/figures/tikz_four_principles.tex new file mode 100644 index 0000000..2f33652 --- /dev/null +++ b/latex/figures/tikz_four_principles.tex @@ -0,0 +1,72 @@ +\begin{figure}[htbp] + \centering + \begin{tikzpicture}[ + font=\small, + every node/.style={align=center}, + >=stealth + ] + + % --- Four principle boxes --- + + % Top-left: Transparency (darkblue) + \node[ + draw=darkblue, fill=darkblue, text=white, + rounded corners=5pt, + minimum width=4.8cm, minimum height=2.4cm, + font=\small + ] (transparency) at (-2.8, 2.2) { + \textbf{Transparency}\\[4pt] + \footnotesize Disclose when AI is\\used in the creative pipeline + }; + + % Top-right: Consent (darkgreen) + \node[ + draw=darkgreen, fill=darkgreen, text=white, + rounded corners=5pt, + minimum width=4.8cm, minimum height=2.4cm, + font=\small + ] (consent) at (2.8, 2.2) { + \textbf{Consent}\\[4pt] + \footnotesize Creators must opt in\\to training data use + }; + + % Bottom-left: Compensation (rulegold) + \node[ + draw=rulegold, fill=rulegold, text=white, + rounded corners=5pt, + minimum width=4.8cm, minimum height=2.4cm, + font=\small + ] (compensation) at (-2.8, -2.2) { + \textbf{Compensation}\\[4pt] + \footnotesize Fair economic return for\\data and creative work + }; + + % Bottom-right: Accountability (chaptergrey) + \node[ + draw=chaptergrey, fill=chaptergrey, text=white, + rounded corners=5pt, + minimum width=4.8cm, minimum height=2.4cm, + font=\small + ] (accountability) at (2.8, -2.2) { + \textbf{Accountability}\\[4pt] + \footnotesize Clear liability chains for\\AI-generated output + }; + + % Centre label + \node[ + draw=chaptergrey!40, fill=white, + rounded corners=4pt, + minimum width=2.8cm, minimum height=1.2cm, + font=\small\bfseries, text=chaptergrey + ] (centre) at (0, 0) {The Four\\Principles}; + + % Connecting lines from each box to centre + \draw[chaptergrey!50, thin] (transparency.south east) -- (centre.north west); + \draw[chaptergrey!50, thin] (consent.south west) -- (centre.north east); + \draw[chaptergrey!50, thin] (compensation.north east) -- (centre.south west); + \draw[chaptergrey!50, thin] (accountability.north west) -- (centre.south east); + + \end{tikzpicture} + \caption{The Four Principles: the book's proposed framework for governing AI in the creative industries.} + \label{fig:four-principles} +\end{figure} diff --git a/latex/figures/tikz_slop_ceiling.tex b/latex/figures/tikz_slop_ceiling.tex new file mode 100644 index 0000000..9748053 --- /dev/null +++ b/latex/figures/tikz_slop_ceiling.tex @@ -0,0 +1,67 @@ +\begin{figure}[htbp] + \centering + \begin{tikzpicture}[ + font=\small, + >=stealth + ] + % Axes + \draw[->, thick, chaptergrey] (0,0) -- (9.5,0) + node[right, font=\small] {Volume of AI-generated content}; + \draw[->, thick, chaptergrey] (0,0) -- (0,6.5) + node[above, font=\small] {Audience acceptance}; + + % Axis tick labels (log-scale feel) + \foreach \x/\lbl in {1/Low, 3/Medium, 5.5/High, 8/Very high}{ + \node[chaptergrey, font=\scriptsize, below] at (\x, -0.05) {\lbl}; + } + + % Tolerance threshold (horizontal dashed line) + \draw[rulegold, dashed, thick] (0, 4.5) -- (9.2, 4.5) + node[right, font=\scriptsize, text=rulegold, align=left] {Audience tolerance\\threshold}; + + % Shaded accepted region (below ceiling) + \fill[darkgreen!12!white] (0,0) rectangle (9.2, 4.5); + % Shaded rejected region (above ceiling) + \fill[darkblue!8!white] (0, 4.5) rectangle (9.2, 6.2); + + % Region labels + \node[darkgreen!60!black, font=\small\itshape] at (4.6, 2.2) {Accepted}; + \node[darkblue!70!black, font=\small\itshape] at (4.6, 5.4) {Rejected}; + + % Growth curve: rises steeply then flattens hard at ceiling + % Parametric: y = 4.5 * (1 - exp(-x/2.5)) approximated with plot + \draw[darkblue, very thick, smooth] plot coordinates { + (0.0, 0.00) + (0.5, 0.84) + (1.0, 1.55) + (1.5, 2.14) + (2.0, 2.62) + (2.5, 3.02) + (3.0, 3.35) + (3.5, 3.62) + (4.0, 3.83) + (4.5, 4.01) + (5.0, 4.15) + (5.5, 4.26) + (6.0, 4.33) + (6.5, 4.38) + (7.0, 4.42) + (7.5, 4.44) + (8.0, 4.46) + (8.5, 4.47) + (9.0, 4.48) + }; + + % Annotate the Deezer data point + \fill[rulegold] (7.5, 4.44) circle (3pt); + \draw[rulegold, thin] (7.5, 4.44) -- (6.2, 5.7); + \node[rulegold, font=\scriptsize, align=left, anchor=south west] at (3.9, 5.7) + {Deezer: 75,000 AI tracks/day\\1--3\% of streams}; + + % X-axis origin label + \node[chaptergrey, font=\scriptsize] at (0, -0.35) {0}; + + \end{tikzpicture} + \caption{The Slop Ceiling: audience tolerance imposes a hard quality threshold on AI-generated content.} + \label{fig:slop-ceiling} +\end{figure} diff --git a/latex/figures/tikz_toolchain_layers.tex b/latex/figures/tikz_toolchain_layers.tex new file mode 100644 index 0000000..c6e3cbd --- /dev/null +++ b/latex/figures/tikz_toolchain_layers.tex @@ -0,0 +1,67 @@ +\begin{figure}[htbp] + \centering + \begin{tikzpicture}[ + font=\small, + every node/.style={align=center} + ] + + % Layer definitions: {y-position, half-width, fill colour, text colour, title, subtitle} + % Layers drawn bottom to top, widest at bottom + + % Layer 1: Foundation Models (darkblue, widest) + \fill[darkblue, rounded corners=3pt] + (-5.5, 0.0) rectangle (5.5, 1.0); + \node[text=white, font=\small\bfseries] at (0, 0.62) + {Foundation Models}; + \node[text=white!80!darkblue, font=\scriptsize] at (0, 0.25) + {GPT, Claude, Gemini, Llama, Stable Diffusion}; + + % Layer 2: Creative Middleware (darkgreen) + \fill[darkgreen, rounded corners=3pt] + (-4.6, 1.15) rectangle (4.6, 2.15); + \node[text=white, font=\small\bfseries] at (0, 1.77) + {Creative Middleware}; + \node[text=white!80!darkgreen, font=\scriptsize] at (0, 1.40) + {ComfyUI, Runway, ElevenLabs, Suno}; + + % Layer 3: Application Layer (rulegold) + \fill[rulegold, rounded corners=3pt] + (-3.7, 2.30) rectangle (3.7, 3.30); + \node[text=white, font=\small\bfseries] at (0, 2.92) + {Application Layer}; + \node[text=white!80!rulegold, font=\scriptsize] at (0, 2.55) + {Adobe Creative Suite, DaVinci, Pro Tools}; + + % Layer 4: Orchestration (chaptergrey) + \fill[chaptergrey, rounded corners=3pt] + (-2.8, 3.45) rectangle (2.8, 4.45); + \node[text=white, font=\small\bfseries] at (0, 4.07) + {Orchestration}; + \node[text=white!80!chaptergrey, font=\scriptsize] at (0, 3.70) + {Multi-agent systems, Claude Code, MCP}; + + % Layer 5: Human Creative (white/outline, narrowest) + \fill[white, rounded corners=3pt] + (-1.9, 4.60) rectangle (1.9, 5.60); + \draw[chaptergrey, thick, rounded corners=3pt] + (-1.9, 4.60) rectangle (1.9, 5.60); + \node[text=chaptergrey, font=\small\bfseries] at (0, 5.22) + {Human Creative}; + \node[text=chaptergrey!80, font=\scriptsize] at (0, 4.85) + {Intent, Taste, Judgement}; + + % Width annotation arrows on right side + \draw[chaptergrey!60, <->, thin] (5.7, 0.0) -- (5.7, 1.0) + node[midway, right, font=\scriptsize, text=chaptergrey] {}; + \node[chaptergrey!60, font=\scriptsize, anchor=west] at (5.8, 5.1) + {Narrowing\\scope}; + \draw[chaptergrey!40, ->, thin] (5.8, 4.9) -- (5.8, 0.5); + + % Bottom label + \node[chaptergrey, font=\scriptsize\itshape] at (0, -0.35) + {$\leftarrow$ Wider ecosystem reach \hspace{2cm} Narrower human creative domain $\rightarrow$}; + + \end{tikzpicture} + \caption{The creative AI toolchain: five layers from foundation models to human creative intent.} + \label{fig:toolchain-layers} +\end{figure} diff --git a/latex/figures/wardley_creative_economy.png b/latex/figures/wardley_creative_economy.png new file mode 100644 index 0000000000000000000000000000000000000000..63546d9c6136a98a6b35d3f8a61557111a5c8855 GIT binary patch literal 181849 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ⅈX8__W2{Vjk52Q%*g#3tbC{Xx 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

=5aoukE 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 B9moIx literal 0 HcmV?d00001 diff --git a/latex/figures/wardley_creative_economy.tex b/latex/figures/wardley_creative_economy.tex new file mode 100644 index 0000000..547a1de --- /dev/null +++ b/latex/figures/wardley_creative_economy.tex @@ -0,0 +1,6 @@ +\begin{figure}[htbp] +\centering +\includegraphics[width=\textwidth]{figures/wardley_creative_economy.png} +\caption{The Creative Economy Landscape --- a Wardley map of the broader value chain during AI transition. Upper layer (\emph{visible}): the working creative's outputs, audience relationship, and brand/authenticity signal. Middle layer (\emph{orchestration}): AI tool stack, human judgement, and the emerging attribution infrastructure. Infrastructure layer: foundation models, training data, and compute commoditising toward utility. C2PA/provenance standards occupy the disclosure layer between orchestration and infrastructure. The authenticity premium (upper left) and the slop ceiling (middle right) are the two market forces shaping creative-economy strategy in 2025--26. Based on the analysis in Chapters~\ref{ch:5}, \ref{ch:7}, and \ref{ch:11}.} +\label{fig:wardley-creative-economy} +\end{figure} diff --git a/latex/figures/wardley_studios.png b/latex/figures/wardley_studios.png new file mode 100644 index 0000000000000000000000000000000000000000..fe9319992cf70b6436bf75867bc950344661d77f GIT binary patch literal 189611 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

m`qu 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 z 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 web traffic bots VERIFIED + (51% total automated traffic) +7 James Cameron "horrifying" / Guardian/Variety PARTIALLY VERIFIED + Dec 2025 (quote confirmed; Variety Nov 30 + not Dec; Guardian unverified) +8 del Toro "I'd rather die" / Variety Oct 2025 VERIFIED + +================================================================================ + +RECOMMENDED ACTIONS +--------------------------------------------------------------------------- +1. CLAIM 1: Change "11,514 responses" to "over 11,500 responses" to match the + official government wording, or verify the exact figure from the full published + consultation response document. + +2. CLAIM 5: Verify the Hollywood Reporter citation exists. If the story broke via + The Verge (14 May 2026), update the source attribution. Confirm "feature- + quality shorts" language against the actual job listing text. + +3. CLAIM 7: Confirm whether a Guardian article exists for the Cameron quote, or + update the citation to Variety, 30 November 2025 (not December). + +================================================================================ +END OF REPORT

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 literal 0 HcmV?d00001 diff --git a/latex/figures/chart_citations_per_chapter.pdf b/latex/figures/chart_citations_per_chapter.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29b76cc0dc2e2686ba7651d53537fa04f88b90fc GIT binary patch literal 19640 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 literal 0 HcmV?d00001 diff --git a/latex/figures/chart_domain_distribution.pdf b/latex/figures/chart_domain_distribution.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8ff7e1a0e841d148379707cdd649173c014573a7 GIT binary patch literal 23515 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 literal 0 HcmV?d00001 diff --git a/latex/figures/chart_timeline.pdf b/latex/figures/chart_timeline.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3dbbd37242b27d9be4064c81140d050380d82275 GIT binary patch literal 31402 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 A)&Kwi literal 0 HcmV?d00001 diff --git a/latex/figures/chart_tool_categories.pdf b/latex/figures/chart_tool_categories.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c9fa048b5c1187c6f673ae1809feddc63bee003 GIT binary patch literal 28646 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