<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-Mplayer video issues]]></title><description><![CDATA[<p dir="auto">Just changed from MMM-RTSPStream to MMM-Mplayer because of issues.  That solved the issue with the processor being continuously maxed out.  However, video from my ip cam is still delayed and stutters losing a lot of frames.  I can play it outside of MagicMirror on another computer using the cameras web interface or with VLC using the same url as MM and both show in real time.  Tried a bunch of settings, no luck.</p>
<p dir="auto">Curious for those that have this working properly, real time, what kind of camera are you using.  What is your connection type. . .  rtsp, http, resolutions, etc …</p>
]]></description><link>https://forum.magicmirror.builders/topic/19942/mmm-mplayer-video-issues</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Jul 2026 07:16:31 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19942.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 27 Oct 2025 22:31:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Mplayer video issues on Mon, 24 Nov 2025 17:11:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ge" aria-label="Profile: ge">@<bdi>ge</bdi></a><br />
I’ve reworked the MMM-RTSPstream module and tried mpv, mplayer and vlc for displaying  rtsp-streams from Reolink cameras. Maybe the following command line options are also suitable for your  camera.</p>
<pre><code>		const environ = Object.assign(process.env, { DISPLAY: ":0" })
		var opts = { detached: true, env: environ }
		if (this.player === 'mpv') {
			// Define the MPV command line flags
			var args = [`${this.streams[stream].url}`,
						"--geometry="+this.windowWidth+"+"+this.windowX+"+"+this.windowY,
						"--ontop",
						"--title-bar=no",
						"--border=no",
						"--vo=gpu",
//						"--hwdec=drm",
						"--gpu-context=x11vk",
						"--ao=null",
						]			
		} else if (this.player === 'mplayer') {
			// Define the Mplayer command line flags
			var args = [`${this.streams[stream].url}`,
						"-geometry", `${this.windowX}:${this.windowY}`,
						"-xy", `${this.windowWidth}`,
						"-noborder",
						"-nosound",
						"-nolirc",
						"-vo", "xv,gl,gl_nosw,vdpau",
						"-prefer-ipv4",
						"-cache", "8192",
						"-rtsp-stream-over-tcp",
						"-noconsolecontrols",
						"-really-quiet",
						]
		} else if (this.player === 'vlc') {	
			// Generate the VLC window
			var args = ["-I dummy",
						"--video-on-top",
						"--no-video-deco",
						"--no-osd",
						"--no-embedded-video",
						"--no-audio",
						//"--no-video-title-show",
						//"--network-caching=1000",						
						`${this.streams[stream].url}`
						]
		}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/129099</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/129099</guid><dc:creator><![CDATA[Mr.Sponti]]></dc:creator><pubDate>Mon, 24 Nov 2025 17:11:37 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Sat, 22 Nov 2025 22:01:03 GMT]]></title><description><![CDATA[<p dir="auto">I’ve tried way to many settings with no change. I have even found an old china made camera no difference.  Made this the only running module, let the resolution on the screen match the camera and still after a few hours it’s fallen behind and back to stuttering … no change seems to make any difference.</p>
<p dir="auto">So I’m going back to RSTP-Stream and see if I can get that to work.  The video works using vlc , except I can’t get it top_center.  It just likes running in the middle-center of the MagicMirror on the Pi5.  The Pi4, it would only run on the top_left.</p>
]]></description><link>https://forum.magicmirror.builders/post/129082</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/129082</guid><dc:creator><![CDATA[ge]]></dc:creator><pubDate>Sat, 22 Nov 2025 22:01:03 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Sun, 16 Nov 2025 18:30:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/evroom" aria-label="Profile: evroom">@<bdi>evroom</bdi></a><br />
Perfect timing.    Just sat down think of options to try next.   And the first one I was going to try was setting the cache and see what happens.   So that is where I will start, and go from there.  I’m also going to dig more into the options for Mplayer  I can see the command to start mplayer is</p>
<pre><code>mplayer rtsp://admin/camadmin@172.16.0.37:554/cam/realmonitor?channel=1&amp;subtype=0 -vf rotate=-1 monitoraspect 0 -noborder -geometry 471:20 -x 990 -y 557 -rtsp-stream-over-tcp -prefer-ipv4 -vo xv,gl,gl_nosw,vdpau, -nosound
</code></pre>
<p dir="auto">Does not appear to be a memory issue.  Starts at 74m, 24 hours later 80m.    CPU averages from 12-25%, with a short jump to 40% for 1-2 seconds every 10 seconds on the Pi5.  Much lower usage from the 4…so I expect there may be more going on with the 4.  This 5 I setup from scratch, so no carryover from the 4.<br />
And maybe it is the camera.  It got along with the omxplayer, but maybe there is something Omxplayer that it didn’t care about, and now Mplayer does.</p>
<p dir="auto">Thanks for the thoughts.  I’ll continue to update this thread as I come across anything.</p>
]]></description><link>https://forum.magicmirror.builders/post/128973</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128973</guid><dc:creator><![CDATA[ge]]></dc:creator><pubDate>Sun, 16 Nov 2025 18:30:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Sun, 16 Nov 2025 15:54:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ge" aria-label="Profile: ge">@<bdi>ge</bdi></a></p>
<p dir="auto">A pity it does not work for you.<br />
Strange that is only happens after a several hours<br />
But mplayer is rather old, perhaps that is the primary issue.</p>
<p dir="auto">Still, I tried it on my Pi 3b with 1Gb RAM and it runs well.<br />
It is 3 to 5 seconds lagging.<br />
Like the stream on my P4b with 8Gb.<br />
It also does not seem very memory hungry.</p>
<p dir="auto">Pi 3b is steaming now for over 2 hours, so I will need to look later again to see if it got messed up.<br />
The Pi 4b is streaming for 2 weeks straight now, without issues.</p>
<p dir="auto">To me it looks more like a camera issue, but if you say that other players have no issues …<br />
Somehow mplayer does not like your rtsp stream, or it is a combination of factors.</p>
<p dir="auto">I have found that there is a config file, where you can set options.<br />
Try out some options (need to restart MagicMirror after every change).<br />
For example try <code>nocache</code> first.<br />
Then try <code>cache=65536</code>.<br />
The option <code>nosound</code> is always good (can be set in the MMM-Mplayer options too, if not already done so).<br />
The <code>bandwidth</code> option is just a shot in the dark.</p>
<pre><code>$ vi ~/.mplayer/config
# Write your default config options here!

# No cache
nocache=yes

# Cache size in kBytes (4MB / 8MB / 16MB / 64MB)
# cache=4096
# cache=8192
# cache=16384
# cache=65536

# Do not play/encode sound
nosound=yes

# Bandwidth (10MB / 100MB / 1000MB)
# bandwidth=80000000
bandwidth=100000000
# bandwidth=1000000000
</code></pre>
<p dir="auto">What also can be the case, is that the <code>windowSize</code> is not matching your stream resolution.<br />
This can cause issues as it needs to recode this portion.<br />
Try:</p>
<pre><code>windowSize: { width: 960, height: 540 },
</code></pre>
<p dir="auto">for a 1920x1080 (16:9) stream.</p>
<p dir="auto">That is all I can think of.<br />
Good luck.</p>
]]></description><link>https://forum.magicmirror.builders/post/128969</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128969</guid><dc:creator><![CDATA[evroom]]></dc:creator><pubDate>Sun, 16 Nov 2025 15:54:14 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Fri, 14 Nov 2025 17:41:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
Just an update on this.<br />
I did find my pi 4 with 8gb of memory, after I ordered the pi5 with 8gb.  Must have take the old pi 4 w 4Gb memory, out of my mirror, and stuck the old one back in again.<br />
I now have setup a fresh install of MM on the new pi5 and it is amazingly fast compared to the old 4.  Installed MMM-Mplayer, and it works great for a few hours.  After about six hours, the camera on MM is about 15 seconds behind.  When that happens the video becomes choppy, and at times it stops for a few seconds, some video is lost.  It never gets caught back up again until it is restarted.  Letting it run longer, the issue continues to get worse.  To figure this out, I have the  video being timestamped from the camera.<br />
So when MM is started up, the clock on the video agrees ( about a second behind) with the clock on MM, which agrees with another computer displaying the stream.  After time has passed, everything is still showing the correct/synced time, except for video in MMM-Mplayer.</p>
<p dir="auto">Processor temp 35-40c</p>
]]></description><link>https://forum.magicmirror.builders/post/128952</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128952</guid><dc:creator><![CDATA[ge]]></dc:creator><pubDate>Fri, 14 Nov 2025 17:41:12 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Sat, 22 Nov 2025 23:19:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ge" aria-label="Profile: ge">@<bdi>ge</bdi></a> pi memory is soldered on1/2/4/8. Not user adjustable</p>
]]></description><link>https://forum.magicmirror.builders/post/128808</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128808</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 22 Nov 2025 23:19:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Sun, 02 Nov 2025 23:56:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/evroom" aria-label="Profile: evroom">@<bdi>evroom</bdi></a></p>
<p dir="auto">Here we go.  The Pi has only 4gb.  I bought 8, but I must have accidentally used it elsewhere.  I’ll probably get a Pi 5 with 8gb ordered soon and try that.</p>
<p dir="auto">Codec details:<br />
Codec: H264 - MPEG-4 AVC (part 10) (h264)<br />
Video resolution: 1920x1080<br />
Buffer dimensions: 1920x1088<br />
Frame rate: 10<br />
Orientation: Top left<br />
Color primaries: ITU-R BT.709<br />
Color transfer function: ITU-R BT.709<br />
Color space: ITU-R BT.709 Range<br />
Chroma location: Left</p>
<p dir="auto">Frame rate is normally at 30.  It’s 10 at the moment from when I last changed settings around.</p>
<p dir="auto">I added the two lines, no change.</p>
<p dir="auto">Cameras are Amcrest.  I’ve tested with the other ones I have, different ages/resolutions, same issues.  I have one that is not Amcrest, but it’s down at the moment, and I can’t get to it unless the weather gets better.</p>
<p dir="auto">Tested lowest resolution and appeared not to work, 352x240 too blurry.  Changed to 640x480 not very clear, but still could see the lights on vehicles passing by, delayed, stuttering.  May take 10 seconds for the cars to pass though the camera, and if I’m lucky maybe 8 images appear.  Sometimes only one or two or none at all.</p>
<p dir="auto">Channel/Subchannel let me choose the stream from the camera.  Main has the high resolutions, sub has the low.  Normally I only use the main, and the sub is disabled.</p>
<p dir="auto">On the old pi 3b, it ran along side with a stream going to Zoneminder using OMXplayer.  Ive gone to removing it from Zoneminder, but it makes no change.</p>
<p dir="auto">With all the changes I’ve attempted from high resolution to low, different frame rates, frame intervals, bit rates it never appears to make a difference.  The encode is h.264.  It has options for h.264b &amp;h.265.  Changing to those other encoding does make matters worse.</p>
<p dir="auto">I’d say at this time, if your not running into these problems elsewhere, don’t go too deep on this.  I’m probably going to get the Pi5 as it is to have a definite performance boost.  I’m also looking at setting up Zoneminder to provide a feed out instead of direct from the camera to see if that makes any difference.<br />
It will just take me some time to get to doing that.</p>
]]></description><link>https://forum.magicmirror.builders/post/128807</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128807</guid><dc:creator><![CDATA[ge]]></dc:creator><pubDate>Sun, 02 Nov 2025 23:56:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Thu, 30 Oct 2025 17:52:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ge" aria-label="Profile: ge">@<bdi>ge</bdi></a></p>
<p dir="auto">I have almost the exact environment and Raspberry Pi.<br />
I am running MM version 2.33.0, but that should not matter IMHO.</p>
<p dir="auto">Btw, have 8Gb, and you ?</p>
<pre><code>vcgencmd get_config total_mem
</code></pre>
<p dir="auto">Can you open the RTSP URL in VLC and then open Window - Media Information ?<br />
Then the Codec Details tab and please provide the Codec, Video resolution and Frame rate information.<br />
I have H.264, 2560x1440, 25.</p>
<p dir="auto">And can you try to change the config to this (add 2 lines):</p>
<pre><code>    windows: [
      {
        windowSize: { width: 990, height: 557 },
        windowPosition: { x: 471, y: 20 },
        rtspStreamOverTcp: true,
        noSound: true,
        streams: [
           'rtsp://admin:Camadmin@172.16.0.37:554/cam/realmonitor?channel=1&amp;subtype=0'
                 ]
      }
    ]
</code></pre>
<p dir="auto">From looks the RTSP URL you are using a Dahua cam, right ?<br />
Maybe you can try <code>subtype=1</code> ??<br />
Or another <code>channel</code> perhaps.<br />
I do not know the relation between channels and resolutions.<br />
Try to find a lesser resolution to see if it makes it better.</p>
<p dir="auto">Also good to know how many other applications are streaming, for example Synology Surveillance Station.</p>
]]></description><link>https://forum.magicmirror.builders/post/128776</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128776</guid><dc:creator><![CDATA[evroom]]></dc:creator><pubDate>Thu, 30 Oct 2025 17:52:36 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Wed, 29 Oct 2025 01:12:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a>  Thanks for letting me know something I should have know.<br />
I will do better in the future.</p>
]]></description><link>https://forum.magicmirror.builders/post/128764</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128764</guid><dc:creator><![CDATA[RonR]]></dc:creator><pubDate>Wed, 29 Oct 2025 01:12:47 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Wed, 29 Oct 2025 00:42:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ge" aria-label="Profile: ge">@<bdi>ge</bdi></a> please always config and log info into code block wrappers</p>
<p dir="auto">I will fix the prior post</p>
<p dir="auto">Copy the text you wish to share<br />
Paste the text into the editor, blank line above and below<br />
Select the text you just pasted<br />
Hit the &lt;/&gt; button on the editor tool bar</p>
<p dir="auto">Or triple backtick (us keyboard shifted left of 1 key)<br />
On line by itself above and below your pasted text</p>
]]></description><link>https://forum.magicmirror.builders/post/128761</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128761</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 29 Oct 2025 00:42:58 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Wed, 29 Oct 2025 00:44:57 GMT]]></title><description><![CDATA[<p dir="auto">Here is what I have at the moment.  If interested, I can show a side by side video from the camera, and what is showing on MM.</p>
<p dir="auto">Config:</p>
<pre><code>{
  module: 'MMM-MPlayer',
  disabled: false,
  position: "top_center",
  header: "Driveway",
  config: {
    layout: '',
    streamInterval: 30000,
    monitorAspect: '0',
    noAspect: false,
    noBorder: true,
    rotate: -1,
    windowPosition: '',
    windowSize: '',
    windowWidth: '',
    windowWidthNoNewAspect: false,
    windowHeightNoNewAspect: false,
    rtspStreamOverTcp: true,
    rtspStreamOverHttp: true,
    preferIpv4: true,
    ipv4onlyProxy: false,
    videoOutputDriver: 'xv,gl,gl_nosw,vdpau,',
    noSound: true,
    mplayerOption: '',  
    windows: [
      {
        windowSize: { width: 990, height: 557 },
        windowPosition: { x: 471, y: 20 },
        streams: [
           'rtsp://admin:Camadmin@172.16.0.37:554/cam/realmonitor?channel=1&amp;subtype=0'
          //'http://admin:Camadmin@172.16.0.37/cgi-bin/snapshot.cgi?1' 
                 ]
      }
    ]
  }
},
</code></pre>
<p dir="auto">Data:</p>
<pre><code>pi@raspberrypi:~ $ grep version ~/MagicMirror/package.json
        "version": "2.30.0",
pi@raspberrypi:~ $ cat /proc/device-tree/model; echo
Raspberry Pi 4 Model B Rev 1.5
pi@raspberrypi:~ $ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 12 (bookworm)
Release:        12
Codename:       bookworm
pi@raspberrypi:~ $ uname -a
Linux raspberrypi 6.12.47+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.12.47-1+rpt1~bookworm (2025-09-16) aarch64 GNU/Linux
pi@raspberrypi:~ $ free -h -t
               total        used        free      shared  buff/cache   available
Mem:           3.7Gi       931Mi       1.9Gi       122Mi       1.1Gi       2.8Gi
Swap:          199Mi          0B       199Mi
Total:         3.9Gi       931Mi       2.1Gi
</code></pre>
<pre><code>pi@raspberrypi:~ $ ps -eaf | grep mplayer | grep -v grep
pi          5635    5458 27 19:37 ?        00:01:03 mplayer rtsp://admin:Camadmin@172.16.0.37:554/cam/realmonitor?channel=1&amp;subtype=0 -vf rotate=-1 -monitoraspect 0 -noborder -geometry 471:20 -x 990 -y 557 -rtsp-stream-over-tcp -prefer-ipv4 -vo xv,gl,gl_nosw,vdpau, -nosound
pi@raspberrypi:~ $ pm2 flush
[PM2] Flushing /home/pi/.pm2/pm2.log
[PM2] Flushing:
[PM2] /home/pi/.pm2/logs/MagicMirror-out.log
[PM2] /home/pi/.pm2/logs/MagicMirror-error.log
[PM2] Logs flushed
pi@raspberrypi:~ $ pm2 restart MagicMirror
Use --update-env to update environment variables
[PM2] Applying action restartProcessId on app [MagicMirror](ids: [ 0 ])
[PM2] [MagicMirror](0) ✓
┌────┬────────────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐
│ id │ name           │ namespace   │ version │ mode    │ pid      │ uptime │ ↺    │ status    │ cpu      │ mem      │ user     │ watching │
├────┼────────────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤
│ 0  │ MagicMirror    │ default     │ 2.30.0  │ fork    │ 5704     │ 0s     │ 13   │ online    │ 0%       │ 2.9mb    │ pi       │ enabled  │
└────┴────────────────┴─────────────┴─────────┴─────────┴──────────┴────────┴──────┴───────────┴──────────┴──────────┴──────────┴──────────┘
pi@raspberrypi:~ $ sleep 20
pi@raspberrypi:~ $ grep 'MMM-MPlayer' ~/.pm2/logs/MagicMirror-*.log
</code></pre>
<pre><code>/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:36.725] [LOG]   Module helper loaded: MMM-MPlayer
/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:37.509] [LOG]   Connecting socket for: MMM-MPlayer
/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:37.510] [LOG]   Starting MMM-MPlayer module ...
/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:40.746] [INFO]  [MMM-MPlayer] (launchMPlayer) - Launch mplayer process for window-0 ...
/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:40.762] [INFO]  [MMM-MPlayer] Launched mplayer process for window-0 with PID 5921
/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:40.762] [INFO]  [MMM-MPlayer] DISPLAY=:0 mplayer rtsp://admin:Camadmin@172.16.0.37:554/cam/realmonitor?channel=1&amp;subtype=0 -vf rotate=-1 -monitoraspect 0 -noborder -geometry 471:20 -x 990 -y 557 -rtsp-stream-over-tcp -prefer-ipv4 -vo xv,gl,gl_nosw,vdpau, -nosound
/home/pi/.pm2/logs/MagicMirror-out.log:[2025-10-28 19:41:43.181] [INFO]  [MMM-MPlayer] [window-0] stdout: [lavf] stream 0: video (h264), -vid 0
pi@raspberrypi:~ $
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/128759</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128759</guid><dc:creator><![CDATA[ge]]></dc:creator><pubDate>Wed, 29 Oct 2025 00:44:57 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Mplayer video issues on Tue, 28 Oct 2025 16:55:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ge" aria-label="Profile: ge">@<bdi>ge</bdi></a></p>
<p dir="auto">You may have seen this example config.<br />
I am using this for my Axis P1448-LE.<br />
It works okay, but is sometimes lagging, not stuttering.</p>
<p dir="auto"><a href="https://github.com/evroom/MMM-MPlayer?tab=readme-ov-file#config-example-for-a-single-window-single-rtsp-stream" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/evroom/MMM-MPlayer?tab=readme-ov-file#config-example-for-a-single-window-single-rtsp-stream</a></p>
<p dir="auto">There is also a section on data gathering:</p>
<p dir="auto"><a href="https://github.com/evroom/MMM-MPlayer?tab=readme-ov-file#data-gathering" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/evroom/MMM-MPlayer?tab=readme-ov-file#data-gathering</a></p>
<p dir="auto">You can supply me with this data and your config, then I can have a look at it.</p>
]]></description><link>https://forum.magicmirror.builders/post/128745</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128745</guid><dc:creator><![CDATA[evroom]]></dc:creator><pubDate>Tue, 28 Oct 2025 16:55:20 GMT</pubDate></item></channel></rss>