<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gaps Archives - Robert&#039;s Productions | Post Production Tips</title>
	<atom:link href="https://www.robertsproductions.net/tag/gaps/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.robertsproductions.net/tag/gaps/</link>
	<description>Various software tutorials, downloads, design resources, and much more!</description>
	<lastBuildDate>Sun, 27 Oct 2019 19:45:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.5</generator>

<image>
	<url>https://www.robertsproductions.net/wp-content/uploads/2019/03/favicon01-3-48x48.png</url>
	<title>Gaps Archives - Robert&#039;s Productions | Post Production Tips</title>
	<link>https://www.robertsproductions.net/tag/gaps/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Closing Multiple Gaps in Sony Vegas</title>
		<link>https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/</link>
					<comments>https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/#comments</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Mon, 22 Jul 2013 21:10:34 +0000</pubDate>
				<category><![CDATA[Tip of the Week]]></category>
		<category><![CDATA[Vegas Pro]]></category>
		<category><![CDATA[Auto Ripple]]></category>
		<category><![CDATA[Close]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Gaps]]></category>
		<category><![CDATA[sony vegas]]></category>
		<category><![CDATA[Video Tutorial]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=5877</guid>

					<description><![CDATA[<p>While editing, it&#8217;s easy to end up with gaps in between multiple clips on the timeline. When this happens, it becomes quite tedious dragging the...</p>
<p>The post <a href="https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/">Closing Multiple Gaps in Sony Vegas</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>While editing, it&#8217;s easy to end up with gaps in between multiple clips on the timeline. When this happens, it becomes quite tedious dragging the clips back together one by one. Shouldn&#8217;t there be an easier way? Yes! In today&#8217;s post, I&#8217;ll show you a few simple steps you can take to close the gaps in between clips in Sony Vegas. We&#8217;ll not only remove gaps one by one but also all at once with a simple script. Let&#8217;s get to it!</p>
<div class="tut">
<h1><span style="color: #ffffff;">Video Tutorial</span></h1>
<p><iframe title="Closing Multiple Gaps in Sony Vegas" width="719" height="404" src="https://www.youtube.com/embed/_HjAtJaLYu0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
</div>
<p>&nbsp;</p>
<p><strong>Method 1:</strong></p>
<p><strong>Double-click</strong> the gap and press <strong>Delete</strong> then <strong>Ctrl + Shift + F</strong> to delete the gap and auto ripple the clips back in place.</p>
<hr />
<p><strong>Method 2:</strong></p>
<p>With <strong>Auto Ripple</strong> turned<strong> on</strong>. <strong>Double-click</strong> the gaps and press <strong>Delete</strong> to get rid of them and auto ripple the clips back in place.</p>
<hr />
<p><strong>Method 3:</strong></p>
<p>Use the following script to automate the process for multiple gaps. Keep in mind, scripts only work in Pro versions of Sony Vegas.</p>
<h2>Script:</h2>
<p><a href="http://j.mp/19e6vWh"><span style="text-decoration: underline;">Download Script Here</span></a>   &#8230; or</p>
<p><strong>Copy</strong> <strong>and Paste</strong> the following code in <strong>Notepad</strong> and <strong>Save-As</strong> &#8211; <strong>preferredname.js</strong></p>
<p>Remember to put &#8220;<strong>.js</strong>&#8221; at the end of the file name in order to initiate the jscript file.</p>
<pre lang="jscript">/** 
* Program: 
* Description: This script will Delete Empty Space Between Events In Selected Tracks
* Author: Philip
* 
* Date: August 31, 2003 
**/ 

import Sony.Vegas; 
import System.Windows.Forms;
import Microsoft.Win32;

//time intervals for split events.

try
{

// step through all selected video events:
var FirstTrack : Track = Vegas.Project.Tracks.Item(0);

// step through all selected video events:
for (var track in Vegas.Project.Tracks) {
if( !track.Selected) continue;
var tracktime = new Timecode(0);
for (var evnt in track.Events) {
evnt.AdjustStartLength(tracktime,evnt.Length,true);
tracktime = tracktime + evnt.Length;
}
}
}

catch (errorMsg)
{
MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}</pre>
<p>The post <a href="https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/">Closing Multiple Gaps in Sony Vegas</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
	</channel>
</rss>
