--- license: cc-by-nc-4.0 pretty_name: Env Seed Media tags: - agent-sandbox - red-teaming - seed-data --- # Env Seed Media Binary seed assets (images, video, audio, fonts, brand marks) for the sandbox environments used by the DecodingTrust agent platform and the forgingground environment suite. These files are **separated out of the application repositories** so the env source stays lightweight and text-only. Each environment fetches its media from here at build/seed time and places it back under the paths shown below. ## Layout The tree mirrors each environment's own directory structure, so restoring is a straight copy of `/` into that environment's source root. ``` tiktok/ videos/ # short-form clip library (*.mp4) netflix/ netflix_api/media/ posters/ # title poster art (*.jpg) backdrops/ # title backdrop art (*.jpg) video/ # trailer / playback clips (*.mp4) netflix_ui/public/ brand/ # Netflix wordmark / brand marks (*.svg) fonts/ # UI web fonts (*.woff2) spotify/ spotify_api/media/ # cover / artist / playlist art (*.jpg) spotify_ui/public/ fonts/ # UI web fonts (*.woff2) demo-video.webm # canvas / demo playback clip demo-audio.wav # demo audio track ``` ## Contents | Environment | Files | Notes | |-------------|-------|-------| | `tiktok` | 75 videos | short-form clip library | | `netflix` | 119 images, 6 videos, 2 brand marks, 10 fonts | 60 posters + 59 backdrops | | `spotify` | 175 images, 1 video, 1 audio, 6 fonts | cover / artist / playlist art | ## Usage Download a single environment's media with `huggingface_hub`: ```python from huggingface_hub import snapshot_download snapshot_download( repo_id="AI-Secure/Env-seed-media", repo_type="dataset", allow_patterns="netflix/*", # or "spotify/*", "tiktok/*" local_dir="./seed-media", ) ``` Then copy `seed-media/netflix/*` into the Netflix environment source root (`.../envs/netflix/`) — the sub-paths already match where the app serves them. Or with the CLI: ```bash hf download AI-Secure/Env-seed-media --repo-type dataset \ --include "spotify/*" --local-dir ./seed-media ``` ## Notes - Large binaries are tracked with Git LFS (see `.gitattributes`). - Assets are for building offline agent-sandbox replicas of these products for research and red-teaming; they are not affiliated with or endorsed by the respective rights holders.