by script or programmatically ? I have a bunch of files that need to be converted wondering if there's a better way than go through the prompts one at a time
OS windows Vista/XP
|
|
by script or programmatically ? I have a bunch of files that need to be converted wondering if there's a better way than go through the prompts one at a time OS windows Vista/XP
|
||||
|
|
|
Assuming that you have a (command-line capable) program already that can convert to m4v and you just want to be able to automate the process, here's a batch file that you could modify to loop through all the files in a directory and its subdirectories and invoke your conversion program. As written, it uses Handbrake to convert a DVD in .iso, .img, or extracted as VIDEO_TS format to mp4 for consumption by an XBox 360. It should be fairly easy to change. Just save it as encode.bat or something.
So you'll need to modify these variables:
*FILE_TYPES* is what you want to use as input format for your converter program. *ENCODED_DIR* is a directory that you want to skip (you could use it to store files you've already encoded or store them elsewhere). *CONVERT_PROG* is the directory of your converter. In the example, I have it in a subdirectory called [HANDBRAKE], and it's called HandBrakeCLI.exe. *CONVERT_ARG_** are the settings you use to invoke your converter program. Just put what you want to convert in a subdirectory off of the script. For example, without changing the script you would rely on this directory structure:
Then when you run the script, it'll create dvd1.mp4 and my_dvd2.mp4. So based on this description on how it works, hopefully you can figure out how to modify it even if you don't know too much about cmd shell programming using the batch language. If this answer doesn't help, you should update the original question to include what format you're going from, what playback device you're targeting with m4v, and whether you already have a program that can do the conversion. |
||
|
|
|
|
Handbrake is an excellent utility for encoding to M4V. You can even set it up to run in batch mode. I once encoded an entire season of Lost using this method. It is able to be ran through the command line or through a GUI, but either way, it supports encoding files in batches. |
||
|
|