Questions tagged [ffserver]
17 questions
9
votes
0 answers
Trying to remove 1152 samples, but the queue is empty
I am streaming mp3 files,using this command :
ffmpeg -re -i 'INPUT.mp3' -map_metadata -1 -map 0:0 URL
I create a loop which stream files,and there is no problem with reviving stream,just from server I get this error
[libmp3lame @ 0x25088e0] Trying…
Mohammadhzp
- 193
2
votes
0 answers
How to enable FORWARD seek in ffserver?
I found an ogv file on Internet which when I browse it with FireFox, I can seek to forward on it.
I download that file exactly into my server via wget. Then I streamed it via ffserver with following configuration:
#ffserver.conf
Port…
Yasser Zamani
- 2,727
2
votes
1 answer
Viewing H.264 bitstream in browser using ffmpeg to ffserver
This is a followup to https://raspberrypi.stackexchange.com/questions/93254/stream-usb-webcam-with-audio?noredirect=1#comment150507_93254
I, like many other brave tinkerers before me, thought it would be a simple task to take an old USB camera…
BobtheMagicMoose
- 636
2
votes
1 answer
How to get away from "rc buffer underflow" and "HTTP error 503 Server too busy" errors?
I try to create video stream with ffmpeg and ffserver. I would like to use flv or mpeg1video encoders because looking at local ffmpeg alone those encoders provide pretty decent speed.
But when I try any of them with ffserver I get either "rc buffer…
greenoldman
- 798
2
votes
0 answers
How to stream from OBS Studio onto ffserver?
I have ffserver running and can send streams on it with:
ffmpeg -re -i intro.avi http://myserver:8090/feed1.ffm
I can do this from both windows and linux and it works.
Now I want to send the same stream with OBS Studio and failing.
Whenever format…
Dims
- 13,414
2
votes
1 answer
ffserver ffmpeg stream mjpeg from webcam Logitech C930e to mjpeg format without re transcoding
I have premium webcam from Logitech (C930e) and this camera support mjpeg built in processing directly in the camera it self. My purpose is to get that stream with ffmpeg and pipe it to ffserver so its can be streamed to web browser in mjpeg format.…
Asampaiz
- 21
1
vote
1 answer
Transcode RTMP Live stream to multiple clients
I regularly follow livestreams on the website picarto.tv. The website uses RTMP for streaming, and therefore requires flash to show the video source. Many (mobile/embedded) devices don't have flash though so I want to have the video in a format like…
gertmenkel
- 143
1
vote
1 answer
Audio-only ffserver feed / adding dummy video to audio-stream
I'm trying to stream audio to ffserver, but when I start the ffmpeg client it says:
Missing video stream which is required by this ffm
Is there a way to either:
Configure ffserver to allow audio-only streams?
or add dummy video to the stream?
Coops
- 201
1
vote
1 answer
Issue streaming ffmpeg webcam feed with ffserver
see comments for updates on research on issue
I'm fiddling with ffmpeg, ffserver a webcam and Debian Wheezy in order to stream video content. I am able to watch my webcam's footage via mplayer, using:
mplayer -fps 30 -tv…
KB22
- 246
1
vote
1 answer
Server video stream without reencoding on linux
I like to stream video from an H.264 providing camera. As it is already sufficiently compressed, I just need a server providing something like mpegts transport streams for raw tcp or http access.
Is this possible using for example ffmpeg, ffserver…
dronus
- 1,978
1
vote
0 answers
Audio stream from raspberry pi using ffserver
have went along lot of methods to stream audio from Raspberry pi mic input, But i failed to get that completed.
I tried with avserver, ffserver, That only get and store the audio file in raspberry pi or stream local file but not from mic input..
I…
1
vote
1 answer
Restreaming raw data to ffserver gives rc buffer overflow error
My goal here is to fetch stream from live url to opencv python, process this stream and restream it to ffserver.
Below is the command i use:
*
python store.py | ffmpeg -f rawvideo -pixel_format yuv420p -video_size
544x576 -framerate 25 -i -…
0
votes
1 answer
Live stream backup/alternative source
Hello I Am using ffmpeg and ffserver to stream mpegts with h264 encoding on an Ubuntu Server
How Can I create a backup/alternative server so that if server1 stopped for any reason server2 takes its place?
k961
- 103
0
votes
0 answers
FFmpeg live streaming to ffserver delay at start
I'm trying to achieve a simple camera streaming using FFMpeg and FFserver. I have two slightly different systems acting as source, both Debian OS:
the first one runs ffmpeg 3.4.8, as indicated in figure 1
First system FFMPEG version
the second…
0
votes
0 answers
PixelFormat ignored in ffserver.conf
Im trying to stream my desktop screen to browser on my tv with ffmpeg so here is my CLI
./ffmpeg -probesize 1000M -framerate 60 -video_size 1680x1050 -f x11grab -i :0.0 -f alsa -i default -c:a aac -c:v libx264 http://localhost:8090/feed1.ffm
And…
Slobodan Vidovic
- 218