Video stream url for VLC/DVR:
- rtsp://192.168.1.93:554/user=admin&password=&channel=&stream=.sdp?real_stream--rtp-caching=100
Telnet access
- telnet 192.168.1.10 23
- Localhost login: root
- Password: xmhdipc
| #!/usr/bin/env python | |
| # A simple script to suck up HTML, convert any images to inline Base64 | |
| # encoded format and write out the converted file. | |
| # | |
| # Usage: python standalone_html.py <input_file.html> <output_file.html> | |
| # | |
| # TODO: Consider MHTML format: https://en.wikipedia.org/wiki/MHTML | |
| import os | |
| from bs4 import BeautifulSoup |
| #include <IRremote.h> | |
| // http://www.pjrc.com/teensy/td_libs_IRremote.html | |
| // If one keypress results in multiple codes being output, then | |
| // change in IRremoteInt.h: | |
| // #define _GAP 50000 | |
| int RECV_PIN = 8; | |
| IRrecv irrecv(RECV_PIN); | |
| decode_results results; |