Skip to content

Standalone FFSERVER code which can be used as RTSP server and can be integrated into libraries or binaries.

Notifications You must be signed in to change notification settings

lesomnus/ffserver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

standalone ffserver source code

This project contains separated ffserver code which is used for RTSP server only.

To compile code run:

./buildFFServer.sh

Above command will generate a.out file.

To run RTSP server, put /etc/ffserver.conf, and it's content would be as below:

cat /etc/ffserver.conf RTSPPort 8554 <--------- Can be modified <------ session name Format rtp File big_buck_bunny.mp4 <------ This file will be streamed, put this file in current directory

Now run below command, to start RTSP server:

./a.out

Now you can start client using this url: rtsp://127.0.0.1:8554/test.h264

for example:

ffplay rtsp://127.0.0.1:8554/test.h264

which plays mp4 file.

About

Standalone FFSERVER code which can be used as RTSP server and can be integrated into libraries or binaries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.9%
  • Shell 0.1%