Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to the Pipeline diagram in README #136

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,19 @@ graph
Encoder{Encoder<br>e.g. OBS} -->|RTMP| Source[FLV Demuxer]
Source -->|video| H264Parser[H264 Parser]
Source -->|audio| AACParser[AAC Parser]
H264Parser --> H264Payloader[H264 Payloader]
AACParser --> AACPayloader[AAC Payloader]
H264Payloader --> CMAFMuxerVideo[CMAF Muxer]
AACPayloader --> CMAFMuxerAudio[CMAF Muxer]
CMAFMuxerVideo --> fMP4
CMAFMuxerAudio --> fMP4
fMP4[Fragmented MP4] -->|HLS| Tigris{Tigris Object Storage}
H264Parser --> H264Encoder[H264 Encoder]
H264Parser --> H265Encoder[H265 Encoder]
H264Encoder --> H264Payloader[H264 Payloader]
H265Encoder --> H265Payloader[H265 Payloader]
AACParser ---> AACPayloader[AAC Payloader]
H264Payloader --> fMP4
H265Payloader --> fMP4
AACPayloader --> fAAC[Fragmented AAC]
fAAC --> AudioPlaylist[HLS Audio Playlist]
fMP4[Fragmented MP4] --> VideoPlaylist[HLS Video Playlist]
VideoPlaylist --> HLS
AudioPlaylist --> HLS
HLS[HLS Manifest] -->Tigris{Tigris Object Storage}
```

<!-- LICENSE -->
Expand Down