Skip to content

Commit

Permalink
What is the purpose of this actually
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaserlang committed Dec 13, 2023
1 parent 76d1b95 commit dfac281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seplis_play_server/transcoders/hls.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def generate_hls_playlist(self):
l.append(f'#EXT-X-MAP:URI="/hls/init.mp4?{url_settings}"')

for i, segment_time in enumerate(segments):
l.append(f'#EXTINF:{str(segment_time)}, nodesc')
l.append(f'#EXTINF:{str(segment_time)},')
l.append(f'/hls/media{i}.m4s?{url_settings}')
l.append('#EXT-X-ENDLIST')
return '\n'.join(l)
Expand Down

0 comments on commit dfac281

Please sign in to comment.