Index: src/services/ap-timeline.js
===================================================================
--- src/services/ap-timeline.js	(revision 9946a68c3cdf4796d3e5ab4c7f6e3317e0f40984)
+++ src/services/ap-timeline.js	(revision 8a474ab1b2ce34c493e6e674100b989019d38cfe)
@@ -486,5 +486,5 @@
 /** Bijlagen door de beeld- en muziekpoort. Leeg wordt undefined, zoals de
  *  serialisatie dat overal doet. */
-export function gateAttachments(atts, { images = true, audio = true } = {}) {
+export function gateAttachments(atts, { images = true, audio = true, video = true } = {}) {
   if (!Array.isArray(atts)) return atts;
   const out = atts.filter((a) => {
@@ -492,4 +492,7 @@
     if (!images && mt.startsWith('image/')) return false;
     if (!audio && (mt.startsWith('audio/') || (a && a.type === 'Audio'))) return false;
+    // Film hoorde hier ook thuis (shaer-mxh2) en stond er niet: met plaatjes en
+    // muziek dicht kwam een video er nog steeds gewoon doorheen.
+    if (!video && (mt.startsWith('video/') || (a && a.type === 'Video'))) return false;
     return true;
   });
