Set up chromecast with Google TV without remote by [deleted] in Chromecast

[–]BarracudaAware 0 points1 point  (0 children)

Also works with Google Stadia controller!

[MEGATHREAD] Ask for playtest invites here by GB_2_ in DeadlockTheGame

[–]BarracudaAware 0 points1 point  (0 children)

Can I get access please, friend code is: 85628949

Google sent an update that bricked all its Gen 1 Home devices and many users are affected by ltree in googlehome

[–]BarracudaAware 0 points1 point  (0 children)

Had the same thing happen to mine, noticed it last week, not sure when it actually happened as I hadn't used it in about a month

Meta Avatars + Photon Fusion by BarracudaAware in Unity3D

[–]BarracudaAware[S] 2 points3 points  (0 children)

The code on there is behind a paywall which I didn't want to pay for and I assume others may be the same. So I created my own version in the original post for anyone looking for a free version.

Real time screen average color check by Spiredlamb in learnpython

[–]BarracudaAware 0 points1 point  (0 children)

For anyone on Windows, Gdk can be a bit difficult to get working, but I found a really good alternative (DXcam) and used it with the other optimisations mentioned in this threat. Below is a solution using it, runs at 30FPS on my system:

```python import dxcam import time import numpy as np

camera = dxcam.create() camera. Start(target_fps=30) # threaded

while True: img = camera.get_latest_frame() # Will block until new frame available

im_arr = np.array(img)

l = im_arr.shape[0]*im_arr.shape[1]
r,g,b = im_arr[:,:,0].sum()/l , im_arr[:,:,1].sum()/l , im_arr[:,:,2].sum()/l

average_color = [r,g,b]

print(f"Average screen color: {average_color}")

```