1,444 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
98
views
LockedCameraCapture Does Not Launch The App from Lock Screen
My implementation of LockedCameraCapture does not launch my app when tapped from locked screen. But when the same widget is in the Control Center, it launches the app successfully.
Standard Xcode ...
2
votes
0
answers
123
views
Why is ScreenCaptureKit frame capture delayed by more than 16ms at 60 FPS?
I'm using ScreenCaptureKit to capture screen frames at 60 FPS.
To measure capture latency, I display a timer label on the screen using CVDisplayLink, and when each frame is captured, I save the image ...
0
votes
0
answers
68
views
FFmpeg webcam image capture from default Windows webcam
I want to capture a webcam image from my default Windows webcam without specifying the webcam name and save it as a JPG. I also want to scale and crop it to 640x480.
I have come up with -
ffmpeg -f ...
3
votes
0
answers
177
views
Delphi screen capture part of current screen
I'm trying to capture the desktop screenshot. However, I keep getting a black rectangle. I've also tried plugging out my 2nd monitor to no success, in case it was capturing the laptop screen (which is ...
10
votes
1
answer
304
views
Need clarification on how to capture by reference in C++ recursive lambda
While writing a library that will be shared between programs compiled under GCC 14.2.0 for X86 and ARM 6.22 for Cortex-M, I came upon a discrepancy between how the two compilers handle the recursive ...
3
votes
0
answers
36
views
Lost with MediaStore.ACTION_IMAGE_CAPTURE handling
I'm trying to get a full sized image from this action, to no avail.
private void photoIntent() {
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
//intent.putExtra(...
0
votes
0
answers
39
views
Null pointer on FileProvider.getUriForFile
I'm trying to get an old app of mine working again... When trying to capture an picture, with this code:
public void photoIntent() {
Log.d("MainActivity", "photoIntent");
...
1
vote
0
answers
66
views
navigator.mediaDevices.getUserMedia, No camera feedback when using mobile browsers but works perfectly in Desktop browsers
When accessing thru desktop browser its working locally and using https:// connection
but when im using mobile (android and IOS) browser (safari for IOS)(chrome and brave) for testing no feedback ...
3
votes
1
answer
514
views
Can WindowsGraphicsCapture APIs capture child windows?
I need to capture the image of a specific window and save it as an array. I initially used BitBlt, which worked well except for windows with hardware acceleration (it seems to work for DirectX-...
0
votes
0
answers
149
views
Wacom Signature Capture issue only on windows server
I have a requirement to integrate a Wacom tablet with a web application to capture the signature in an MVC web form.
The integration has been implemented using 'Wacom Ink SDK for Windows' which works ...
0
votes
1
answer
165
views
Replay IHeartRadio station URL in Python
I am trying to capture the IHeartRadio URL for a specific site and just replay it.
The replaying part I have down in python that's no issue.
the issue is actually capturing this URL!
I tried capturing ...
1
vote
2
answers
126
views
Thread lambda capture loop variable
Is this safe to capture a temporary variable in a thread function?
std::vector<std::string> adapterList = getAdapterList();
std::vector<std::thread> captureThreads;
for (auto adapterName :...
0
votes
2
answers
132
views
Make sh Commands Stream to Capture Stdin
Having script.sh
#!/bin/sh
sh <<EOF
cat | xargs -n 1 echo captured
echo first
echo second
EOF
Running this would output
captured echo
captured first
captured echo
captured second
So that the ...
5
votes
1
answer
3k
views
How can I capture all cells and outputs from Jupyter in Visual Studio Code?
I'm working with Jupyter notebooks in Visual Studio Code, and I'm looking for a way to capture all the cells and their outputs in a single document or format for documentation and sharing. Is there a ...
0
votes
1
answer
234
views
nginx location regex variable capture for multi folders
Take the following config as an example:
location / {
try_files $uri $uri/ /index.php?$args;
}
location /a-random-website/ {
try_files $uri $uri/ /a-random-website/index.php?$args;
}
...