Skip to main content

Plotagon Director

Génération de films Plotagon Studio Desktop de bout en bout : écriture du scénario en YAML, validation contre la bibliothèque de ressources réelle, génération d'un fichier .plot importable dans l'application officielle — avec voix custom Edge TTS et synchro labiale.

Le format .plot a été entièrement rétro-ingénieré et confirmé par analyse d'exports officiels (v1.11.0) : ZIP contenant un document JSON .plotdoc (liste plate d'instructions scene, dialogue, music, action) et, par réplique vocalisée, un WAV mono 44,1 kHz + un fichier .phonemes (protobuf) pour la synchro labiale. Spécification complète : docs/PLOT_FORMAT.md.

Installation

pip install -e .                 # depuis un clone: commande `plotagon-director`
# ou directement depuis GitHub :
pip install git+https://github.com/mohamed-amine-ben-mallessa/plotagon-director.git

La bibliothèque de ressources (library.json) est embarquée dans le package : le générateur fonctionne sans installation Plotagon. L'extra [library] (pip install -e .[library], ajoute UnityPy) n'est nécessaire que pour reconstruire la bibliothèque depuis une installation Plotagon.

Usage

# Écrire un scénario
plotagon-director new "Mon film"              # squelette commenté
plotagon-director search bureau               # cherche dans toute la bibliothèque
plotagon-director list scenes --filter cafe   # aussi: characters, expressions,
plotagon-director list actions                #   music, sounds, voices
plotagon-director positions restaurants.cafe  # slots d'acteurs d'une scène
plotagon-director voices fr --male            # voix Edge TTS (--female, --filter)
plotagon-director say "Bonjour" fr-FR-DeniseNeural  # écouter une voix
#   list/search/positions/voices/validate acceptent --json

# Valider puis générer
plotagon-director validate mon-film.yaml [--strict] [--json]
plotagon-director preview mon-film.yaml       # durées estimées sans builder
plotagon-director build mon-film.yaml mon-film.plot
#   --no-voices : hors ligne | --srt subs.srt : sous-titres
#   --no-cache : resynthétise tout (sinon cache TTS automatique)
plotagon-director batch scenarios/ sorties/   # tous les .yaml d'un dossier

# Importer mon-film.plot dans Plotagon Studio (menu import)

# Analyse / rétro-ingénierie
plotagon-director parse export.plot           # JSON brut d'un .plot
plotagon-director decompile export.plot film.yaml   # .plot -> YAML éditable
plotagon-director diff avant.plot apres.plot  # isoler un format inconnu
plotagon-director doctor                      # diagnostic environnement

# (Reconstruire la bibliothèque depuis une installation Plotagon)
python -m plotagon_director.library.builder [chemin/builtincontentmanifest.json]

Storyteller : d'une vidéo au film

Pipeline automatisé en 7 étapes : URL vidéo (YouTube, TikTok, Instagram, X — tout ce que yt-dlp supporte), fichier média local ou transcription [MM:SS] → téléchargement (yt-dlp) → transcription horodatée (yapsnap, modèle Kroko local) → parsing → suggestion d'expressions → project.yaml → validation → .plot.

pip install plotagon-director[storyteller]   # ajoute yt-dlp + yapsnap
plotagon-storyteller "https://www.tiktok.com/@x/video/..." --lang fr
plotagon-storyteller transcription.txt --title "Mon pitch" --yaml-only
# alias : plotagon-director storytell ...
# équivalent : python skills/plotagon-storyteller/scripts/transcribe_and_build.py ...

Prérequis : ffmpeg sur le PATH (node recommandé pour YouTube). Le téléchargement passe par l'API yt-dlp in-process avec truststore ( compatible avec les antivirus qui interceptent le TLS). Voix disponibles : docs/VOICES.md. Skill Claude Code dédié : skills/plotagon-storyteller/.

Exemple de scénario

project:
  title: "Conversation au café"

cast:
  - ref: paul
    character: news.paul
    name: "Paul"
    voice: fr-FR-HenriNeural      # optionnel : voix Edge TTS (+ rate/pitch)
  - ref: lucy
    character: news.lucy
    name: "Lucy"
    voice: fr-FR-DeniseNeural

scenes:
  - scene: restaurants.cafe
    music: music.corny            # optionnel (music.stopmusic pour arrêter)
    actors:
      - ref: paul
        position: Table1          # `plotagon-director positions restaurants.cafe`
      - ref: lucy
        position: Table2
    dialogue:
      - actor: paul
        expression: happy
        text: "Bonjour Lucy !"
        camera: wide shot         # optionnel : 10 types (docs/PLOT_FORMAT.md)
      - actor: paul               # interaction à 2 personnages
        action: handshake
        target: lucy

Bibliothèque embarquée : 205 scènes (953 positions), 53 personnages, 88 expressions, 15 actions, 38 musiques, 132 sons.

Architecture

  • plotagon_director/core/ — modèle .plotdoc, conteneur ZIP, validateur, décompilateur, diff
  • plotagon_director/audio/ — Edge TTS → WAV conforme (cache + parallèle), phonèmes/lip-sync
  • plotagon_director/library/ — builder du catalogue + data/library.json
  • plotagon_director/storyteller.py — pipeline vidéo/transcription → .plot (plotagon-storyteller)
  • docs/ — rétro-ingénierie du format (PLOT_FORMAT.md), API interne de l'appli (APP_JS_ANALYSIS.md), état des connaissances (FINDINGS.md), voix Edge TTS (VOICES.md)
  • skills/ — un dossier par skill Claude Code, chacun avec son SKILL.md, ses tests et ses scripts :
    • plotagon-director/ — le skill principal (+ tests du package)
    • plotagon-storyteller/ — pipeline Storyteller (+ scripts/transcribe_and_build.py, tests)
    • plotagon-director-cloud/ — variante claude.ai (sandbox + PyPI, sans voix) ; voir son README.md pour générer le zip d'upload
  • projects/ — films d'exemple complets (YAML + sous-titres)
  • CHANGELOG.md — historique des versions

Intégration agents IA

Le projet expose plusieurs surfaces pour les agents :

  • AGENTS.md (standard Linux Foundation) : instructions repo pour tout agent de code ; llms.txt : plan de la doc pour la découverte web.
  • Serveur MCP : pip install plotagon-director[mcp] puis plotagon-director mcp (stdio). Outils : search_library, list_category, scene_positions, list_voices, validate_project, preview_durations, build_film, storytell. Compatible Claude Desktop/Code, Cursor, VS Code, Gemini CLI... Exemple de config client : {"command": "plotagon-director", "args": ["mcp"]}
  • API HTTP + OpenAPI : pip install plotagon-director[http] puis plotagon-director serve (docs interactives sur /docs) : /search, /library, /positions, /validate, /preview, /build (renvoie le .plot).
  • JSON Schema : plotagon_director/schemas/project.schema.json (aussi servi sur /schema) — validation côté agent avant tout appel.
  • Sorties machine : --json sur validate/list/search/positions/voices ; validate --json renvoie les suggestions d'IDs dans un champ structuré.
  • Skills packagés : python skills/package.py génère dans dist-skills/ un zip par skill, uploadable sur claude.ai et compatible clients Agent Skills.

Principes

  • Aucun mod, aucun binaire tiers, aucun credential.
  • Installation officielle en lecture seule.
  • Seuls les éléments confirmés par un export officiel sont générés ; le reste (effets visuels, sons importés) est documenté UNKNOWN dans docs/FINDINGS.md.

Tests

python -m pytest -q

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plotagon_director-0.9.0.tar.gz (49.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plotagon_director-0.9.0-py3-none-any.whl (51.8 kB view details)

Uploaded Python 3

File details

Details for the file plotagon_director-0.9.0.tar.gz.

File metadata

  • Download URL: plotagon_director-0.9.0.tar.gz
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for plotagon_director-0.9.0.tar.gz
Algorithm Hash digest
SHA256 1e35fed4df988d84ef0fbbe6badf452bcbb0827523e6c726fdf6aa436766c268
MD5 9d791ed61e9b6f07a7801f35b1007f48
BLAKE2b-256 3bdee8fbb4dc8db899ec0739a645c7f56cf9f6196691001035fd1474a7ed2880

See more details on using hashes here.

File details

Details for the file plotagon_director-0.9.0-py3-none-any.whl.

File metadata

File hashes

Hashes for plotagon_director-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 93e4a3474cb5ccdba3971122a07804de3b8b9a62c385be9bfa03c2fa700ce95b
MD5 2a766f18449e8854f594917c5cf4947c
BLAKE2b-256 4807e31f4c48582ea9ef8039d09ea3033fb81a6fd777f70263e0a6983e86ef66

See more details on using hashes here.

Release history Release notifications | RSS feed

0.12.0

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.2

2 files

0.9.1

2 files

This release

0.9.0 This release

2 files

0.8.0

2 files

0.7.1

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page