-
Notifications
You must be signed in to change notification settings - Fork 69
/
slowmovie.py
executable file
·440 lines (346 loc) · 15.8 KB
/
slowmovie.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# *************************
# ** Before running this **
# ** code ensure you've **
# ** turned on SPI on **
# ** your Raspberry Pi **
# ** & installed the **
# ** Waveshare library **
# *************************
import os
import time
import sys
import random
import signal
import logging
import glob
import ffmpeg
import configargparse
from PIL import Image, ImageEnhance
from fractions import Fraction
from omni_epd import displayfactory, EPDNotFoundError
# Compatible video file-extensions
fileTypes = [".avi", ".mp4", ".m4v", ".mkv", ".mov"]
subtitle_fileTypes = [".srt", ".ssa", ".ass"]
# Move to the directory where this code is
os.chdir(os.path.dirname(os.path.realpath(__file__)))
# Handle when the program is killed and exit gracefully
def exithandler(signum, frame):
logger.info("Exiting Program")
if args.clear:
epd.prepare()
epd.clear()
try:
epd.close()
finally:
sys.exit()
# Add hooks for interrupt signal
signal.signal(signal.SIGTERM, exithandler)
signal.signal(signal.SIGINT, exithandler)
def clamp(n, smallest, largest):
return max(smallest, min(n, largest))
def generate_frame(in_filename, out_filename, time):
(
ffmpeg
.input(in_filename, ss=time)
.filter("scale", "iw*sar", "ih")
.fullscreen_filter()
.filter("scale", width, height, force_original_aspect_ratio=1)
.filter("pad", width, height, -1, -1)
.overlay_filter()
.output(out_filename, vframes=1, copyts=None)
.overwrite_output()
.run(capture_stdout=True, capture_stderr=True)
)
def overlay_filter(self):
if args.subtitles and videoInfo["subtitle_file"]:
return self.filter("subtitles", videoInfo["subtitle_file"])
elif args.timecode:
return self.drawtext(escape_text=False, text="%{pts:hms}", fontcolor="white", fontsize=24, x="(w-text_w)/2", y="h-(text_h*2)", bordercolor="black", borderw=1)
return self
def fullscreen_filter(self):
if args.fullscreen:
if videoInfo["aspect_ratio"] > width / height:
return self.filter("crop", f"ih*{width / height}", "ih")
elif videoInfo["aspect_ratio"] < width / height:
return self.filter("crop", "iw", f"iw*{height / width}")
return self
ffmpeg.Stream.overlay_filter = overlay_filter
ffmpeg.Stream.fullscreen_filter = fullscreen_filter
# Used by configargparse to check that a file exists and is a compatible video
def check_vid(value):
if not os.path.isfile(value):
raise configargparse.ArgumentTypeError(f"File '{value}' does not exist")
if not supported_filetype(value):
raise configargparse.ArgumentTypeError(f"File '{value}' should be a file with one of the following supported extensions: {', '.join(fileTypes)}")
return value
def check_dir(value):
if os.path.isdir(value):
return value
else:
raise configargparse.ArgumentTypeError(f"Directory '{value}' does not exist")
def supported_filetype(file):
_, ext = os.path.splitext(file)
return ext.lower() in fileTypes and not file.startswith('.')
# Get framerate, frame count, duration, and frame-time of video via FFmpeg probe
def video_info(file):
if file in videoInfos:
info = videoInfos[file]
else:
probeInfo = ffmpeg.probe(file, select_streams="v")
stream = probeInfo["streams"][0]
# Calculate framerate
avg_fps = stream["avg_frame_rate"]
fps = float(Fraction(avg_fps))
# Calculate duration
duration = float(probeInfo["format"]["duration"])
# Either get frame count or calculate it
try:
# Get frame count for .mp4s
frameCount = int(stream["nb_frames"])
except KeyError:
# Calculate frame count for .mkvs (and maybe other formats?)
frameCount = int(duration * fps)
# Calculate frametime (ms each frame is displayed)
frameTime = 1000 / fps
subtitle_file = find_subtitles(file)
aspect_ratio = int(stream["width"]) / int(stream["height"])
info = {
"frame_count": frameCount,
"fps": fps,
"duration": duration,
"frame_time": frameTime,
"subtitle_file": subtitle_file,
"aspect_ratio": aspect_ratio}
videoInfos[file] = info
return info
# Returns the next video in the videos directory, or the first one if there's no current video
def get_next_video(viddir, currentVideo=None):
# Only consider videos in the directory
videos = sorted(list(filter(supported_filetype, os.listdir(viddir))))
# Return None if there are no videos
if not videos:
return None
if currentVideo:
nextIndex = videos.index(currentVideo) + 1
# If we're not wrapping around
if not nextIndex >= len(videos):
return os.path.join(viddir, videos[nextIndex])
# Wrapping around or no current video: return first video
return os.path.join(viddir, videos[0])
# Returns a random video from the videos directory
def get_random_video(viddir):
videos = list(filter(supported_filetype, os.listdir(viddir)))
if videos:
return os.path.join(viddir, random.choice(videos))
# Calculate how long it'll take to play a video.
def estimate_runtime(delay, increment, frames, all=False):
# Calculate runtime lengths in different units
seconds = (frames / increment) * delay
minutes = seconds / 60
hours = minutes / 60
days = hours / 24
if all:
output = f"{seconds:.1f} second(s) / {minutes:.1f} minute(s) / {hours:.1f} hour(s) / {days:.2f} day(s)"
else:
if minutes < 1:
output = f"{seconds:.1f} second(s)"
elif hours < 1:
output = f"{minutes:.1f} minute(s)"
elif days < 1:
output = f"{hours:.1f} hour(s)"
else:
output = f"{days:.2f} day(s)"
return output
# Check for a matching subtitle file
def find_subtitles(file):
if args.subtitles:
name, _ = os.path.splitext(file)
for i in glob.glob(name + ".*"):
_, ext = os.path.splitext(i)
if ext.lower() in subtitle_fileTypes:
logger.debug(f"Found subtitle file '{i}'")
return i
return None
class ArgparseLogger(configargparse.ArgumentParser):
def error(self, message):
logger.error(message)
sys.exit(1)
# Set up logging
logger = logging.getLogger()
fileHandler = logging.FileHandler("slowmovie.log")
fileHandler.setFormatter(logging.Formatter("[%(asctime)s] %(levelname)-8s: %(module)s : %(message)s"))
logger.addHandler(fileHandler)
consoleHandler = logging.StreamHandler(sys.stdout)
consoleHandler.setFormatter(logging.Formatter("%(levelname)s:%(module)s:%(message)s"))
logger.addHandler(consoleHandler)
# parse config or CLI arguments
parser = ArgparseLogger(default_config_files=["slowmovie.conf"])
parser.add_argument("-f", "--file", type=check_vid, help="video file to start playing; otherwise play the first file in the videos directory")
parser.add_argument("-D", "--directory", type=check_dir, help="directory containing available videos to play (default: Videos)")
parser.add_argument("-l", "--loop", action="store_true", help="loop a single video; otherwise play through the files in the videos directory")
parser.add_argument("-R", "--random-file", action="store_true", help="play files in a random order; otherwise play them in directory order")
parser.add_argument("-o", "--loglevel", default="INFO", type=str.upper, choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], help="minimum importance-level of messages displayed and saved to the logfile (default: %(default)s)")
# frame update controls
argsControl = parser.add_argument_group("Frame Update Args", "arguments that control frame updates and display")
argsControl.add_argument("-r", "--random-frames", action="store_true", help="choose a random frame every refresh")
argsControl.add_argument("-d", "--delay", default=120, type=int, help="delay in seconds between screen updates (default: %(default)s)")
argsControl.add_argument("-i", "--increment", default=4, type=int, help="advance INCREMENT frames each refresh (default: %(default)s)")
argsControl.add_argument("-s", "--start", type=int, help="start playing at a specific frame")
argsControl.add_argument("-F", "--fullscreen", action="store_true", help="expand image to fill display")
textOverlayGroup = argsControl.add_mutually_exclusive_group()
textOverlayGroup.add_argument("-S", "--subtitles", action="store_true", help="display SRT subtitles")
textOverlayGroup.add_argument("-t", "--timecode", action="store_true", help="display video timecode")
# epd controls
argsEpd = parser.add_argument_group("EPD Args", "arguments to select and modify the e-Ink display")
argsEpd.add_argument("-e", "--epd", help="the name of the display device driver to use")
argsEpd.add_argument("-c", "--contrast", default=1.0, type=float, help="adjust image contrast (default: %(default)s)")
argsEpd.add_argument("-C", "--clear", action="store_true", help="clear display on exit")
args = parser.parse_args()
# Set log level
logger.setLevel(getattr(logging, args.loglevel))
# Set up e-Paper display - do this first since we can't do much if it fails
try:
epd = displayfactory.load_display_driver(args.epd)
except EPDNotFoundError:
# EPD not found, give a list of supported displays
validEpds = displayfactory.list_supported_displays()
logger.error(f"'{args.epd}' is not a valid EPD name, valid names are:")
logger.error("\n".join(map(str, validEpds)))
# can't get past this
sys.exit(1)
# set width and height
width = epd.width
height = epd.height
# Set path of Videos directory and logs directory. Videos directory can be specified by CLI --directory
if args.directory:
viddir = args.directory
else:
viddir = "Videos"
progressdir = "progress"
# Create progress and Videos directories if missing
if not os.path.isdir(progressdir):
os.mkdir(progressdir)
if not os.path.isdir(viddir):
os.mkdir(viddir)
# Pick which video to play
logger.debug("Picking which video to play...")
# First, try the --file CLI argument...
logger.debug("...trying the --file argument...")
currentVideo = args.file
# ...then try a random video, if --random-file was selected...
if not currentVideo and args.random_file:
logger.debug("...random-file mode: trying to pick a random video...")
currentVideo = get_random_video(viddir)
# ...then try the nowPlaying file, which stores the last played video...
if not currentVideo and os.path.isfile("nowPlaying"):
logger.debug("...trying the video in the nowPlaying file...")
with open("nowPlaying") as file:
lastVideo = os.path.abspath(file.readline().strip())
if os.path.isfile(lastVideo):
if os.path.dirname(lastVideo) == os.path.abspath(viddir) or not args.directory:
currentVideo = lastVideo
else:
logger.warning(f"'{lastVideo}' read from nowPlaying file couldn't be found. Removing nowPlaying directory for recreation.")
os.remove("nowPlaying")
# ...then just pick the first video in the videos directory...
if not currentVideo:
logger.debug("...trying to pick the first video in the directory...")
currentVideo = get_next_video(viddir)
# ...if none of those worked, exit.
if not currentVideo:
logger.critical("No videos found")
sys.exit(1)
logger.debug(f"...picked '{currentVideo}'!")
logger.info(f"Update interval: {args.delay}")
if not args.random_frames:
logger.info(f"Frame increment: {args.increment}")
if not (args.random_file and args.random_frames):
# Write the current video to the nowPlaying file
with open("nowPlaying", "w") as file:
file.write(os.path.abspath(currentVideo))
videoFilename = os.path.basename(currentVideo)
viddir = os.path.dirname(currentVideo)
progressfile = os.path.join(progressdir, f"{videoFilename}.progress")
videoInfos = {}
videoInfo = video_info(currentVideo)
# Set up the start position based on CLI input or progressfiles if either exists
if not args.random_frames:
if args.start:
currentFrame = clamp(args.start, 0, videoInfo["frame_count"])
logger.info(f"Starting at frame {currentFrame}")
elif (os.path.isfile(progressfile)):
# Read current frame from progressfile
with open(progressfile) as log:
try:
currentFrame = int(log.readline())
currentFrame = clamp(currentFrame, 0, videoInfo["frame_count"])
logger.info(f"Resuming at frame {currentFrame}")
except ValueError:
currentFrame = 0
else:
currentFrame = 0
# Initialize lastVideo so that first time through the loop, we'll print "Playing x"
lastVideo = None
while True:
if lastVideo != currentVideo:
# Print a message when starting a new video
logger.info(f"Playing '{videoFilename}'")
logger.info(f"Video info: {videoInfo['frame_count']} frames, {videoInfo['fps']:.3f}fps, duration: {time.strftime('%H:%M:%S', time.gmtime(videoInfo['duration']))}")
if not args.random_frames:
logger.info(f"This video will take {estimate_runtime(args.delay, args.increment, videoInfo['frame_count'] - currentFrame)} to play.")
lastVideo = currentVideo
# Note the time when starting to display so later we can sleep for the delay value minus how long this takes
timeStart = time.perf_counter()
epd.prepare()
if args.random_frames:
currentFrame = random.randint(0, videoInfo["frame_count"])
msTimecode = f"{int(currentFrame * videoInfo['frame_time'])}ms"
# Use ffmpeg to extract a frame from the movie, letterbox/pillarbox it, and put it in memory as frame.bmp
generate_frame(currentVideo, "/dev/shm/frame.bmp", msTimecode)
# Open frame.bmp in PIL
pil_im = Image.open("/dev/shm/frame.bmp")
# Adjust contrast if specified
if args.contrast != 1:
enhancer = ImageEnhance.Contrast(pil_im)
pil_im = enhancer.enhance(args.contrast)
# Display the image
logger.debug(f"Displaying frame {int(currentFrame)} of {videoFilename} ({(currentFrame/videoInfo['frame_count'])*100:.1f}%)")
epd.display(pil_im)
# Increment the position
if args.random_frames:
if args.random_file:
# Pick a new random video
currentVideo = get_random_video(viddir)
videoFilename = os.path.basename(currentVideo)
videoInfo = video_info(currentVideo)
else:
currentFrame += args.increment
# If it's the end of the video
if currentFrame > videoInfo["frame_count"]:
if not args.loop:
if args.random_file:
# Pick a new random video
currentVideo = get_random_video(viddir)
else:
# Update currently playing video to be the next one in the Videos directory
currentVideo = get_next_video(viddir, videoFilename)
# Note new video in nowPlaying file
with open("nowPlaying", "w") as file:
file.write(os.path.abspath(currentVideo))
# Update videoFilepath for new video
videoFilename = os.path.basename(currentVideo)
# Update progressfile location
progressfile = os.path.join(progressdir, f"{videoFilename}.progress")
# Update video info for new video
videoInfo = video_info(currentVideo)
# Reset frame to 0 (this restarts the same video if looping)
currentFrame = 0
# Log the new location in the proper progressfile
with open(progressfile, "w") as log:
log.write(str(currentFrame))
epd.sleep()
# Adjust sleep delay to account for the time since we started updating this frame.
timeDiff = time.perf_counter() - timeStart
time.sleep(max(args.delay - timeDiff, 0))