[FFmpeg-user] help with live streaming with ffserver

2015-05-03 Thread Ricardo Kleemann
Hello, I've written a couple of messages last couple of days, and I'd say for now ignore them. I've been doing a lot of testing with many different configurations and honestly I'm pretty lost on how to get this working... I'm running a simple test... I'm simulating a live stream by reading a fil

Re: [FFmpeg-user] ffserver avc1 incompatible with codec id '28'

2015-05-03 Thread Ricardo Kleemann
Hello, Sorry I'm jumping on my own question, but I did get past the error from the original question. It turns out that I was using a ubuntu installed package that didn't properly support libx264. So I recompiled ffmpeg. But now I have a different problem, I'm getting this error: $ sudo ffserver

Re: [FFmpeg-user] No luck with live stream from ffmpeg to ffserver

2015-05-03 Thread En Figureo Canal
Can someone please guide me to get this working. I can easily stream to rtmp server: ustream and even nginx but can't really feed ffserver and get av_interleaved_write_frame(): Unknown error and have run out of patience trying to get this working. I'll really appreciate if someone can please he

[FFmpeg-user] ffserver avc1 incompatible with codec id '28'

2015-05-03 Thread Ricardo Kleemann
Hi, I'm trying to feed a stream (mp4 file) to ffserver via ffmpeg, and trying to access on ffserver and get the error: Sun May 3 09:18:25 2015 127.0.0.1 - - [GET] "/feed1.ffm HTTP/1.1" 200 4175 Sun May 3 09:18:32 2015 [mp4 @ 0x24edf10]Tag avc1/0x31637661 incompatible with output codec id '28' (

Re: [FFmpeg-user] Cropdetect Broken since 2.6

2015-05-03 Thread Jeremy
Your workaround works, thank you. I'll keep that in mind. "For future questions: Please understand that you should (and must) only test current FFmpeg git head, nothing else is relevant here." Understood, will do. On Sun, May 3, 2015 at 4:30 AM, Carl Eugen Hoyos wrote: > Jeremy gmail.com> wri

Re: [FFmpeg-user] Converting .264 to .avi

2015-05-03 Thread Ing. Jan Klapuch
May this page https://trac.ffmpeg.org/wiki/Concatenate help you? 2015-05-03 13:21 GMT+02:00 Carl Eugen Hoyos : > Ing. Jan Klapuch gmail.com> writes: > > > ffmpeg -f h264 -i > > If you have a raw h264 stream that does not get > autodetected by FFmpeg, please provide the first > seconds. > > Carl

Re: [FFmpeg-user] Cropdetect Broken since 2.6

2015-05-03 Thread Carl Eugen Hoyos
Jeremy gmail.com> writes: > ./ffmpeg -i > "/Users/jeremylk/Dev/Ruby/workspace/video_encoder_app/Breathing_5s.mov" > -vf "cropdetect=24:16:0" dummy.mov Workaround for the time being is to use: -vf format=yuv422p,cropdetect=24:16:0 (or format=yuv420p) Note that if I understand your usecase corre

Re: [FFmpeg-user] Converting .264 to .avi

2015-05-03 Thread Carl Eugen Hoyos
Ing. Jan Klapuch gmail.com> writes: > ffmpeg -f h264 -i If you have a raw h264 stream that does not get autodetected by FFmpeg, please provide the first seconds. Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailm

Re: [FFmpeg-user] flatten f4v append with different resolution

2015-05-03 Thread Madovsky
On 5/2/2015 12:29 PM, Carl Eugen Hoyos wrote: Madovsky madovsky.org> writes: I tried to find a way to resize with ffmpeg but no success. Command line and complete, uncut console output missing. is it possible to let ffmpeg resize at a certain part of the movie? FFmpeg does not support dif

Re: [FFmpeg-user] Converting .264 to .avi

2015-05-03 Thread Ing. Jan Klapuch
I found forfiles command: forfiles /p path /m mask /c "cmd /c your_command" --> try this: forfiles /p 264s /m *.264 /c "cmd /c ffmpeg -f h264 -i @file -vf scale=iw:ih*2 input_double_high.avi" 2015-05-03 10:20 GMT+02:00 SAFI ALAMRI : > Hey- > > I would like to convert all files at once to uncompre

[FFmpeg-user] Converting .h264 to .avi

2015-05-03 Thread Alsafisafi
Dear Sirs/Madam, Please help me to process each using one line of ffmpeg code to convert all files(h264) at once to uncompressed .avi files that are at a pixel dimension of 704x480. Please may I know the ffmpeg code used? Maybe a hit:?? https://trac.ffmpeg.org/wiki/Scaling%20%28resizing%29%20wi