<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Summary</title><link>https://sourceforge.net/p/trimmer/wiki/Summary/</link><description>Recent changes to Summary</description><atom:link href="https://sourceforge.net/p/trimmer/wiki/Summary/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 26 Mar 2015 00:54:05 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/trimmer/wiki/Summary/feed" rel="self" type="application/rss+xml"/><item><title>Summary modified by Andy</title><link>https://sourceforge.net/p/trimmer/wiki/Summary/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -50,7 +50,7 @@
 Segment Sections
 --

-The INI file can have multiple Segment (or job) sections.  They are numbered sequentially, starting with *[Segment1]*.  Each of the segments will show up in the encode dropdown.
+The INI file can have multiple Segment (or job) sections.  They are numbered sequentially, starting with [*Segment1*].  Each of the segments will show up in the encode dropdown.

 Parameter    | Default   | Description
 -------------|-----------|----------------
@@ -58,18 +58,22 @@
 EncodeString`       | {see source} | The command to be run to encode.  Although ffmpeg is the intended executable, any command is acceptable
 DefaultOutFileName` |    | The default output filename.  This will then eventually end up in the `$OutFileName$` replacement variable

-==Replacement Variables==
+Replacement Variables
+--
+
 Prior to executing the command specified in  'EncodeString`, several variables are replaced.  These are: 
-|| *Variable* || *Description*||
-||`$CropX$`         || The left position of the crop slider (which assumes a 16:9 to 4:3 crop)||
-||`$OutputStart$`   || 5 seconds before the selected start time to allow for lead in. ||
-||`$OutputLength$`  || Full length, including lead-in and lead-out. ||
-||`$OutputLengthNoHT$`|| Length, without lead-in and lead-out.||
-||`$FadeInStart$`   || The selected start time ||
-||`$FadeOutStart$`  || 0.5 seconds before the selected stop time ||
-||`$FadeLength$`    || 0.5, as in one-half second ||
-||`$InFile$`        || The path and name of the input file ||
-||`$InFileName$`    || The path and name of the input file, without extension. (depreciated) ||
-||`$OutFileName$`   || The path and name of the output file, without extension, from the dialog.||
+
+Variable        | Description
+----------------|------------------
+$CropX$         | The left position of the crop slider (which assumes a 16:9 to 4:3 crop)
+$OutputStart$   | 5 seconds before the selected start time to allow for lead in. 
+$OutputLength$  | Full length, including lead-in and lead-out. 
+$OutputLengthNoHT$| Length, without lead-in and lead-out.
+$FadeInStart$   | The selected start time 
+$FadeOutStart$  | 0.5 seconds before the selected stop time 
+$FadeLength$    | 0.5, as in one-half second 
+$InFile$        | The path and name of the input file
+$InFileName$    | The path and name of the input file, without extension. (depreciated)
+$OutFileName$   | The path and name of the output file, without extension, from the dialog.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andy</dc:creator><pubDate>Thu, 26 Mar 2015 00:54:05 -0000</pubDate><guid>https://sourceforge.netd159137dd6b9c662c2eb7a17280100350a460b45</guid></item><item><title>Summary modified by Andy</title><link>https://sourceforge.net/p/trimmer/wiki/Summary/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This is a utility for simple post-production processing of video files.  It will concatanate multiple files together, trim the beginning and end, and transcode.  Uses VLC for the player and ffmpeg for transcoding.&lt;/p&gt;
&lt;h1 id="back-story"&gt;Back Story&lt;/h1&gt;
&lt;p&gt;The need for this tool came from video recording sermons at &lt;a class="" href="http://calvarysc.org" rel="nofollow"&gt;Calvary Church&lt;/a&gt;.  We have limited people and limited time, so a full-featured editing utility ends up being too cumbersome.  All we need it to do is trim, fade in and fade out, and add some black before and after.&lt;/p&gt;
&lt;h1 id="quick-usage"&gt;Quick Usage&lt;/h1&gt;
&lt;p&gt;Since we record to an SD Card, the file size is limited to 4GB.  So the first step is to concatenate the files together while copying them to the local drive.  Then use the "Player" tab to select the start and stop points for the video clip.  You can chose from several jobs from the dropdown, and press "Encode" when you are ready.  You can queue up several jobs, and watch their progress in the "Messages" tab.&lt;/p&gt;
&lt;h1 id="dependencies"&gt;Dependencies&lt;/h1&gt;
&lt;p&gt;Running the binary&lt;br /&gt;
  * VLC&lt;/p&gt;
&lt;p&gt;Running the Python&lt;br /&gt;
  * Python 3.x&lt;br /&gt;
  * wxPython Phoenix&lt;/p&gt;
&lt;p&gt;Building the binary&lt;br /&gt;
  * cx_freeze 2.x&lt;/p&gt;
&lt;h1 id="platforms"&gt;Platforms&lt;/h1&gt;
&lt;p&gt;At the moment, the only verified platform is Windows.  However, everything involved (Python, wxPython, VLC, etc.) is cross platform, so porting shouldn't be difficult.  The notable exception is the part where it copies the files.  A call to the Windows "copy" command is used because it was the fastest choice.&lt;/p&gt;
&lt;h1 id="ini-file"&gt;INI File&lt;/h1&gt;
&lt;p&gt;There are a lot of things that are controlled by the Trimmer.ini file.  There are some defaults that are built into Trimmer.  It will then check the current directory and %APPDATA%/!Trimmer_Data (in that order) for Trimmer.ini to update the settings.  The first time it is run, it will but an example Trimmer.ini in %APPDATA%/!Trimmer_Data.&lt;/p&gt;
&lt;p&gt;The sections and parameters are as follows:&lt;/p&gt;
&lt;h2 id="globalsettings-section"&gt;GlobalSettings Section&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;FileCopy&lt;/td&gt;
&lt;td&gt;True&lt;/td&gt;
&lt;td&gt;Show the "File Copy" tab.  If you don't need it, set this to False&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NameTemplate&lt;/td&gt;
&lt;td&gt;%m_%d_%Y&lt;/td&gt;
&lt;td&gt;Template for filename during the Concatenate/Copy phase.  For the syntax, see Python's &lt;a class="" href="https://docs.python.org/3.4/library/datetime.html#strftime-strptime-behavior" rel="nofollow"&gt;strftime()&lt;/a&gt;  function.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="filecopy-section"&gt;FileCopy Section&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;SourcePath&lt;/td&gt;
&lt;td&gt;r"."&lt;/td&gt;
&lt;td&gt;Default path to copy files from.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DestPath&lt;/td&gt;
&lt;td&gt;r"."&lt;/td&gt;
&lt;td&gt;Default path to copy file to.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AutoStart&lt;/td&gt;
&lt;td&gt;True&lt;/td&gt;
&lt;td&gt;Default value for the "Auto Start" checkbox.  If the box is checked, copying will start if the source directory contains one .MTS file that is 4GB, and one that is smaller, both with the current date.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="segment-sections"&gt;Segment Sections&lt;/h2&gt;
&lt;p&gt;The INI file can have multiple Segment (or job) sections.  They are numbered sequentially, starting with &lt;em&gt;&lt;span&gt;&lt;span&gt;[Segment1]&lt;/span&gt;&lt;/span&gt;&lt;/em&gt;.  Each of the segments will show up in the encode dropdown.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Name`&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;The name that shows up in the dropdown.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;EncodeString`&lt;/td&gt;
&lt;td&gt;{see source}&lt;/td&gt;
&lt;td&gt;The command to be run to encode.  Although ffmpeg is the intended executable, any command is acceptable&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DefaultOutFileName`&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;The default output filename.  This will then eventually end up in the &lt;code&gt;$OutFileName$&lt;/code&gt; replacement variable&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;==Replacement Variables==&lt;br /&gt;
Prior to executing the command specified in  'EncodeString&lt;code&gt;, several variables are replaced.  These are: 
|| *Variable* || *Description*||
||&lt;/code&gt;$CropX$&lt;code&gt;|| The left position of the crop slider (which assumes a 16:9 to 4:3 crop)||
||&lt;/code&gt;$OutputStart$&lt;code&gt;|| 5 seconds before the selected start time to allow for lead in. ||
||&lt;/code&gt;$OutputLength$&lt;code&gt;|| Full length, including lead-in and lead-out. ||
||&lt;/code&gt;$OutputLengthNoHT$&lt;code&gt;|| Length, without lead-in and lead-out.||
||&lt;/code&gt;$FadeInStart$&lt;code&gt;|| The selected start time ||
||&lt;/code&gt;$FadeOutStart$&lt;code&gt;|| 0.5 seconds before the selected stop time ||
||&lt;/code&gt;$FadeLength$&lt;code&gt;|| 0.5, as in one-half second ||
||&lt;/code&gt;$InFile$&lt;code&gt;|| The path and name of the input file ||
||&lt;/code&gt;$InFileName$&lt;code&gt;|| The path and name of the input file, without extension. (depreciated) ||
||&lt;/code&gt;$OutFileName$`   || The path and name of the output file, without extension, from the dialog.||&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andy</dc:creator><pubDate>Thu, 26 Mar 2015 00:47:00 -0000</pubDate><guid>https://sourceforge.netef16ed41931afc4c4241e10678ce3edb165a60f5</guid></item></channel></rss>