Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lapin committed Sep 14, 2024
1 parent de45782 commit b6d4e73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# m3u8-parser

[![Maven Central](https://img.shields.io/maven-central/v/com.github.alexey-lapin.m3u8-parser/m3u8-parser?color=%2349C41B)](https://central.sonatype.com/artifact/com.github.alexey-lapin.m3u8-parser/m3u8-parser)
[![codecov](https://codecov.io/gh/alexey-lapin/m3u8-parser/graph/badge.svg?token=6NAFXGDPC5)](https://codecov.io/gh/alexey-lapin/m3u8-parser)

💡 This is a fork of [carlanton/m3u8-parser](https://github.com/carlanton/m3u8-parser) with TVG attributes support.

A simple HLS playlist parser for Java.
Expand Down Expand Up @@ -126,7 +129,7 @@ http://media.example.com/third.ts
.build())
.addMediaSegments(MediaSegment.builder()
.title("Channel 2")
.du ration(1.55)
.duration(1.55)
.addTvgAttributes(TVGAttribute.of(TVGAttributeKeys.TVG_ID, "id-2"))
.addTvgAttributes(TVGAttribute.of(TVGAttributeKeys.TVG_LOGO, "http://example.com/logo2.jpg"))
.addTvgAttributes(TVGAttribute.of(TVGAttributeKeys.GROUP_TITLE, "News"))
Expand Down

0 comments on commit b6d4e73

Please sign in to comment.