Hello, I have 20GB audio files,planning to host musical website. I choose ffmpeg because of cost..
Here is my problem with ffserver ------------------------------------------------- 1) Iam able to test http://localhost:8090/test.mp3 its working. 2) Is it(ffserver) always generates single file called test.mp3? as specified in ffserver.conf 3) Suppose I have 10 mp3 songs 1.mp3 2.mp3 ....10.mp3, i would like to generate with same file name and then stream it. I mean , will be possible to access, like this http://localhost:8090/1.mp3 etc., ------------------------------------------------------------------------------------------------------------------------------------------------------------- I issue comands like : ffserver -f /etc/ffserver.conf & ffmpeg -i 10.mp3 http://localhost:8090/feed1.ffm and in firefox browser: http://localhost:8090/test.mp3 IT works fine. ------------------------------------------------------------------------------------------------------------------------------------------------------------- I fed up with "feed concepts and stream configurations in ffserver.conf" i.e single feed and single stream file... There is a option for adding multiple feeds and streams. but i need this thing to be dynamic, N number of feeds and N number of streams. How can i modify this settings to suit my needs. Is there way to generate all feeds dynamically using PHP?? Iam expecting "at least 1000 listeners/day. and all will start streaming at a time". How can i achieve this. Here is my sample ffserver.conf ---------------------------------------------- Port 8090 BindAddress 127.0.0.1 MaxHTTPConnections 2000 MaxClients 1000 MaxBandwidth 1000 #NoDaemon <Feed feed1.ffm> File /tmp/feed1.ffm FileMaxSize 10240K ACL allow 127.0.0.1 </Feed> # MP3 audio <Stream test.mp3> Feed feed1.ffm Format mp2 AudioCodec mp3 AudioBitRate 64 AudioChannels 1 AudioSampleRate 44100 NoVideo </Stream> ################################################################## # Special streams # Server status <Stream stat.html> Format status # Only allow local people to get the status ACL allow localhost ACL allow 192.168.0.0 192.168.255.255 #FaviconURL http://pond1.gladstonefamily.net:8080/favicon.ico </Stream> # Redirect index.html to the appropriate site <Redirect index.html> URL http://www.ffmpeg.org/ </Redirect> --------------------------------------------------------------------------------------------------------- END OF FFSERVER.CONF
_______________________________________________ ffserver-user mailing list ffserver-user@mplayerhq.hu https://lists.mplayerhq.hu/mailman/listinfo/ffserver-user