braice / MuMuDVB

A DVB IPTV streaming software
http://mumudvb.braice.net/
GNU General Public License v2.0
216 stars 133 forks source link

SDP file? #286

Closed outhud closed 2 years ago

outhud commented 2 years ago

Hi,

I have MuMuDVB working very well now to stream DVB to an RTP stream which can be played in VLC.

For ffmpeg and other tools which won't accept RTP streams directly, they need an SDP file to describe the stream.

Is there a way to generate an SDP file from MuMuDVB to go with the RTP stream? Or does SAP do this in some way?

braice commented 2 years ago

Hello

SAP is a way to announce the available streams that is recognized by VLC. It basically announce the path to the streams via an SDP like URL

You can either parse SAP announces and generate SDP files from there (there might be tools already doing that) or having the unicast part servicing SDP files over http

Brice

On Wed, Feb 2, 2022 at 1:00 PM outhud @.***> wrote:

Hi,

I have MuMuDVB working very well now to stream DVB to an RTP stream which can be played in VLC.

For ffmpeg and other tools which won't accept RTP streams directly, an SDP file is needed to describe it.

Is there a way to generate an SDP file to go with the RTP stream? Or does SAP do this in some way?

— Reply to this email directly, view it on GitHub https://github.com/braice/MuMuDVB/issues/286, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACRID3QDRRDFX2URD63WW3UZEMGZANCNFSM5NL22ZKQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

outhud commented 2 years ago

Thanks, I'll have a look into parsing the announces to generate an SDP file for ffmpeg.