Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am converting a .264 with its .wav file to .avi and the duration of the generated file is smaller than it should be. This is a problem for me because the video is not synchronized with the audio.

I've tested several parameters (-async,-vsync, sync_file_id) and did not notice any change in the file. For example:

avconv -r 15 -i input.264 -i input.wav -c:a copy -map 0:a -map 1:v  output.avi

Anyone have any ideas?

ps: The .264 and .wav files were extracted from a pcap file using the program Videosnarf

share|improve this question
(Nitpicking: You're not converting, you're muxing.) -- What length is the video file, what length is the audio file, what length is the final result? Are you sure -r 15 is correct? 15 fps seems unusual – Dominik Honnef Oct 22 '12 at 17:34

1 Answer

Have you tried to convert using ffmpeg?

share|improve this answer
Yes, and the result is the same. Thanks – user557430 Oct 22 '12 at 17:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.