membrane_http_adaptive_stream_plugin icon indicating copy to clipboard operation
membrane_http_adaptive_stream_plugin copied to clipboard

Plugin generating manifests for HLS (DASH support planned)

Results 5 membrane_http_adaptive_stream_plugin issues
Sort by recently updated
recently updated
newest added

I added a file `test/membrane_http_adaptive_stream/integration_test/fixtures/ffmpeg-testsrc.hevc` for testing. If it's possible to add this file to the static assets, I'll update the test to be consistent with the other tests.

Right now the `sink.ex` adds a creation time attribute to a segment, the time is taken from the current time. Accordingly to the spec, this time should be associated with...

bug

``` #EXTM3U #EXT-X-VERSION:7 #EXT-X-INDEPENDENT-SEGMENTS #EXT-X-MEDIA:TYPE=AUDIO,NAME="audio_default_name",GROUP-ID="audio_default_id",AUTOSELECT=YES,DEFAULT=YES,URI="audio_track.m3u8" #EXT-X-STREAM-INF:BANDWIDTH=1080306,CODECS="avc1.42e00a",AUDIO="audio_default_id" video_480x270.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=622012,CODECS="avc1.42e00a",AUDIO="audio_default_id" video_540x360.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=946368,CODECS="avc1.42e00a",AUDIO="audio_default_id" video_720x480.m3u8 ``` Bandwidth computation has to be fixed. As you can see bandwidth value for the lowest resolution is bigger...

Required by https://github.com/membraneframework/membrane_core/issues/1009