ffmpeg+ffserver搭建流媒體服務器

http://blog.chinaunix.net/uid-9688646-id-3399113.htmlphp

ffmpeg和ffserver配合使用能夠實現實時的流媒體服務。
 
1、理解
裏邊主要有以下四個東西,搞清楚他們之間的關係就差很少明白了。
1. ffmpeg
 
2. ffserver
 
3. ffserver.conf
 
4. feed1.ffm
 
 
1. ffmpeg,負責媒體文件的transcode工做,把你服務器上的源媒體文件轉換成要發送出去的流媒體文件。
 
2. ffserver,負責響應客戶端的流媒體請求,把流媒體數據發送給客戶端。
 
3. ffserver.conf,ffserver啓動時的配置文件,在這個文件中主要是對網絡協議,緩存文件feed1.ffm(見下述)和要發送的流媒體文件的格式參數作具體的設定。
 
4. feed1.ffm,能夠當作是一個流媒體數據的緩存文件,ffmpeg把轉碼好的數據發送給ffserver,若是沒有客戶端鏈接請求,ffserver把數據緩存到該文件中。
 
 
2、http的創建流程
1. 配置ffserver.conf文件(初次接觸能夠參考ffmpeg源碼中的doc/ffserver.conf,裏邊有詳細的註釋)
以下寫一個示例
Port 10535
RTSPPort 5454
BindAddress 0.0.0.0、
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -
NoDaemon
 
#實時流數據配置(參考源碼ffmpeg/test/下的ffserver.conf)
<Feed feed1.ffm>
File /tmp/feed1.ffm
FileMaxSize 1M
ACL allow 127.0.0.1
</Feed>
 
<Stream test.avi>
Feed feed1.ffm
Format avi
#
BitExact
DctFastint
IdctSimple
VideoFrameRate 10
VideoSize 352x288
VideoBitRate 100
VideoGopSize 30
NoAudio
 
PreRoll 10
StartSendOnKey
MaxTime 100
 
</Stream>
 
#已經存在的文件而非實時流
 
<Stream test.flv>
File "/project/apps/ffserver/test.flv"
Format flv
</Stream>
 
 
二、如何實現播放
(1)實時流用http傳輸
若是傳輸硬盤上的文件,則:
ffserver -f myfile/ffmpeg0.8.9/ffserver.conf & ffmpeg -i inputfile(輸入文件) http://localhost:10535/feed1.ffm
如何傳輸攝像頭捕獲的實時流,則:
ffserver -f myfile/ffmpeg0.8.9/ffserver.conf & ffmpeg -f video4linux2 -framerate 30 -i /dev/video0 http://127.0.0.1:8090/feed1.ffm
 
啓動ffserver和ffmpeg。ffserver先於ffmpeg啓動,它在啓動的時候須要加參數-f指定其配置文件。ffserver啓動後,feed1.ffm就會被建立,這時若是你打開feed1.ffm看看,會發現feed1.ffm開始的部分已經寫入了內 容,你能夠找到關鍵字ffm以及向客戶端傳送流的配置信息,在feed1.ffm作緩衝用的時候,這些信息是不會被覆蓋掉的,就把它們理解爲 feed1.ffm文件的頭吧。
 
ffserver啓動後,ffmpeg啓動,它啓動時加的一個關鍵參數就是「http://ip:10535/feed1.ffm」,其中ip是運行 ffserver主機的ip,若是ffmpeg和ffserver都在同一系統中運行的話,用localhost也行。ffmpeg啓動後會與 ffserver創建一個鏈接(短暫的鏈接),經過這第一次的鏈接,ffmpeg從ffserver那裏獲取了向客戶端輸出流的配置,並把這些配置做爲自 己編碼輸出的配置,而後ffmpeg斷開了此次鏈接,再次與ffserver創建鏈接(長久的鏈接),利用這個鏈接ffmpeg會把編碼後的數據發送給 ffserver。
 
若是你觀察ffserver端的輸出就會發現這段時間會出現兩次HTTP的200,這就是兩次鏈接的過程。
 
ffmpeg從攝像頭獲取數據後,按照輸出流的編碼方式編碼,而後發送給ffserver,ffserver收到ffmpeg的數據後,若是網絡上 沒有播放的請求,就把數據寫入feed1.ffm中緩存,寫入時把數據加上些頭信息而後分塊,每塊4096B(每塊也有結構),當feed1.ffm的大 小到了ffserver.conf中規定的大小後,就會從文件開始(跳過頭)寫入,覆蓋舊的數據。直到網絡上有播放的請求,ffserver從 feed1.ffm中讀取數據,發送給客戶端。
 
(2)本地文件用http傳輸
ffserver -f /etc/ffserver.conf
用命令啓動ffserver,而後用ffplay http://ip:port/test.flv,或者在vlc中輸入以上網址也可實現播放。
 
(3)本地文件用rtsp傳輸
ffserver -f /etc/ffserver.conf
用命令啓動ffserver,而後用ffplay rtsp://ip:port/rtsp.mpg,或者在vlc中輸入以上網址也可實現播放。
備註:在作測試的時候,用rtsp不能傳輸flv文件。
 
 
 
 
 
 
相關錯誤:
http://localhost:8090/test.asf: Invalid data found when processing input

Error occurs when I transcode a file into asf format

http://ffmpeg.gusari.org/viewtopic.php?f=11&t=590html

You can't stream avi file format, it's not designed to be streamed, rather to be used as a file/storage format. Streaming formats are: flv, mpegts, asf, rtmp/rtp/rtsp... So, try changing Format avi to Format mpegts and see if that works. But, the most convenient way of using ffmpeg/ffserver is to create a config file for ffserver and then run ffmpeg, telling it to feed the ffserver, which will do the actual encoding and streaming.linux

 

 

 

 

ffmpeg與ffserver的協同工做

http://blog.csdn.net/shendan00/article/details/18839837緩存

 

工做流程以下:服務器

一、 啓動ffserver,配置參數網絡

ffserver先於ffmpeg啓動,它在啓動的時候須要加參數-f指定其配置文件,配置文件裏包含端口信息、緩衝文件配置、傳送流配置(如編碼方式,幀率,採樣率……)。app

 

二、 啓動ffmpeg,輸入流ide

    啓動ffmpeg,向緩衝文件輸入數據流,數據流能夠來自攝像頭,也能夠來自原本就存在的文件。測試

feed1.ffm是一個緩衝文件,fserver啓動後,feed1.ffm就會自動被建立,feed1.ffm開始的部分已經寫入向客戶端傳送流的配置信息,在feed1.ffm作緩衝用的時候,這些信息是不會被覆蓋掉。ui

ffmpeg啓動的一個關鍵參數就是「http://ip:port/feed1.ffm」,其中ip是運行ffserver主機的ip,若是 ffmpeg和ffserver都在同一系統中運行的話,用localhost或者127.0.0.1也行。ffmpeg啓動後會與ffserver創建 一個鏈接(短暫的鏈接),經過這第一次的鏈接,ffmpeg從ffserver那裏獲取了向客戶端輸出流的配置,並把這些配置做爲本身編碼輸出的配置,而後ffmpeg斷開了此次鏈接,再次與ffserver創建鏈接(長久的鏈接),利用這個鏈接ffmpeg會把編碼後的數據發送給ffserver。若是你觀察ffserver端的輸出就會發現這段時間會出現兩次HTTP的200,這就是兩次鏈接的過程。

三、鏈接過程

ffmpeg從攝像頭獲取數據後,按照輸出流的編碼方式編碼,而後發送給ffserver,ffserver收到ffmpeg的數據後,若是網絡上 沒有播放的請求,就把數據寫入feed1.ffm中緩存,寫入時把數據加上些頭信息而後分塊,每塊4096B(每塊也有結構),當feed1.ffm的大 小到了ffserver.conf中規定的大小後,就會從文件開始(跳過頭)寫入,覆蓋舊的數據。直到網絡上有播放的請求,ffserver從feed1.ffm中讀取數據,發送給客戶端

 

 

 

帶有緩衝的數據流圖以下
ffserver用法小結 - yjlyp - 龍
 
 
 
 
 
個人配置(注意:asf文件播放不了)
 
Port 8090
RTSPPort 8091
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -

<Feed feed1.ffm>
#File /tmp/feed1.ffm
File "/home/yingc/gcyin/test/thirdparty/output/ffmpeg/bin/feed1.ffm"
FileMaxSize 20000000K
ACL allow 127.0.0.1
</Feed>

#<Stream test.ts>
#Feed feed1.ffm
#Format mpegts
#
#AudioCodec libmp3lame
#AudioBitRate 128
#AudioChannels 2
#AudioSampleRate 44100
#AVOptionAudio flags +global_header
#
#VideoBitRate 800
#VideoFrameRate 25
#VideoSize 640x480
#VideoCodec libx264
#AVOptionVideo flags +global_header
#</Stream>
#
#<Stream test.asf>
#Feed feed1.ffm
#Format asf
#
#AudioCodec aac
#AudioBitRate 128
#AudioChannels 2
#AudioSampleRate 44100
#AVOptionAudio flags +global_header
#
#VideoBitRate 800
#VideoFrameRate 25
#VideoSize 640x480
#VideoCodec libx264
#AVOptionVideo flags +global_header
#</Stream>


<Stream test.ts>
Feed feed1.ffm
Format mpegts
</Stream>
<Stream test.avi>
Feed feed1.ffm
Format avi
</Stream>
<Stream test.flv>
Feed feed1.ffm
Format flv
</Stream>
<Stream test.mp4>
Format rtp
File "/home/yingc/gcyin/test/thirdparty/output/ffmpeg/bin/h.mp4"
</Stream>
<Stream test.asf>
Feed feed1.ffm
Format asf
</Stream>

<Stream stat.html>
Format status

# Only allow local people to get the status
ACL allow localhost
ACL allow 192.168.110.0 192.168.110.255
</Stream>

# Redirect index.html to the appropriate site
<Redirect index.html>
URL http://www.ffmpeg.org/
</Redirect>

 
 
./ffmpeg -i "http://122.228.84.235/d44bff3d000002EE-1400405760-3078718192/data4/vhotlx.video.qq.com/flv/173/5/p0014s3d4pb.p201.1.mp4?vkey=06C6236D18A183017BF4076DC2CCD118E4A6DCC28BAB7ECA53A48918D7D3732A6379C03F1EC5CB6FE7C901CA66638EFDB3E01647C335E225hostname=122.228.84.235" http://localhost:8090/feed1.ffm
 
 
 
./ffmpeg -i h.mp4 http://localhost:8090/feed1.ffm
 
 
 
./ffplay  http://localhost:8090/test.flv
 
./ffplay  rtsp://localhost:8091/test.flv
相關文章
相關標籤/搜索