Links:
1.1 =
http://www.microsoft.com/downloads/deta ... laylang=en
2.0 =
http://www.microsoft.com/downloads/deta ... laylang=en
To have correct audio sync, you'll need to take the video that avi_tc exported, the audio (which you can take from VDubMod by loading the original 119fps DivX file, going to Streams->Stream List, highlighting the audio stream, and hitting the Demux button), and the timecode that avi_tc exported, and mux them together into an MKV file with MKVMergeGUI from the MKVToolNix project. It's mostly straightforward, just use the Add button to load the video and audio, highlight the video stream in the Tracks area, and then use the Timecodes field to locate and load the timecode file. Then hit the 'Start muxing' button and wait for it to finish up.dazza1008 wrote:BTW - a problem. NO SOUND!!!! @_@ I'd like to have sound available because I might want to use the original soundtrack as an intro, but that may be why the size was reduced so much... (btw in order to have sound I have opened up a file in WMM, saved it as an mp3, memorised who said what when, and matched it up with the image. Not recommended.)
Then you'll need to use an AviSynth script to load the MKV correctly (make sure AviSynth is installed first, though). This script should do:
Code: Select all
DirectShowSource("path\to\video.mkv",fps=29.97,convertfps=true)
You can then load the script into VirtualDubMod (with the regular Open video file command, not Open via AviSynth) and go from there.
AVI can only support constant frame rate. Using null frames is a hack that allows variable frame rates to be used with it by making it appear as though it's a constant frame rate file. When it comes out of avi_tc, though, it will probably have been set to 29.97, 23.976, or some arbitrary framerate in between - this will mess with the audio sync or may play too fast/slow in sections because of matching only one or the other FPS. The adjustment I'm talking about is to make most of the video run at the right speed at the expense of the fewer sections that don't match (in other words, set it to 23.976 and not care the about the ones that are 29.97), or just use Premiere's ability to speed up/slow down the video to fix the problem of sections going too fast or too slow.And btw what do you mean by pre-processing because this program assumes a constant frame rate (and my avi probably doesn't have that, hence the need for 119 fps with some dummy frames)? This was the first thing I did... I thought I would have to create another divX file with null frames removed. But exactly how would I go about doing that?
Thanks! ^-^
Alternately, I already described how to deal with wanting to maintain audio sync above by making the MKV file and using AviSynth - that'll make sure both sections are taken care of right. The script I provided turns the video into a proper constant framerate file while maintaining the audio sync.