Experimental Film Synopsis Generator
Articulate the structure, medium, and themes of your experimental film project.
The generated synopsis focuses on communicating the film's artistic process and thematic core, which is essential for experimental film submissions.
Artistic Synopsis
Define Film Elements
1. Identity & Structure
2. Thematic Core & Arc
${protagonist} utilizes a ${medium} approach, structured by ${structure}. It explores the ${theme}. The conceptual arc moves through ${arc}.
`; } function efsg_renderDashboard(targetDiv = efsg_synopsisPreview, isPDF = false) { if (!targetDiv) return; targetDiv.innerHTML = efsg_generateSynopsisHTML(efsg_data); } // --- PDF Generation and Management --- function efsg_renderPdfClone() { const synopsisHTML = efsg_generateSynopsisHTML(efsg_data); const date = new Date().toLocaleDateString('en-US'); let structureBreakdown = ''; if (efsg_data.title) { structureBreakdown = `Breakdown of Core Elements:
- Visual Medium: ${efsg_escapeHTML(efsg_data.medium)}
- Structure: ${efsg_escapeHTML(efsg_data.structure)}
- Primary Theme: ${efsg_escapeHTML(efsg_data.theme)}
- Conceptual Arc: ${efsg_escapeHTML(efsg_data.arc)}
Experimental Film Synopsis
Date Generated: ${date}
${synopsisHTML}
${structureBreakdown}
