Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
#!/bin/bash | |
# === INFO === | |
# ForceVPN | |
# Description: Force VPN tunnel for specific applications. | |
# If the VPN is down => blackhole the app network traffic. | |
# Better than a killswitch. IPv4. | |
VERSION="2.3.0" | |
# Author: KrisWebDev | |
# Requirements: Linux with kernel > 2.6.4 (released in 2008). |
''' | |
A prove of concept for pickling / unpickling an asyncio.Task object | |
Limitations of this demo code: | |
- Requires Stackless Python 3.7, because this Python implementation can pickle coroutine objects. | |
- Uses the pure python task implementation asyncio.tasks._PyTask | |
Copyright (C) 2021 Anselm Kruis |