Mpeg multiplexer ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • varunb
    Trying my experiments in the dark.
    • Dec 2005
    • 79

    Mpeg multiplexer ?

    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 ?
  • anonymez
    Super Moderator
    • Mar 2004
    • 5525

    #2
    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)
    "What were the things in Gremlins called?" - Karl Pilkington

    Comment

    • varunb
      Trying my experiments in the dark.
      • Dec 2005
      • 79

      #3
      but dat will generate an avs file while i want to obtain an mpg file. I already have the m1v & mp2 files. I just need to multiplex them & burn the output on cd. sorry but i didn't get your point.

      Comment

      • anonymez
        Super Moderator
        • Mar 2004
        • 5525

        #4
        mention of avisynth and vdubmod, assumed you planned on encoding it. but like i said, the 40ms (just 1 frame) difference doesn't matter, you won't actually notice it's missing

        if you're really that anal about it try tmpgenc's mpeg tools
        "What were the things in Gremlins called?" - Karl Pilkington

        Comment

        • benbryant
          Digital Video Master
          Digital Video Master
          • Aug 2005
          • 1314

          #5
          You can use MuxMan for this

          Regards

          Comment

          • wastedweasel
            Junior Member
            Junior Member
            • Jun 2006
            • 18

            #6
            tmpgenc does this just fine

            Comment

            Working...