Re: Creating a software video device in modern APIs

2020-03-17 Thread Rick Mann via Cocoa-dev
I should be a little more clear. I want to take my generated video and output it in such a way that any other app, that can take video (and audio) input from a camera, can take it from my app instead. So, some kind of software video & audio device. > On Mar 17, 2020, at 22:25 , Rick M

Creating a software video device in modern APIs

2020-03-17 Thread Rick Mann via Cocoa-dev
I want to make something like a live video mixing/compositing app for macOS. Does anyone know what I should be looking at in the wide array of video APIs to do this? Thanks. -- Rick Mann rm...@latencyzero.com ___ Cocoa-dev mailing list (Cocoa-dev@

Re: Thoughts on Cocoa

2019-10-02 Thread Rick Mann via Cocoa-dev
You guys have had *YEARS* to get your code bases updated to more modern APIs and architectures. All this whining is bullshit. You've deferred and delayed those updates and despite constant warnings that 32-bit was being deprecated, you haven't updated. As a user of some apps, I'm pissed. As a d

Re: Why is / a metachar in regular expressions ?

2019-09-18 Thread Rick Mann via Cocoa-dev
Ah! So it is. Definitely not an error in the docs, assuming NSRegularExpression supports flags. > On Sep 18, 2019, at 14:54 , Steve Mills via Cocoa-dev > wrote: > > On Sep 18, 2019, at 16:50:39, Rick Mann via Cocoa-dev > wrote: >> >> Yeah, I'm inclined to

Re: Why is / a metachar in regular expressions ?

2019-09-18 Thread Rick Mann via Cocoa-dev
Yeah, I'm inclined to think it's an error in the docs. > On Sep 18, 2019, at 14:43 , Gabriel Zachmann via Cocoa-dev > wrote: > >>> I don't see why / is a meta character. >>> It does not appear anywhere else in the documentation as metacharacter. >> >> In some languages "/" is used as the delim

Re: Why is / a metachar in regular expressions ?

2019-09-18 Thread Rick Mann via Cocoa-dev
Is it used to refer to groups in text replacement? Sometimes that's a dollar sign, sometimes a slash, but I thought it was a backslash. > On Sep 18, 2019, at 13:51 , Jens Alfke via Cocoa-dev > wrote: > > > >> On Sep 18, 2019, at 1:45 PM, Gabriel Zachmann via Cocoa-dev >> wrote: >> >> I do