~aleteoryx/employ

96dba85659ed02ed96fb1bce71f8a87c23772d24 — Aleteoryx 5 days ago 57dcb40
oops
1 files changed, 3 insertions(+), 3 deletions(-)

M queuers/reenc.py
M queuers/reenc.py => queuers/reenc.py +3 -3
@@ 26,8 26,8 @@ from typing import Optional
from os import system
import socket

#RESOLUTIONS=[(1280, 720), (1366, 768), (1920, 1080)]
RESOLUTIONS=[(710, 480), (1136, 768)]
RESOLUTIONS=[(1280, 720), (1366, 768), (1920, 1080)]
#RESOLUTIONS=[(710, 480), (1136, 768)]

argv0 = 'reenc.py'



@@ 41,7 41,7 @@ class JobError(Exception):
def send_cmd(reader, writer, cmd):
	lines = []

	writer.write(cmd+'\n')
	writer.write(cmd.encode()+b'\n')
	writer.flush()
	while True:
		line = reader.readline()