Re: [FFmpeg-devel] [PATCH] ffmpeg: Add -time_base option to hint the time base

2017-01-14 Thread Michael Niedermayer
On Tue, Dec 27, 2016 at 10:05:35PM -0800, Michael Bradshaw wrote: > From: Michael Bradshaw > > Signed-off-by: Michael Bradshaw > --- > ffmpeg.c | 6 -- > ffmpeg.h | 2 ++ > ffmpeg_opt.c | 16 +++- > 3 files changed, 21 insertions(+), 3 deletions(-) applied thx [...]

[FFmpeg-devel] [PATCH] ffmpeg: Add -time_base option to hint the time base

2016-12-27 Thread Michael Bradshaw
From: Michael Bradshaw Signed-off-by: Michael Bradshaw --- ffmpeg.c | 6 -- ffmpeg.h | 2 ++ ffmpeg_opt.c | 16 +++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index ec9da3e..9ad9535 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2910

[FFmpeg-devel] [PATCH] ffmpeg: Add -time_base option to hint the time base

2016-12-27 Thread Michael Bradshaw
From: Michael Bradshaw Hi, Attached patch adds a -time_base parameter to ffmpeg output streams. This parameter sets the initial AVStream.time_base value for the output streams, thus providing a time base hint to the muxer. Please review. Michael Bradshaw (1): ffmpeg: Add -time_base option