[FFmpeg-devel] Full time video streaming job...

2021-06-16 Thread grady player
My name is Grady Player, I am the manager of the Encoding team at Uplynk (Verizon Digital Media). I have a remote full-time Senior Software Developer position open, currently US locations only. The tech stack is C/C++ and Python. We work on a product that is the on-premises encoding product

Re: [FFmpeg-devel] [RFC][ALT PATCHES] Code of Conduct Enforcement

2018-05-17 Thread grady player
There are lots of developers that consume FFMPEG and have a vested interest in its development continuing smoothly... I count myself among them. I dont think it would be hard to impanel a group (3-4) of reasonable and dispassionate people to officiate and moderate public communication. As an

Re: [FFmpeg-devel] State of decklink_ctx vs. decklink_cctx

2018-03-27 Thread grady player
So I haven't looked in great detail so this may all be info that you know, and maybe not helpful... 1. You can easily link C objects to C++ code by marking it `extern "C"` 2. You can not easily link C++ objects to C code, because there are classes, vtables, name mangling etc. 3. The solution

Re: [FFmpeg-devel] First Post

2018-02-01 Thread grady player
Probably a good place to start would be: https://ffmpeg.org/developer.html especially: https://ffmpeg.org/developer.html#Submitting-patches as for looking for things to fix, most people add features they

Re: [FFmpeg-devel] ffmpeg for CentOS 7 tutorial is broken

2017-11-17 Thread grady player
rights those might > wan to revisit their work as the one for CentOS 7 is incorrect. I think I > cn figure out how to compile as shared on my. > > On Fri, Nov 17, 2017 at 7:02 PM, grady player <derfoo...@icloud.com> wrote: > >> if you post the output of failed build step, some

Re: [FFmpeg-devel] ffmpeg for CentOS 7 tutorial is broken

2017-11-17 Thread grady player
if you post the output of failed build step, someone might have some insight... but just saying everything is broken isn't likely going to go anywhere. if you are having problems with ffmpeg-php you may want to contact their maintainers https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues -grady

[FFmpeg-devel] avfilter_graph Question

2015-10-14 Thread Grady Player
Currently using: commit af5917698bd44f136fd0ff00a9e5f8b5f92f2d58 Author: Michael Niedermayer Date: Sun May 17 01:34:35 2015 +0200 I am trying to set up a small filter graph in order to use the YADIF implementation in libavfilter... I have set up an avfilter_graph with 3

Re: [FFmpeg-devel] avfilter_graph Question

2015-10-14 Thread Grady Player
Yes, sorry this was omitted - after I am done I call: av_frame_free(); it seems to be something that is internally referenced by the graph... On Oct 14, 2015, at 10:50 AM, Paul B Mahol <one...@gmail.com> wrote: > Dana 14. 10. 2015. 17:36 osoba "Grady Player&

Re: [FFmpeg-devel] avfilter_graph Question

2015-10-14 Thread Grady Player
Figured it out, sharing (if anyone were to care)… I was using av_buffersrc_add_frame rather than: av_buffersrc_write_frame which informs the buffer to retain an internal reference to the original picture/frame.. -Grady On Oct 14, 2015, at 11:50 AM, Grady Player <grady.

Re: [FFmpeg-devel] avfilter_graph Question

2015-10-14 Thread Grady Player
a frame to the buffer source. int av_buffersrc_add_frame (AVFilterContext *buffer_src, const AVFrame *frame, int flags) Add frame data to buffer_src. On Oct 14, 2015, at 2:15 PM, Ganesh Ajjanagadde <gajja...@mit.edu> wrote: > On Wed, Oct 14, 2015 at 4:13 PM, Grady Player >