Nikita Melentev
Nikita Melentev
## Environment data ### vscode Version: 1.44.2 Commit: ff915844119ce9485abfe8aa9076ec76b5300ddd Date: 2020-04-16T17:50:03.709Z Electron: 7.1.11 Chrome: 78.0.3904.130 Node.js: 12.8.1 V8: 7.8.279.23-electron.0 OS: Linux x64 4.15.0-96-generic Extension version: 2020.4.74986 OS and version: ubuntu...
Coroutines are first class citizens in python world.
For fast prototyping `Service.timer` decorator is enough, but for flexible solution this need to be improved because this do not allows to: * Set timer interval at runtime (from config,...
Is it possible to build embedded subtitles with `PyAV`? I don't see `encode` method of `SubtitleStream`. And I don't understand how to construct subtitles "frame".
## Overview I want to shut up any logging from `av` and underlying `ffmpeg`. I tried all of this: ``` python logging.basicConfig() av.logging.set_level(av.logging.PANIC) logging.getLogger('libav').setLevel(logging.ERROR) ``` Btw, docs said there is...
Secure FTP
After #36 I read about FTPS, SFTP and FTP over SSH. - SFTP is SSH extension and we should ignore it - FTPS is extension of FTP (https://tools.ietf.org/html/rfc2228) - FTP...
``` python import itertools import asyncio import contextlib import aiozmq.rpc async def foo(): client = await aiozmq.rpc.connect_rpc(connect="tcp://127.0.0.1:5555", timeout=0) for i in itertools.count(): if i % 1000 == 0: print(len(client._proto.calls)) with...
pyqt5
Nice idea to have pyqt5, I think. Probably I missed something with pyqt4 pyqt5 difference, as they are pretty similar.