<?xml version="1.0"?>
<rss version="2.0"><channel><title>PreShow Content Latest Topics</title><link>https://preshowexperience.com/forums/forum/4-preshow-content/</link><description>PreShow Content Latest Topics</description><language>en</language><item><title>Audio Format Bumper:  THX - Sphere</title><link>https://preshowexperience.com/forums/topic/4440-audio-format-bumper-thx-sphere/</link><description><![CDATA[
<h3>THX - Sphere</h3>

<p>THX Sphere Trailer in 4K with 7.1 Audio in Dolby TrueHD and Dolby Digital Plus (secondary track).</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 
<a href='https://preshowexperience.com/profile/1705-toastymaster07/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target="https://preshowexperience.com/profile/1705-toastymaster07/?do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Ffile%252F243-thx-sphere%252F%253FcsrfKey%253D9c64b4dd4e98a1d0e4c4e333c44648a2%2526do%253Dmoderate%2526action%253Dunhide" title="Go to ToastyMaster07's profile" class="ipsUsername" translate="no">ToastyMaster07</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 04/07/2026
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/243-thx-sphere/'>View File</a>
</p>
<p><img class="ipsImage ipsImage_thumbnailed ipsRichText__align--block" data-fileid="993" data-full-image="https://preshowexperience.com/uploads/monthly_2026_04/vlcsnap-2026-04-07-16h56m46s968.thumb.png.443a3dff4c05d482574f7c25fa820913.png" src="https://preshowexperience.com/uploads/monthly_2026_04/vlcsnap-2026-04-07-16h56m46s968.thumb.png.443a3dff4c05d482574f7c25fa820913.png" height="281" width="500" alt="THX - Sphere" loading='lazy'></p>]]></description><guid isPermaLink="false">4440</guid><pubDate>Tue, 07 Apr 2026 14:57:26 +0000</pubDate></item><item><title>Preshow theater intros</title><link>https://preshowexperience.com/forums/topic/4434-preshow-theater-intros/</link><description><![CDATA[<p>Currently working out a series of videos for theater intros. Using Unreal Engine. </p><p>Slow going but I hope to make one for every genre. At least I have one. I customized the Regal Cinemas 1990's roller coaster to my theater. Used some AI to change some wording in the narration and Davinci resolve to edit the text on the marque scroller. </p><p>Gruelling work as unreal Engine is hard to learn. Nothing is straight forward. Everything is a task. But I hope in the end it looks great. </p><p>Doing an old West town for westerns. A spooky gothic castle on a hill for horror. I plan to do a parody or homage to the Disney Castle for family movies. </p><p>But I really like watching the playlists on YouTube that feature simple CGI that reminds me of bowling alley animations. That is probably more easily done now with Unreal.</p><p>I will probably sparingly use AI but for home theater intros it seems tempting. But AI programs seem expensive.</p><p>Anyone else have customized intros?</p>]]></description><guid isPermaLink="false">4434</guid><pubDate>Mon, 09 Feb 2026 14:51:18 +0000</pubDate></item><item><title><![CDATA[Dynamic Content Generation for PSE — Custom Title Cards & AI-Powered Trivia]]></title><link>https://preshowexperience.com/forums/topic/4436-dynamic-content-generation-for-pse-custom-title-cards-ai-powered-trivia/</link><description><![CDATA[<p>I've been working on a system that generates <strong>movie-specific content on the fly</strong> every time you launch a PreShow sequence. Instead of static slides, PSE now dynamically creates a "Tonight's Feature" title card and (optionally) 30 custom trivia slides tailored to whatever film you're about to watch. I wanted to share the approach in case others want to build on it.</p><p>Here's what it looks like in practice: you press Start PreShow on "Fargo," and a few seconds later your sequence opens with a custom title card reading "FARGO" on a theater marquee background, followed by 30 slides of trivia, behind-the-scenes facts, and Q&amp;A specific to that film — all generated fresh every time.</p><h2>The Problem</h2><p>PSE's slideshow module is great for static trivia packs, but I wanted content that adapts to whatever movie I'm watching. The challenge is that PSE caches slideshow content when it builds the sequence, so you can't just generate images asynchronously and hope they show up in time.</p><p>I tried a lot of approaches that didn't work before finding one that does:</p><ul><li><p><strong>Action module with Python script</strong> — PSE runs Python actions inside Kodi's embedded Python, which doesn't have libraries like Pillow installed. Also runs asynchronously — PSE moves to the next module before the script finishes.</p></li><li><p><strong>Generating images and hoping the slideshow picks them up</strong> — PSE caches the slide directory contents at sequence build time. If your images aren't there yet, they won't appear.</p></li><li><p><strong>Overwriting existing placeholder images</strong> — PSE caches the actual image data, not the file reference. Overwriting the file after caching has no effect.</p></li><li><p><strong>Skin button interception</strong> — Tried adding a RunScript call before PSE launches from the skin's context menu. Unreliable timing.</p></li></ul><h2>The Solution: Hooking into experience.py</h2><p>The key insight is that PSE resolves the feature film's metadata (title, genre, year, cast, etc.) <strong>before</strong> it builds and caches the sequence. There's a window between "PSE knows what movie you picked" and "PSE scans the slideshow directories" where we can inject code.</p><p>The hook goes into PSE's <code>experience.py</code>, specifically in the method that resolves the feature film from Kodi's library. After PSE appends the feature to its internal list, we write the metadata to temp files and call external Python scripts that generate our content:</p><pre spellcheck="" class="ipsCode language-python" data-language="Python"><code># In experience.py, after self.features.append(feature)
# and before "if not self.features: return False"

if self.features and self.features[-1].title:
    import subprocess
    import json as _json
    _feat = self.features[-1]
    
    # Write title for the compositing script
    with open("/tmp/pse_feature_title.txt", "w") as _f:
        _f.write(_feat.title)
    
    # Write full metadata as JSON for other scripts
    _meta = {
        "title": _feat.title,
        "year": getattr(_feat, "year", 0),
        "genres": getattr(_feat, "genres", []),
        "directors": getattr(_feat, "directors", []),
        "cast": getattr(_feat, "cast", [])[:10],
        "rating": str(getattr(_feat, "rating", "")),
        "runtime": getattr(_feat, "runtime", 0),
    }
    with open("/tmp/pse_feature_metadata.json", "w") as _f:
        _json.dump(_meta, _f)
    
    # Run content generation scripts (synchronous — PSE waits)
    subprocess.call(["/usr/bin/python3", "/path/to/your/script.py"])
</code></pre><p>The critical detail is <code>subprocess.call</code> — this blocks PSE until the script finishes. PSE doesn't proceed to sequence building until our content is generated and sitting in the slideshow directory.</p><p><strong>Important:</strong> We call <code>/usr/bin/python3</code> (system Python) rather than running inside Kodi's Python. This gives us access to any pip-installed library — Pillow for image compositing, requests for API calls, whatever you need. Kodi's embedded Python is limited to its bundled packages.</p><h3>Finding the Right Spot</h3><p>To find where to inject, look for this pattern in <code>experience.py</code>:</p><pre spellcheck="" class="ipsCode language-python" data-language="Python"><code>feature = self.featureFromId(movieid, episodeid)
if feature:
    self.features.append(feature)
# &gt;&gt;&gt; YOUR HOOK GOES HERE &lt;&lt;&lt;
if not self.features:
    return False
return True
</code></pre><p>Search for <code>self.features.append(feature)</code> near <code>featureFromId</code> — there's one instance in the method that handles the "Start PreShow" button press. On my install it's around line 1060.</p><p>After editing, <strong>you must delete the bytecode cache</strong> or Kodi will keep running the old version:</p><pre spellcheck="" class="ipsCode language-bash" data-language="Bash"><code>rm ~/.kodi/addons/script.preshowexperience/resources/lib/__pycache__/experience.cpython-*.pyc
</code></pre><p>Then restart Kodi.</p><h2>What You Can Build With This</h2><p>Once you have the hook in place, the feature metadata is available to any external script. Here's what's in the <code>self.features[-1]</code> object:</p><ul><li><p><strong>title</strong> — Movie title</p></li><li><p><strong>year</strong> — Release year</p></li><li><p><strong>genres</strong> — List of genres (Action, Horror, Drama, etc.)</p></li><li><p><strong>directors</strong> — Director names</p></li><li><p><strong>cast</strong> — Cast list with names and roles</p></li><li><p><strong>rating</strong> — MPAA rating</p></li><li><p><strong>runtime</strong> — Runtime in seconds</p></li><li><p><strong>studios</strong> — Studio names</p></li><li><p><strong>tags</strong> — Kodi library tags</p></li></ul><p>With this data you could:</p><ul><li><p>Generate a custom "Tonight's Feature" title card with the movie name</p></li><li><p>Create genre-themed trivia (horror trivia for horror films, sci-fi for sci-fi)</p></li><li><p>Select decade-appropriate trailers by dynamically populating a trailer directory</p></li><li><p>Generate MPAA-style rating cards</p></li><li><p>Pick studio-specific intro bumpers</p></li><li><p>Call an AI API to generate movie-specific trivia and Q&amp;A slides</p></li><li><p>Create "on this day in cinema history" slides based on the current date and film era</p></li></ul><h2>Example 1: Dynamic Title Card</h2><p>My first use case was a "Tonight's Feature" title card — a theater marquee background with the movie title composited in a vintage font. The script reads the title from the temp file, uses Pillow to render text onto a template image, and saves it to a slideshow directory.</p><p>The core of the compositing script:</p><pre spellcheck="" class="ipsCode language-python" data-language="Python"><code>from PIL import Image, ImageDraw, ImageFont

def generate_title_card(title):
    # Load background template
    img = Image.open("/tmp/template.png")
    draw = ImageDraw.Draw(img)
    font = ImageFont.truetype("/tmp/myfont.ttf", 80)
    
    # Center the title
    bbox = draw.textbbox((0, 0), title.upper(), font=font)
    text_w = bbox[2] - bbox[0]
    x = (1920 - text_w) // 2
    
    draw.text((x, 450), title.upper(), font=font, fill=(0, 0, 0))
    img.save("/path/to/pse/Slideshow/Tonight/tonight.png")
</code></pre><p>The real script has auto-sizing logic (shrinks the font for long titles), word wrapping, and handles the CIFS font loading issue (Pillow can't load fonts from network shares — copy to <code>/tmp/</code> first). But the concept is this simple.</p><p>In the PSE sequence, a Slideshow module points at the <code>Tonight</code> directory and displays whatever image is in there.</p><p><strong>Runtime:</strong> About 1.4 seconds on a Vero 5. Barely noticeable in the PSE launch flow.</p><h2>Example 2: AI-Generated Trivia Slides</h2><p>The more ambitious extension calls the Claude API with the movie's metadata and asks it to generate trivia facts and Q&amp;A pairs. The response is parsed and rendered into 30 slides — 10 trivia facts plus 10 question/answer pairs (20 slides).</p><p>The flow:</p><pre spellcheck="" class="ipsCode language-python" data-language="Python"><code>import json
import urllib.request

def generate_trivia(metadata):
    api_key = open("/home/user/.config/pse/api.key").read().strip()
    
    prompt = f"""Generate trivia about "{metadata['title']}" ({metadata['year']}).
    Director: {', '.join(metadata['directors'])}
    Cast: {', '.join(metadata['cast'][:5])}
    
    Return JSON with:
    - 10 trivia facts (behind the scenes, connections, legacy, etc.)
    - 10 Q&amp;A pairs (movie trivia questions with answers)
    """
    
    payload = json.dumps({
        "model": "claude-sonnet-4-20250514",
        "max_tokens": 6000,
        "messages": [{"role": "user", "content": prompt}]
    }).encode()
    
    req = urllib.request.Request("https://api.anthropic.com/v1/messages", data=payload)
    req.add_header("Content-Type", "application/json")
    req.add_header("x-api-key", api_key)
    req.add_header("anthropic-version", "2023-06-01")
    
    resp = urllib.request.urlopen(req, timeout=30)
    data = json.loads(resp.read())
    trivia = json.loads(data['content'][0]['text'])
    
    # Render each item as a slide image with Pillow
    for i, item in enumerate(trivia):
        render_slide(item, i, metadata['title'])
</code></pre><p>Each slide gets rendered with a vintage cinema aesthetic — dark background, golden category headers, cream body text, decorative borders. Question slides use blue headers, answer slides use green.</p><p>The trivia generation is opt-in — I have a toggle script that creates/removes a flag file (<code>/tmp/pse_trivia_enabled</code>). The generation script checks for this file and skips if it's not there. A Kodi notification confirms the toggle state.</p><p><strong>Runtime:</strong> About 8-10 seconds for the API call plus slide rendering. A progress notification shows during generation so you know it's working.</p><h2>Tips for Implementation</h2><p><strong>CIFS/Network Share Gotcha:</strong> If your PSE content lives on a network share, Pillow's FreeType library cannot load fonts from CIFS mounts. Always copy fonts and templates to <code>/tmp/</code> before opening them with Pillow.</p><p><strong>Bytecode Cache:</strong> Kodi caches compiled Python as <code>.pyc</code> files. Every time you edit <code>experience.py</code>, delete the cache and restart Kodi or your changes won't take effect.</p><p><strong>PSE Updates:</strong> When PSE updates, <code>experience.py</code> gets overwritten. Keep a backup of your modified version and re-apply the hook after updates. The hook is small enough that re-applying takes 30 seconds.</p><p><strong>Testing:</strong> You can test your generation scripts independently from the command line:</p><pre spellcheck="" class="ipsCode language-bash" data-language="Bash"><code>echo "Alien" &gt; /tmp/pse_feature_title.txt
echo '{"title":"Alien","year":1979,"genres":["Horror","Sci-Fi"],"directors":["Ridley Scott"]}' &gt; /tmp/pse_feature_metadata.json
python3 /path/to/your/script.py
</code></pre><p>Then check the output directory for your generated slides.</p><p><strong>Keep Scripts Fast:</strong> Since <code>subprocess.call</code> blocks PSE initialization, your scripts need to finish in a reasonable time. The title card takes ~1.4 seconds, the AI trivia takes ~8-10 seconds. Much longer than that and the delay before the sequence starts becomes noticeable.</p><h2>Sequence Setup</h2><p>My PSE sequence order:</p><ol><li><p><strong>Slideshow</strong> — <code>Tonight</code> directory (dynamic title card, 30-60 second duration)</p></li><li><p><strong>Slideshow</strong> — <code>Trivia</code> directory (AI trivia slides, 10 second per slide)</p></li><li><p><strong>Trailer</strong> modules</p></li><li><p><strong>Audio Format Bumper</strong></p></li><li><p><strong>Action</strong> — Enable refresh rate switching</p></li><li><p><strong>Feature</strong></p></li></ol><p>The two slideshow modules point at directories that get populated fresh every time by the hook scripts. Everything else in the sequence is standard PSE configuration.</p><h2>What's Next</h2><p>I'm exploring a few more ideas with this system: dynamically selecting trailer folders based on the feature's genre/decade, generating "cinema history" slides that tie the film to its cultural moment, and creating custom intermission cards for double features. The hook pattern is flexible enough that any script with access to the movie metadata can feed content into the sequence.</p><p>If anyone builds on this or has questions about the implementation, happy to help. The hardest part was figuring out the right injection point — once that's solved, the rest is just Python scripting.</p>]]></description><guid isPermaLink="false">4436</guid><pubDate>Wed, 18 Feb 2026 00:47:23 +0000</pubDate></item><item><title>Audio Format Bumpers</title><link>https://preshowexperience.com/forums/topic/4431-audio-format-bumpers/</link><description><![CDATA[<p>Let me know if you use audio format bumpers?  And if so, do you rename your movies with Atmos to enable the Atmos bumpers?</p>]]></description><guid isPermaLink="false">4431</guid><pubDate>Sun, 25 Jan 2026 19:41:07 +0000</pubDate></item><item><title>PreShow Holiday Bumper:  Merry Christmas 2025 from PreShow Experience</title><link>https://preshowexperience.com/forums/topic/4420-preshow-holiday-bumper-merry-christmas-2025-from-preshow-experience/</link><description><![CDATA[
<h3>Merry Christmas 2025 from PreShow Experience</h3>

<p>This is a 4k Merry Christmas bumper with 5.1 audio.</p><div class="ipsEmbeddedVideo" contenteditable="false" data-og-user_text="https://youtu.be/nasn3DCo4l8" style="--i-media-width: 100%;"><iframe width="200" height="113" src="https://www.youtube-nocookie.com/embed/nasn3DCo4l8?feature=oembed" frameborder="0" allow="encrypted-media; picture-in-picture; fullscreen" title="Merry Christmas 2025 from PreShow Experience" loading="lazy"></iframe></div>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/1-matt/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/1-matt/?do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D17' title="Go to Matt's profile" class="ipsUsername" translate="no">Matt</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 12/11/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/17-holiday-bumpers/">Holiday Bumpers</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/242-merry-christmas-2025-from-preshow-experience/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_12/Merry-Christmas-2025.thumb.jpg.c7751b3404a38a468812079f2b4ec028.jpg" class="ipsAttachLink ipsAttachLink_image" title="Merry Christmas 2025 from PreShow Experience"><img data-fileid="984" src="https://preshowexperience.com/uploads/monthly_2025_12/Merry-Christmas-2025.thumb.jpg.c7751b3404a38a468812079f2b4ec028.jpg" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="Merry Christmas 2025 from PreShow Experience" loading='lazy'></a></p>]]></description><guid isPermaLink="false">4420</guid><pubDate>Thu, 11 Dec 2025 19:16:47 +0000</pubDate></item><item><title>Question about consession stand bumper I saw tonight at AMC</title><link>https://preshowexperience.com/forums/topic/4418-question-about-consession-stand-bumper-i-saw-tonight-at-amc/</link><description><![CDATA[<p>I watched the Vincent Must Die &amp; Hallow Road double feature tonight. Between the movies, they showed a concession stand cartoon bumper that mimicked the old ones from the 60's, well probably even before that. It was cutsy and looked pretty sharp, but also had a lot of grain artifacts added to make it feel old. And about half way thru it got super dark, there was blood and the popcorn bucket character was stabbing his eye out. I've seen other horror movies at AMC but never seen this. So I'm guessing it's either new, or it was just for 1 of these 2 movies.</p><p>Now I'm wondering if maybe it was something from an animation festival, it felt like I would have seen this at one of those 35 years ago. (I went every summer to watch them)  I need to have this in my bumper catalog.  I serious doubt it's something I could download. But I might be wrong, so I'm checking to see if anyone here has seen this? I have a bunch of cartoony concession stand bumpers from 40 years ago. But this is definitely new, and I don't have any that go from happy happy to dark and evil.</p>]]></description><guid isPermaLink="false">4418</guid><pubDate>Sat, 01 Nov 2025 09:00:42 +0000</pubDate></item><item><title>Commercial:  A busload of thrills and cool casual comfort</title><link>https://preshowexperience.com/forums/topic/4419-commercial-a-busload-of-thrills-and-cool-casual-comfort/</link><description><![CDATA[
<h3>A busload of thrills and cool casual comfort</h3>

<p>Looks retro but it's newer, has some cartoony blood.  This is a suitable bumper for a horror movie</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/212-quebert/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/212-quebert/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D10' title="Go to Quebert's profile" class="ipsUsername" translate="no">Quebert</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 12/02/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/10-commercials/">Commercials</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/241-a-busload-of-thrills-and-cool-casual-comfort/'>View File</a>
</p>]]></description><guid isPermaLink="false">4419</guid><pubDate>Tue, 02 Dec 2025 21:01:55 +0000</pubDate></item><item><title>PreShow Holiday Bumper: PreShow Experience Halloween Night Intro Video</title><link>https://preshowexperience.com/forums/topic/1672-preshow-holiday-bumper-preshow-experience-halloween-night-intro-video/</link><description><![CDATA[
<div class="ipsAreaBackground_light ipsPad">

	<div class="ipsColumns ipsColumns_collapsePhone">
		<div class="ipsColumn ipsColumn_medium ipsType_center">
			<a href="https://preshowexperience.com/files/file/184-preshow-experience-halloween-night-intro-video/">
				
				<img src="https://preshowexperience.com/uploads/monthly_2024_10/338376349_PreShowHalloweenNight.jpg.c862da56454497fdff47330e7ef2fce4.jpg" alt="PreShow Experience Halloween Night Intro Video" loading="lazy">
			</a>
			<br><br>
			<a href="https://preshowexperience.com/files/file/184-preshow-experience-halloween-night-intro-video/" class="ipsButton ipsButton_primary ipsButton_fullWidth ipsButton_small">
				View File
			</a>
		</div>
		<div class="ipsColumn_fluid">

			<h3 class="ipsType_sectionHead">PreShow Experience Halloween Night Intro Video</h3>
			
			<hr class="ipsHr">
			<div class="ipsType_normal ipsType_richText ipsContained ipsType_break">
				<p>
	This video included the standard bumpers all in 1 video for a great halloween intro.
</p>

<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" data-dashlane-frameid="1908" frameborder="0" height="113" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube-nocookie.com/embed/SjpxCoL8STw?feature=oembed" title="PreShow Experience Halloween Night Intro Video" width="200" loading="lazy"></iframe>
	</div>
</div>

<p>
	 
</p>

			</div>
			<hr class="ipsHr">
			<ul class="ipsDataList ipsDataList_reducedSpacing ipsDataList_collapsePhone">
				<li class="ipsDataItem">
					<div class="ipsDataItem_generic ipsDataItem_size5">
						<strong>Submitter</strong>
					</div>
					<div class="ipsDataItem_main">
						


<a href="https://preshowexperience.com/profile/1-matt/" rel="nofollow" data-ipshover data-ipshover-width="370" data-ipshover-target="https://preshowexperience.com/profile/1-matt/?do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D17" title="Go to Matt's profile" class="ipsType_break">Matt</a>
					</div>
				</li>
				<li class="ipsDataItem">
					<div class="ipsDataItem_generic ipsDataItem_size5">
						<strong>Submitted</strong>
					</div>
					<div class="ipsDataItem_main">
						10/08/2024
					</div>
				</li>
				<li class="ipsDataItem">
					<div class="ipsDataItem_generic ipsDataItem_size5">
						<strong>Category</strong>
					</div>
					<div class="ipsDataItem_main">
						<a href="https://preshowexperience.com/files/category/17-holiday-bumpers/">Holiday Bumpers</a>
					</div>
				</li>
				
			</ul>

		</div>
	</div>

</div>
<p> </p>]]></description><guid isPermaLink="false">1672</guid><pubDate>Tue, 08 Oct 2024 18:31:17 +0000</pubDate></item><item><title>Audio Format Bumper:  DTS - The Digital Experience</title><link>https://preshowexperience.com/forums/topic/1943-audio-format-bumper-dts-the-digital-experience/</link><description><![CDATA[
<h3>DTS - The Digital Experience</h3>

<p>1993 introducing dts</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/17-tayda1121/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/17-tayda1121/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Ffile%252F236-dts-the-digital-experience%252F%253F%2526do%253DeditTags' title="Go to tayda1121's profile" class="ipsUsername" translate="no">tayda1121</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/16/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/236-dts-the-digital-experience/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_09/dts-the-digital-experience.thumb.webp.70deb71a7767eb12cb9fb846286b8308.webp" class="ipsAttachLink ipsAttachLink_image" title="DTS - The Digital Experience"><img data-fileid="921" src="https://preshowexperience.com/uploads/monthly_2025_09/dts-the-digital-experience.thumb.webp.70deb71a7767eb12cb9fb846286b8308.webp" height="250" width="300" class="ipsImage ipsImage_thumbnailed" alt="DTS - The Digital Experience" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1943</guid><pubDate>Wed, 17 Sep 2025 01:23:05 +0000</pubDate></item><item><title>Audio Format Bumper:  DTS - Sparks</title><link>https://preshowexperience.com/forums/topic/1942-audio-format-bumper-dts-sparks/</link><description><![CDATA[
<h3>DTS - Sparks</h3>

<h2><strong>DTS Sparks 35mm</strong></h2>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/17-tayda1121/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/17-tayda1121/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Ffile%252F235-dts-sparks%252F%253F%2526do%253DeditTags' title="Go to tayda1121's profile" class="ipsUsername" translate="no">tayda1121</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/16/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/235-dts-sparks/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_09/DTS_Sparks.thumb.webp.aba0a969b424d4af70d700acc911d6ff.webp" class="ipsAttachLink ipsAttachLink_image" title="DTS - Sparks"><img data-fileid="922" src="https://preshowexperience.com/uploads/monthly_2025_09/DTS_Sparks.thumb.webp.aba0a969b424d4af70d700acc911d6ff.webp" height="280" width="500" class="ipsImage ipsImage_thumbnailed" alt="DTS - Sparks" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1942</guid><pubDate>Wed, 17 Sep 2025 01:17:41 +0000</pubDate></item><item><title>Audio Format Bumper:  DTS - Sonic Landscape</title><link>https://preshowexperience.com/forums/topic/1941-audio-format-bumper-dts-sonic-landscape/</link><description><![CDATA[
<h3>DTS - Sonic Landscape</h3>

<p>DTS - Sonic Landscape 1999</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/17-tayda1121/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/17-tayda1121/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D5' title="Go to tayda1121's profile" class="ipsUsername" translate="no">tayda1121</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/16/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/234-dts-sonic-landscape/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_09/639145.thumb.jpg.0455fbf97b72f244700a118c1872a528.jpg" class="ipsAttachLink ipsAttachLink_image" title="DTS - Sonic Landscape"><img data-fileid="459" src="https://preshowexperience.com/uploads/monthly_2025_09/639145.thumb.jpg.0455fbf97b72f244700a118c1872a528.jpg" height="186" width="330" class="ipsImage ipsImage_thumbnailed" alt="DTS - Sonic Landscape" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1941</guid><pubDate>Wed, 17 Sep 2025 00:54:26 +0000</pubDate></item><item><title>Audio Format Bumper:  THX Cimarron</title><link>https://preshowexperience.com/forums/topic/1940-audio-format-bumper-thx-cimarron/</link><description><![CDATA[
<h3>THX Cimarron</h3>

<p>THX Cimmaron</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/17-tayda1121/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/17-tayda1121/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D5' title="Go to tayda1121's profile" class="ipsUsername" translate="no">tayda1121</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/16/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/233-thx-cimarron/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_09/Cimarron_1.thumb.webp.9b095d85fdca41ced236305f806aa1f1.webp" class="ipsAttachLink ipsAttachLink_image" title="THX Cimarron"><img data-fileid="458" src="https://preshowexperience.com/uploads/monthly_2025_09/Cimarron_1.thumb.webp.9b095d85fdca41ced236305f806aa1f1.webp" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="THX Cimarron" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1940</guid><pubDate>Wed, 17 Sep 2025 00:48:28 +0000</pubDate></item><item><title>Audio Format Bumper:  Dolby Digital - Train</title><link>https://preshowexperience.com/forums/topic/1939-audio-format-bumper-dolby-digital-train/</link><description><![CDATA[
<h3>Dolby Digital - Train</h3>

<p><span style='font-family: "Arial", "Helvetica", sans-serif'>Dolby Stereo Digital - Retro Blu-ray Year: 1992 Aspect Ratio (1.85:1) BD-50</span></p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/17-tayda1121/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/17-tayda1121/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D5' title="Go to tayda1121's profile" class="ipsUsername" translate="no">tayda1121</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/16/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/232-dolby-digital-train/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_09/(3)DolbyStereoDigitalTrain-35mm-HD(1992)-YouTube.thumb.png.e1fa3ca68c28561cebe961e30894afbf.png" class="ipsAttachLink ipsAttachLink_image" title="Dolby Digital - Train"><img data-fileid="457" src="https://preshowexperience.com/uploads/monthly_2025_09/(3)DolbyStereoDigitalTrain-35mm-HD(1992)-YouTube.thumb.png.e1fa3ca68c28561cebe961e30894afbf.png" height="270" width="500" class="ipsImage ipsImage_thumbnailed" alt="Dolby Digital - Train" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1939</guid><pubDate>Tue, 16 Sep 2025 13:28:40 +0000</pubDate></item><item><title>Audio Format Bumper:  Dolby Digtal - City</title><link>https://preshowexperience.com/forums/topic/1938-audio-format-bumper-dolby-digtal-city/</link><description><![CDATA[
<h3>Dolby Digtal - City</h3>

<p><span style='font-family: "Arial", "Helvetica", sans-serif'>1995 Dolby City</span></p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/17-tayda1121/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/17-tayda1121/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D5' title="Go to tayda1121's profile" class="ipsUsername" translate="no">tayda1121</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/16/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/5-audio-format/">Audio Format</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/231-dolby-digtal-city/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_09/(3)DolbyCity-35mm-HD-YouTube.thumb.png.977646fdda34605de0cfe0dad88c122c.png" class="ipsAttachLink ipsAttachLink_image" title="Dolby Digtal - City"><img data-fileid="456" src="https://preshowexperience.com/uploads/monthly_2025_09/(3)DolbyCity-35mm-HD-YouTube.thumb.png.977646fdda34605de0cfe0dad88c122c.png" height="270" width="500" class="ipsImage ipsImage_thumbnailed" alt="Dolby Digtal - City" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1938</guid><pubDate>Tue, 16 Sep 2025 13:07:03 +0000</pubDate></item><item><title>Trivia:  AFI Greatest Movie Musicals</title><link>https://preshowexperience.com/forums/topic/1928-trivia-afi-greatest-movie-musicals/</link><description><![CDATA[
<h3>AFI Greatest Movie Musicals</h3>

<p>AFI Greatest Movie Musicals - List from AFI's website and artwork from <a rel="external nofollow" href="https://fanart.tv">fanart.tv</a> and themoviedb.org</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/148-starslayer74/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/148-starslayer74/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to starslayer74's profile" class="ipsUsername" translate="no">starslayer74</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 07/09/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/230-afi-greatest-movie-musicals/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_07/AFI-Greatest-Movie-Musicals(20).thumb.jpg.33dfd768dd31cb75e42fedb7896c78d2.jpg" class="ipsAttachLink ipsAttachLink_image" title="AFI Greatest Movie Musicals"><img data-fileid="395" src="https://preshowexperience.com/uploads/monthly_2025_07/AFI-Greatest-Movie-Musicals(20).thumb.jpg.33dfd768dd31cb75e42fedb7896c78d2.jpg" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="AFI Greatest Movie Musicals" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1928</guid><pubDate>Thu, 10 Jul 2025 01:14:21 +0000</pubDate></item><item><title>Trivia:  Random Trivia</title><link>https://preshowexperience.com/forums/topic/1900-trivia-random-trivia/</link><description><![CDATA[
<h3>Random Trivia</h3>

<p>Random Trivia slides from the Coke-A-Cola slides someone on the AVS forums made like 15 years ago. He had did 6 volumes, this is all 6 in 1 zip. </p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/212-quebert/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/212-quebert/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to Quebert's profile" class="ipsUsername" translate="no">Quebert</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 04/02/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/216-random-trivia/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_04/UnspooledTriviaVol1-100b.jpg.a29344e65101d47e099bf5233d592758.jpg" class="ipsAttachLink ipsAttachLink_image" title="Random Trivia"><img data-fileid="359" src="https://preshowexperience.com/uploads/monthly_2025_04/UnspooledTriviaVol1-100b.jpg.a29344e65101d47e099bf5233d592758.jpg" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="Random Trivia" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1900</guid><pubDate>Wed, 02 Apr 2025 22:04:09 +0000</pubDate></item><item><title>Trivia:  AFI_Get_the_Picture_Trivia.zip</title><link>https://preshowexperience.com/forums/topic/1920-trivia-afi_get_the_picture_triviazip/</link><description><![CDATA[
<h3>AFI_Get_the_Picture_Trivia.zip</h3>

<p>A collection of trivia slides pulled from the AFI Get the Picture daily quizzes at <a rel="external nofollow" href="https://www.afi.com/get-the-picture/">https://www.afi.com/get-the-picture/</a></p><p>These represent the quizzes from #1000-1150. There are 3 slides for each movie:</p><p>AFI_Get_the_Picture_Trivia_Question1_q.jpg --&gt; Question slide with screenshot and 5 options for movie title</p><p>AFI_Get_the_Picture_Trivia_Question1_c1.jpg --&gt; Clue/answer slide with highlighted correct answer</p><p>AFI_Get_the_Picture_Trivia_Question1_a.jpg --&gt; Answer/fact slide with correct title and some info about the movie</p><p></p><p>I wasn't sure how PSE handles the fact slides and so named them as above. Should be pretty easy to rename if you want to organize them differently. I used a script to generate the slides, but tried to check them all before uploading. Let me know if you notice any formatting issues etc.</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/1069-moneyrussell/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/1069-moneyrussell/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to MoneyRussell's profile" class="ipsUsername" translate="no">MoneyRussell</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 06/03/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/228-afi_get_the_picture_triviazip/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_06/AFI_Get_the_Picture_Trivia_Question1_q.jpg.89231052a72a5e83a87cf797194475f0.jpg" class="ipsAttachLink ipsAttachLink_image" title="AFI_Get_the_Picture_Trivia.zip"><img data-fileid="382" src="https://preshowexperience.com/uploads/monthly_2025_06/AFI_Get_the_Picture_Trivia_Question1_q.jpg.89231052a72a5e83a87cf797194475f0.jpg" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="AFI_Get_the_Picture_Trivia.zip" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1920</guid><pubDate>Tue, 03 Jun 2025 06:44:07 +0000</pubDate></item><item><title>Trivia slides format questions</title><link>https://preshowexperience.com/forums/topic/1919-trivia-slides-format-questions/</link><description><![CDATA[<p>I'm working on a trivia pack based on the Get The Picture daily questions from the AFI website.</p><p>Couple questions...</p><p>Is JPG the preferred format or would PNG be better?</p><p>What's the ideal resolution for trivia images?</p><p>For each question, I want to have 3 slides: question slide with answer options; answer slide with correct option highlighted; fact slide with further info about the movie in question. So it would be QUESTION -&gt; ANSWER -&gt; RELATED FACT.<br>What's the best way to name these files? Are fact slides kept separate from questions? If so, would it work to label the answer slide with _<em>C1 </em>and the fact slide as<em> </em>_A so that I get the right sequence of slides?</p>]]></description><guid isPermaLink="false">1919</guid><pubDate>Sun, 01 Jun 2025 09:51:00 +0000</pubDate></item><item><title>Trivia:  Halloweenized Actor Scramble (Classic Legacy)-HD</title><link>https://preshowexperience.com/forums/topic/1093-trivia-halloweenized-actor-scramble-classic-legacy-hd/</link><description><![CDATA[
<h3>Halloweenized Actor Scramble (Classic Legacy)-HD</h3>

<h2>Halloweenized Actor Scramble (Classic Legacy)-HD</h2><p>This is one of my HALLOWEENIZED sets I'm currently working on. Since there is not a lot of Halloween Triva content i thought i would add some Halloween decorations to the original content itself while trying not to interfere with the look or the style of the original or blocking any of the elements in the slides. This set is just an addition of some cobwebs and spider with shadowing. I am not the original creator of this content details of original files are below.      </p><p>**** Special Note ****</p><h1><strong><span data-i-color="green">**** This Is now complete ****</span></strong></h1><p><s>This is not the full set only half of the set. For some unknow reason my Photoshop and InDesign both with not automate the tasks When it does it blurs the original slide. So, I'm stuck adding the content manually to each slide. And that is why I'm only halfway done with the set. As soon as i finish i will update the version hopefully later next week. </s></p><p>**** Special Note ****</p><h2><strong>About </strong>Original File</h2><p>This is not an original set, but a remake of the Actor Scramble set originally made by mcorcoran on the Kodi Forum. This set features a question slide with the name of an actor and the letters scrambled randomly, and an answer slide with the unscrambled name, a picture, and a brief biography of the actor. We added a few actors here and there, but this is a direct replacement for the most part. We will be doing expansion packs for this set eventually.</p><p><strong>About the Classic Slide Pack</strong><br>The Classic slide pack was designed to be dark and elegant. It was created for those of us who want a dark theme in their trivia slides, and fits well with the Kodi Aeon Nox 4 skin. The currently released look is a bit of a departure from the look of the slides that were released originally. Enhancements have been made to improve the edges, and the overall colors used.</p><p>More info on original creators here: <a rel="external nofollow" href="https://forum.kodi.tv/archive/index.php?thread-156908-1.html">Kodi Community Forum - Cinema Experience Slides &amp; Trivia</a></p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/14-nightwatchertheater/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/14-nightwatchertheater/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Ffile%252F128-halloweenized-actor-scramble-classic-legacy-hd%252F%253F%2526do%253DnewVersion' title="Go to NightWatcherTheater's profile" class="ipsUsername" translate="no">NightWatcherTheater</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 09/25/2023
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/128-halloweenized-actor-scramble-classic-legacy-hd/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2023_09/AngelinaJolie_a.thumb.jpg.faf70db41eda773a9e0b3bab1fdfdf97.jpg" class="ipsAttachLink ipsAttachLink_image" title="Halloweenized Actor Scramble (Classic Legacy)-HD"><img data-fileid="977" src="https://preshowexperience.com/uploads/monthly_2023_09/AngelinaJolie_a.thumb.jpg.faf70db41eda773a9e0b3bab1fdfdf97.jpg" height="500" width="500" class="ipsImage ipsImage_thumbnailed" alt="Halloweenized Actor Scramble (Classic Legacy)-HD" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1093</guid><pubDate>Tue, 26 Sep 2023 00:01:16 +0000</pubDate></item><item><title>dolby atmos trailer fury</title><link>https://preshowexperience.com/forums/topic/1912-dolby-atmos-trailer-fury/</link><description><![CDATA[<p>Hello, i am looking for the fury trailer in dolby digital plus with dolby atmos</p>]]></description><guid isPermaLink="false">1912</guid><pubDate>Thu, 17 Apr 2025 17:32:15 +0000</pubDate></item><item><title>Anyone have intrest in the following?</title><link>https://preshowexperience.com/forums/topic/1898-anyone-have-intrest-in-the-following/</link><description><![CDATA[<p>Eons ago somebody on the AVS forums made a huge collection of commercials, slides, trivia and some other stuff for back when this was HTE or. Anywho, he had put everything on a DVD and I paid for him to burn and ship me one. There's a whole lot on it. This was back when people still had DVD drives and Kodi wasn't even Kodi yet. So it's not super high quality by today's standards. But there's some great stuff. I don't just want to wreckelessly upload stuff, so I'm asking is there anything I can't upload? There are a bunch of short cartoons on it, Popeye, Gumby, Betty Boop, I'm guessing those would be a no go, but since they're 50+ year old cartoons maybe it's okay.  I don't want to violate any rules until I know though. I am about to go upload some trivia.</p><p></p><p>If anyone's interested let me know what you want me to upload. It has all the Coke slides, I'm assuming he's the one who made those. I don't remember who it was, so if anyone remembers their name please let me know. I'd be curious to see if they ever did another group of maybe 4k trivia.</p><p></p><p></p>]]></description><guid isPermaLink="false">1898</guid><pubDate>Wed, 02 Apr 2025 21:54:31 +0000</pubDate></item><item><title>Trivia:  Best Picture Winner 2023-2024 Update Pack</title><link>https://preshowexperience.com/forums/topic/1911-trivia-best-picture-winner-2023-2024-update-pack/</link><description><![CDATA[
<h3>Best Picture Winner 2023-2024 Update Pack</h3>

<p>Best Picture Winner 2023-2024 Update Pack</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/148-starslayer74/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/148-starslayer74/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to starslayer74's profile" class="ipsUsername" translate="no">starslayer74</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 04/11/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/227-best-picture-winner-2023-2024-update-pack/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_04/BestPicture2024.png.e728a20907e80d1819a4401b18b1a96f.png" class="ipsAttachLink ipsAttachLink_image" title="Best Picture Winner 2023-2024 Update Pack"><img data-fileid="368" src="https://preshowexperience.com/uploads/monthly_2025_04/BestPicture2024.png.e728a20907e80d1819a4401b18b1a96f.png" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="Best Picture Winner 2023-2024 Update Pack" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1911</guid><pubDate>Fri, 11 Apr 2025 20:41:10 +0000</pubDate></item><item><title>Trivia:  Best Actor Winner 2023-2024 Update Pack</title><link>https://preshowexperience.com/forums/topic/1910-trivia-best-actor-winner-2023-2024-update-pack/</link><description><![CDATA[
<h3>Best Actor Winner 2023-2024 Update Pack</h3>

<p>Best Actor Winner 2023-2024 Update Pack</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/148-starslayer74/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/148-starslayer74/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to starslayer74's profile" class="ipsUsername" translate="no">starslayer74</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 04/11/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/226-best-actor-winner-2023-2024-update-pack/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_04/BestActor2024.png.aaab2fdedd5e28423d5d766f82bac977.png" class="ipsAttachLink ipsAttachLink_image" title="Best Actor Winner 2023-2024 Update Pack"><img data-fileid="367" src="https://preshowexperience.com/uploads/monthly_2025_04/BestActor2024.png.aaab2fdedd5e28423d5d766f82bac977.png" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="Best Actor Winner 2023-2024 Update Pack" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1910</guid><pubDate>Fri, 11 Apr 2025 20:39:08 +0000</pubDate></item><item><title>Trivia:  Best Supporting Actor 2023-2024 Update Pack</title><link>https://preshowexperience.com/forums/topic/1909-trivia-best-supporting-actor-2023-2024-update-pack/</link><description><![CDATA[
<h3>Best Supporting Actor 2023-2024 Update Pack</h3>

<p>Best Supporting Actor 2023-2024 Update Pack</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/148-starslayer74/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/148-starslayer74/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to starslayer74's profile" class="ipsUsername" translate="no">starslayer74</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 04/11/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/225-best-supporting-actor-2023-2024-update-pack/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_04/SupportingActor2024.png.5e7c0664932dcab465976063d22959a2.png" class="ipsAttachLink ipsAttachLink_image" title="Best Supporting Actor 2023-2024 Update Pack"><img data-fileid="366" src="https://preshowexperience.com/uploads/monthly_2025_04/SupportingActor2024.png.5e7c0664932dcab465976063d22959a2.png" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="Best Supporting Actor 2023-2024 Update Pack" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1909</guid><pubDate>Fri, 11 Apr 2025 20:31:48 +0000</pubDate></item><item><title>Trivia:  Best Supporting Actress 2023-2024 Update Pack</title><link>https://preshowexperience.com/forums/topic/1908-trivia-best-supporting-actress-2023-2024-update-pack/</link><description><![CDATA[
<h3>Best Supporting Actress 2023-2024 Update Pack</h3>

<p>Best Supporting Actress winners 2023-2024 Update pack</p>

<div class="ipsRichTextBox ipsRichTextBox--alwaysopen">
    <div class="ipsRichTextBox__title">
        <p>File Information</p>
    </div>
    <p>
        <strong><span data-ips-font-size="90">Submitter </span></strong> 


<a href='https://preshowexperience.com/profile/148-starslayer74/' rel="nofollow" data-ipsHover data-ipsHover-width='370' data-ipsHover-target='https://preshowexperience.com/profile/148-starslayer74/?&amp;do=hovercard&amp;referrer=https%253A%252F%252Fpreshowexperience.com%252Ffiles%252Fsubmit%252F%253Fdo%253Dsubmit%2526category%253D6' title="Go to starslayer74's profile" class="ipsUsername" translate="no">starslayer74</a>
    </p>
    <p>
        <strong><span data-ips-font-size="90">Submitted </span></strong> 04/11/2025
    </p>
    <p>
        <strong><span data-ips-font-size="90">Category </span></strong> <a href="https://preshowexperience.com/files/category/6-trivia/">Trivia</a>
    </p>
    
</div>

<p>
    <a href='https://preshowexperience.com/files/file/224-best-supporting-actress-2023-2024-update-pack/'>View File</a>
</p>
<p><a href="https://preshowexperience.com/uploads/monthly_2025_04/SupportingActress2024.png.965f0049564aec2a09418284c4012ef8.png" class="ipsAttachLink ipsAttachLink_image" title="Best Supporting Actress 2023-2024 Update Pack"><img data-fileid="365" src="https://preshowexperience.com/uploads/monthly_2025_04/SupportingActress2024.png.965f0049564aec2a09418284c4012ef8.png" height="281" width="500" class="ipsImage ipsImage_thumbnailed" alt="Best Supporting Actress 2023-2024 Update Pack" loading='lazy'></a></p>]]></description><guid isPermaLink="false">1908</guid><pubDate>Fri, 11 Apr 2025 20:29:22 +0000</pubDate></item></channel></rss>
