Skip to content

Commit c5e9c47

Browse files
committed
update readme.
1 parent d171b63 commit c5e9c47

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# go-transcode HTTP on-demand transcoding API
22

3+
On demand transcoding of live sources and static files (with seeking).
4+
35
## Why
46

57
Transcoding is expensive and resource consuming operation on CPU and GPU. For big companies with thousands of customers it is essential, to have a dedicated 24/7 transcoding servers which can store all the transcoded versions.
@@ -26,7 +28,7 @@ VOD Outputs:
2628
- [x] HLS custom profile (h264+aac) : `http://go-transcode/vod/[media-path]/[profile].m3u8`
2729

2830
Features:
29-
- [ ] Seeking for static files (index)
31+
- [x] Seeking for static files (indexed vod files)
3032
- [ ] Audio/Subtitles tracks
3133
- [ ] Private mode (serve users authenticated by reverse proxy)
3234

@@ -72,9 +74,9 @@ vod:
7274
# Available video profiles
7375
video-profiles:
7476
360p:
75-
width: 640
76-
height: 360
77-
bitrate: 800
77+
width: 640 # px
78+
height: 360 # px
79+
bitrate: 800 # kbps
7880
540p:
7981
width: 960
8082
height: 540
@@ -93,7 +95,7 @@ vod:
9395
video-keyframes: false
9496
# Single audio profile used
9597
audio-profile:
96-
bitrate: 192
98+
bitrate: 192 # kbps
9799
# If cache is enabled
98100
cache: true
99101
# If dir is empty, cache will be stored in the same directory as media source

0 commit comments

Comments
 (0)