@Cr4z33, no, sorry, didn’t pursue this as I do not need such a function myself.
Read the statement by Michael Teeuw here.
Posts
-
RE: TV Tuner
-
RE: Change font size for MMM-HTMLBox module
Some times Google is your friend:
custom.css
.MMM-HTMLBox { font-size: 18px; line-height: 22px; } -
Change font size for MMM-HTMLBox module
Module: MMM-HTMLBox
I want to use this simple but useful module, but how can I change font size for this module ?I tried the custom.css
.MMM-HTMLBox { font-size: 12px; }That does work, but now the spacing is rather large.
The module itself does not have a css file.Someone who can guide me a bit ?
-
RE: MagicMirror crashed due to "gnutls_handshake() failed: Error in the push function"
Btw, a simple restart of MagicMirror solved the issue and my MM is working again.
Web search tells me that:gnutls_handshake(): This function performs the handshake of the TLS/SSL protocol, and initializes the TLS session parameters.
Looks to be related with git, as all calls were done to github.com.
-
MagicMirror crashed due to "gnutls_handshake() failed: Error in the push function"
Hi,
This morning my MM showed a black screen and the pm2 log says following:
/home/pi/.pm2/logs/MagicMirror-error.log last 15 lines: 0|MagicMir | fatal: unable to access 'https://github.com/fewieden/MMM-soccer.git/': gnutls_handshake() failed: Error in the push function. 0|MagicMir | 0|MagicMir | fatal: unable to access 'https://github.com/raywo/MMM-PublicTransportHafas.git/': gnutls_handshake() failed: Error in the push function. 0|MagicMir | 0|MagicMir | fatal: unable to access 'https://github.com/shbatm/MMM-RTSPStream.git/': gnutls_handshake() failed: Error in the push function. 0|MagicMir | 0|MagicMir | fatal: unable to access 'https://github.com/fmandal/MMM-YrThen/': gnutls_handshake() failed: Error in the push function. 0|MagicMir | 0|MagicMir | fatal: unable to access 'https://github.com/MichMich/MagicMirror.git/': gnutls_handshake() failed: Error in the push function. 0|MagicMir |I did a search in the forum, but I could not find any other occurrences.
Will search the web now to see if I can find something more on this topic.
In the meantime any clue as to what happened is welcome. -
RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras
I can stream full HD at 50 fps:
Video codec omx-h264 width 1920 height 1080 profile 100 fps 50.000000
A bit odd.
-
RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras
RAI 3 HD probably is not free-to-air, so I cannot check it.
But to be honest, it seems NOT to work for me too.
Only SD, no HD.
I had it working on v2.4.1 (made notes about it to not to forget) and did not use it after that.You can test it directly, without having to change the MM config all the time:
$ omxplayer --win "0 0 800 480" --live "http://192.168.1.6:8001/1:0:1:D4B:8800:13E:EEEE0000:0:0:0:" $ omxplayer --win "0 0 800 480" --live "http://192.168.1.6:8001/1:0:1:2191:5:13E:EEEE0000:0:0:0:"omxplayer will show the stream details:
Video codec omx-mpeg2 width 720 height 576 profile 4 fps 25.000000 Video codec omx-h264 width 1920 height 1080 profile 100 fps 50.000000On my Pi it seems to run, but nothing appears on the screen.
:-( -
RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras
Hi,
Can you check this ?
$ vcgencmd codec_enabled MPG2It should say “MPG2=enabled”.
License can be bought for a few euro’s:
-
RE: TV Tuner
You can put the code end the end of the file, so after the body stuff.
If you are not familiar with vi, you can use nano:$ nano /home/pi/MagicMirror/css/custom.cssI have made some changes in the body part, to change the screen margins, etc.
body { margin: 10px; height: calc(100% - 10px); width: calc(100% - 10px); } -
RE: TV Tuner
Hi,
Try this:
# vi /home/pi/MagicMirror/css/custom.css : : .MMM-RTSPStream .innerWrapper { border-style: none; } # pm2 restart MagicMirrorI would still try to have the video window and the module window overlap each other, as it perhaps may influence the position and aligning of other modules.