Need Help With Command Line [message #854] |
Sun, 19 February 2017 00:08 |
weilim Messages: 1 Registered: December 2007 |
Junior Member |
|
|
I have a video file name zillaintro.wmv. I want put this in front of each of the video files in this directory C:\video\ then output the combined results in the directory C:\video\result\. IF there were ten video files in C:\video there would be ten video files with zillaintro.wmv at the front in C:\video\result\
I have been trying to figure out how to do it in the command line so I can do them all at once. Can anyone give me the command to do this.
[Updated on: Wed, 20 February 2008 00:23]
|
|
|
Re: Need Help With Command Line [message #855 is a reply to message #854 ] |
Sun, 19 February 2017 12:22 |
admin Messages: 532 Registered: December 2005 |
Senior Member Administrator |
|
|
Hi.
At first you should create config-file that contains all needed options.
After that use the following command
vccmd.exe {path_to_config-file} /f c:\video\*.* /pn “DestinationPath” /pv “result”
/f c:\video\*.* - it is the source folder for processing
/pn “DestinationPath” - parameter name, don't change it
/pv “./result” – parameter value (Destination Path)
Here you may enter lelative path
“./result” means c:\video\*.*
or absolute path directly.
Regards,
Videocharge Team.
[Updated on: Fri, 08 January 2010 13:49]
|
|
|