Merge pull request #28 from outis1one/clDemoe/seasonal-sunrise-montage-nn268

Replace url-encode-password.sh with Python script
This commit is contained in:
Outis
2026-04-21 11:35:08 -04:00
committed by GitHub
2 changed files with 16 additions and 24 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env python3
"""URL-encode a camera password for use in an RTSP URL.
Runs entirely locally. The password is read without echoing via
getpass — never written to disk, never sent anywhere.
"""
import getpass
import urllib.parse
password = getpass.getpass("Password (not echoed): ")
encoded = urllib.parse.quote(password, safe="")
print(f"\nURL-encoded: {encoded}")
print( "\nPaste into .env like:")
print(f" CAM_RTSP_<cam>='rtsp://admin:{encoded}@192.168.1.XXX:554/stream1'")
-24
View File
@@ -1,24 +0,0 @@
#!/bin/bash
# url-encode-password.sh — URL-encode a password for use in an RTSP (or any) URL.
#
# Runs entirely locally. The password is read without echoing, never written
# to disk, never sent anywhere. The encoded result is printed to stdout so
# you can copy it straight into your .env file.
#
# Usage:
# ./url-encode-password.sh
printf 'Password (not echoed): '
read -rs password
echo # newline after silent input
# Pass via environment variable — avoids any shell quoting / injection issues.
encoded=$(PASSWORD="$password" python3 -c "
import os, urllib.parse
print(urllib.parse.quote(os.environ['PASSWORD'], safe=''))
")
echo "URL-encoded: $encoded"
echo ""
echo "Paste into .env like:"
echo " CAM_RTSP_<cam>='rtsp://admin:${encoded}@192.168.1.XXX:554/stream1'"