Hey Guys Long time since ive posted in here... lol, ive got a problem - ive got two files that are relatively the same in video content and one has good audio whereas the other one has bad quality audio - i want to take the good audio and put it into the other video file which is good quality video - but with bad audio. ok, hopefully you understood that any and all help on this project will be appreciated
Depends what the source files are. If they are say avi's then you could demux and remux the stream with VirtualDubMod, however you may need to adjust the length/speed of the audio before remuxing. You could use AVISynth: video = avisource("goodvideo.avi",false) audio = mpasource("goodaudio.mp3") audiodub(video,audio) delayaudio(-1)<--change value etc. to test out different values. Also the timewarp function.
Cheers - i had a go with virtualdubmod last night & couldn't really use the program - i demuxed the audio but it came out as just 'file' what would i do with it?
Load the file in virtualdubmod. Select Streams, stream list. Right click the audio stream. Select Full Processing. Select File, save .wav Give it a name and save it. There's your audio.
I guess I should have said, "Load your original movie file", not just "file". What you demuxed is useless, delete it. Extract audio as I explain above. If you want a video file with no audio (a wasted step really) select Audio, no audio, then save avi. Once you have your audio .wav file, you can encode the video to mpeg in any good encoder, using the extracted .wav as the audio source, and your original avi as video source. If you have sync problems, you'll need to sort out audio delay in something like Goldwave.
I wouldn't say that it was useless. Sounds like it is just missing a file extension. For instance if the source used mp3 audio then you would just add .mp3.