[FFmpeg-user] how to support rtsp + udp output without ffserver

2014-08-08 Thread Diaz Soho
hi all, how to support rtsp + rtp without ffserver? It is workable when ffmpeg capture video data then pass to ffserver, ffserver can support rtsp + rtp output. but can ffmpeg support rtsp+ rtp stream output for preview? any ideas? ___ ffmpeg-user

[FFmpeg-user] (no subject)

2014-08-08 Thread Takeshi Mizumoto
Hello all, I am trying to grab audio from a USB microphone device and video from a webcam, and send it to ffserver. The audio codec is flac, the video codec is theora, and the container is ogg. I succeeded this when I store the video to a ogg file. However, I fail to send it to the ffserver.

[FFmpeg-user] Extract frames from an AVI and then frames to AVI

2014-08-08 Thread Virgil Stokes
I would like to know a method that could be used to first, extract frames from an AVI file and then reconstruct the AVI from these extracted frames. This is my first posting to this list. --V ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] Extract frames from an AVI and then frames to AVI

2014-08-08 Thread Moritz Barsnick
Hi Virgil, On Fri, Aug 08, 2014 at 17:43:40 +0200, Virgil Stokes wrote: I would like to know a method that could be used to first, extract frames from an AVI file $ ffmpeg -i in.avi -f image2 image%05d.png and then reconstruct the AVI from these extracted frames. $ ffmpeg -f image2 -i

Re: [FFmpeg-user] Extract frames from an AVI and then frames to AVI

2014-08-08 Thread Virgil Stokes
On 08-Aug-14 18:10, Moritz Barsnick wrote: Hi Virgil, On Fri, Aug 08, 2014 at 17:43:40 +0200, Virgil Stokes wrote: I would like to know a method that could be used to first, extract frames from an AVI file $ ffmpeg -i in.avi -f image2 image%05d.png and then reconstruct the AVI from these

Re: [FFmpeg-user] Extract frames from an AVI and then frames to AVI

2014-08-08 Thread Stephen Ho
There should be a tutorial book written for ffmpeg with lots of examples. I will buy that. *Stephen Ho * 510-364-8941 (c) stephenh...@gmail.com 925-398-6808 x183 (vm) StephenHoRealty.com http://www.StephenHoRealty.com On Fri, Aug 8, 2014 at 11:05 AM, Virgil Stokes v...@it.uu.se wrote: On

[FFmpeg-user] How to drawtexton multi-lines using php?

2014-08-08 Thread hirokku
hello everyone, this is the first time i use ffpmeg and I would like to know how can I do this: I have: I need to show the text in two separate lines, how can i do this? thanks. -- View this message in context:

Re: [FFmpeg-user] How to drawtexton multi-lines using php?

2014-08-08 Thread Lou
On Fri, 8 Aug 2014 10:01:42 -0700 (PDT) hirokku oswaldo1...@gmail.com wrote: I need to show the text in two separate lines, how can i do this? You can use two drawtext filters: -vf drawtext,drawtext Of course you will have to provide the necessary options to get exactly what you want.