<?xml version="1.0"?>
<rss version="2.0"><channel><title>PreShow Experience Guides</title><link>https://preshowexperience.com/preshow-experience-guides/</link><description/><language>en</language><item><title>About PreShow Experience</title><link>https://preshowexperience.com/preshow-experience-guides/overview-installation/about-preshow-experience-r2/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/fanart.jpg.6d15fd9aab27317d5d5ec078868f9569.jpg" /></p>
<p>The PreShow Experience add-on for Kodi is a robust tool designed to elevate your home theater ambiance, effectively replicating the immersive atmosphere of a movie theater. True to its name, this add-on recreates the pre-movie experience akin to what you'd encounter in a classic cinema. Consequently, prior to the main feature, viewers can relish trailers, advertisements, and even tailor-made intros that establish the mood for the film.</p><p>Moreover, PreShow Experience empowers users to tailor their movie-watching journey to their liking. You can construct sequences of  trailers, slideshows, or trivia segments to play before or after the film, thereby crafting a personalized cinematic adventure. The add-on goes the extra mile by enabling the creation of themed pre-shows, complete with launching home automation and external lighting. This feature adds depth to the overall mood and amplifies the anticipation for the main attraction.</p><p>In essence, the PreShow Experience add-on for Kodi offers a distinctive and adaptable movie-watching adventure, rekindling the thrill and anticipation of visiting a traditional movie theater. Its capacity to automate the experience, generate thematic pre-shows, and seamlessly integrate with other Kodi add-ons renders it an invaluable tool for anyone aiming to enrich their home theater experience.</p><p>PreShow is designed for use with movies on your local network and is not compatible with streaming Kodi addons.</p><p><strong>Kodi Version Compatibility</strong></p><p>PreShow Experience is compatible with Kodi 19 Matrix and Kodi 20 Nexus. </p>]]></description><guid isPermaLink="false">2</guid><pubDate>Sat, 04 Mar 2023 01:23:17 +0000</pubDate></item><item><title>Configuring your PreShow Experience Settings</title><link>https://preshowexperience.com/preshow-experience-guides/settings/configuring-your-preshow-experience-settings-r4/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/settings.jpg.1a9c579217f755feeafa6b8bc9e10f4e.jpg" /></p>
<p>You can open the settings for <strong>PreShow Experience</strong> a few different ways.</p><p>1. If you go to your add-ons page you can right click on the add-on and select <strong>Settings</strong>.</p><p>2. Alternatively, you can click on the add-on to open the <strong>Sequence Editor</strong> and click the <strong>Settings icon</strong> in the top right. </p><p>3. You can also go to the add-on information page and select <strong>Configure</strong>.</p><p><a href="https://preshowexperience.com/uploads/monthly_2023_03/settings-icon.jpg.7ecd8c8b88679881537ec95b4bd0d581.jpg" class="ipsAttachLink ipsAttachLink_image ipsRichText__align--block" data-fileid="70" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="70" src="https://preshowexperience.com/uploads/monthly_2023_03/settings-icon.thumb.jpg.c2a2bafc68585beb19e55677625ac70d.jpg" alt="settings-icon.jpg" width="1000" height="510" loading="lazy"></a></p><p> </p><p>Continue to <a rel="" href="https://preshowexperience.com/preshow-experience-guides/preshow-experience-guides-support/settings/settings-general/">General Settings</a></p>]]></description><guid isPermaLink="false">4</guid><pubDate>Sat, 04 Mar 2023 02:45:00 +0000</pubDate></item><item><title>Creating Action Files</title><link>https://preshowexperience.com/preshow-experience-guides/actions/creating-action-files-r19/</link><description><![CDATA[<p>
	To create an Action File, follow these steps:
</p>

<ol>
	<li>
		Create a new text document.
	</li>
	<li>
		Input the command that you want to use.
	</li>
	<li>
		Save the file as &lt;file_name&gt;.action in the Actions directory of your PreShow Experience content folder.
	</li>
	<li>
		You can also find pre-built Actions for different home automation solutions in the Downloads section of our website.
	</li>
	<li>
		If you have any improvements or new Actions that you create, please share them with us. We can host them on the site for others to use.
	</li>
</ol>

<p>
	Action Files use the following Syntax, Methods, and Protocols:
</p>

<ul>
	<li>
		<p>
			<strong>Syntax:</strong>
		</p>

		<ul>
			<li>
				Use "#" at the beginning of a line to ignore the contents of that line.
			</li>
			<li>
				Use "&lt;protocol&gt;://" at the beginning of a line to specify the protocol for that command.
			</li>
			<li>
				Use "&lt;method&gt;:" at the beginning of a line to specify the method for that command.
			</li>
		</ul>
	</li>
	<li>
		<p>
			<strong>Protocols:</strong>
		</p>

		<ul>
			<li>
				Currently supported protocols:
				<ul>
					<li>
						<strong>"http://" or "https://":</strong> Passes JSON commands via a URL.
					</li>
					<li>
						<strong>"addon://":</strong> Runs a script or add-on.
					</li>
					<li>
						<strong>"command://": </strong>Runs a command or application at the OS level and pass arguments.
					</li>
					<li>
						<strong>"module://":</strong> Runs a Python script with a main() method that is imported and called.
					</li>
					<li>
						<strong>"python://":</strong> Run a Python script.
					</li>
					<li>
						<strong>"sleep://&lt;milliseconds&gt;":</strong> Pauses the Action File for the specified time in milliseconds.
					</li>
				</ul>
			</li>
		</ul>
	</li>
	<li>
		<p>
			<strong>Methods:</strong>
		</p>

		<ul>
			<li>
				Currently supported methods to communicate with the target device or application:
				<ul>
					<li>
						<strong>"HEADERS:":</strong> Sends header information.
					</li>
					<li>
						<strong>"POST:":</strong> Sends a POST command to create information.
					</li>
					<li>
						<strong>"PUT:": </strong>Sends a PUT command update information.
					</li>
					<li>
						<strong>"DELETE:":</strong> Sends a DELETE command to delete information.
					</li>
				</ul>
			</li>
		</ul>
	</li>
</ul>

<p>
	Actions in Action Files can be single-line or multiple-line commands. Blank lines are used to separate commands. The first line of any Action is the Execution Line. The line following the Execution Line can be a Headers Line or a Data Line.
</p>

<ul>
	<li>
		<strong>Headers Line:</strong> Specifies the content type or any other headers. Prefix the line with "HEADERS:".
	</li>
	<li>
		<strong>Data Line:</strong> Used to pass arguments or data. Prefix the line with the desired Method ("POST:", "PUT:", or "DELETE:"). If no method is specified, the default method used is POST.
	</li>
</ul>

<p>
	<span style="font-size:16px;"><strong>Examples</strong></span>
</p>

<p>
	<strong>Example 1: </strong>Sending a JSON command via URL
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1387_6" style=""><span class="pln"># This is a comment
http://api.example.com/endpoint?param1=value1&amp;param2=value2</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 2: </strong>Running a script or add-on by add-on ID with arguments
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1387_8" style=""><span class="pln">addon://1234567890?arg1=value1&amp;arg2=value2</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 3: </strong>Running a command or application at the OS level with arguments
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1387_10" style=""><span class="pln">command://path/to/executable --option1 value1 --option2 value2</span></pre>

<p>
	<strong>Example 4: </strong>Running a Python script with a main() method that is imported and called
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1387_12" style=""><span class="pln">module://path/to/script.py</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 5: </strong>Calling a normal Python script via the operating system
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1387_14" style=""><span class="pln">python://path/to/script.py</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 6: </strong>Adding a sleep (pause) of 500 milliseconds before moving to the next action
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1387_16" style=""><span class="pln">sleep://500</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 7: </strong>Sending a POST command with data and headers to activate a Home Assistant Webhook
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_6043_13" style=""><span class="pln">https://YOUR_DNS_HOSTNAME.com/api/services/scene/turn_on
HEADERS: {"Authorization": "Bearer LLATStringOfRandomCharacters", "Content-Type": "application/json"}
POST: {"entity_id": "scene.movie_start"}</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 8: </strong>Sending a PUT command to change Hue brightness
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_6043_6" style=""><span class="pln">http://</span><span class="tag">&lt;hue-bridge-ip&gt;</span><span class="pln">/api/</span><span class="tag">&lt;hue-bridge-user&gt;</span><span class="pln">/groups/</span><span class="tag">&lt;hue-light-group&gt;</span><span class="pln">/action
PUT:{"on":true,"bri":40,"transitiontime":10}</span></pre>

<p>
	 
</p>

<p>
	<strong>Example 9: </strong>Sending a PUT command to turn off Hue light
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_6043_8" style=""><span class="pln">http://</span><span class="tag">&lt;hue-bridge-ip&gt;</span><span class="pln">/api/</span><span class="tag">&lt;hue-bridge-user&gt;</span><span class="pln">/groups/</span><span class="tag">&lt;hue-light-group&gt;</span><span class="pln">/action
PUT:{"on":false,"transitiontime":30}</span></pre>

<p>
	 
</p>

<p>
	These examples demonstrate various use cases and combinations of syntax, methods, and protocols in Action Files.
</p>
]]></description><guid isPermaLink="false">19</guid><pubDate>Tue, 06 Jun 2023 17:01:48 +0000</pubDate></item><item><title>Installing PreShow Experience from a zip file</title><link>https://preshowexperience.com/preshow-experience-guides/overview-installation/installing-preshow-experience-from-a-zip-file-r3/</link><description><![CDATA[<p>
	<span style="font-size:18px"><strong>Downloading PreShow Experience</strong></span>
</p>

<p>
	The latest <strong>PreShow Experience</strong> zip is available here:
</p>
<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-dashlane-frameid="11343" data-embedauthorid="1" data-embedcontent="" data-embedid="embed5270892034" id="ips_uid_572_7" src="https://preshowexperience.com/files/file/2-preshow-experience-kodi-add-on/?do=embed" style="overflow: hidden; height: 467px; max-width: 500px;" loading="lazy"></iframe>

<p>
	 
</p>

<p>
	<span style="font-size:18px"><strong>Installing PreShow Experience</strong></span>
</p>

<p>
	Once you have downloaded the zip for PreShow Experience, you are ready to open Kodi and install the add-on.  You'll start by changing Kodi's setting so that you can install 3rd party add-ons.
</p>

<p>
	 
</p>

<p>
	1. Open Kodi and then from the home screen click the <strong>Settings icon</strong>.  Your screens may look different if you have a different skin installed.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="66" href="https://preshowexperience.com/uploads/monthly_2023_03/2024643945_kodiscreencaps_0005_Layer1.jpg.e4b2faf3e11d47f908a7f3fad3132fe5.jpg" rel=""><img alt="kodi screen caps_0005_Layer 1.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="66" data-unique="v00z279po" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/1769335778_kodiscreencaps_0005_Layer1.thumb.jpg.e9933d374727e6d22e2c8480157fff96.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	2. Click the <strong>System</strong>
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="63" href="https://preshowexperience.com/uploads/monthly_2023_03/141452679_kodiscreencaps_0002_Layer4.jpg.ca9d7002c031a601bbd7c2ac06440f1e.jpg" rel=""><img alt="kodi screen caps_0002_Layer 4.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="63" data-unique="169iazwsj" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/1875948715_kodiscreencaps_0002_Layer4.thumb.jpg.84156e7cfc8d6791ecb8c82b8e239fab.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	3. Navigate to the <strong>Add-ons</strong> section and find <strong>Unknown Sources</strong> on the right. If it’s disabled, select it to enable it.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="62" href="https://preshowexperience.com/uploads/monthly_2023_03/1575565709_kodiscreencaps_0001_Layer5.jpg.6fc2f0e39f869c50499b0ed953ba1068.jpg" rel=""><img alt="kodi screen caps_0001_Layer 5.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="62" data-unique="axxt7ohtf" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/875309476_kodiscreencaps_0001_Layer5.thumb.jpg.b1ac8403ec407e65b38eeba9199eb1e2.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	4. Click <strong>Yes</strong> to the warning prompt.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="61" href="https://preshowexperience.com/uploads/monthly_2023_03/1191703377_kodiscreencaps_0000_Layer6.jpg.d172a29cb0d7e8e51fb5400293043857.jpg" rel=""><img alt="kodi screen caps_0000_Layer 6.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="61" data-unique="pu5irztvy" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/1860792608_kodiscreencaps_0000_Layer6.thumb.jpg.527f9b3f68786704f686e45576c80284.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	4. Then go back to the <strong>System</strong> page and select <strong>Add-ons</strong>.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="65" href="https://preshowexperience.com/uploads/monthly_2023_03/227238276_kodiscreencaps_0004_Layer2.jpg.4b226391707c95a16ea94f20afda0e24.jpg" rel=""><img alt="kodi screen caps_0004_Layer 2.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="65" data-unique="ylz5f8yp5" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/965164847_kodiscreencaps_0004_Layer2.thumb.jpg.a7c35e47d125e9ffc6a429daa096e378.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	5. Then select <strong>Install from zip file</strong>.  Navigate to your downloaded file and select it.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="64" href="https://preshowexperience.com/uploads/monthly_2023_03/1541715478_kodiscreencaps_0003_Layer3.jpg.441cb9637528ac816fca3d56205b55a1.jpg" rel=""><img alt="kodi screen caps_0003_Layer 3.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="64" data-unique="4fx44sc3k" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/933158137_kodiscreencaps_0003_Layer3.thumb.jpg.4840bc965d9ac6a225ad8625810a6cc9.jpg" loading="lazy" height="510"></a>
</p>

<p>
	6. <strong>PreShow Experience</strong> will then be installed and you'll be ready to configure it.
</p>

<p>
	<img alt="icon.png" class="ipsImage ipsImage_thumbnailed" data-fileid="67" data-unique="ck1ucxysi" style="height: auto;" width="512" src="https://preshowexperience.com/uploads/monthly_2023_03/icon.png.5a0d5c9e24afa0670d5acd7d308094b7.png" loading="lazy" height="512">
</p>

<p>
	<strong>Please note that the context menu will not load until Kodi has been restarted.</strong>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px"><strong>Uninstalling PreShow Experience</strong></span>
</p>

<p>
	1. To uninstall <strong>PreShow Experience</strong>, navigate to your add-ons and right click on <strong>PreShow Experience</strong> and select <strong>Information</strong>.   
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="68" href="https://preshowexperience.com/uploads/monthly_2023_03/kodi-screen-caps_7.jpg.f551aa73fd1ee624a7450231dd0a293c.jpg" rel=""><img alt="kodi-screen-caps_7.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="68" data-unique="25lwartot" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/kodi-screen-caps_7.thumb.jpg.d6fae5681dada588f9fad6b4d0b6df46.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	2. Then click <strong>Uninstall</strong> to remove <strong>PreShow Experience.</strong>
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="69" href="https://preshowexperience.com/uploads/monthly_2023_03/kodi-screen-caps_8.jpg.0888e55964e3be02b46ae9b90bca6c83.jpg" rel=""><img alt="kodi-screen-caps_8.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="69" data-unique="kkm5d9d9u" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/kodi-screen-caps_8.thumb.jpg.6beaed37a6c4bece1ad9bbd5b9b51927.jpg" loading="lazy" height="510"></a>
</p>
]]></description><guid isPermaLink="false">3</guid><pubDate>Sat, 04 Mar 2023 02:41:51 +0000</pubDate></item><item><title>Installing PreShow Experience from the repository</title><link>https://preshowexperience.com/preshow-experience-guides/overview-installation/installing-preshow-experience-from-the-repository-r22/</link><description><![CDATA[<p>
	<span style="font-size:18px"><strong>Part 1: Prerequisite (allow addons from unknown sources)</strong></span>
</p>

<p>
	1. In the Kodi settings page, click <strong>System</strong>
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="63" href="https://preshowexperience.com/uploads/monthly_2023_03/141452679_kodiscreencaps_0002_Layer4.jpg.ca9d7002c031a601bbd7c2ac06440f1e.jpg" rel=""><img alt="kodi screen caps_0002_Layer 4.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="63" data-unique="169iazwsj" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/1875948715_kodiscreencaps_0002_Layer4.thumb.jpg.84156e7cfc8d6791ecb8c82b8e239fab.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	2. Navigate to the <strong>Add-ons</strong> section and find <strong>Unknown Sources</strong> on the right. If it’s disabled, select it to enable it.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="62" href="https://preshowexperience.com/uploads/monthly_2023_03/1575565709_kodiscreencaps_0001_Layer5.jpg.6fc2f0e39f869c50499b0ed953ba1068.jpg" rel=""><img alt="kodi screen caps_0001_Layer 5.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="62" data-unique="axxt7ohtf" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/875309476_kodiscreencaps_0001_Layer5.thumb.jpg.b1ac8403ec407e65b38eeba9199eb1e2.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	4. Click <strong>Yes</strong> to the warning prompt.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="jpg" data-fileid="61" href="https://preshowexperience.com/uploads/monthly_2023_03/1191703377_kodiscreencaps_0000_Layer6.jpg.d172a29cb0d7e8e51fb5400293043857.jpg" rel=""><img alt="kodi screen caps_0000_Layer 6.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="61" data-unique="pu5irztvy" style="height: auto;" width="1000" src="https://preshowexperience.com/uploads/monthly_2023_03/1860792608_kodiscreencaps_0000_Layer6.thumb.jpg.527f9b3f68786704f686e45576c80284.jpg" loading="lazy" height="510"></a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>Add the PreShow Repository source</strong></span>
</p>

<p>
	1. Go to your Kodi settings page and click File manager.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo1.jpg.bcf64a3267734a1b8e464356bc38fbe6.jpg" data-fileid="245" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="245" data-unique="qtkhx9e3o" width="1000" alt="repo1.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo1.thumb.jpg.4470d5e56afe53c3ae045c6ce6b81c8d.jpg" loading="lazy" height="520"></a>
</p>

<p>
	<br>
	2. On the left side, click  menu and click Add source.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo2.jpg.fe792df37637663e9b55003081f88a34.jpg" data-fileid="250" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="250" data-unique="o0fggb3ko" width="1000" alt="repo2.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo2.thumb.jpg.960cf335f759a284972179fe25361b5a.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	3. The Add file source popup window will appear. Then click &lt;None&gt;.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo3.jpg.ea26ee05415df673ae4ca043866be184.jpg" data-fileid="247" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="247" data-unique="sla125btz" width="1000" alt="repo3.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo3.thumb.jpg.f55d7eb6634aeb95cf20d6d4322fa67e.jpg" loading="lazy" height="520"></a>
</p>

<p>
	<br>
	4. Enter the source URL of <a href="https://preshowmedia.com/repo/" ipsnoembed="true" rel="external nofollow">https://preshowmedia.com/repo/</a> in the path field, then click OK. 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo4.jpg.2e643db2fdcc85572a3b0d9639bbc4c2.jpg" data-fileid="248" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="248" data-unique="z4wz3mjv4" width="1000" alt="repo4.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo4.thumb.jpg.03a8765714b5763c2a0bdaf98fbe3d6a.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	5. Next, type the source’s name, PreShow Repo, in the media source field and click OK.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo5.jpg.150edf230d3a8e0b42d271b281901a8c.jpg" data-fileid="249" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="249" data-unique="viid3ys2n" width="1000" alt="repo5.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo5.thumb.jpg.a1a0599f72bb4e5200bd4c8554177faa.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	7. Click the OK option below the source input box.  You have now successfully added the PreShow source Next, we will install the repository.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>Part 2: Installing the PreShow Repository</strong></span>
</p>

<p>
	1. Go to the Kodi Settings page and click Addions.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo6.jpg.09093795d3f5042466468a00243b0c18.jpg" data-fileid="258" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="258" data-unique="zxb0x7xmo" width="1000" alt="repo6.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo6.thumb.jpg.a650562d1c6d5501b82d6a37c38eccd8.jpg" loading="lazy" height="520"></a>
</p>

<p>
	<br>
	2. Select Install from zip file.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo7.jpg.8680ed001ec09fe44a909ed2480a05d7.jpg" data-fileid="257" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="257" data-unique="m9unik26y" width="1000" alt="repo7.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo7.thumb.jpg.38f3118cffb11fed66e5e3c2c7a889ae.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	3. Next, click PreShow Repo, or whatever you named the source.  Note that there may be a lot of other options on this screen.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo8.jpg.ebe03a7ae615fd90e36d980d4bf3a7a7.jpg" data-fileid="256" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="256" data-unique="69bmf66a5" width="1000" alt="repo8.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo8.thumb.jpg.ebcf3116acbf245367cd4bd37293014d.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	4. Then, click on repository.preshow-###.zip.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo9.jpg.c69ec9cacde10cf45cd2a8f60f3b6c6f.jpg" data-fileid="255" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="255" data-unique="ibcd6wup1" width="1000" alt="repo9.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo9.thumb.jpg.1652576244ad6ae7b9c0af5add53216a.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	5. You now have the repository installed and are ready to install PreShow Experience from it.
</p>

<p>
	 
</p>

<p>
	<span style="font-size:18px;"><strong>Part 3: Installing PreShow Experience</strong></span>
</p>

<p>
	1. Go back to the Addons main page and click the Install from Repository option.  Then select PreShow Repository
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo10.jpg.b04fe996a812a57319ec5f101f09dd72.jpg" data-fileid="254" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="254" data-unique="ky3loum76" width="1000" alt="repo10.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo10.thumb.jpg.479ba4e315818ab689d2af580a14eee4.jpg" loading="lazy" height="520"></a>
</p>

<p>
	<br>
	2. Select Program add-ons.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo11.jpg.e34b8b54c960aee9d2167ea2f81d1efe.jpg" data-fileid="253" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="253" data-unique="g0dsejcts" width="1000" alt="repo11.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo11.thumb.jpg.5ecb8b12c07fa9f844933d817a2441b4.jpg" loading="lazy" height="520"></a>
</p>

<p>
	<br>
	3. Next, click the PreShow Experience.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo12.jpg.d8c54de205b8db9faa52c3ee41866713.jpg" data-fileid="252" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="252" data-unique="o74keovcl" width="1000" alt="repo12.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo12.thumb.jpg.c6689c9207b5487a319d33f739a1e6b9.jpg" loading="lazy" height="520"></a>
</p>

<p>
	<br>
	4. Finally, click the Install button in the bottom right to install PreShow Experience from the repository
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://preshowexperience.com/uploads/monthly_2024_06/repo13.jpg.8c20460c41bc927a580547a4f69fb5b9.jpg" data-fileid="251" data-fileext="jpg" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="251" data-unique="1bk0zmfae" width="1000" alt="repo13.jpg" src="https://preshowexperience.com/uploads/monthly_2024_06/repo13.thumb.jpg.98c93a836dfc4efa58e3baeef47910f2.jpg" loading="lazy" height="520"></a>
</p>

<p>
	 
</p>

<p>
	PreShow Experience settings and editors can be accessed from the Kodi Home-screen &gt; Addons&gt; Programs Add-ons.
</p>
]]></description><guid isPermaLink="false">22</guid><pubDate>Thu, 06 Jun 2024 22:35:22 +0000</pubDate></item><item><title>Module: Actions</title><link>https://preshowexperience.com/preshow-experience-guides/sequences/module-actions-r18/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/actions.webp.613785b972df0e13be676084d3dc5502.webp" /></p>
<p><strong>This module is only recommended for advanced users.</strong></p><p>Action modules allow you to add dynamic functionality to your sequence, including changing settings in Kodi or interacting with your home automation.</p><p>Action scripts must be configured outside of the sequence editor and saved in your action folder of your PreShow sequence.</p><p>More information about creating action files can be found here:</p><div class="ipsEmbeddedOther"><iframe src="https://preshowexperience.com/preshow-experience-guides/preshow-experience-guides-support/actions/creating-action-files-r19/?do=embed" allowfullscreen="" data-embedauthorid="1" data-embedcontent="" data-embedid="embed8951080342" style="overflow: hidden; height: 217px; max-width: 502px;" loading="lazy"></iframe></div><p> </p>]]></description><guid isPermaLink="false">18</guid><pubDate>Fri, 05 May 2023 13:16:24 +0000</pubDate></item><item><title>Module: Audio Format Bumper</title><link>https://preshowexperience.com/preshow-experience-guides/sequences/module-audio-format-bumper-r15/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/audioformat.webp.0442e5546995e24fe4b251bf0f34a9c2.webp" /></p>
<p>This module will display a video based on the detected audio format of your feature film.  You must have audio format bumpers in your content folder to display these.  Audio Format Bumpers can be downloaded here:<br><a rel="" href="https://preshowexperience.com/files/category/5-audio-format/">https://preshowexperience.com/files/category/5-audio-format/</a></p><p>Settings for this module include:</p><ul><li><p><strong>Method</strong> - The default is Auto select from source.  Other options include Choose format and Choose file.  If file is selected, a new option of Path will appear below </p><ul><li><p><strong>File</strong> - Select the video that you would like to play</p></li></ul></li><li><p><strong>Fallback </strong>- You can choose a file or format here in case your video doesn't match any of existing audio bumpers.</p></li><li><p><strong>Format</strong> - Select a default format folder to be played</p></li><li><p><strong>Play 3D if 3D Feature</strong> - Select a default single video file to be played.</p></li><li><p><strong>Volume (% of current)</strong> - Sets the volume for the audio format bumpers</p></li></ul><p>Dolby Atmos and DTS:X are not currently detected in Kodi.  In order to properly trigger those animations, your movie file name must include "atmos" or "dtsx" to show the appropriate video.</p>]]></description><guid isPermaLink="false">15</guid><pubDate>Fri, 05 May 2023 13:15:34 +0000</pubDate></item><item><title>Module: Features</title><link>https://preshowexperience.com/preshow-experience-guides/sequences/module-features-r16/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/features.webp.574521159aaa4fab444f0d5596855c8c.webp" /></p>
<p>This module includes your feature film and ratings, if you choose to show them.</p><p>Settings for this module include:</p><ul><li><p><strong>Count</strong> - The number of movies you want to show.</p></li><li><p><strong>Rating Bumper </strong>- You must have ratings content in your content folder to display these.  Options include:</p><ul><li><p><strong>Default</strong> - Use whatever you have selected in your PreShow settings.</p></li><li><p><strong>Video</strong> - Show only videos from your ratings bumper content folder</p></li><li><p><strong>Image</strong> - Show only images from your ratings bumper content folder</p></li><li><p><strong>None</strong> - Don't show ratings</p></li></ul></li><li><p><strong>Ratings Style Selection</strong> </p><ul><li><p><strong>Default</strong> - Use whatever you have selected in your PreShow settings.</p></li><li><p><strong>Random</strong> - Randomly pick from any files that you have in your ratings bumper content folder</p></li><li><p><strong>Style</strong> - Creates an additional option of Rating Style</p><ul><li><p><strong>Ratings Style</strong> -Select a single folder from your ratings bumper content</p></li></ul></li></ul></li><li><p><strong>Volume (% of current)</strong></p></li></ul><p>This module is required to be in every sequence.</p>]]></description><guid isPermaLink="false">16</guid><pubDate>Fri, 05 May 2023 13:15:52 +0000</pubDate></item><item><title>Module: Loops</title><link>https://preshowexperience.com/preshow-experience-guides/sequences/module-loops-r17/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/loop.webp.7dddbe04f3618cb54eec2ee44962203f.webp" /></p>
<p>This modules allow you to set up loops in your sequences.</p><p>This you to set loops in your sequence or skip content before your first or last movie in your queue.</p><p>Settings for this module include:</p><ul><li><p><strong>Direction</strong> - Back or Skip</p></li><li><p><strong>Number of modules</strong> - Number of modules to jump back or forward</p></li><li><p><strong>Condition</strong> - Set the condition for the loop</p><ul><li><p>Duration </p></li><li><p>Time of Day</p></li><li><p>Number of loops</p></li><li><p>Feature queue is full (This requires your to have your <a rel="" href="https://preshowexperience.com/preshow-experience-guides/preshow-experience-guides-support/sequences/module-features-r16/">feature count </a>set to greater than 1.)</p></li><li><p>Feature queue is empty</p></li></ul></li></ul>]]></description><guid isPermaLink="false">17</guid><pubDate>Fri, 05 May 2023 13:16:11 +0000</pubDate></item><item><title>Module: Slideshow</title><link>https://preshowexperience.com/preshow-experience-guides/sequences/module-slideshow-r21/</link><description><![CDATA[
<p><img src="https://preshowexperience.com/uploads/monthly_2024_12/slideshow.webp.0cbcab281d60a24e8fb917caa30486f2.webp" /></p>
<p><strong>Module Settings</strong></p><p>Note that all slideshows need to be in a sub-folder in the Slideshow content folder.</p><p><strong>Order</strong> - Alphabetical or random.   If a directory isn't selected with the option below, alphabetical folder-filename for order.</p><p><strong>Select Slideshow Directory</strong> </p><ul><li><p><strong>Default</strong> - randomly select images from all the folders in your Slideshow content folder.</p></li><li><p><strong>Directory</strong> - Reveals Directory (in slideshow folder) below.</p><ul><li><p><strong>Directory (in Slideshow folder)</strong> - Select the Slideshow folder in your content settings that you want the sequence to pull from.  The sequence will only select files from this folder.  It currently allows you to select any folder.  If you select a folder that's outside of your Slideshow folder the sequence will not play trivia.</p></li></ul></li></ul><p><strong>Duration </strong>- Set the max duration you would like your slideshows to run.   Note that your slideshow will stop after all images have been displayed, even if this time has not been exceeded</p><p><strong>Question duration</strong>- Set how long you would like your images to be on screen.</p><p><strong>Transition </strong>- Transition between slides.  Options include fade, slide up, slide down, slide right and slide left.</p><p><strong>Transition duration (milliseconds) </strong>- Set the transition time between slides.</p><p><strong>Music</strong></p><p><strong>Music</strong> - Select your music source if you want to play music during your slideshow.  Options include:</p><ul><li><p><strong>None</strong> - No music will be played</p></li><li><p><strong>Content</strong> - This will play from the music folder in your PreShow content folder.</p></li><li><p><strong>Directory</strong> - This will play from the folder selected below in <strong>Music: Path</strong>.</p></li><li><p><strong>File</strong> - This will play the track selected below in <strong>Music: File.</strong></p></li></ul><p><strong>Music: Path</strong> - Select a folder that contains your music that can be anywhere.</p><p><strong>Music: File</strong> - Select a single file to play with your music.</p>]]></description><guid isPermaLink="false">21</guid><pubDate>Mon, 04 Dec 2023 13:35:59 +0000</pubDate></item></channel></rss>
