1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avconv: set the output stream timebase

This is required by the new API.
This commit is contained in:
Anton Khirnov 2014-07-09 10:33:03 +00:00
parent c9c1265c52
commit 3f3232a371

View File

@ -1972,6 +1972,8 @@ static int transcode_init(void)
"Error initializing the output stream codec context.\n");
exit_program(1);
}
ost->st->time_base = ost->enc_ctx->time_base;
}
/* init input streams */