Can any1 tell me of a gud Mpeg multiplexing software ? I have a m1v & an mp2 file of the same length. whenever i multiplex them using BBMpeg & frameserve the mpg file using avisynth to vdubmod, i notice that the length of the audio tream preceeds the video. The length of video stream & audio stream after multiplexing becomes 0:48:58.440 & 0:48:58.400. I want the lengths of both the streams to b exactly the same after multiplexing. Is there any freeware that can do multiplexing correctly as i want to watch the movie onmy standalone vcd player ?
Mpeg multiplexer ?
Collapse
X
-
the difference in length is miniscule, nothing to worry about.
and anyway if passing through avisynth (or vdubmod for that matter) there's really no need to mux; either mux through vdubmod or do it with avisynth-- download nicaudio dll, write a script something like
Code:video=mpeg2source("video.d2v") audio=nicmpasource("audio.mpa") audiodub(video,audio)
-
Comment
-
Comment