Re: [FFmpeg-devel] [PATCH] Add support for unequal duration for VOD playlist

2018-04-26 Thread Somsak Sriprayoonsakul
Hello, Do I need to do any other things to get this patch accepted? Best Regards, Somsak soms...@gmail.com On Fri, Apr 20, 2018 at 5:05 PM, Somsak Sriprayoonsakul wrote: > (Sorry for spamming, forgot the sign off part) > > This patch make ffmpeg able to create a single HLS

[FFmpeg-devel] [PATCH] Add support for unequal duration for VOD playlist

2018-04-20 Thread Somsak Sriprayoonsakul
: Somsak Sriprayoonsakul --- libavformat/hlsenc.c | 30 -- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index c27a66ea79..b6260b262d 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1026,26

[FFmpeg-devel] [PATCH] Added support for unequal duration for VOD playlist

2018-04-19 Thread Somsak Sriprayoonsakul
--- libavformat/hlsenc.c | 30 -- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index c27a66ea79..b6260b262d 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1026,26 +1026,28 @@ static int hls

[FFmpeg-devel] [PATCH] make HLS support unequal duration in VOD playlist

2018-04-19 Thread Somsak Sriprayoonsakul
This patch make ffmpeg able to create a single HLS m3u8 with different duration in the same manifest for VOD playlist ype. This has benefit on optimizing HLS stream to start faster, having initially shorter duration. The later part of the stream could have longer duration, which lower server load