ffmpeg -live_start_index -99999 -i 'https://….m3u8' -c copy something.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dateutil import tz | |
from jinja2 import Undefined | |
client_timezone = tz.gettz('PST8PDT') # timezone to translate to | |
@app.template_filter() | |
def dateformat(value, format=None, rebase=True): | |
if value is None or isinstance(value, Undefined): | |
return '' |