-
Notifications
You must be signed in to change notification settings - Fork 4
/
vsmp.py
executable file
·406 lines (309 loc) · 14.4 KB
/
vsmp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
import configargparse
import ffmpeg
import logging
import os
import modules.utils as utils
from modules.videoinfo import ImageInfo, VideoInfo
from modules.twinepd import TwinEpd
import signal
import sys
import time
import threading
import redis
import socket
import shutil
import modules.webapp as webapp
from omni_epd import displayfactory
from croniter import croniter
from datetime import datetime, timedelta
from PIL import Image, ImageDraw, ImageFont
# create the tmp directory if it doesn't exist
if (not os.path.exists(utils.TMP_DIR)):
os.mkdir(utils.TMP_DIR)
# function to handle when the is killed and exit gracefully
def signal_handler(signum, frame):
logging.debug('Exiting Program')
epd.close()
sys.exit(0)
# helper method to get the local IP address of this machine, doesn't matter if test address is "real"
def get_local_ip():
result = "127.0.0.1" # if no network return this
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
try:
s.connect(('192.168.0.255', 1)) # connect() for UDP doesn't send packets
result = s.getsockname()[0]
except Exception:
logging.warning("No LAN address found")
finally:
s.close()
return result
def changed_ip_check(config, db):
# test if IP has changed
saved_ip = utils.read_db(db, utils.CURRENT_IP)
current_ip = get_local_ip()
if(saved_ip['ip'] != current_ip):
# the ip address has changed
utils.write_db(db, utils.CURRENT_IP, {'ip': current_ip})
# modify the UI to display this new IP visually
if('ip' not in config['display']):
config['display'].append('ip')
utils.write_db(db, utils.DB_CONFIGURATION, config)
def generate_frame(in_filename, out_filename, time):
try:
ffmpeg.input(in_filename, ss=time) \
.filter('scale', 'iw*sar', 'ih') \
.filter('scale', width, height, force_original_aspect_ratio=1) \
.filter('pad', width, height, -1, -1) \
.output(out_filename, vframes=1) \
.overwrite_output() \
.run(capture_stdout=True, capture_stderr=True)
except ffmpeg.Error as e:
logging.error(e.stderr.decode('utf-8'))
def find_next_file(config, lastPlayed, next=False):
result = {}
if(config['media'] == 'image'):
# when in image mode always get a new image
info = ImageInfo(config)
if('file' not in lastPlayed):
lastPlayed['file'] = ''
result = lastPlayed
skip_num = utils.read_db(db, utils.DB_IMAGE_SKIP)
if(skip_num['num'] != 0):
# reset the skip num
utils.write_db(db, utils.DB_IMAGE_SKIP, {"num": 0})
else:
# needs to be at least 1 to advance proper
skip_num['num'] = 1
# go through and skip the number of images ahead - or behind
for i in range(0, abs(skip_num['num'])):
if(skip_num['num'] >= 0):
result = info.find_next_file(result['file'])
else:
result = info.find_prev_file(result['file'])
else:
# if in file mode, just use the file name
if(config['mode'] == 'file'):
if(config['path'] == lastPlayed['file']):
result = lastPlayed
else:
info = VideoInfo(config)
result = info.analyze_video(config['path'])
else:
# we're in dir mode, use the name of the last played file if it exists in the directory
validFiles = os.listDir(config['path'])
if('file' in lastPlayed and os.path.basename(lastPlayed['file']) in validFiles and not next):
# use information loaded from last played file
result = lastPlayed
else:
# file might not exist (first run) just make it blank
if('file' not in lastPlayed):
lastPlayed['file'] = ''
info = VideoInfo(config)
result = info.find_next_file(lastPlayed['file'])
return result
def show_startup(epd, db, messages=[]):
epd.prepare()
# display startup message on the display
font30 = ImageFont.truetype(utils.FONT_PATH, 30)
font24 = ImageFont.truetype(utils.FONT_PATH, 24)
current_ip = utils.read_db(db, utils.CURRENT_IP)
messages.append(f"Configure at http://{current_ip['ip']}:{args.port}")
# load a background image
splash_image = os.path.join(utils.DIR_PATH, "web", "static", "images", "splash.jpg")
background_image = Image.open(splash_image).resize((width, height))
draw = ImageDraw.Draw(background_image)
# calculate the size of the text we're going to draw
title = "VSMP+"
left, top, right, bottom = draw.textbbox((0, 0), text=title, font=font30)
tw, th = right - left, bottom - top
draw.text(((width - tw) / 2, (height - th) / 4), title, font=font30, fill=0)
offset = th * 1.5 # initial offset is height of title plus spacer
for m in messages:
left, top, right, bottom = draw.textbbox((0, 0), text=m, font=font24)
mw, mh = right - left, bottom - top
draw.text(((width - mw) / 2, (height - mh) / 4 + offset), m, font=font24, fill=0)
offset = offset + (th * 1.5)
epd.display(background_image)
epd.sleep()
def update_display(config, epd, db):
# get the file to display
media_file = find_next_file(config, utils.read_db(db, utils.DB_LAST_PLAYED_FILE))
# check if we have a properly analyzed file
if('file' not in media_file):
# log an error message
logging.error(f"No {config['media']} file to load")
show_startup(epd, db, [f"No {config['media'].capitalize()} Loaded"])
# set to "paused" so this isn't constantly Updating
utils.write_db(db, utils.DB_PLAYER_STATUS, {'running': False})
return
# Initialize the screen
epd.prepare()
# save grab file in memory as a bitmap
pil_im = None
grabFile = os.path.join('/dev/shm/', 'frame.bmp')
if(config['media'] == 'image'):
# copy source file to grabfile location
shutil.copy(media_file['file'], grabFile)
# load the file and resize to correct dimensions
pil_im = Image.open(grabFile).resize((width, height))
else:
validImg = False
while(not validImg):
logging.info(f"Loading {media_file['file']}")
if(media_file['pos'] >= media_file['info']['frame_count']):
# set 'next' to true to force new video file
media_file = find_next_file(config, utils.read_db(db, utils.DB_LAST_PLAYED_FILE), True)
# calculate the percent percent_complete
media_file['percent_complete'] = (media_file['pos'] / media_file['info']['frame_count']) * 100
# set the position we want to use
frame = media_file['pos']
# Convert that frame to ms from start of video (frame/fps) * 1000
msTimecode = f"{utils.frames_to_seconds(frame, media_file['info']['fps']) * 1000}ms"
# Use ffmpeg to extract a frame from the movie, crop it, letterbox it and save it in memory
generate_frame(media_file['file'], grabFile, msTimecode)
# save the next position
media_file['pos'] = media_file['pos'] + float(config['increment'])
# Open grab.jpg in PIL
pil_im = Image.open(grabFile)
# image not valid if skipping blank (None == blank)
validImg = (not config['skip_blank']) or (pil_im.getbbox() is not None and config['skip_blank'])
if(not validImg):
logging.info('Image is all black, try again')
if(len(config['display']) > 0):
font18 = ImageFont.truetype(utils.FONT_PATH, 18)
message = ''
timecode = ''
if('title' in config['display']):
message = f"{media_file['info']['title']}"
if('timecode' in config['display'] and config['media'] == 'video'):
# show the timecode of the video in the format HH:mm:SS
timecode = utils.display_time(seconds=utils.frames_to_seconds(frame, media_file['info']['fps']),
granularity=3,
timeFormat='{value:02d}',
joiner=':',
show_zeros=True,
intervals=utils.intervals[3:])
if(message):
message = f"{message} - {timecode}"
else:
message = timecode
if('ip' in config['display']):
current_ip = utils.read_db(db, utils.CURRENT_IP)
message = f"{message} (IP: {current_ip['ip']})"
# get a draw object
draw = ImageDraw.Draw(pil_im)
left, top, right, bottom = draw.textbbox((0, 0), text=message, font=font18)
tw, th = right - left, bottom - top # gets the width and height of the text drawn
# draw timecode, centering on the middle
draw.text(((width - tw) / 2, height - th), message, font=font18, fill=(255, 255, 255))
# display the image
epd.display(pil_im)
if(config['media'] == 'video'):
# do some calculations for the next run
secondsOfVideo = utils.frames_to_seconds(frame, media_file['info']['fps'])
logging.info(f"Diplaying frame {frame} ({secondsOfVideo} seconds) of {media_file['name']}")
if(media_file['pos'] >= media_file['info']['frame_count']):
# set 'next' to True to force new file
media_file = find_next_file(config, utils.read_db(db, utils.DB_LAST_PLAYED_FILE), True)
logging.info(f"Will start {media_file} on next run")
else:
logging.info(f"Displaying {media_file['name']}")
# save the last played info
utils.write_db(db, utils.DB_LAST_PLAYED_FILE, media_file)
epd.sleep()
# parse the arguments
parser = configargparse.ArgumentParser(description='VSMP Settings')
parser.add_argument('-c', '--config', is_config_file=True,
help='Path to custom config file')
parser.add_argument('-p', '--port', default=5000,
help="Port number to run the web server on, %(default)d by default")
parser.add_argument('-e', '--epd', default='waveshare_epd.epd7in5_V2',
help="The type of EPD driver to use, default is %(default)s")
parser.add_argument('-D', '--debug', action='store_true',
help='If the program should run in debug mode')
args = parser.parse_args()
# add hooks for interrupt signal
signal.signal(signal.SIGTERM, signal_handler)
signal.signal(signal.SIGINT, signal_handler)
# setup the logger, log to tmp/log.log
logLevel = 'INFO' if not args.debug else 'DEBUG'
logHandlers = [logging.FileHandler(os.path.join(utils.TMP_DIR, 'log.log'))]
if(args.debug):
logHandlers.append(logging.StreamHandler(sys.stdout))
logging.basicConfig(datefmt='%m/%d %H:%M',
format="%(levelname)s %(asctime)s: %(message)s",
level=getattr(logging, logLevel),
handlers=logHandlers)
logging.debug('Debug Mode On')
# check the epd driver
validEpds = displayfactory.list_supported_displays()
if(args.epd not in validEpds):
# can't find the driver
logging.error(f"{args.epd} is not a valid EPD name, valid names are:")
logging.error("\n".join(map(str, validEpds)))
# can't get past this
exit(1)
# setup the epds and database connection
epd = TwinEpd(displayfactory.load_display_driver(args.epd))
# pull width/height from driver
width = epd.width
height = epd.height
db = redis.Redis('localhost', decode_responses=True)
# default to False as default settings probably won't load a video
if(not db.exists(utils.DB_PLAYER_STATUS)):
utils.write_db(db, utils.DB_PLAYER_STATUS, {'running': False})
utils.write_db(db, utils.DB_LAST_RUN, {'last_run': 0})
# load the player configuration
config = utils.get_configuration(db)
logging.info(f"Starting {config['media']} mode updating on schedule: {config['update']}")
# get the current ip address
utils.write_db(db, utils.CURRENT_IP, {'ip': get_local_ip()})
# set skip_num to 0
utils.write_db(db, utils.DB_IMAGE_SKIP, {'num': 0})
# start the web app
webAppThread = threading.Thread(name='Web App', target=webapp.webapp_thread, args=(args.port, args.debug, logHandlers))
webAppThread.setDaemon(True)
webAppThread.start()
# set to now, or now + 60 depending on if we are showing the splash screen
now = datetime.now() if not config['startup_screen'] else datetime.now() + timedelta(seconds=60)
# initialize the cron scheduler and get the next update time - based on the previous time
updateExpression = config['update']
lastUpdate = utils.read_db(db, utils.DB_LAST_RUN)
cron = croniter(updateExpression, datetime.fromtimestamp(lastUpdate['last_run']))
nextUpdate = cron.get_next(datetime)
if(nextUpdate < now):
nextUpdate = now # we may have missed a previous update
utils.write_db(db, utils.DB_NEXT_RUN, {'next_run': nextUpdate.timestamp()})
logging.info(f"Next Update: {nextUpdate} based on last update {datetime.fromtimestamp(lastUpdate['last_run'])}")
# show the startup screen for 1 min before proceeding
if(config['startup_screen']):
logging.info("Showing startup screen")
show_startup(epd, db, [f"Next Update: {nextUpdate.strftime('%m/%d at %H:%M')}"])
time.sleep(60)
# reset cronitor to current time
cron = croniter(updateExpression, datetime.now())
while 1:
now = datetime.now()
config = utils.get_configuration(db)
# refresh update if changed
if(config['update'] != updateExpression):
updateExpression = config['update']
cron = croniter(updateExpression, now)
nextUpdate = cron.get_next(datetime)
utils.write_db(db, utils.DB_NEXT_RUN, {'next_run': nextUpdate.timestamp()})
logging.info(f"Next update: {nextUpdate}")
# check if the display should be updated
pStatus = utils.read_db(db, utils.DB_PLAYER_STATUS)
if(nextUpdate <= now):
if(pStatus['running']):
update_display(config, epd, db)
utils.write_db(db, utils.DB_LAST_RUN, {'last_run': now.timestamp()})
else:
logging.debug('Updating display paused, skipping this time')
nextUpdate = cron.get_next(datetime)
utils.write_db(db, utils.DB_NEXT_RUN, {'next_run': nextUpdate.timestamp()})
logging.info(f"Next update: {nextUpdate}")
# check if the IP address has changed
changed_ip_check(config, db)
# sleep for one minute
time.sleep(60 - datetime.now().second)