标题 简介 类型 公开时间
关联规则 关联知识 关联工具 关联文档 关联抓包
参考1(官网)
参考2
参考3
详情
[SAFE-ID: JIWO-2024-479]   作者: ecawen 发表于: [2017-08-27]

本文共 [648] 位读者顶过

Contents

Introduction

UDP IPTV to RTSP proxy is a lightweight GNU/Linux daemon which, being installed on a LAN router, provides on-demand access to UDP multicast streams via RTSP and unicast RTP protocols.

Since version 0.2 the conventional HTTP "continuous download" streaming method is supported.

The server itself does not support streaming of any files, it only can receive incoming multicast streams and retransmit them to interested clients.

The main purpose of the software is to provide simple IPTV service to small office or home ethernet and/or Wi-Fi LANs where upgrading network to handle multicast correctly is not an option.

The software is not intended to handle large scale installations and service clients you don't trust (like public Internet).

Download

You can get the latest development version from SVN repository. Please note that this is a development version and as a free bonus you can expect more bugs than usually.

Releases considered stable are in Downloads section.

Downloadiptv2rtsp-proxy-…gz

[出自:jiwo.org]

Quick Start

  1. Download the source.
  2. Compile it with GNU make and GCC. This should produce a binary named iptv2rtsp-proxy.
  3. You can copy the binary to any suitable place or keep it with source for testing.
  4. Run server with

    $ ./iptv2rtsp-proxy -f -s <YOUR_IP> -l <LISTEN_PORT>

    for example:

    $ ./iptv2rtsp-proxy -f -s 192.168.10.10 -l 5555

  5. Connect by opening an url in your media player:

    rtsp://<SERVER_IP>:<LISTEN_PORT>/iptv/<MCAST_GROUP>/<UDP_PORT>

    for example:

    rtsp://192.168.0.1:5555/iptv/224.50.50.50/1234

    or

    http://192.168.0.1:5555/iptv/224.50.50.50/1234

    or

    http://192.168.0.1:5555/udp/224.50.50.50:1234

Random notes:
  • -f option tells server to stay in foreground, you'll see diagnostic output in your terminal, press Ctrl+C to terminate.
  • -s is not an IP address servers listens connections on - it's used as SDP origin. Server listens on any address.
  • -l specifies RTSP port. The default is 554, this means that you need a root privileges to start a server, so 5555 is used in the example above.
  • options -c and -p can be used to specify names of config and pid files.
  • If for any reason you need to connect to the server and you are behind a NAT make sure your NAT supports RTSP protocol (often they're not). For Linux you can install NAT helper: http://mike.it-loops.com/rtsp/ . Please note: if using non-standart RTSP port number this port must be specified as nf_conntrack_rtsp option.
HTTP protocol note:

There are essentially no signaling between server and client, almost no control over TCP behavior, all this makes error handling and recovery extremely difficult.

If server detects that it can not send data to the client in more or less reliable way, the connection will be closed.

The server has fixed-sized buffer for streamed data, this buffer will overflow quickly if client can not receive (or decode) data. Overflowed buffer can make streaming data severely damaged, thus preventing client to decode it, making the issue yet worse leaving no chance to recover.

Some clients handle network continuous downloads as files, this is wrong. Seehttp://en.wikipedia.org/wiki/Push%E2%80%93pull_strategy for details.

In short: server sends data by servers' clock, there's no way to change this. Correct behavior for client would be to receive and process all data same moment it's available. Alternative to this is receiving data by clients' clock. Without proper synchronization (and there're usually none) it is possible socket buffers to overflow (if send rate is higher than receive or stream is damaged) effectively stalling all transmission for this client.

Overview

The software currently implements only a very limited subset of features described in these documents:

  • RFC3550 - RTP: A Transport Protocol for Real-Time Applications
  • RFC2326 - Real Time Streaming Protocol (RTSP)
  • RFC2327 - SDP: Session Description Protocol

The goal is not to implement these completely, only parts that are required by popular software to function properly.

RTSP protocol supports PAUSE requests, but this server supposed to work with "live" streams only and does not have any PVR functionality. While it's possible to "pause" streaming, it's impossible to resume from the point it was paused. After resuming, audio/video decoders will act as if there were a big packet loss.

It is possible to implement FEC schemes for RTP, but it looks like there no clients supporting FEC now.

RTSP Compatibility

Client Versions Playback Pause
VLC Media Player 1.0, 2.0 OK N/A (1)
XBMC 11.0 OK No (2)
Infomir MAG250 IPTV STB 0.2.12 OK ?
FFmpeg's ffplay 0.5.9 OK No (2)
MPlayer 1.1 not ok N/A (1)
Elecard RTSP NetSource(3) 5.0 OK OK
Notes:
  1. Client doesn't send PAUSE requests. Pause is emulated by a client and streaming continues.
  2. While paused client sends neither RTCP reports, nor RTSP requests to prevent session timeout. As a result session timeouts and there's no way to determine if it's still alive.
  3. Part of "Elecard MPEG-2 PlugIn for WMP" and possibly other software. Being a DirectShow filter this product allows Windows Media Player and other players to understand RTSP protocol.

评论

暂无
发表评论
 返回顶部 
热度(648)
 关注微信