[FFmpeg-trac] #1842(undetermined:open): Incorrect segmented HTTP Live Streaming playlists

FFmpeg trac at avcodec.org
Wed Jan 16 21:59:15 CET 2013


#1842: Incorrect segmented HTTP Live Streaming playlists
-------------------------------------+-------------------------------------
             Reporter:  teric        |                    Owner:
                 Type:  defect       |                   Status:  open
             Priority:  normal       |                Component:
              Version:  1.0          |  undetermined
             Keywords:               |               Resolution:
  segment,hls,m3u8                   |               Blocked By:
             Blocking:               |  Reproduced by developer:  0
Analyzed by developer:  0            |
-------------------------------------+-------------------------------------

Comment (by jeremycondon):

 Where does this issue stand?  I see that the patch has been applied, but
 it is still not producing the expected m3u8 for me.  When I have it set to
 8 segments (segment_list_size 8), I get:


 {{{
 # m3u8 for segment 00006
 #EXTM3U
 #EXT-X-VERSION:3
 #EXT-X-MEDIA-SEQUENCE:0
 #EXT-X-ALLOWCACHE:1
 #EXT-X-TARGETDURATION:10
 #EXTINF:10.007800,
 d00000.ts
 #EXTINF:10.007800,
 d00001.ts
 #EXTINF:9.984589,
 d00002.ts
 #EXTINF:10.007811,
 d00003.ts
 #EXTINF:10.007811,
 d00004.ts
 #EXTINF:9.984589,
 d00005.ts
 #EXTINF:10.007800,
 d00006.ts
 }}}

 and for segment 8 I get
 {{{
 #EXTM3U
 #EXT-X-VERSION:3
 #EXT-X-MEDIA-SEQUENCE:7
 #EXT-X-ALLOWCACHE:1
 #EXT-X-TARGETDURATION:10
 #EXTINF:10.007800,
 d00007.ts
 #EXTINF:9.984578,
 d00008.ts
 }}}

 I would expect segment 8 to look like:

 {{{
 #EXTINF:9.984589,
 d00002.ts
 #EXTINF:10.007811,
 d00003.ts
 #EXTINF:10.007811,
 d00004.ts
 #EXTINF:9.984589,
 d00005.ts
 #EXTINF:10.007800,
 d00006.ts
 #EXTINF:10.007800,
 d00007.ts
 #EXTINF:9.984578,
 d00008.ts
 }}}

-- 
Ticket URL: <https://ffmpeg.org/trac/ffmpeg/ticket/1842#comment:13>
FFmpeg <http://ffmpeg.org>
FFmpeg issue tracker


More information about the FFmpeg-trac mailing list