Just leaving this here. #macos #screencapturekit #applesilicon #intel
Just leaving this here. #macos #screencapturekit #applesilicon #intel
macOS 15.1 Sequoiaでは、画面収録を行うアプリの起動時に表示されるユーザー承認プロンプトの表示間隔が1ヶ月毎から変更。
https://applech2.com/archives/20241030-macos-151-sequoia-new-prompt.html
#applech2 #macOS_15_Sequoia #API #macOS_15_1 #ScreenCaptureKit #Sequoia #アプリ #セキュリティ #不具合 #画面収録
Google、macOS 15 Sequoiaで導入された画面収録の許可を毎月求めるプロンプトに対応するため「Google Chrome」でScreenCaptureKitの利用を実験的に開始。
https://applech2.com/archives/20240925-google-chrome-support-screencapturekit.html
#applech2 #Google #Apple #Chrome #macOS_15 #ScreenCaptureKit #Sequoia #不具合
macOS 15 Sequoiaで導入された画面収録を行うアプリの1ヶ月毎のユーザー承認を100年後まで無効化してくれるアプリ「Amnesia」がリリース。
https://applech2.com/archives/20240925-amnesia-disable-screen-capture-prompt.html
#applech2 #macOS_15_Sequoia #API #macOS_15 #ScreenCaptureKit #Sequoia #アプリ #セキュリティ #不具合 #画面収録
macOS 15 Sequoiaでは古いScreen Recording APIを利用した画面/オーディオ収録を行うアプリで1ヶ月毎のユーザー許可が必要に。
https://applech2.com/archives/monthly-permission-prompt-macos-15-sequoia-screen-recording.html
#applech2 #macOS_15_Sequoia #API #macOS_15 #ScreenCaptureKit #Sequoia #アプリ #セキュリティ #不具合 #画面収録
macOS Sequoia: Nutzer:innen müssen wöchentliche Bestätigung für Bildschirmaufnahmen geben
Mit der Einführung von macOS Sequoia wird Apple eine neue Sicherheitsfunktion einführen, die Nutzer:in
https://www.apfeltalk.de/magazin/news/macos-sequoia-nutzerinnen-muessen-woechentliche-bestaetigung-fuer-bildschirmaufnahmen-geben/
#Mac #News #AppleSicherheit #AppleSicherheitseinstellungen #Bildschirmaufnahme #MacOSSequoia #MacOSUpdate #ScreenCaptureKit #Softwareentwicklung #VideokonferenzApps
Apple、macOS 14.1 Sonoma以降では最新のシステム拡張機能を利用しないカメラやビデオデバイスが利用できなくなるとして、必要なユーザーに対しレガシー設定を復元する方法を公開。
https://applech2.com/archives/20231026-macos-14-1-sonoma-restore-legacy-video-device-support.html
#applech2 #macos_14_1 #screencapturekit #sonoma #カメラ #ビデオ
SCError.h has been properly annotated in Xcode 15 beta 7. Now you can refer to SCStreamError in code from within a @available check, without crashing on older macOS versions. #Xcode #macOS #ScreenCaptureKit
SoundFlowerやBlackHoleのようにMac上のアプリや接続されたデバイスからの音声を録音/配信できるオーディオキャプチャアプリ「Dipper v1.0」がMac App Storeでリリース。
https://applech2.com/archives/20230815-dipper-audio-capture-for-mac-now-available.html
#applech2 #blackhole #mac #macappstore #macos_13 #screencapturekit #soundflower #ventura #アプリ #オーディオ #レビュー
I'm trying to screen record HDR using ScreenCaptureKit. I've got P3 colors working by configuring a 10-bit pixel format and setting the color space.
But when I try to record high dynamic range video (like those recorded by iPhone), I get blown out white pixels.
How do I record HDR? #macOS #ScreenCaptureKit #HDR
Update: In the latest SDKs, Apple has correctly annotated the SCStreamError enum. But they forgot the SCStreamErrorDomain string constant. So referring to that still crashes on older macOS versions. #Xcode #macOS #ScreenCaptureKit
Took a look at new #ScreenCaptureKit features in macOS #Sonoma. Talked to Apple engineers during WWDC and played around with the beta. Especially excited about sharing without asking permission, that permission flow was a blocker for a lot of users.
https://nonstrict.eu/blog/2023/a-look-at-screencapturekit-on-macos-sonoma/
I’ve been playing around with the new ScreenCaptureKit features in macOS Sonoma. I noticed a lot of bugs in this first beta, but I like the new features! #macOS #ScreenCaptureKit
https://nonstrict.eu/blog/2023/a-look-at-screencapturekit-on-macos-sonoma/
It was great to talk to the engineers working on #ScreenCaptureKit at the lab session. They had some useful tips for how to improve our code.
And I could forward all my feedbacks from the past few months that never reached them through Feedback Assistant. #wwdc23
There's a bug in ScreenCaptureKit where sometimes the call to `try await SCShareableContent.current` simply never returns. After a couple days of doing ScreenCaptureKit development, it gets stuck and the callback no longer returns. The workaround is rebooting the computer. 😢
Filed as FB12114396
#FeedbackAssistant #macOS #radar #ScreenCaptureKit
https://github.com/nonstrict-hq/SCShareableContent-hangs-sample
PSA when using ScreenCaptureKit in an app that also needs to run on macOS < 12.3:
Don't reference the type SCStreamError from your code, not even inside an @available scope.
When using SCStreamError in your code, it causes a `dyld: Library not loaded: .../ScreenCaptureKit.framework` error when running on older macOS versions.
As a workaround use raw values for error domain and code: https://github.com/nonstrict-hq/scstreamerror-sample
FB12052574 #Xcode #macOS #ScreenCaptureKit