<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; tricks</title> <atom:link href="http://www.ghacks.net/tag/tricks/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 13:29:21 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Remove Ntfs Timestamps to speed up Vista</title><link>http://www.ghacks.net/2007/01/06/remove-ntfs-timestamps-to-speed-up-vista/</link> <comments>http://www.ghacks.net/2007/01/06/remove-ntfs-timestamps-to-speed-up-vista/#comments</comments> <pubDate>Sat, 06 Jan 2007 07:36:06 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[ntfs]]></category> <category><![CDATA[ntfsdisablelastaccessupdate]]></category> <category><![CDATA[timestamp]]></category> <category><![CDATA[tips]]></category> <category><![CDATA[tricks]]></category> <category><![CDATA[tweak]]></category> <category><![CDATA[vista]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/01/06/remove-ntfs-timestamps-to-speed-up-vista/</guid> <description><![CDATA[If you are using the nfts filesystem in windows xp you might know this registry hack to speed things up a little bit. The default mode is that every time you alter a file a timestamp will be saved which is for most users completely useless. Some backup programs or synchronizers use this feature but most others don't.]]></description> <content:encoded><![CDATA[<p>If you are using the nfts filesystem in windows xp you might know this registry hack to speed things up a little bit. The default mode is that every time you alter a file a timestamp will be saved which is for most users completely useless. Some backup programs or synchronizers use this feature but most others don&#8217;t.</p><p>If you are not using a program that needs the timestamp you can easily edit the registry key in vista to speed up your system. Hit Windows + R, type regedit and press enter.  Navigate to the following registry key:<br
/> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem</p><p><span
id="more-1069"></span>Right-click the key NtfsDisableLastAccessUpdate and change the value of it to 1. While you are there you could also disable the creation of files in Dos format (8+3) by altering the value of the key NtfsDisable8dot3NameCreation to 1 as well.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/01/06/remove-ntfs-timestamps-to-speed-up-vista/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Join multiple video files into one</title><link>http://www.ghacks.net/2006/11/11/join-multiple-video-files-into-one/</link> <comments>http://www.ghacks.net/2006/11/11/join-multiple-video-files-into-one/#comments</comments> <pubDate>Sat, 11 Nov 2006 10:36:14 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Knowledge]]></category> <category><![CDATA[join-avi]]></category> <category><![CDATA[merge-avi]]></category> <category><![CDATA[merge-video]]></category> <category><![CDATA[movie]]></category> <category><![CDATA[tips]]></category> <category><![CDATA[tricks]]></category> <category><![CDATA[video]]></category> <category><![CDATA[virtualdub]]></category> <category><![CDATA[Windows]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2006/11/11/join-multiple-video-files-into-one/</guid> <description><![CDATA[Websites sometimes split movies into smaller parts to make it easier for users with low bandwidth access to the internet to download the movies without facing problems like timeouts. Once downloaded it is rather tiresome to view such a movie because you have to click on each part which naturally means a short pause between the last and the next movie.]]></description> <content:encoded><![CDATA[<p>Websites sometimes split movies into smaller parts to make it easier for users with low bandwidth access to the internet to download the movies without facing problems like timeouts. Once downloaded it is rather tiresome to view such a movie because you have to click on each part which naturally means a short pause between the last and the next movie.</p><p>The following method makes it possible to join multiple video files into one big file making it that much easier in the end to play and enjoy the downloaded movie. The method is different depending on the type of movie that you are playing. If the movie consists of multiple mpg movies you can use the windows command line to merge them.</p><p><span
id="more-907"></span></p><p>Start the command line by pressing the windows key and R. Enter cmd in the prompt which will start the command line window. Enter the following line into the command line, make sure you enter the right filepath to the movie. I suggest you move the files to the top of a hard drive to ease the amount of typing that needs to be done.</p><p>copy /B &#8220;C:\movie1.mpg&#8221; + &#8220;C:\movie2.mpg&#8221; + &#8220;C:\movie3.mpg&#8221; &#8220;C:\completemovie.mpg&#8221;</p><p>This joins movie1.mpg, movie2.mpg and movie3.mpg into completemovie.mpg. You can add more movies to join more parts without problems.</p><p>You need an additional programs if the parts are avi files instead of mpg. Download the freeware <a
target="_blank" title="virtualdubmod" href="http://virtualdubmod.sourceforge.net/">VirtualDubMod</a> and unpack it to your hard drive. Run the tool and select File, Open Video File and browse to the first part of the movie. Select no If a popup named VBR audio stream detected appears.</p><p>Click on File, append Segment and browse to the second part of the movie. Once this is done click on File, Save As and save the newly merged movie file to your hard drive.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2006/11/11/join-multiple-video-files-into-one/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> </channel> </rss>
