ffplayout/ffplayout.py

1614 lines
50 KiB
Python
Raw Normal View History

2018-08-27 04:57:14 -04:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2018-01-07 07:58:45 -05:00
# This file is part of ffplayout.
#
# ffplayout is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ffplayout is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ffplayout. If not, see <http://www.gnu.org/licenses/>.
# ------------------------------------------------------------------------------
import configparser
2019-06-06 12:16:33 -04:00
import glob
import json
import logging
import math
import os
2019-06-06 12:16:33 -04:00
import random
2019-10-31 07:30:40 -04:00
import re
2019-06-06 16:02:20 -04:00
import signal
2019-07-20 18:54:06 -04:00
import smtplib
import socket
2019-08-13 15:41:10 -04:00
import ssl
2018-01-10 09:41:56 -05:00
import sys
2019-06-06 12:16:33 -04:00
import time
2018-01-10 09:41:56 -05:00
from argparse import ArgumentParser
from datetime import date, datetime, timedelta
2018-01-07 07:58:45 -05:00
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import formatdate
2018-01-10 09:41:56 -05:00
from logging.handlers import TimedRotatingFileHandler
from subprocess import PIPE, CalledProcessError, Popen, check_output
2018-01-07 07:58:45 -05:00
from threading import Thread
from types import SimpleNamespace
2019-08-12 08:30:47 -04:00
from urllib import request
2018-01-07 07:58:45 -05:00
try:
2019-11-01 10:54:24 -04:00
if os.name != 'posix':
import colorama
colorama.init()
from watchdog.events import PatternMatchingEventHandler
from watchdog.observers import Observer
except ImportError:
print('Some modules are not installed, ffplayout may or may not work')
2019-08-20 08:45:05 -04:00
# ------------------------------------------------------------------------------
# argument parsing
# ------------------------------------------------------------------------------
stdin_parser = ArgumentParser(
description='python and ffmpeg based playout',
epilog="don't use parameters if you want to use this settings from config")
stdin_parser.add_argument(
'-c', '--config', help='file path to ffplayout.conf'
)
2019-10-15 08:46:30 -04:00
stdin_parser.add_argument(
'-d', '--desktop', help='preview on desktop', action='store_true'
)
2019-08-20 08:45:05 -04:00
stdin_parser.add_argument(
'-f', '--folder', help='play folder content'
)
stdin_parser.add_argument(
'-l', '--log', help='file path for logfile'
)
2019-11-04 10:37:06 -05:00
stdin_parser.add_argument(
'--loop', help='loop playlist infinitely', action='store_true'
)
2019-08-20 08:45:05 -04:00
stdin_parser.add_argument(
'-p', '--playlist', help='path from playlist'
)
stdin_parser.add_argument(
'-s', '--start',
help='start time in "hh:mm:ss", "now" for start with first'
)
2019-08-20 08:45:05 -04:00
stdin_args = stdin_parser.parse_args()
2018-01-07 16:31:06 -05:00
# ------------------------------------------------------------------------------
# read variables from config file
# ------------------------------------------------------------------------------
2019-10-30 12:54:44 -04:00
_general = SimpleNamespace()
_mail = SimpleNamespace()
_log = SimpleNamespace()
_pre_comp = SimpleNamespace()
_playlist = SimpleNamespace()
_storage = SimpleNamespace()
_text = SimpleNamespace()
_playout = SimpleNamespace()
2019-08-20 08:45:05 -04:00
2019-10-30 12:54:44 -04:00
_init = SimpleNamespace(load=True)
_ff = SimpleNamespace(decoder=None, encoder=None)
2018-01-10 09:41:56 -05:00
2019-10-30 12:54:44 -04:00
def load_config():
"""
this function can reload most settings from configuration file,
the change does not take effect immediately, but with the after next file,
some settings cannot be changed - like resolution, aspect, or output
"""
cfg = configparser.ConfigParser()
2019-10-31 12:35:29 -04:00
def str_to_sec(s):
2019-11-04 10:37:06 -05:00
if s in ['now', None, '']:
2019-10-31 12:35:29 -04:00
return None
2019-11-04 10:37:06 -05:00
else:
s = s.split(':')
try:
return float(s[0]) * 3600 + float(s[1]) * 60 + float(s[2])
except ValueError:
print('Wrong time format!')
sys.exit(1)
2019-10-30 12:54:44 -04:00
if stdin_args.config:
cfg.read(stdin_args.config)
elif os.path.isfile('/etc/ffplayout/ffplayout.conf'):
cfg.read('/etc/ffplayout/ffplayout.conf')
else:
cfg.read('ffplayout.conf')
2019-10-30 16:34:16 -04:00
if stdin_args.start:
2019-10-31 12:35:29 -04:00
p_start = str_to_sec(stdin_args.start)
2019-10-30 16:34:16 -04:00
else:
2019-10-31 12:35:29 -04:00
p_start = str_to_sec(cfg.get('PLAYLIST', 'day_start'))
2019-10-30 16:34:16 -04:00
2019-10-31 12:35:29 -04:00
p_length = str_to_sec(cfg.get('PLAYLIST', 'length'))
2019-10-30 16:34:16 -04:00
2019-10-30 12:54:44 -04:00
_general.stop = cfg.getboolean('GENERAL', 'stop_on_error')
_general.threshold = cfg.getfloat('GENERAL', 'stop_threshold')
_mail.subject = cfg.get('MAIL', 'subject')
_mail.server = cfg.get('MAIL', 'smpt_server')
_mail.port = cfg.getint('MAIL', 'smpt_port')
_mail.s_addr = cfg.get('MAIL', 'sender_addr')
_mail.s_pass = cfg.get('MAIL', 'sender_pass')
_mail.recip = cfg.get('MAIL', 'recipient')
_mail.level = cfg.get('MAIL', 'mail_level')
_pre_comp.add_logo = cfg.getboolean('PRE_COMPRESS', 'add_logo')
_pre_comp.logo = cfg.get('PRE_COMPRESS', 'logo')
_pre_comp.opacity = cfg.get('PRE_COMPRESS', 'logo_opacity')
_pre_comp.logo_filter = cfg.get('PRE_COMPRESS', 'logo_filter')
_pre_comp.add_loudnorm = cfg.getboolean('PRE_COMPRESS', 'add_loudnorm')
_pre_comp.loud_i = cfg.getfloat('PRE_COMPRESS', 'loud_I')
_pre_comp.loud_tp = cfg.getfloat('PRE_COMPRESS', 'loud_TP')
_pre_comp.loud_lra = cfg.getfloat('PRE_COMPRESS', 'loud_LRA')
_pre_comp.protocols = cfg.get('PRE_COMPRESS', 'live_protocols')
_playlist.mode = cfg.getboolean('PLAYLIST', 'playlist_mode')
_playlist.path = cfg.get('PLAYLIST', 'path')
_playlist.start = p_start
_playlist.length = p_length
2019-10-30 12:54:44 -04:00
_storage.path = cfg.get('STORAGE', 'path')
_storage.filler = cfg.get('STORAGE', 'filler_clip')
_storage.extensions = json.loads(cfg.get('STORAGE', 'extensions'))
_storage.shuffle = cfg.getboolean('STORAGE', 'shuffle')
_text.add_text = cfg.getboolean('TEXT', 'add_text')
_text.textfile = cfg.get('TEXT', 'textfile')
_text.fontsize = cfg.get('TEXT', 'fontsize')
_text.fontcolor = cfg.get('TEXT', 'fontcolor')
_text.fontfile = cfg.get('TEXT', 'fontfile')
_text.box = cfg.get('TEXT', 'box')
_text.boxcolor = cfg.get('TEXT', 'boxcolor')
_text.boxborderw = cfg.get('TEXT', 'boxborderw')
_text.x = cfg.get('TEXT', 'x')
_text.y = cfg.get('TEXT', 'y')
if _init.load:
_log.to_file = cfg.getboolean('LOGGING', 'log_to_file')
_log.path = cfg.get('LOGGING', 'log_file')
_log.level = cfg.get('LOGGING', 'log_level')
_pre_comp.w = cfg.getint('PRE_COMPRESS', 'width')
_pre_comp.h = cfg.getint('PRE_COMPRESS', 'height')
_pre_comp.aspect = cfg.getfloat('PRE_COMPRESS', 'aspect')
_pre_comp.fps = cfg.getint('PRE_COMPRESS', 'fps')
_pre_comp.v_bitrate = cfg.getint('PRE_COMPRESS', 'width') * 50
_pre_comp.v_bufsize = cfg.getint('PRE_COMPRESS', 'width') * 50 / 2
_playout.preview = cfg.getboolean('OUT', 'preview')
_playout.name = cfg.get('OUT', 'service_name')
_playout.provider = cfg.get('OUT', 'service_provider')
_playout.out_addr = cfg.get('OUT', 'out_addr')
_playout.post_comp_video = json.loads(
cfg.get('OUT', 'post_comp_video'))
_playout.post_comp_audio = json.loads(
cfg.get('OUT', 'post_comp_audio'))
_playout.post_comp_extra = json.loads(
cfg.get('OUT', 'post_comp_extra'))
_init.load = False
load_config()
2018-01-07 07:58:45 -05:00
2018-01-10 09:41:56 -05:00
# ------------------------------------------------------------------------------
2019-08-20 08:45:05 -04:00
# logging
2018-01-10 09:41:56 -05:00
# ------------------------------------------------------------------------------
2019-10-31 07:30:40 -04:00
class CustomFormatter(logging.Formatter):
"""
Logging Formatter to add colors and count warning / errors
"""
grey = '\x1b[38;1m'
2019-10-31 07:30:40 -04:00
darkgrey = '\x1b[30;1m'
2019-11-03 15:19:14 -05:00
yellow = '\x1b[33;1m'
red = '\x1b[31;1m'
magenta = '\x1b[35;1m'
green = '\x1b[32;1m'
2019-10-31 07:30:40 -04:00
blue = '\x1b[34;1m'
cyan = '\x1b[36;1m'
2019-10-31 07:30:40 -04:00
reset = '\x1b[0m'
timestamp = darkgrey + '[%(asctime)s]' + reset
level = '[%(levelname)s]' + reset
message = grey + ' %(message)s' + reset
FORMATS = {
logging.DEBUG: timestamp + blue + level + message + reset,
logging.INFO: timestamp + green + level + message + reset,
logging.WARNING: timestamp + yellow + level + message + reset,
logging.ERROR: timestamp + red + level + message + reset
}
def format_message(self, msg):
if '"' in msg and '[' in msg:
msg = re.sub('(".*?")', self.cyan + r'\1' + self.reset, msg)
2019-11-02 17:09:34 -04:00
elif '/' in msg or '\\' in msg:
msg = re.sub(
r'(["\w.:/]+/|["\w.:]+\\.*?)', self.magenta + r'\1', msg)
elif re.search(r'\d', msg):
msg = re.sub(
2019-11-03 15:19:14 -05:00
'([0-9.:-]+)', self.yellow + r'\1' + self.reset, msg)
2019-10-31 07:30:40 -04:00
return msg
def format(self, record):
record.msg = self.format_message(record.getMessage())
log_fmt = self.FORMATS.get(record.levelno)
formatter = logging.Formatter(log_fmt)
return formatter.format(record)
2018-01-10 09:41:56 -05:00
# If the log file is specified on the command line then override the default
if stdin_args.log:
2019-03-18 16:23:56 -04:00
_log.path = stdin_args.log
2018-01-10 09:41:56 -05:00
logger = logging.getLogger(__name__)
logger.setLevel(_log.level)
2019-10-31 07:30:40 -04:00
console_handler = logging.StreamHandler()
2018-01-16 03:31:59 -05:00
formatter = logging.Formatter('[%(asctime)s] [%(levelname)s] %(message)s')
2019-10-31 07:30:40 -04:00
if _log.to_file:
file_handler = TimedRotatingFileHandler(_log.path, when='midnight',
backupCount=5)
2019-10-31 07:30:40 -04:00
file_handler.setFormatter(formatter)
logger.addHandler(file_handler)
else:
2019-10-31 07:30:40 -04:00
console_handler.setFormatter(CustomFormatter())
logger.addHandler(console_handler)
2018-01-10 09:41:56 -05:00
2019-03-10 16:24:03 -04:00
class PlayoutLogger(object):
2019-09-09 10:13:18 -04:00
"""
capture stdout and sterr in the log
"""
2019-09-09 14:09:18 -04:00
def __init__(self, logger, level):
self.logger = logger
self.level = level
2018-01-10 09:41:56 -05:00
def write(self, message):
# Only log if there is a message (not just a new line)
2019-05-10 05:10:08 -04:00
if message.rstrip() != '':
self.logger.log(self.level, message.rstrip())
2018-01-10 09:41:56 -05:00
def flush(self):
pass
2018-01-10 09:41:56 -05:00
# Replace stdout with logging to file at INFO level
2019-03-10 16:24:03 -04:00
sys.stdout = PlayoutLogger(logger, logging.INFO)
2018-01-10 09:41:56 -05:00
# Replace stderr with logging to file at ERROR level
2019-03-10 16:24:03 -04:00
sys.stderr = PlayoutLogger(logger, logging.ERROR)
2018-01-10 09:41:56 -05:00
2019-03-12 16:07:15 -04:00
# ------------------------------------------------------------------------------
# mail sender
# ------------------------------------------------------------------------------
2019-05-10 05:10:08 -04:00
class Mailer:
2019-09-09 10:13:18 -04:00
"""
mailer class for log messages, with level selector
"""
2019-09-09 14:09:18 -04:00
2019-05-10 05:10:08 -04:00
def __init__(self):
self.level = _mail.level
self.time = None
def current_time(self):
self.time = get_time(None)
def send_mail(self, msg):
if _mail.recip:
self.current_time()
message = MIMEMultipart()
message['From'] = _mail.s_addr
message['To'] = _mail.recip
message['Subject'] = _mail.subject
message['Date'] = formatdate(localtime=True)
message.attach(MIMEText('{} {}'.format(self.time, msg), 'plain'))
text = message.as_string()
2019-03-12 16:07:15 -04:00
try:
2019-05-10 05:10:08 -04:00
server = smtplib.SMTP(_mail.server, _mail.port)
except socket.error as err:
logger.error(err)
server = None
if server is not None:
server.starttls()
try:
login = server.login(_mail.s_addr, _mail.s_pass)
except smtplib.SMTPAuthenticationError as serr:
logger.error(serr)
login = None
2019-03-12 16:07:15 -04:00
2019-05-10 05:10:08 -04:00
if login is not None:
server.sendmail(_mail.s_addr, _mail.recip, text)
server.quit()
def info(self, msg):
if self.level in ['INFO']:
self.send_mail(msg)
def warning(self, msg):
if self.level in ['INFO', 'WARNING']:
self.send_mail(msg)
def error(self, msg):
if self.level in ['INFO', 'WARNING', 'ERROR']:
self.send_mail(msg)
class Messenger:
"""
all logging and mail messages end up here,
from here they go to logger and mailer
"""
def __init__(self):
self._mailer = Mailer()
def debug(self, msg):
2019-10-29 09:52:02 -04:00
logger.debug(msg.replace('\n', ' '))
def info(self, msg):
2019-10-29 09:52:02 -04:00
logger.info(msg.replace('\n', ' '))
self._mailer.info(msg)
def warning(self, msg):
2019-10-29 09:52:02 -04:00
logger.warning(msg.replace('\n', ' '))
self._mailer.warning(msg)
def error(self, msg):
2019-10-29 09:52:02 -04:00
logger.error(msg.replace('\n', ' '))
self._mailer.error(msg)
2019-03-12 16:07:15 -04:00
2019-10-29 10:28:18 -04:00
messenger = Messenger()
# ------------------------------------------------------------------------------
# probe media infos
# ------------------------------------------------------------------------------
class MediaProbe:
2019-09-09 10:13:18 -04:00
"""
get infos about media file, similare to mediainfo
"""
def load(self, file):
self.src = file
self.format = None
self.audio = []
self.video = []
cmd = ['ffprobe', '-v', 'quiet', '-print_format',
'json', '-show_format', '-show_streams', self.src]
try:
info = json.loads(check_output(cmd).decode('UTF-8'))
except CalledProcessError:
messenger.error('MediaProbe error in: {}'.format(self.src))
self.audio.append(None)
self.video.append(None)
return
self.format = info['format']
for stream in info['streams']:
if stream['codec_type'] == 'audio':
self.audio.append(stream)
if stream['codec_type'] == 'video':
if 'display_aspect_ratio' not in stream:
2019-09-10 03:10:46 -04:00
stream['aspect'] = float(
stream['width']) / float(stream['height'])
else:
w, h = stream['display_aspect_ratio'].split(':')
stream['aspect'] = float(w) / float(h)
a, b = stream['r_frame_rate'].split('/')
stream['fps'] = float(a) / float(b)
self.video.append(stream)
2018-01-07 07:58:45 -05:00
# ------------------------------------------------------------------------------
# global helper functions
2018-01-07 07:58:45 -05:00
# ------------------------------------------------------------------------------
def handle_sigterm(sig, frame):
2019-09-09 10:13:18 -04:00
"""
handler for ctrl+c signal
"""
raise(SystemExit)
2019-10-30 12:54:44 -04:00
def handle_sighub(sig, frame):
"""
handling SIGHUB signal for reload configuration
Linux/macOS only
2019-10-30 12:54:44 -04:00
"""
messenger.info('Reload config file')
2019-10-30 12:54:44 -04:00
load_config()
signal.signal(signal.SIGTERM, handle_sigterm)
if os.name == 'posix':
signal.signal(signal.SIGHUP, handle_sighub)
def terminate_processes(watcher=None):
2019-09-09 10:13:18 -04:00
"""
kill orphaned processes
"""
if _ff.decoder and _ff.decoder.poll() is None:
_ff.decoder.terminate()
if _ff.encoder and _ff.encoder.poll() is None:
_ff.encoder.terminate()
if watcher:
watcher.stop()
def get_time(time_format):
2019-09-09 10:13:18 -04:00
"""
get different time formats:
- full_sec > current time in seconds
- stamp > current date time in seconds
- else > current time in HH:MM:SS
"""
t = datetime.today()
2019-09-09 10:13:18 -04:00
if time_format == 'full_sec':
2019-06-19 10:11:30 -04:00
return t.hour * 3600 + t.minute * 60 + t.second \
+ t.microsecond / 1000000
elif time_format == 'stamp':
return float(datetime.now().timestamp())
else:
2019-05-10 05:10:08 -04:00
return t.strftime('%H:%M:%S')
2018-01-07 16:31:06 -05:00
def get_date(seek_day):
2019-09-09 10:13:18 -04:00
"""
get date for correct playlist,
when _playlist.start and seek_day is set:
check if playlist date must be from yesterday
"""
d = date.today()
if _playlist.start and seek_day and get_time('full_sec') < _playlist.start:
2018-08-15 10:18:09 -04:00
yesterday = d - timedelta(1)
return yesterday.strftime('%Y-%m-%d')
else:
2018-08-15 10:18:09 -04:00
return d.strftime('%Y-%m-%d')
2018-01-07 16:31:06 -05:00
def is_float(value):
2019-09-09 10:13:18 -04:00
"""
test if value is float
"""
try:
float(value)
return True
except (ValueError, TypeError):
return False
def is_int(value):
2019-09-09 10:13:18 -04:00
"""
test if value is int
"""
try:
int(value)
return True
except ValueError:
return False
2019-09-09 10:13:18 -04:00
def valid_json(file):
"""
simple json validation
"""
try:
json_object = json.load(file)
return json_object
except ValueError:
2019-10-29 10:28:18 -04:00
messenger.error("Playlist {} is not JSON conform".format(file))
2019-09-09 10:13:18 -04:00
return None
2019-07-20 18:54:06 -04:00
def check_length(json_nodes, total_play_time):
2019-09-09 10:13:18 -04:00
"""
check if playlist is long enough
"""
if _playlist.length:
if 'date' in json_nodes:
date = json_nodes["date"]
else:
date = get_date(True)
2019-03-15 04:18:41 -04:00
if total_play_time < _playlist.length - 5:
messenger.error(
'Playlist ({}) is not long enough!\n'
'Total play time is: {}, target length is: {}'.format(
date,
timedelta(seconds=total_play_time),
timedelta(seconds=_playlist.length))
)
def validate_thread(clip_nodes):
2019-09-09 10:13:18 -04:00
"""
validate json values in new thread
and test if source paths exist
"""
def check_json(json_nodes):
error = ''
counter = 0
2018-02-13 08:23:34 -05:00
2018-03-29 04:30:18 -04:00
# check if all values are valid
for node in json_nodes["program"]:
2019-07-18 12:00:56 -04:00
source = node["source"]
prefix = source.split('://')[0]
missing = []
if source and prefix in _pre_comp.protocols:
2019-03-04 11:54:36 -05:00
cmd = [
'ffprobe', '-v', 'error',
'-show_entries', 'format=duration',
'-of', 'default=noprint_wrappers=1:nokey=1', source]
2019-03-04 11:54:36 -05:00
try:
output = check_output(cmd).decode('utf-8')
except CalledProcessError:
output = '404'
if '404' in output:
missing.append('Stream not exist: "{}"'.format(source))
2019-06-05 08:21:03 -04:00
elif not os.path.isfile(source):
missing.append('File not exist: "{}"'.format(source))
2018-02-13 08:23:34 -05:00
if is_float(node["in"]) and is_float(node["out"]):
counter += node["out"] - node["in"]
else:
missing.append('Missing Value in: "{}"'.format(node))
2018-02-13 08:23:34 -05:00
if not is_float(node["duration"]):
missing.append('No duration Value!')
line = '\n'.join(missing)
if line:
error += line + '\nIn line: {}\n\n'.format(node)
2018-02-13 08:23:34 -05:00
if error:
2019-10-29 10:28:18 -04:00
messenger.error(
2019-05-10 05:10:08 -04:00
'Validation error, check JSON playlist, '
'values are missing:\n{}'.format(error)
2018-03-29 04:30:18 -04:00
)
2019-07-20 18:54:06 -04:00
check_length(json_nodes, counter)
validate = Thread(name='check_json', target=check_json, args=(clip_nodes,))
validate.daemon = True
validate.start()
def seek_in(seek):
2019-09-09 10:13:18 -04:00
"""
seek in clip
"""
if seek > 0.0:
return ['-ss', str(seek)]
else:
return []
def set_length(duration, seek, out):
2019-09-09 10:13:18 -04:00
"""
set new clip length
"""
if out < duration:
return ['-t', str(out - seek)]
else:
return []
def loop_input(source, src_duration, target_duration):
# loop filles n times
loop_count = math.ceil(target_duration / src_duration)
2019-10-29 10:28:18 -04:00
messenger.info(
'Loop "{0}" {1} times, total duration: {2:.2f}'.format(
source, loop_count, target_duration))
return ['-stream_loop', str(loop_count),
'-i', source, '-t', str(target_duration)]
def gen_dummy(duration):
2019-09-09 10:13:18 -04:00
"""
generate a dummy clip, with black color and empty audiotrack
"""
2019-09-08 15:24:02 -04:00
color = '#121212'
2019-09-09 10:13:18 -04:00
# IDEA: add noise could be an config option
2019-09-08 15:24:02 -04:00
# noise = 'noise=alls=50:allf=t+u,hue=s=0'
return [
'-f', 'lavfi', '-i',
'color=c={}:s={}x{}:d={}:r={},format=pix_fmts=yuv420p'.format(
color, _pre_comp.w, _pre_comp.h, duration, _pre_comp.fps
),
'-f', 'lavfi', '-i', 'anoisesrc=d={}:c=pink:r=48000:a=0.05'.format(
duration)
]
def gen_filler(duration):
2019-09-09 10:13:18 -04:00
"""
when playlist is not 24 hours long, we generate a loop from filler clip
"""
2019-08-04 15:48:01 -04:00
if not _storage.filler:
# when no filler is set, generate a dummy
2019-10-29 10:28:18 -04:00
messenger.warning('No filler is set!')
return gen_dummy(duration)
else:
# get duration from filler
cmd = [
'ffprobe', '-v', 'error', '-show_entries', 'format=duration',
2019-08-04 15:48:01 -04:00
'-of', 'default=noprint_wrappers=1:nokey=1', _storage.filler]
try:
file_duration = float(check_output(cmd).decode('utf-8'))
except (CalledProcessError, ValueError):
file_duration = None
if file_duration:
if file_duration > duration:
# cut filler
2019-10-29 10:28:18 -04:00
messenger.info(
2019-09-06 06:02:11 -04:00
'Generate filler with {0:.2f} seconds'.format(duration))
2019-08-04 15:48:01 -04:00
return ['-i', _storage.filler] + set_length(
file_duration, 0, duration)
else:
# loop file n times
return loop_input(_storage.filler, file_duration, duration)
else:
2019-10-29 10:28:18 -04:00
messenger.error("Can't get filler length, generate dummy!")
return gen_dummy(duration)
2019-03-27 04:34:13 -04:00
def src_or_dummy(src, dur, seek, out):
2019-09-09 10:13:18 -04:00
"""
when source path exist, generate input with seek and out time
when path not exist, generate dummy clip
"""
# check if input is a live source
if src and src.split('://')[0] in _pre_comp.protocols:
if seek > 0.0:
messenger.warning(
'Seek in live source "{}" not supported!'.format(src))
return ['-i', src] + set_length(dur, seek, out)
elif src and os.path.isfile(src):
if out > dur:
if seek > 0.0:
messenger.warning(
'Seek in looped source "{}" not supported!'.format(src))
return ['-i', src] + set_length(dur, seek, out - seek)
else:
# FIXME: when list starts with looped clip,
# the logo length will be wrong
return loop_input(src, dur, out)
else:
return seek_in(seek) + ['-i', src] + set_length(dur, seek, out)
else:
messenger.error('Clip/URL not exist:\n{}'.format(src))
2019-03-27 04:34:13 -04:00
return gen_dummy(out - seek)
def get_delta(begin, seek, first):
"""
get difference between current time and begin from clip in playlist
"""
if _playlist.length:
target_playtime = _playlist.length
else:
target_playtime = 86400.0
current_time = get_time('full_sec')
if _playlist.start >= current_time and not begin == _playlist.start:
current_time += target_playtime
if first:
time_delta = begin + seek - current_time
else:
time_delta = begin - current_time
if math.isclose(time_delta, 86400.0, abs_tol=6):
time_delta -= 86400.0
# check that we are in tolerance time
if _general.stop and abs(time_delta) > _general.threshold:
messenger.error(
'Sync tolerance value exceeded with {0:.2f} seconds,\n'
'program terminated!'.format(time_delta))
terminate_processes()
sys.exit(1)
messenger.debug('time_delta: {}'.format(time_delta))
return target_playtime, time_delta
def gen_input(src, begin, dur, seek, out, first, last):
2019-09-09 10:13:18 -04:00
"""
prepare input clip
check begin and length from clip
return clip only if we are in 24 hours time range
"""
if _playlist.start:
# TODO: there is no rule at then moment,
# when no _playlist.start is set, but _playlist.length exists
target_playtime, time_delta = get_delta(begin, seek, first)
2019-11-04 10:37:06 -05:00
ref_time = target_playtime + _playlist.start
2019-11-03 15:19:14 -05:00
2019-11-04 10:37:06 -05:00
if (begin + out + time_delta < ref_time and not last) \
or not _playlist.length:
# when we are in the 24 houre range, get the clip
return src_or_dummy(src, dur, seek, out), seek, out, False
2019-11-03 15:19:14 -05:00
elif begin + time_delta > ref_time:
2019-10-29 12:43:51 -04:00
messenger.info(
2019-11-04 10:37:06 -05:00
'Start time is over {}, skip clip:\n{}'.format(
timedelta(seconds=target_playtime), src))
return None, 0, 0, True
2019-11-03 15:19:14 -05:00
elif begin + out + time_delta > ref_time or last:
2019-11-05 03:40:27 -05:00
new_length = ref_time - (begin + time_delta)
new_out = out
2019-11-04 10:37:06 -05:00
2019-11-05 03:40:27 -05:00
if seek > 0:
new_out = seek + new_length
else:
new_out = new_length
2019-11-04 10:37:06 -05:00
# prevent looping
if new_out > dur:
new_out = dur
messenger.info(
'We are over time, new length is: {0:.2f}'.format(new_length))
2019-10-15 10:57:59 -04:00
2019-11-05 03:40:27 -05:00
# When calculated length from clip is longer then 3 seconds,
# we use the clip. When the length is less then 3 and bigger then 1
2019-10-29 12:43:51 -04:00
# second we generate a black clip and when is less the a seconds
# we skip the clip.
2019-11-05 03:40:27 -05:00
if new_length > 3.0:
src_cmd = src_or_dummy(src, dur, seek, new_out)
2019-11-03 15:19:14 -05:00
elif new_length > 1.0:
src_cmd = gen_dummy(new_length)
elif new_length > 0.0:
2019-10-29 12:43:51 -04:00
messenger.info(
'Last clip less then a second long, skip:\n{}'.format(src))
2019-10-29 12:43:51 -04:00
src_cmd = None
else:
2019-11-05 03:40:27 -05:00
missing_secs = abs(new_length - dur)
messenger.error(
'Playlist is not long enough:'
'\n{0:.2f} seconds needed.'.format(missing_secs))
2019-11-03 15:19:14 -05:00
src_cmd = src_or_dummy(src, dur, seek, out)
return src_cmd, seek, out, False
2019-10-29 12:43:51 -04:00
return src_cmd, seek, new_out, True
2019-10-29 12:43:51 -04:00
else:
return None, 0, 0, True
else:
return src_or_dummy(src, dur, seek, out), seek, out, False
# ------------------------------------------------------------------------------
# building filters,
# when is needed add individuell filters to match output format
# ------------------------------------------------------------------------------
def deinterlace_filter(probe):
"""
when material is interlaced,
set deinterlacing filter
"""
filter_chain = []
if 'field_order' in probe.video[0] and \
probe.video[0]['field_order'] != 'progressive':
filter_chain.append('yadif=0:-1:0')
return filter_chain
def pad_filter(probe):
"""
if source and target aspect is different,
fix it with pillarbox or letterbox
"""
filter_chain = []
if not math.isclose(probe.video[0]['aspect'],
_pre_comp.aspect, abs_tol=0.03):
if probe.video[0]['aspect'] < _pre_comp.aspect:
filter_chain.append(
'pad=ih*{}/{}/sar:ih:(ow-iw)/2:(oh-ih)/2'.format(_pre_comp.w,
_pre_comp.h))
elif probe.video[0]['aspect'] > _pre_comp.aspect:
filter_chain.append(
'pad=iw:iw*{}/{}/sar:(ow-iw)/2:(oh-ih)/2'.format(_pre_comp.h,
_pre_comp.w))
return filter_chain
def fps_filter(probe):
"""
changing frame rate
"""
filter_chain = []
if probe.video[0]['fps'] != _pre_comp.fps:
filter_chain.append('framerate=fps={}'.format(_pre_comp.fps))
return filter_chain
def scale_filter(probe):
"""
if target resolution is different to source add scale filter,
apply also an aspect filter, when is different
"""
filter_chain = []
if int(probe.video[0]['width']) != _pre_comp.w or \
int(probe.video[0]['height']) != _pre_comp.h:
filter_chain.append('scale={}:{}'.format(_pre_comp.w, _pre_comp.h))
2019-09-09 12:10:25 -04:00
if not math.isclose(probe.video[0]['aspect'],
_pre_comp.aspect, abs_tol=0.03):
filter_chain.append('setdar=dar={}'.format(_pre_comp.aspect))
return filter_chain
def fade_filter(duration, seek, out, track=''):
"""
fade in/out video, when is cutted at the begin or end
"""
filter_chain = []
if seek > 0.0:
filter_chain.append('{}fade=in:st=0:d=0.5'.format(track))
if out != duration:
filter_chain.append('{}fade=out:st={}:d=1.0'.format(track,
out - seek - 1.0))
return filter_chain
def overlay_filter(duration, ad, ad_last, ad_next):
"""
overlay logo: when is an ad don't overlay,
when ad is comming next fade logo out,
when clip before was an ad fade logo in
"""
logo_filter = '[v]null[logo]'
if _pre_comp.add_logo and os.path.isfile(_pre_comp.logo) and not ad:
logo_chain = []
opacity = 'format=rgba,colorchannelmixer=aa={}'.format(
_pre_comp.opacity)
loop = 'loop=loop={}:size=1:start=0'.format(
duration * _pre_comp.fps)
logo_chain.append('movie={},{},{}'.format(
_pre_comp.logo, loop, opacity))
if ad_last:
logo_chain.append('fade=in:st=0:d=1.0:alpha=1')
if ad_next:
logo_chain.append('fade=out:st={}:d=1.0:alpha=1'.format(
duration - 1))
logo_filter = '{}[l];[v][l]{}[logo]'.format(
','.join(logo_chain), _pre_comp.logo_filter)
2019-09-09 14:09:18 -04:00
return logo_filter
def add_audio(probe, duration):
"""
when clip has no audio we generate an audio line
"""
line = []
if not probe.audio:
2019-10-29 10:28:18 -04:00
messenger.warning('Clip "{}" has no audio!'.format(probe.src))
line = [
'aevalsrc=0:channel_layout=2:duration={}:sample_rate={}'.format(
duration, 48000)]
return line
def add_loudnorm(probe):
"""
add single pass loudnorm filter to audio line
"""
loud_filter = []
2019-10-08 11:16:10 -04:00
a_samples = int(192000 / _pre_comp.fps)
if probe.audio and _pre_comp.add_loudnorm:
2019-10-08 11:16:10 -04:00
loud_filter = [('loudnorm=I={}:TP={}:LRA={},'
'asetnsamples=n={}').format(_pre_comp.loud_i,
_pre_comp.loud_tp,
_pre_comp.loud_lra,
a_samples)]
return loud_filter
2019-09-04 15:27:38 -04:00
def extend_audio(probe, duration):
"""
check audio duration, is it shorter then clip duration - pad it
"""
pad_filter = []
if probe.audio and 'duration' in probe.audio[0] and \
duration > float(probe.audio[0]['duration']) + 0.3:
pad_filter.append('apad=whole_dur={}'.format(duration))
return pad_filter
def extend_video(probe, duration, target_duration):
2019-09-04 15:27:38 -04:00
"""
check video duration, is is shorter then clip duration - pad it
"""
pad_filter = []
if 'duration' in probe.video[0] and \
target_duration < duration > float(
probe.video[0]['duration']) + 0.3:
2019-09-04 15:27:38 -04:00
pad_filter.append('tpad=stop_mode=add:stop_duration={}'.format(
duration - float(probe.video[0]['duration'])))
return pad_filter
def build_filtergraph(duration, seek, out, ad, ad_last, ad_next, dummy, probe):
"""
build final filter graph, with video and audio chain
"""
video_chain = []
audio_chain = []
video_map = ['-map', '[logo]']
if out > duration:
seek = 0
if not dummy:
video_chain += deinterlace_filter(probe)
video_chain += pad_filter(probe)
video_chain += fps_filter(probe)
video_chain += scale_filter(probe)
video_chain += extend_video(probe, duration, out - seek)
video_chain += fade_filter(duration, seek, out)
audio_chain += add_audio(probe, out - seek)
if not audio_chain:
audio_chain.append('[0:a]anull')
audio_chain += add_loudnorm(probe)
audio_chain += extend_audio(probe, out - seek)
audio_chain += fade_filter(duration, seek, out, 'a')
if video_chain:
video_filter = '{}[v]'.format(','.join(video_chain))
else:
video_filter = 'null[v]'
logo_filter = overlay_filter(out - seek, ad, ad_last, ad_next)
video_filter = [
'-filter_complex', '[0:v]{};{}'.format(
video_filter, logo_filter)]
if audio_chain:
audio_filter = [
'-filter_complex', '{}[a]'.format(','.join(audio_chain))]
audio_map = ['-map', '[a]']
else:
audio_filter = []
audio_map = ['-map', '0:a']
if dummy:
return video_filter + video_map + ['-map', '1:a']
else:
2019-03-12 16:07:15 -04:00
return video_filter + audio_filter + video_map + audio_map
2019-06-06 12:16:33 -04:00
# ------------------------------------------------------------------------------
# folder watcher
# ------------------------------------------------------------------------------
class MediaStore:
"""
fill media list for playing
MediaWatch will interact with add and remove
"""
2019-09-03 15:14:40 -04:00
def __init__(self):
2019-06-06 12:16:33 -04:00
self.store = []
2019-09-03 15:14:40 -04:00
if stdin_args.folder:
self.folder = stdin_args.folder
else:
self.folder = _storage.path
self.fill()
def fill(self):
for ext in _storage.extensions:
2019-06-06 12:16:33 -04:00
self.store.extend(
2019-09-03 15:14:40 -04:00
glob.glob(os.path.join(self.folder, '**', ext),
recursive=True))
2019-06-06 12:16:33 -04:00
self.sort()
def add(self, file):
self.store.append(file)
self.sort()
def remove(self, file):
self.store.remove(file)
self.sort()
def sort(self):
# sort list for sorted playing
self.store = sorted(self.store)
class MediaWatcher:
"""
watch given folder for file changes and update media list
"""
2019-09-08 15:24:02 -04:00
def __init__(self, media):
2019-06-06 12:16:33 -04:00
self._media = media
2019-09-08 15:24:02 -04:00
self.event_handler = PatternMatchingEventHandler(
patterns=_storage.extensions)
2019-06-06 12:16:33 -04:00
self.event_handler.on_created = self.on_created
self.event_handler.on_moved = self.on_moved
self.event_handler.on_deleted = self.on_deleted
self.observer = Observer()
2019-09-08 15:24:02 -04:00
self.observer.schedule(self.event_handler, self._media.folder,
recursive=True)
2019-06-06 12:16:33 -04:00
self.observer.start()
def on_created(self, event):
# add file to media list only if it is completely copied
file_size = -1
while file_size != os.path.getsize(event.src_path):
file_size = os.path.getsize(event.src_path)
time.sleep(1)
self._media.add(event.src_path)
2019-10-29 10:28:18 -04:00
messenger.info('Add file to media list: "{}"'.format(event.src_path))
2019-06-06 12:16:33 -04:00
def on_moved(self, event):
self._media.remove(event.src_path)
self._media.add(event.dest_path)
2019-10-29 10:28:18 -04:00
messenger.info('Move file from "{}" to "{}"'.format(event.src_path,
event.dest_path))
2019-06-06 12:16:33 -04:00
def on_deleted(self, event):
self._media.remove(event.src_path)
2019-10-29 10:28:18 -04:00
messenger.info(
'Remove file from media list: "{}"'.format(event.src_path))
2019-06-06 12:16:33 -04:00
def stop(self):
self.observer.stop()
self.observer.join()
class GetSource:
"""
give next clip, depending on shuffle mode
"""
2019-09-08 15:24:02 -04:00
def __init__(self, media):
2019-06-06 12:16:33 -04:00
self._media = media
self.last_played = []
self.index = 0
self.probe = MediaProbe()
2019-06-06 12:16:33 -04:00
def next(self):
while True:
2019-09-08 15:24:02 -04:00
if _storage.shuffle:
2019-06-06 12:16:33 -04:00
clip = random.choice(self._media.store)
if len(self.last_played) > len(self._media.store) / 2:
self.last_played.pop(0)
if clip not in self.last_played:
self.last_played.append(clip)
self.probe.load(clip)
filtergraph = build_filtergraph(
float(self.probe.format['duration']), 0.0,
2019-09-04 15:27:38 -04:00
float(self.probe.format['duration']), False, False,
False, False, self.probe)
yield ['-i', clip] + filtergraph
2019-06-06 12:16:33 -04:00
else:
while self.index < len(self._media.store):
self.probe.load(self._media.store[self.index])
filtergraph = build_filtergraph(
float(self.probe.format['duration']), 0.0,
2019-09-04 15:27:38 -04:00
float(self.probe.format['duration']), False, False,
False, False, self.probe)
2019-06-06 12:16:33 -04:00
yield [
'-i', self._media.store[self.index]
] + filtergraph
2019-06-06 12:16:33 -04:00
self.index += 1
else:
self.index = 0
# ------------------------------------------------------------------------------
# main functions
# ------------------------------------------------------------------------------
class GetSourceIter:
2019-09-09 10:13:18 -04:00
"""
read values from json playlist,
get current clip in time,
set ffmpeg source command
"""
2019-09-09 14:09:18 -04:00
def __init__(self):
self.init_time = get_time('full_sec')
self.last_time = self.init_time
2019-11-04 10:37:06 -05:00
if _playlist.length:
self.total_playtime = _playlist.length
else:
self.total_playtime = 86400.0
# when _playlist.start is set, use start time
if _playlist.start:
self.init_time = _playlist.start
if self.last_time < _playlist.start:
2019-11-04 10:37:06 -05:00
self.last_time += self.total_playtime
self.last_mod_time = 0.0
self.json_file = None
self.clip_nodes = None
self.src_cmd = None
self.probe = MediaProbe()
self.filtergraph = []
self.first = True
self.last = False
self.list_date = get_date(True)
self.is_dummy = False
self.last_error = ''
self.timestamp = get_time('stamp')
self.src = None
self.seek = 0
2019-03-18 16:23:56 -04:00
self.out = 20
self.duration = 20
self.ad = False
self.ad_last = False
self.ad_next = False
def get_playlist(self):
2019-08-09 11:55:21 -04:00
if stdin_args.playlist:
self.json_file = stdin_args.playlist
2019-03-18 16:23:56 -04:00
else:
year, month, day = self.list_date.split('-')
self.json_file = os.path.join(
_playlist.path, year, month, self.list_date + '.json')
2019-08-12 08:30:47 -04:00
if '://' in self.json_file:
self.json_file = self.json_file.replace('\\', '/')
try:
req = request.urlopen(self.json_file,
timeout=1,
context=ssl._create_unverified_context())
b_time = req.headers['last-modified']
2019-08-13 15:41:10 -04:00
temp_time = time.strptime(b_time, "%a, %d %b %Y %H:%M:%S %Z")
2019-08-12 08:30:47 -04:00
mod_time = time.mktime(temp_time)
if mod_time > self.last_mod_time:
2019-09-09 10:13:18 -04:00
self.clip_nodes = valid_json(req)
2019-08-12 08:30:47 -04:00
self.last_mod_time = mod_time
messenger.info('Open: ' + self.json_file)
2019-08-12 08:30:47 -04:00
validate_thread(self.clip_nodes)
except (request.URLError, socket.timeout):
self.eof_handling('Get playlist from url failed!', False)
elif os.path.isfile(self.json_file):
# check last modification from playlist
mod_time = os.path.getmtime(self.json_file)
if mod_time > self.last_mod_time:
with open(self.json_file, 'r', encoding='utf-8') as f:
2019-09-09 10:13:18 -04:00
self.clip_nodes = valid_json(f)
2019-03-09 14:12:20 -05:00
self.last_mod_time = mod_time
messenger.info('Open: ' + self.json_file)
2019-03-09 14:12:20 -05:00
validate_thread(self.clip_nodes)
else:
# when we have no playlist for the current day,
# then we generate a black clip
# and calculate the seek in time, for when the playlist comes back
self.eof_handling('Playlist not exist:', False)
def get_clip_in_out(self, node):
if is_float(node["in"]):
self.seek = node["in"]
else:
self.seek = 0
if is_float(node["duration"]):
self.duration = node["duration"]
else:
self.duration = 20
if is_float(node["out"]):
self.out = node["out"]
else:
self.out = self.duration
def url_or_live_source(self):
prefix = self.src.split('://')[0]
# check if input is a live source
if self.src and prefix in _pre_comp.protocols:
cmd = [
'ffprobe', '-v', 'error', '-show_entries', 'format=duration',
'-of', 'default=noprint_wrappers=1:nokey=1', self.src]
try:
output = check_output(cmd).decode('utf-8')
except CalledProcessError as err:
2019-10-29 10:28:18 -04:00
messenger.error("ffprobe error: {}".format(err))
output = None
if not output:
messenger.error('URL not exist:\n{}'.format(self.src))
2019-03-27 04:34:13 -04:00
self.src = None
elif is_float(output):
self.duration = float(output)
else:
2019-11-04 10:37:06 -05:00
self.duration = self.total_playtime
self.out = self.out - self.seek
self.seek = 0
def get_input(self):
self.src_cmd, self.seek, self.out, self.next_playlist = gen_input(
self.src, self.begin, self.duration,
self.seek, self.out, self.first, self.last
)
def is_source_dummy(self):
if self.src_cmd and 'lavfi' in self.src_cmd:
self.is_dummy = True
else:
self.is_dummy = False
def get_category(self, index, node):
if 'category' in node:
if index - 1 >= 0:
last_category = self.clip_nodes[
"program"][index - 1]["category"]
else:
2019-05-10 05:10:08 -04:00
last_category = 'noad'
if index + 2 <= len(self.clip_nodes["program"]):
next_category = self.clip_nodes[
"program"][index + 1]["category"]
else:
2019-05-10 05:10:08 -04:00
next_category = 'noad'
if node["category"] == 'advertisement':
self.ad = True
else:
self.ad = False
if last_category == 'advertisement':
self.ad_last = True
else:
self.ad_last = False
if next_category == 'advertisement':
self.ad_next = True
else:
self.ad_next = False
def set_filtergraph(self):
self.filtergraph = build_filtergraph(
self.duration, self.seek, self.out, self.ad, self.ad_last,
self.ad_next, self.is_dummy, self.probe)
2019-11-04 10:37:06 -05:00
def check_for_next_playlist(self):
if not self.next_playlist:
2019-11-04 10:37:06 -05:00
# normal behavior, when no new playlist is needed
self.last_time = self.begin
2019-11-04 10:37:06 -05:00
elif self.next_playlist and _playlist.length != 86400.0:
# get sure that no new clip will be loaded
self.last_time = 86400.0 * 2
else:
# when there is no time left and we are in time,
# set right values for new playlist
self.list_date = get_date(False)
self.last_mod_time = 0.0
2019-11-04 10:37:06 -05:00
if _playlist.start:
self.last_time = _playlist.start - 1
else:
self.last_time = get_time('full_sec') - 1
def eof_handling(self, message, filler):
2019-03-18 05:54:07 -04:00
self.seek = 0.0
self.ad = False
2019-11-04 10:37:06 -05:00
ref_time = self.total_playtime
current_time = get_time('full_sec')
if _playlist.start:
2019-11-04 10:37:06 -05:00
ref_time = self.total_playtime + _playlist.start
2019-11-04 10:37:06 -05:00
if current_time < _playlist.start:
current_time += self.total_playtime
2019-11-04 10:37:06 -05:00
time_diff = self.out - self.seek + current_time
2019-03-27 04:34:13 -04:00
new_len = self.out - self.seek - (time_diff - ref_time)
2019-09-06 06:02:11 -04:00
self.out = abs(new_len)
self.duration = abs(new_len)
self.list_date = get_date(False)
self.last_mod_time = 0.0
self.first = False
self.last_time = 0.0
if filler:
self.src_cmd = gen_filler(self.duration)
2019-11-03 15:19:14 -05:00
if _storage.filler and os.path.isfile(_storage.filler):
self.is_dummy = False
self.duration += 1
self.probe.load(_storage.filler)
2019-08-14 05:31:51 -04:00
else:
self.is_dummy = True
else:
self.src_cmd = gen_dummy(self.duration)
self.is_dummy = True
self.set_filtergraph()
2018-01-07 07:58:45 -05:00
if get_time('stamp') - self.timestamp > 3600 \
and message != self.last_error:
self.last_error = message
2019-10-29 10:28:18 -04:00
messenger.error('{}\n{}'.format(message, self.json_file))
self.timestamp = get_time('stamp')
2018-01-07 07:58:45 -05:00
2019-10-29 10:28:18 -04:00
messenger.error('{} {}'.format(message, self.json_file))
2018-01-07 07:58:45 -05:00
self.last = False
2018-01-16 03:31:59 -05:00
2019-03-08 10:41:22 -05:00
def next(self):
while True:
self.get_playlist()
if self.clip_nodes is None:
self.is_dummy = True
self.set_filtergraph()
yield self.src_cmd + self.filtergraph
2019-03-08 10:41:22 -05:00
continue
2018-02-13 08:23:34 -05:00
2019-03-12 09:39:09 -04:00
self.begin = self.init_time
2019-11-03 15:19:14 -05:00
# loop through all clips in playlist and get correct clip in time
for index, node in enumerate(self.clip_nodes["program"]):
self.get_clip_in_out(node)
# first time we end up here
if self.first and \
self.last_time < self.begin + self.out - self.seek:
if _playlist.start:
2019-03-12 09:39:09 -04:00
# calculate seek time
self.seek = self.last_time - self.begin + self.seek
2019-03-12 09:39:09 -04:00
2019-07-18 12:00:56 -04:00
self.src = node["source"]
self.probe.load(self.src)
2019-07-18 12:00:56 -04:00
self.url_or_live_source()
self.get_input()
self.is_source_dummy()
self.get_category(index, node)
self.set_filtergraph()
2019-11-04 10:37:06 -05:00
self.check_for_next_playlist()
self.first = False
break
2019-03-12 09:39:09 -04:00
elif self.last_time < self.begin:
if index + 1 == len(self.clip_nodes["program"]):
2019-03-09 14:12:20 -05:00
self.last = True
else:
2019-03-09 14:12:20 -05:00
self.last = False
2018-02-13 08:23:34 -05:00
2019-07-18 12:00:56 -04:00
self.src = node["source"]
self.probe.load(self.src)
2019-07-18 12:00:56 -04:00
self.url_or_live_source()
self.get_input()
self.is_source_dummy()
self.get_category(index, node)
self.set_filtergraph()
2019-11-04 10:37:06 -05:00
self.check_for_next_playlist()
break
self.begin += self.out - self.seek
else:
2019-11-04 10:37:06 -05:00
if stdin_args.loop:
self.check_for_next_playlist()
self.init_time = self.last_time + 1
self.src_cmd = None
elif not _playlist.start or not _playlist.length or \
not stdin_args.loop:
# when we reach playlist end, stop script
messenger.info('Playlist reached end!')
return None
elif self.begin == self.init_time:
# no clip was played, generate dummy
self.eof_handling('Playlist is empty!', False)
else:
# playlist is not long enough, play filler
self.eof_handling('Playlist is not long enough!', True)
if self.src_cmd is not None:
yield self.src_cmd + self.filtergraph
2018-01-07 07:58:45 -05:00
def main():
2019-09-09 10:13:18 -04:00
"""
pipe ffmpeg pre-process to final ffmpeg post-process,
or play with ffplay
"""
2019-03-10 16:24:03 -04:00
year = get_date(False).split('-')[0]
overlay = []
2019-09-08 15:24:02 -04:00
ff_pre_settings = [
'-pix_fmt', 'yuv420p', '-r', str(_pre_comp.fps),
'-c:v', 'mpeg2video', '-intra',
'-b:v', '{}k'.format(_pre_comp.v_bitrate),
'-minrate', '{}k'.format(_pre_comp.v_bitrate),
'-maxrate', '{}k'.format(_pre_comp.v_bitrate),
'-bufsize', '{}k'.format(_pre_comp.v_bufsize),
'-c:a', 's302m', '-strict', '-2', '-ar', '48000', '-ac', '2',
2019-09-08 15:24:02 -04:00
'-f', 'mpegts', '-']
if _text.add_text and os.path.isfile(_text.textfile):
2019-10-29 10:28:18 -04:00
messenger.info('Overlay text file: "{}"'.format(_text.textfile))
2019-09-08 15:24:02 -04:00
overlay = [
'-vf', ("drawtext=box={}:boxcolor='{}':boxborderw={}"
":fontsize={}:fontcolor={}:fontfile='{}':textfile={}"
":reload=1:x='{}':y='{}'").format(
_text.box, _text.boxcolor, _text.boxborderw,
_text.fontsize, _text.fontcolor, _text.fontfile,
_text.textfile, _text.x, _text.y)
]
2019-06-07 10:42:11 -04:00
2018-01-07 07:58:45 -05:00
try:
2019-10-15 08:46:30 -04:00
if _playout.preview or stdin_args.desktop:
# preview playout to player
_ff.encoder = Popen([
2019-06-07 10:42:11 -04:00
'ffplay', '-hide_banner', '-nostats', '-i', 'pipe:0'
2019-09-08 15:24:02 -04:00
] + overlay, stderr=None, stdin=PIPE, stdout=None)
else:
_ff.encoder = Popen([
2019-09-08 15:24:02 -04:00
'ffmpeg', '-v', 'info', '-hide_banner', '-nostats',
'-re', '-thread_queue_size', '256',
'-i', 'pipe:0'] + overlay + _playout.post_comp_video
+ _playout.post_comp_audio + [
'-metadata', 'service_name=' + _playout.name,
'-metadata', 'service_provider=' + _playout.provider,
2019-05-28 15:22:10 -04:00
'-metadata', 'year={}'.format(year)
2019-09-08 15:24:02 -04:00
] + _playout.post_comp_extra + [_playout.out_addr], stdin=PIPE)
2018-01-07 07:58:45 -05:00
2019-08-09 11:55:21 -04:00
if _playlist.mode and not stdin_args.folder:
watcher = None
get_source = GetSourceIter()
2019-06-06 12:16:33 -04:00
else:
messenger.info('Start folder mode')
2019-09-03 15:14:40 -04:00
media = MediaStore()
2019-09-08 15:24:02 -04:00
watcher = MediaWatcher(media)
get_source = GetSource(media)
2019-05-28 15:48:53 -04:00
2019-06-06 16:02:20 -04:00
try:
for src_cmd in get_source.next():
2019-10-29 10:28:18 -04:00
messenger.debug('src_cmd: "{}"'.format(src_cmd))
2019-06-06 16:02:20 -04:00
if src_cmd[0] == '-i':
current_file = src_cmd[1]
else:
current_file = src_cmd[3]
messenger.info('Play: "{}"'.format(current_file))
2019-06-06 16:02:20 -04:00
with Popen([
'ffmpeg', '-v', 'error', '-hide_banner', '-nostats'
] + src_cmd + ff_pre_settings,
stdout=PIPE) as _ff.decoder:
2019-10-15 11:32:08 -04:00
while True:
buf = _ff.decoder.stdout.read(65424)
if not buf and _ff.decoder.poll() is not None:
2019-10-15 11:32:08 -04:00
break
_ff.encoder.stdin.write(buf)
except BrokenPipeError:
2019-10-29 10:28:18 -04:00
messenger.error('Broken Pipe!')
terminate_processes(watcher)
except SystemExit:
messenger.info('Got close command')
terminate_processes(watcher)
except KeyboardInterrupt:
messenger.warning('Program terminated')
terminate_processes(watcher)
2019-06-24 09:01:49 -04:00
# close encoder when nothing is to do anymore
if _ff.encoder.poll() is None:
_ff.encoder.terminate()
2019-06-24 09:01:49 -04:00
2018-01-07 07:58:45 -05:00
finally:
_ff.encoder.wait()
2018-01-07 07:58:45 -05:00
if __name__ == '__main__':
main()