REM JVC Mass convert script
REM converts all MOD files in a folder to MPG files...
@ECHO off
cls
ECHO.
ECHO -
ECHO - Renames MOD Files from JVC Camera to MPG
ECHO -
SET prefix=mov1
SET /P prefix=Type a rename prefix. [mov1]
REN *.mod %prefix%*.mpg
SET choice=y
SET /P choice=Do you want to erase the MOI files? [y/n]
IF %choice%==y del *.moi
pause
couple things.
firmware thanks for the batch file. kicks butt. but the main problem persists. wide screen video doesn't display correctly, it's still stretched to 4:3
In adobe premier 3 the mod file work great. the widescreen problem is fixed by.
after importing the files right click on the track or group of tracks select interpret footage, SELCT conform to: NTSC 16:9(1.2). using premeir to make dvds and dvd quality video is great. The problem come when trying to render down to internet streaming quality. Maybe someone has a solution but for me the progressive scanning used by the mod isn't rendered right and the horizontal lines are separated, very unwatchable.
For internet streaming video I just use the power director that came with it which you've probably found to have much to be desired as far as usability like sound edit features but file are read correctly and low quality video comes out just fine
 I still have a problem. =]
I use Sony Vegas 8, and I'm not getting any audio with the files. The JVC software recognizes the audio and video, obviously, but Vegas will not. Any help?
 Thanks,
Tom.
To add to that - the JVC GZ-HD5/7 save as .TOD
That's a different format to .MOD? Seems you can rename to .MPG and it works, but.. not sure if that#s the way to go.
The software that comes with the JVC Everio is horrible. When I say horrible, I mean it may very well be the worst software applicatio I've ever used. Its very, very slow, and has some serious bugs in it.
I recently purchased the Roxio Creator 2009 software for about 75$. Its software is pretty good, and it supports the mod file format. So you don't need to do any conversions to avi or mpeg. My 15 day return period had expired, so I couldn't return the camera. But since I've started using the roxio Creator software, everything has been fine.
.MOD and .TOD files are simply alternate file extensions for naming MPEG-2 (DVD codec) video. I highly doubt JVC owns this format, either. A file copied and renamed to .mpg is still an MPEG-2 file. This method works well if the editing software supports MPEG-2, but doesn't recognize these special extensions.
I have been working with an Everio HD camcorder for some time, and while renaming works some of the time, I have found that the files themselves seem to have certain inconsistencies which cause certain applications to crash or behave oddly when working with these files. I use Premiere CS3 and Premiere Elements. While Elements 'supports' these files, it is markedly unstable and frequently crashes while using the files, though the application is otherwise reliable. The solution I have arrived at is to repair the container using ffmpeg.
If you are not familiar with ffmpeg, it may be a bit of a bear to learn, but it's not only useful for this, but functions as a video swiss army knife useful for splicing, muxing/demuxing, and rendering just about any format into just about any other format.
ffmpeg is an open source project from the linux world, but it has been ported and is supported on windows. Fetch it here and place it somewhere handy on your system.
To rewrite the container into a nice, standards compliant .mpg file that doesn't make applications die, WITHOUT rerendering video or audio itself, I use this command.
ffmpeg -i INFILE.MOD -acodec copy - vcodec copy OUTFILE.mpg
This not only renames the file, but actually rebuilds the container around unmodified video and audio data, yielding a file which works much more stably with Adobe applications, and presumably others as well, as ffmpeg's open source development goals result in very standards compliant files.
I have a short script to handle a batch of files using the bash command interpreter from UNIXy type systems, which can be installed on windows via the cygwin project. Perhaps others in this forum with some knowledge of DOS type scripting can create a similar script for the standard cmd.exe for windows.
The short and simple bash script goes like this:
for x in *.MOD; do ffmpeg -i $x -acodec copy -vcodec copy $x.mpg; done
Maybe this helps someone as much as it helps me.
Just so everyone knows - Canon uses the .MOD format as well, in it's FS line of camcorders. I have been using two Canon FS100's and several FS200's for a little under a year.
I edit with Adobe Premiere Pro CS3. All I have to do is simply rename the .MOD files as .MPG and then import into PP CS3. It takes a small amount of time to conform the audio, but no file conversion is necessary. It's a pretty slick workflow and I've never encountered any problems editing them this way.
When editing these files on a MAC with FCP, I've not found any way to get around converting them to DV. I use VisualHub for this purpose - it works fine, but takes a long time to convert. FCP will import .MOD files renamed as .MPG, but you will not have the audio, just video. Have'nt found a way around that yet for FCP. If anyone knows a way, please share!
google "SDCOPY" it will rename your files and save you a lot of trouble.
I have a Canon fs100....