Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-05-05 Thread Ricardo Constantino
I've actually tested the patch with FFmpeg/mpv now with a few .mpd from Youtube (non-segmented), Vimeo and Facebook and it seems to work mostly fine. You can obtain URLs to these by using youtube-dl json output together with jq cli tool, ex: working: ffmpeg -i $(youtube-dl -J "https://www.youtube

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-13 Thread Steven Liu
2017-04-11 23:29 GMT+08:00 Andy Furniss : > Steven Liu wrote: > >> 2017-04-11 22:27 GMT+08:00 Andy Furniss : >> >> Steven Liu wrote: >>> >>> ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/mas ter/tmp/ffmpeg/patches/3

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-13 Thread Steven Liu
2017-04-12 14:13 GMT+08:00 Rodger Combs : > > > On Apr 9, 2017, at 09:08, Steven Liu wrote: > > > > ffmpeg need a dash demuxer for demux the dash formats > > base on > > https://github.com/samsamsam-iptvplayer/exteplayer3/blob/ > master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch > > > >

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Rodger Combs
> On Apr 9, 2017, at 09:08, Steven Liu wrote: > > ffmpeg need a dash demuxer for demux the dash formats > base on > https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch > > TODO: > 1. support multi bitrate dash > > v2 fixed: > 1.

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Andy Furniss
Steven Liu wrote: 2017-04-11 22:27 GMT+08:00 Andy Furniss : Steven Liu wrote: ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/mas ter/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch TODO: 1. support multi bitrate das

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Steven Liu
2017-04-11 22:27 GMT+08:00 Andy Furniss : > Steven Liu wrote: > >> ffmpeg need a dash demuxer for demux the dash formats base on >> https://github.com/samsamsam-iptvplayer/exteplayer3/blob/mas >> ter/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch >> >> TODO: 1. support multi bitrate dash >>

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Andy Furniss
Steven Liu wrote: ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch TODO: 1. support multi bitrate dash v14 fixed: 1. fix bug: TLS connection was non-properly term

[FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-09 Thread Steven Liu
ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch TODO: 1. support multi bitrate dash v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg co