Перейти до основного вмісту

Публікації

Чому цей коник задкує в дірку?

ebusd and vailant ecotech plus plus controller

 ebusctl   localhost: find -c bai bai AccessoriesOne = no data stored bai AccessoriesTwo = no data stored bai ACRoomthermostat = no data stored bai AntiCondensValue = no data stored bai averageIgnitiontime = no data stored bai BlockTimeHcMax = no data stored bai BoilerType = no data stored bai ChangesDSN = no data stored bai CirPump = no data stored bai CodingResistor = no data stored bai CounterStartattempts1 = no data stored bai CounterStartattempts2 = no data stored bai CounterStartAttempts3 = no data stored bai CounterStartAttempts4 = no data stored bai currenterror = no data stored bai DateTime = no data stored bai dcfState = no data stored bai DCFTimeDate = no data stored bai DCRoomthermostat = on bai DeactivationsIFC = no data stored bai DeactivationsTemplimiter = no data stored bai DeltaFlowReturnMax = no data stored bai DisplayMode = no data stored bai DSN = no data stored bai DSNOffset = no data stored bai DSNStart = no data stored bai EBusHeatcontrol = no data store...

ffmpeg IP Camera DVR recording

If you have home server and want to record streams from your IP camera you can use siple script like this: while true; do     ffmpeg -i "rtsp:// :554/user=admin&password=&channel=0&stream=0.sdp?Real_stream" -acodec copy -vcodec copy -fs 20000000 "/srv/ftp/cam1/vid `date`.mov" | true ; done Option -fs 20000000  limits file sizes to ~20MB CPU usage is very low. Even raspberry pi should be able to save your data from multiple cameras. NOTE: deleting old files is not implemented.