Re: [FFmpeg-user] watermark text with background at the bottom center of video

2016-07-21 Thread davidjesse
I think the best way would be to draw the box first with the drawbox filer and then write text over it. I was able to draw a box with the following filter drawbox=x=10:y=10:w=100:h=100:color=pink@0.5:t=max But I get the following errors when I change the x and y params drawbox="x=(w-text_w)/2

Re: [FFmpeg-user] feature request/suggestion: add support for dolby vision decoding :)

2016-07-21 Thread Andrew Sun
Andrew Sun gmail.com> writes: > > Phil Rhodes rocketmail.com> writes: > > > > > > It would also have to be tested against the hardware TV Dolby > Vision> decoders for conformance. > > It strikes me that if we could find examples of material that was > available in both Vision and other HDR

Re: [FFmpeg-user] Meaning of key/values in output of progress option

2016-07-21 Thread Peter White
Am 21.07.2016 um 18:00 schrieb Konrad Reiche: > Hi, > > the -progress [URI] options allows to post progress metadata to an > endpoint. The output roughly correlates with the one printed to > stderr in verbose mode of ffmpeg: > I haven't found any documentation either. But here is what I have gath

Re: [FFmpeg-user] HTTP playlist stream copy to an IP QAM modulator

2016-07-21 Thread kv pham
Your binary doesnt seem to be the latest so no patch of the jitter. Secondly I use the following trick to use tcp. At the target I start a second ffmpeg instance which will listen at the tcp sent from the encoder and relay to the real client in udp. This removes the issues of lost packets since the

Re: [FFmpeg-user] HTTP playlist stream copy to an IP QAM modulator

2016-07-21 Thread Anacelia Sarlo
Hello, thanks for your information, so, I have to resolve 2 problems to achieve my objective. First, the stream reception, I have variable delays for the .ts segment downloads, and the stream copy appear not to be the solution, it seems transcoding could be, or I'am thinking in download the strea

[FFmpeg-user] Meaning of key/values in output of progress option

2016-07-21 Thread Konrad Reiche
Hi, the -progress [URI] options allows to post progress metadata to an endpoint. The output roughly correlates with the one printed to stderr in verbose mode of ffmpeg: 8f frame=91 fps=0.0 stream_0_0_q=23.0 total_size=205437 out_time_ms=4388571 out_time=00:00:04.388571 dup_frames=1 drop_frame

Re: [FFmpeg-user] YUV10 Image Sequence

2016-07-21 Thread Carl Eugen Hoyos
luke fazzary gmail.com> writes: > Do you know if there is somewhere to get the v210x code > to adjust and create my own patch? FFmpeg contains a v210x decoder that you can use as specification and to test. If you use the v210 encoder as a foundation for your patch, be careful: It contains as

Re: [FFmpeg-user] watermark text with background at the bottom center of video

2016-07-21 Thread Peter White
Am 21.07.2016 um 04:48 schrieb davidjesse: > ffmpeg -i myvideo.flv -vf > drawtext="fontfile=/root/video/Bristol.otf: > text='Stack Overflow': fontcolor=white: fontsize=24: box=1: > boxcolor=black@1: x=(w-text_w)/2: y=(h-text_h)/2" -codec:a copy > output.flv > > I want to have a full black backgro