How bdrop.studio marks AI-generated content
Why this page exists
Every Drop bdrop.studio produces — the cover art, the track, and, where your Drop includes them, the video and the Studio Analysis Report — carries a machine-readable marker embedded directly in the file. Nothing changes in what you see or hear: no watermark, no visible tag, no logo. The marker lives in the file's own metadata, the same place a photo stores its camera model or a PDF stores its author.
Article 50(2) of the EU AI Act requires this: an AI provider must mark generated content in a machine-readable way, and must make it possible for anyone to check that marking. This page is the second half of that duty — it states exactly what we embed, in which file, and the exact command any recipient, journalist, or authority can run to read it out themselves. The tools are free and standard: exiftool (exiftool.org), ffprobe (part of FFmpeg), and pdfinfo.
The four artefact types
Cover art (PNG / JPEG)
An XMP metadata packet, inserted into the image file without touching a single pixel:
- Iptc4xmpExt:DigitalSourceType = http://cv.iptc.org/newscodes/digitalsourcetype/trainedAlgorithmicMedia (the IPTC-standard value for "generated by a trained algorithm")
- photoshop:Credit = AI-generated | bdrop.studio
Verify it
exiftool -XMP-iptcExt:DigitalSourceType -XMP-photoshop:Credit your-cover.pngWhat you'll see
A "Digital Source Type" field carrying the trainedAlgorithmicMedia URL above, and a "Credit" field reading "AI-generated | bdrop.studio".
The track (MP3)
Two ID3v2.3 frames, written directly into the audio file:
- A TXXX (custom text) frame — description "AI-GENERATED", value "true; system=bdrop.studio"
- A COMM (comment) frame — text "AI-generated content (EU AI Act Art. 50(2) marking)"
Verify it
exiftool -a -u -g1 your-track.mp3What you'll see
A comment field reading "AI-generated content (EU AI Act Art. 50(2) marking)", and a user-defined text field carrying the description "AI-GENERATED" and the value "true; system=bdrop.studio". (Exact field labels vary slightly by reader — the frame content itself is exact.)
The video (MP4)
A container-level comment tag, written as an unconditional final step on every render. No video or audio stream is touched — only the container metadata:
- comment = AI-generated content — bdrop.studio
Verify it
ffprobe -v quiet -show_entries format_tags=comment -of default=noprint_wrappers=1 your-video.mp4What you'll see
TAG:comment=AI-generated content — bdrop.studio
The Studio Analysis Report (PDF)
Four fields in the PDF's own Document Info dictionary:
- Subject = AI-generated content — bdrop.studio
- Keywords = AI-generated content — bdrop.studio
- Creator = bdrop.studio
- Producer = bdrop.studio
Verify it
pdfinfo your-report.pdfWhat you'll see
Subject, Keywords, Creator, and Producer lines carrying the values above. (exiftool your-report.pdf shows the same fields.)
A note on scope
This page documents our current marking-and-detection implementation under Article 50(2) of the EU AI Act. It is a factual disclosure, not a declaration of full legal conformity — bdrop.studio has not signed the EU Transparency Code of Practice, and this page is not a certification. Last updated: 30 August 2026.
Questions about this page or about a specific file: see the contact details in our Impressum.