Reputation: 1019
Are there any examples or documentation of using libdash
for live encoding and streaming? For example using a webcam as source to provide a stream with adaptive bitrate?
I've been trying to dissect the test libdash_networkpart_test on the github repo but I think it's mostly for vod streaming, not live.
Upvotes: 1
Views: 1907
Reputation: 56
libdash is an open-source library that provides a C++ interface to the MPEG-DASH standard. Basically this involves parsing the MPD (Media Presentation Description) file. It does not include encoding capabilities.
If you want to use a webcam as source and provide a stream with adaptive bitrate, you first need to transform the single video stream from your webcam into an adaptive video format.
There are services available that can do that for you.
Upvotes: 4