Getting closer. Hoping to get some help based on the new info below.
I was able to get a video stream, but…
It only works in the middle_center position and the video orientation is rotated 90 deg.
I tried using the rotateDegree switch, and it does rotate it, but the video frame stays in the portriat oreintation.
Video Oreintation
I am using the below config file.
modules: [
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "Family Calendar",
position: "top_left",
config: {
colored: "true",
calendars: [
{
symbol: "calendar-check-o ",
color: "#34a95f",
url: "https://calendar.google.com/calendar/ical/xxx/basic.ics"
},
{
symbol: "calendar-check-o ",
color: "#b1002c",
url: "https://calendar.google.com/calendar/ical/xxx/basic.ics"
},
]
}
},
{
module: "MMM-DarkSkyForecast",
header: "Weather",
position: "top_right",
classes: "default everyone",
disabled: false,
config: {
apikey: "xxx",
latitude: "33.481613",
longitude: "-117.061959",
iconset: "5c",
concise: false,
forecastLayout: "table",
units: "us"
}
},
{
module: 'MMM-RTSPStream',
position: 'middle_center',
config: {
autoStart: true,
moduleWidth: 642,
moduleHeight: 362,
localPlayer: 'omxplayer',
stream1: {
name: '',
url: 'rtsp://xxx:xxx@192.168.x.xxx:554/Streaming/Channels/102/',
snapshotUrl: '',
snapshotRefresh: 10, // Seconds
frameRate: "30",
width: 640,
height: 360,
port: 9999,
}
}
},
{
module: "compliments",
position: "bottom_center"
},
{
module: "newsfeed",
position: "bottom_center",
config: {
feeds: [
{
title: "New York Times",
url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
{
module: 'MMM-GoogleMapsTraffic',
position: 'bottom_center',
config: {
key: 'xxx',
lat: xxx,
lng: -xxx,
height: '360px',
width: '360px',
styledMapType: "",
disableDefaultUI: true,
backgroundColor: 'hsla(0, 0%, 0%, 0)',
}
},
]
};