@mrdenmark The hardware isn’t really made for it (especially when using web playback, HTML5, flash etc.)
what resolution are you watching the clips in?
Read the statement by Michael Teeuw here.
Posts
-
RE: jumpy youtube playback
-
RE: is this view possible? (MMM-calenderEXT)
It is absolutly possible with css, copy the css from the MMM-CalendarExt.css file and paste it in your custom.css and start changing the appearence.
-
RE: Trying to modify dimensions of module MMM-RAIN-RADAR
Have you any iframe css active that might override the height and width?
You could try this in your custom.css :
.MMM-RAIN-RADAR .iframe {width: 300px; height: 300px} -
RE: [MMM-XiaomiVacuum] - Xiaomi Vacuum status info
Supernice!
A start button would be nice to, for touch users and maybe a notification option to start to (so it can be used with mmm-buttons and mmm-gestures and such modules!).
-
RE: color MMM-newsfeed
It’s because most text has other classes that overrides the “general” option that is
color:mostly it is
.brightand.dimmedthat is used.so for an example, the title in the default newsfeed is set with the class
.bright.newsfeed .bright { color: green; }(I don’t know if there is a module named MMM-newsfeed, The default newsfeed is just
.newsfeedand not.MMM-newsfeed, but if you are using a module besides the default one disregard this and use the module name as as in your example) -
RE: MagicMirror won't start with newest build
After update, did you run Npm install in the magicmirror folder?
-
RE: Need help with design/dimensions?.
Frameless mirrors/floating mirrors are hard to do when you have to hide a screen and possibly a pi/other hardware. (And you probably want polished edges for that to)
If you are able to build the screen and pi in to the wall itself and then mount the mirror flush on the wall, that would be one way of doing it.
But since your glass won’t cover the entire screen (being 1.1 inch to short) the best thing to do is to build a frame with a larger bezel around the mirror+screen.
And in that case yes, cutting the glass down would be good (just to get closer to the screens image ratio).With a larger bezel you can hide the overflow and you won’t get a backlight-edge visible on your mirror (since all the visible mirror surface will have the screen behind it).
You could probably find a ready made picture frame that is close to your measurements, and then just build a simple wooden box around the components that you can mount the frame to and in the same time get mounting to hang it on a wall.
(something like this maybe : https://www.amazon.co.uk/14x10-PICTURE-PHOTO-FRAME-Black/dp/B00BTBGGFC)You don’t need any specialized tools to make a frame (a saw, a hammer, some tiny nails, wood glue and some wood.)
-
RE: MMM-Caltrain (SF bay area)
A link to the module we be nice, se the guidelines here :
https://forum.magicmirror.builders/topic/1440/showcase-guidelines
-
RE: 3.5inch Display
Anything visually related can be changed with CSS (the custom.css file and not in the config file).
You can either change font sizes or you could try scaling the entire page :
in your custom.css file add :
body { transform: scale(0.4); transform-origin: 0 0; }this will scale down the entire page to 40%
But with your low resolution screen I would suggest to minimize the data displayed (maybe use a page/profile module to switch between displayed information). Smaller font size will do much, maybe even change the font to a more pixelated font for clearer display.
-
RE: MMM Compliments
Looking at the code you only have morning start and end, and afternoon start and end.
so eveningStartTime & eveningEndTime does nothing.
So basically the time between
afternoonEndTimeandmorningStartTimeis considered evening.
Anything put inanytime-compliments will be shown regardless of time.So if you really want to test it then remove the compliments from anytime and just run 2 morning, 2 afternoon and 2 evening compliments (alter the times you see it change)
{ module: "compliments", position: "lower_third", config: { updateInterval: 90000, morningStartTime: 14, morningEndTime: 15, afternoonStartTime: 15, afternoonEndTime: 16, compliments: { anytime: [ "anytime", ], morning: [ "morning1", "morning2", ], afternoon: [ "afternoon1", "afternoon2", ], evening: [ "evening1", "evening2", ] } } }, -
RE: MMM Compliments
You don’t use the
"marks around the numbers.so :
updateInterval: 90000, morningStartTime: 3, morningEndTime: 12, afternoonStartTime: 16, afternoonEndTime: 20, eveningStartTime: 20, eveningEndTime: 23, -
RE: MMM-ImagesPhotos - Show images from a directory
I don’t know if this works but
randomIndex: function(photos) { if (photos.length === 1) { return 0; } var generate = function() { return Math.floor(Math.random() * photos.length); }; var photoIndex = generate(); this.lastPhotoIndex = photoIndex; return photoIndex; },try to change
return Math.floor(Math.random() * photos.length);toreturn Math.floor(photos.length);However it’s Just a guess
-
RE: Missing Club Logos in MMM-Soccer
Have you run the downloader that is mentioned in the modules readme?
Logos As the v2 api doesn't provide logos anymore, I developed a club logo downloader. It supports the five major leagues as above named. To run the downloader you need to execute the following steps. Go to the module directory cd ~/MagicMirror/modules/MMM-soccer. Execute node scripts/downloader COUNTRYNAME. Run this command for all the leagues you want to display on the mirror. Don't forget to activate the display of the logos in the config. If there isn't every club logo, you can also place them manually in the public directory of the module, the logos need to be in svg format and the name of the file has to match the displayed name. -
RE: need help on weatherforecast module
@bdream what 3rd party weather module? link please.
-
RE: Is using windows foe touch mirror possible
If you don’t want to use the MagicMirror2 then you can try to use Rainmeter which is a highly customizable visual desktop information program.
-
RE: Help with CSS to align Sonos Art Work
Ahh sorry, didn’t read carefully enough.
try this then, should shift the text to the right and let the image pop up next to it
.song {position: relative;} .song .name {position: absolute; left: 200px;}
