Skip to main content

Posts

Showing posts from 2011

How to delete folders when PATH is too long?

Use Robocopy, or "Robust File Copy" This is a command-line directory replication command. It has been available as part of the Windows Resource Kit starting with Windows NT 4.0, and was introduced as a standard feature of Windows Vista, Windows 7 and Windows Server 2008. Robocopy can be downloaded from http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=17657 The following batch file can do the job. Keep the batch file in your path. DelFolder.bat @echo off if {%1}=={} @echo Syntax: DelFolder FolderPath&goto :EOF if not exist %1 @echo Syntax: DelFolder FolderPath - %1 NOT found.&goto :EOF setlocal set folder=%1 set MT="%TEMP%\DelFolder_%RANDOM%" MD %MT% RoboCopy %MT% %folder% /MIR RD /S /Q %MT% RD /S /Q %folder% endlocal

Creating Video Subtitles using Subtitle Workshop and Avidemux

My Tool box: 1. java youtube video downloader – Optional YTD2 is a free Java application for downloading youtube videos as flv/mp4 files.Using hc.apache.org components. (based on the idea of "ytd") http://sourceforge.net/projects/ytd2/ 2. FLV to WMV Converter: A utility to convert .FLV files to .WMV file format. http://www.tubetillatools.com/flv-to-wmv . 3. FLV to AVI Converter: A utility to convert .FLV file to AVI format http://www.tubetillatools.com/flv-to-avi 4. Subtitle Workshop: It is a freeware subtitle editing tool which allows the users to create/edit/convert subtitle files. http://www.urusoft.net 5. Avidemux : is a free open-source program designed for multi-purpose video editing. http://avidemux.org Steps 1, 2, 3, 4, 5 and 6 Step 1: Open your video in Avidemux Step 2: Select the video type