adding soundtrack to project

Discussion in 'Nero discussion' started by akid666, Aug 31, 2008.

  1. akid666

    akid666 Member

    Joined:
    Aug 31, 2008
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    11
    Hi to everyone. my first post.....here goes
    i am trying to put a soundtrack to a project using nerovision 5. basically it's a film that i am trying to put a soundtrack over the top of, so it lasts about 90 mins, however i add the music files to the project (approx 10 mp3 tracks) but the final burned dvd only seems to play the first couple of tracks and then the music stops but the film continues without sound.
    can anybody suggest a solution??
    thanks in advance
     
  2. attar

    attar Senior member

    Joined:
    Jun 17, 2005
    Messages:
    11,147
    Likes Received:
    41
    Trophy Points:
    128
    I have never tried this with Nero, but I have did something similar with an AVI file and two audio sources.

    If you are familiar with VirtualDub and Avisynth, it consists of writing a text script and using it in VirtualDub to add the two tracks to the video and saving the result as a new avi.

    In the example, 'speak' is the audio track from the avi in wav format.
    'Background' is a separate wav file.

    The audios are mixed together with the level of the sound specified in the script;in this example, the main audio has 75% while the background music would be 25% - thus muted).

    video=avisource("C:\cd1.avi")
    speak=wavsource("C:\cd1.wav")
    background=wavsource("C:\back.wav")
    audio=mixaudio(speak, background, 0.75, 0.25)
    return audiodub(video, audio)
     
  3. akid666

    akid666 Member

    Joined:
    Aug 31, 2008
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    11
    thanks for the reply.
    i have managed to turn the soundtrack off using nero, the problem seems to be adding the sound files. as i said i can put the music files on the project with no problem its just that it doesn't seem to play all the tracks when the dvd has been burnt. i may have to try what you have kindly posted, so many thanks!!
     

Share This Page