Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aneisch committed Oct 13, 2023
1 parent 74365b5 commit 882a592
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 26 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://github.com/aneisch/home-assistant-config/actions/workflows/check-ha-release-compatibility.yml/badge.svg)](https://github.com/aneisch/home-assistant-config/actions)
[![GitHub last commit](https://img.shields.io/github/last-commit/aneisch/home-assistant-config)](https://github.com/aneisch/home-assistant-config/commits/master)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/y/aneisch/home-assistant-config)](https://github.com/aneisch/home-assistant-config/graphs/commit-activity)
[![HA Version](https://img.shields.io/badge/Running%20Home%20Assistant-2023.10.1%20(Latest)-brightgreen)](https://github.com/home-assistant/home-assistant/releases/latest)
[![HA Version](https://img.shields.io/badge/Running%20Home%20Assistant-2023.10.3%20(Latest)-brightgreen)](https://github.com/home-assistant/home-assistant/releases/latest)
<br><a href="https://www.buymeacoffee.com/aneisch" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-black.png" width="150px" height="35px" alt="Buy Me A Coffee" style="height: 35px !important;width: 150px !important;" ></a>


Expand Down Expand Up @@ -56,7 +56,7 @@ Also using Grafana/Influx for graphing, both running in Docker containers on NUC
Description | value
-- | --
Lines of ESPHome YAML | 2467
Lines of Home Assistant YAML | 8117
Lines of Home Assistant YAML | 8149
[Integrations](https://www.home-assistant.io/integrations/) in use | 52
Zigbee devices in [`zha`](https://www.home-assistant.io/integrations/zha/) | 26
Z-Wave devices in [`zwave_js`](https://www.home-assistant.io/integrations/zwave_js/) | 37
Expand Down
2 changes: 1 addition & 1 deletion custom_components/alexa_media/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/custom-components/alexa_media_player/issues",
"loggers": ["alexapy", "authcaptureproxy"],
"requirements": ["alexapy==1.27.4", "packaging>=20.3", "wrapt>=1.12.1"],
"requirements": ["alexapy==1.27.6", "packaging>=20.3", "wrapt>=1.14.0"],
"version": "4.6.5"
}
36 changes: 36 additions & 0 deletions packages/frigate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,40 @@ automation:
- camera.driveway
- camera.back_porch

- alias: Frigate Timelapse Creation
id: "frigate_timelapse_creation"
mode: single
trigger:
- platform: time
at: "07:00:00"
action:
- service: shell_command.create_timelapse
data:
camera: back_porch
- service: shell_command.create_timelapse
data:
camera: front_door
- service: shell_command.create_timelapse
data:
camera: driveway
- service: shell_command.create_timelapse
data:
camera: ptz

camera:
- platform: local_file
file_path: /config/timelapse/front_door.mp4
name: Front Porch Timelapse
- platform: local_file
file_path: /config/timelapse/back_porch.mp4
name: Back Porch Timelapse
- platform: local_file
file_path: /config/timelapse/driveway.mp4
name: Driveway Timelapse
- platform: local_file
file_path: /config/timelapse/ptz.mp4
name: PTZ Timelapse

command_line:
- switch:
name: Back Porch Camera White Light
Expand All @@ -293,6 +327,8 @@ input_datetime:
shell_command:
frigate_clips_drive: /config/scripts/frigate_clips_drive.sh {{ clip_id }}
frigate_create_event: "curl -X POST --data '''{ 'duration': 30, 'include_recording': true }''' 127.0.0.1:5000/api/events/{{camera}}/{{label}}/create"
create_timelapse: /config/scripts/frigate_timelapse.sh {{ camera }}
commit_frigate_changes: ssh nuc '/opt/homeassistant/scripts/commit_frigate_changes.sh'

timer:
frigate_notification_snooze:
Expand Down
5 changes: 5 additions & 0 deletions scripts/frigate_timelapse.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

camera=$1

cat /config/timelapse/camera.$camera/*.jpg | ffmpeg -f image2pipe -r 8 -vcodec mjpeg -y -i - -vcodec libx264 /config/timelapse/$camera.mp4
4 changes: 1 addition & 3 deletions shell_command.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,4 @@ turn_off_mirroring: ssh weasel '/usr/bin/automator /Users/aneisch/Library/Servic

weasel_shortcut: ssh weasel 'shortcuts run "{{ shortcut }}"'

sync_cloudflare_records: ssh nuc '/opt/homeassistant/scripts/nginx_proxy_manager_sync.py'

commit_frigate_changes: ssh nuc '/opt/homeassistant/scripts/commit_frigate_changes.sh'
sync_cloudflare_records: ssh nuc '/opt/homeassistant/scripts/nginx_proxy_manager_sync.py'
32 changes: 12 additions & 20 deletions www/community/lovelace-fold-entity-row/fold-entity-row.js

Large diffs are not rendered by default.

Binary file modified www/community/lovelace-fold-entity-row/fold-entity-row.js.gz
Binary file not shown.
Binary file modified www/community/lovelace-fold-entity-row/rollup.config.js.gz
Binary file not shown.

0 comments on commit 882a592

Please sign in to comment.