I hereby claim:
- I am billyshambrook on github.
- I am bshambrook (https://keybase.io/bshambrook) on keybase.
- I have a public key whose fingerprint is 798D 93CE 8981 64CD 1D14 1608 A7A4 98D4 D12A 0D17
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| """ | |
| Make sure you have "cryptography" and "botocore" installed! | |
| """ | |
| import datetime | |
| import functools | |
| from cryptography.hazmat.backends import default_backend | |
| from cryptography.hazmat.primitives import hashes | |
| from cryptography.hazmat.primitives import serialization |
| import logging | |
| import signal | |
| import socket | |
| import sys | |
| import docker | |
| import boto3 | |
| logging.basicConfig(level=logging.INFO) |
| import asyncio | |
| import json | |
| import re | |
| import subprocess | |
| import aioamqp | |
| async def rsync(loop): | |
| """ """ | |
| transport, protocol = await aioamqp.connect() |
| import pytest | |
| def pytest_addoption(parser): | |
| parser.addoption("--integration", action="store_true", help="run integration tests") | |
| def pytest_runtest_setup(item): | |
| if 'integration' in item.keywords: | |
| item.config.getoption("--integration", skip=True) |
| import logging | |
| import time | |
| import pika | |
| logger = logging.getLogger(__name__) | |
| class Channel(object): |
| import functools | |
| import inspect | |
| import graphviz | |
| from PyQt4 import QtCore | |
| from PyQt4 import QtGui | |
| class MyGraph(object): | |
| def __init__(self): |
| import functools | |
| import inspect | |
| import log | |
| from PyQt4 import QtCore | |
| from PyQt4 import QtGui | |
| logger = log.getLogger(__name__) |
| """ | |
| Requires FFprobe installed. | |
| """ | |
| import argparse | |
| import json | |
| import logging | |
| import subprocess | |
| logger = logging.getLogger('encode_tests') |
| ffmpeg -i input.mpg -map 0 -c copy -an -f segment -reset_timestamps 1 -segment_time 10 |