Ffeng-20tare

所属分类:多媒体
开发工具:Visual C++
文件大小:304KB
下载次数:7
上传日期:2012-10-04 00:02:10
上 传 者imitates
说明:  Feng是多媒体服务器软件,兼容IETF标准,应用于实时多媒体数据的Internet传输,支持RTSP,RTTP/RTCP协议Feng支持以下编码标准:* Audio o MPEG Audio (MPEG 已通过测试。
(Feng is a multimedia server software compatible with IETF standards, applied to real-time multimedia data transmitted over the Internet, support RTSP RTTP/RTCP protocol Feng supports the following encoding standard:* Audio o MPEG Audio (MPEG has passed the test.)

文件列表:
Ffeng-20tare\feng-2.0\00pl (16, 2009-04-22)
Ffeng-20tare\feng-2.0\AUTHORS (583, 2009-04-22)
Ffeng-20tare\feng-2.0\avroot\h264.ds (92, 2009-04-22)
Ffeng-20tare\feng-2.0\avroot\h264_scramble.ds (92, 2009-04-22)
Ffeng-20tare\feng-2.0\avroot\test.mov (105953, 2009-04-22)
Ffeng-20tare\feng-2.0\ChangeLog (1550, 2009-04-22)
Ffeng-20tare\feng-2.0\configure.ac (8536, 2009-04-22)
Ffeng-20tare\feng-2.0\COPYING (26428, 2009-04-22)
Ffeng-20tare\feng-2.0\docs\feng.1 (1767, 2009-04-22)
Ffeng-20tare\feng-2.0\docs\status (1227, 2009-04-22)
Ffeng-20tare\feng-2.0\Doxyfile.in (8850, 2009-04-22)
Ffeng-20tare\feng-2.0\etc\feng-uninstalled.conf.in (811, 2009-04-22)
Ffeng-20tare\feng-2.0\etc\feng.conf.in (1042, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\fnc_log.h (1653, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\multicast.h (1067, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\prefs.h (1307, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\schedule.h (1586, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\sdp_grammar.h (1153, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\server.h (2105, 2009-04-22)
Ffeng-20tare\feng-2.0\include\fenice\utils.h (3140, 2009-04-22)
Ffeng-20tare\feng-2.0\include\metadata\cpd.h (1479, 2009-04-22)
Ffeng-20tare\feng-2.0\INSTALL (2224, 2009-04-22)
Ffeng-20tare\feng-2.0\m4\attributes.m4 (9271, 2009-04-22)
Ffeng-20tare\feng-2.0\m4\ax_lib_mysql.m4 (4542, 2009-04-22)
Ffeng-20tare\feng-2.0\m4\lsc_debug.m4 (2029, 2009-04-22)
Ffeng-20tare\feng-2.0\m4\lsc_ipv6.m4 (445, 2009-04-22)
Ffeng-20tare\feng-2.0\m4\lsc_sctp.m4 (766, 2009-04-22)
Ffeng-20tare\feng-2.0\m4\mysql.m4 (1396, 2009-04-22)
Ffeng-20tare\feng-2.0\Makefile.am (585, 2009-04-22)
Ffeng-20tare\feng-2.0\NEWS (303, 2009-04-22)
Ffeng-20tare\feng-2.0\RELEASE (349, 2009-04-22)
Ffeng-20tare\feng-2.0\src\client_events.c (3834, 2009-04-22)
Ffeng-20tare\feng-2.0\src\client_events.h (1332, 2009-04-22)
Ffeng-20tare\feng-2.0\src\conf\array.c (9768, 2009-04-22)
Ffeng-20tare\feng-2.0\src\conf\array.h (4752, 2009-04-22)
Ffeng-20tare\feng-2.0\src\conf\buffer.c (16006, 2009-04-22)
Ffeng-20tare\feng-2.0\src\conf\buffer.h (4068, 2009-04-22)
Ffeng-20tare\feng-2.0\src\conf\conf.h (4943, 2009-04-22)
... ...

Feng - standard compliant streaming server + What is feng? Feng is a multimedia streaming server compliant with the IETF's standards for real-time streaming of multimedia content over Internet. Feng implements RTSP Real-Time Streaming Protocol (rfc2326) and RTP/RTCP Real-Time Transport Protocol/RTP Control Protocol (rfc3550) supporting the RTP Profile for Audio and Video Conferences with Minimal Control (rfc3551). Feng supports the following encoding standards: * Audio o MPEG Audio (MPEG-1/2 Layer I/II/III) (rfc2250) o Vorbis (draft) o AAC (MPEG-4 Part 3) (rfc3***0) * Video o MPEG Video (MPEG-1/2) (rfc2250) o MPEG 4 Visual (MPEG-4 Part 2) (rfc3016) o H.2*** (MPEG-4 Part 10) (rfc3***4) o H.263 / H.263+ (rfc4629) o Theora (draft) The main characteristics of Feng are the container support, the ability to handle seeking, also used internally for the compositor metademuxer, and the modular structure focused on easing the extension of codec and protocol support. + Usage The simplest way to test feng is just adding a resource by putting it in the feng root (usually /var/feng/avroot or /srv/feng/avroot/, you can change it in the configuration file) and running feng from command line. Feng by default will listen for incoming rtsp connection on the port 554, serving the content matching the requested resources if available. $ $EDITOR /etc/feng.conf $ cp myfile.mov /var/feng/avroot $ feng & $ mplayer rtsp://localhost/myfile.mov + Advanced usage ++ Daemon mode For a full deployment it's advised to use start-stop-daemon as shown below or prepare initscripts for your specific distribution. # starting the daemon, messages to the system logging facility $ start-stop-daemon --start --quiet --background --make-pidfile \ --pidfile /var/run/feng.pid \ --exec /usr/bin/feng -- -s # stopping the daemon $ start-stop-daemon --stop -p /var/run/feng.pid ++ Metademuxer Feng container layer provides a powerful infrastructure to enable customized stream management. Currently there are two examples provided. +++ ds - compositor metademuxer The compositor metademuxer handles lists (see the examples provided in the avroot directory) of coherent resources (same encoding, same resolution, same streams number presents) allowing the creation of resources made out of the files/excerpts aggregation. +++ live/sd The sd metademuxer is present as backward compatibility with fenice, it has the very same limitation of fenice's streaming support (lack of seek, requires many informations) and should not be used if possible. Please refer to the man page for further information. + Bug reports Please use our bug tracker accessible at http://bugs.lscube.org using feng as the Topic.

近期下载者

相关文件


收藏者