CAMERA_STREAM doesn't work anymore on the latest versions, while it always worked fine in previous versions of Tileboard
See original GitHub issueThis is the code I used successfully for months, to have the camera streams directly accessible on specific Tileboard pages:
{
position: [0, 0],
width: 5,
height: 3,
type: TYPES.CAMERA_STREAM,
id: 'camera.front_door_cam',
bgSize: 'contain',
state: false,
bufferLength: 5,
fullscreen: {
objFit: 'cover',
type: TYPES.CAMERA_STREAM,
entity: 'camera.front_door_cam',
bufferLength: 5
},
refresh: function() { return 3000 + Math.random() * 500; },
},
This has always worked fine, but for some reason I do not see any streams anymore - it’s just a blank screen. Similarly, when I click on it, it will also have a blank screen, no streaming happening.
I did put stream:
in my config.yaml in HASS, and I can access the live stream in regular Home Assistant Lovelace just fine, which seems to point to Tileboard being the issue. For example, on one of my Lovelace pages, I have this code:
- type: picture-entity
entity: camera.front_door_cam
camera_view: live
show_state: false
Which shows the camera stream directly, it works perfectly fine.
Any ideas on how to get the camera stream to work again in Tileboard?
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top Results From Across the Web
CAMERA_STREAM doesn't work anymore on the latest ...
CAMERA_STREAM doesn't work anymore on the latest versions, while it always worked fine in previous versions of Tileboard.
Read more >TileBoard - New dashboard for Homeassistant
Ok, I went and looked at new example tile. Now my still image works fine, but streaming image still doesn't work. here is...
Read more >resoai/TileBoard: A simple yet highly configurable ... - GitHub
This is a simple yet highly customizable dashboard for Home Assistant. The main goal of this project was to create a simple dashboard...
Read more >Do Bathroom Walls Have To Be Tiled? - Multipanel
No, it doesn't have to be. Traditionally, tiles are used in wet areas of a bathroom (around the bath and within the shower...
Read more >Tileboard Review: Pros and Cons - The Spruce
There is no fiberboard core, and shower panels are essentially waterproof from front to back. Tip. Tileboard should not be confused with tile ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It should be just the HA origin so
http://192.168.1.23:8123
That fixed it! Thank you @rchl, appreciate the help!