Re: [FFmpeg-devel] Change bitrate on-the-fly PoC (Patch)

2016-08-08 Thread Llorx
New update with a small fix for Linux (Error compiling) Jorge Fuentes 2016-08-07 1:04 GMT+02:00 Llorx : > Hi Ronald, > > Well, this is a PoC. There are a lot of ways to implement this under a > security context, so that's not a problem. For example, using ZeroMQ as > Bodecs Bela says in the othe

Re: [FFmpeg-devel] Change bitrate on-the-fly PoC (Patch)

2016-08-06 Thread Llorx
Hi Ronald, Well, this is a PoC. There are a lot of ways to implement this under a security context, so that's not a problem. For example, using ZeroMQ as Bodecs Bela says in the other thread, feature already implemented in ffmpeg as you can see here: https://www.ffmpeg.org/ffmpeg-all.html#zmq_002c

Re: [FFmpeg-devel] Change bitrate on-the-fly PoC (Patch)

2016-08-06 Thread Ronald S. Bultje
Hi, On Sat, Aug 6, 2016 at 9:00 AM, Llorx wrote: > Hi, > > Some days ago I started a thread here: > http://ffmpeg.org/pipermail/ffmpeg-devel/2016-August/197306.html > > Starting a new thread now because I lost my main thread mail and don't know > how to "reply" without having it in my inbox :-(

[FFmpeg-devel] Change bitrate on-the-fly PoC (Patch)

2016-08-06 Thread Llorx
Hi, Some days ago I started a thread here: http://ffmpeg.org/pipermail/ffmpeg-devel/2016-August/197306.html Starting a new thread now because I lost my main thread mail and don't know how to "reply" without having it in my inbox :-( ffmpeg has almost on-the-fly bitrate change control already bui

Re: [FFmpeg-devel] Change bitrate on-the-fly

2016-08-01 Thread Bodecs Bela
2016.08.01. 19:46 keltezéssel, Aman Gupta írta: I would find your patch useful and am looking forward to reviewing it. Using a socket isn't a bad way to do it IMHO- it's portable and allows easy integration from any language. Another option would be to extend the existing ffmpeg interactive mo

Re: [FFmpeg-devel] Change bitrate on-the-fly

2016-08-01 Thread Aman Gupta
I would find your patch useful and am looking forward to reviewing it. Using a socket isn't a bad way to do it IMHO- it's portable and allows easy integration from any language. Another option would be to extend the existing ffmpeg interactive mode to handle your new command. Currently ffmpeg allo

[FFmpeg-devel] Change bitrate on-the-fly

2016-07-31 Thread Llorx
Hi, About 1 or 2 years ago I had written an addition for ffmpeg to change the video bitrate while ffmpeg is running. The way I've done it is by listening to a UDP socket for an int32, and each time a 4 byte packet enters, changes the bitrate, taking effect instantly. Works like a charm, and the UD