-
Notifications
You must be signed in to change notification settings - Fork 4
/
TCPClip.py
606 lines (562 loc) · 24.3 KB
/
TCPClip.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
# TCPClip Class by DJATOM
# Version 2.4.0
# License: MIT
# Why? Mainly for processing on server 1 and encoding on server 2, but it's also possible to distribute filtering chain.
#
# Usage:
# Server side:
# from TCPClip import Server
# <your vpy code>
# Server('<ip addr>', <port>, get_output(), <threads>, <verbose>, <compression_method>, <compression_level>, <compression_threads>)
# Batches:
# py EP01.py
# py EP02.py
# ...
# py EP12.py
#
# Client side (plain encoding):
# from TCPClip import Client
# client = Client('<ip addr>', <port>, <verbose>)
# client.to_stdout()
# Batches:
# py client.py | x264 ... --demuxer "y4m" --output "EP01.264" -
# py client.py | x264 ... --demuxer "y4m" --output "EP02.264" -
# ...
# py client.py | x264 ... --demuxer "y4m" --output "EP12.264" -
#
# Notice: only frame 0 props will affect Y4M header.
#
# Client side (VS Source mode):
# from TCPClip import Client
# from vapoursynth import core
# clip = Client('<ip addr>', <port>, <verbose>).as_source(shutdown=True)
# <your next vpy code>
# clip.set_output()
# Batches:
# vspipe -y EP01.vpy - | x264 ... --demuxer "y4m" --output "EP01.264" -
# vspipe -y EP02.vpy - | x264 ... --demuxer "y4m" --output "EP02.264" -
# ...
# vspipe -y EP12.vpy - | x264 ... --demuxer "y4m" --output "EP12.264" -
#
# Notice: frame properties will be also copied.
# Notice No.2: If you're previewing your script, set shutdown=False. That will not call shutdown of Server when closing Client.
# Notice No.3: Compression threads are 1 by default, so no threadpool at all. You can set it to 0 and we will use half of script threads or set your own value (min 2 workers).
#
from vapoursynth import core, VideoNode, VideoFrame # pylint: disable=no-name-in-module
import numpy as np
import socket
from socket import AddressFamily # pylint: disable=no-name-in-module
import sys
import os
import time
import re
import pickle
import signal
import ipaddress
import struct
from threading import Thread
from concurrent.futures import ThreadPoolExecutor
from enum import Enum, IntEnum
from typing import cast, Any, Union, List, Tuple
try:
from psutil import Process
def get_usable_cpus_count() -> int:
return len(Process().cpu_affinity())
except BaseException:
pass
try:
import lzo
lzo_imported = True
except BaseException:
lzo_imported = False
class Version(object):
MAJOR = 2
MINOR = 4
BUGFIX = 0
class Action(Enum):
VERSION = 1
CLOSE = 2
EXIT = 3
HEADER = 4
FRAME = 5
class LL(IntEnum):
Crit = 1
Warn = 2
Info = 3
Debug = 4
class Util(object):
""" Various utilities for Server and Client. """
def __new__(cls):
""" Instantiate Utils as Singleton object """
if not hasattr(cls, 'instance'):
cls.instance = super(Util, cls).__new__(cls)
return cls.instance
def get_caller(self) -> Union[str, tuple]:
""" Some piece of code to retieve caller class stuff. """
def stack_(frame):
framelist = []
while frame:
framelist.append(frame)
frame = frame.f_back
return framelist
stack = stack_(sys._getframe(1))
if len(stack) < 2:
return 'Main'
parentframe = stack[1]
if 'self' in parentframe.f_locals:
parrent_cls = parentframe.f_locals['self']
return (parrent_cls.__class__.__name__, parrent_cls.log_level)
return 'Main'
def as_enum(self, level: str = 'info') -> LL:
""" Cast log level to LL Enum. """
if isinstance(level, str):
level = {
'crit': LL.Crit,
'warn': LL.Warn,
'info': LL.Info,
'debug': LL.Debug}.get(level)
return level
def message(self, level: str, text: str) -> None:
""" Output log message according to log level. """
facility, parrent_level = self.get_caller()
if self.as_enum(parrent_level) >= Util().as_enum(level):
print(f'{facility:6s} [{level}]: {text}', file=sys.stderr)
def get_proto_version(self, addr: str) -> AddressFamily:
if addr[0] == '[' and addr[-1] == ']':
addr = addr[1:-1]
version = ipaddress.ip_address(addr).version
return {
4: socket.AF_INET,
6: socket.AF_INET6}.get(
version,
socket.AF_INET)
class Helper():
""" Convenient helper for working with socket stuff. """
def __init__(self, soc: socket, log_level: Union[str, LL] = None) -> None:
""" Constructor for Helper """
self.soc = soc
self.log_level = Util().as_enum(log_level) if isinstance(
log_level, str) else log_level
def send(self, msg: any) -> None:
""" Send data to another endpoint. """
try:
msg = struct.pack('>I', len(msg)) + msg
self.soc.sendall(msg)
except ConnectionResetError:
Util().message('crit', 'send - interrupted by client.')
def recv(self) -> bytes:
""" Receive data. """
try:
raw_msglen = self.recvall(4)
if not raw_msglen:
return None
msglen = struct.unpack('>I', raw_msglen)[0]
return self.recvall(msglen)
except ConnectionResetError:
Util().message('crit', 'recv - interrupted by client.')
def recvall(self, n: int) -> bytes:
""" Helper method for recv. """
data = b''
try:
while len(data) < n:
packet = self.soc.recv(n - len(data))
if not packet:
return None
data += packet
except ConnectionAbortedError:
Util().message('crit', 'recvall - connection aborted.')
return data
class Server():
""" Server class for serving Vapoursynth's clips. """
def __init__(self,
host: str = None,
port: int = 14322,
clip: VideoNode = None,
threads: int = 0,
log_level: Union[str, LL] = 'info',
compression_method: str = None,
compression_level: int = 0,
compression_threads: int = 1) -> None:
""" Constructor for Server. """
self.log_level = Util().as_enum(log_level) if isinstance(
log_level, str) else log_level
self.compression_method = compression_method
self.compression_level = compression_level
self.compression_threads = compression_threads
if not isinstance(clip, VideoNode):
Util().message('crit', 'argument "clip" has wrong type.')
sys.exit(2)
if self.compression_method != None:
self.compression_method = self.compression_method.lower()
if self.compression_method == 'lzo' and not lzo_imported:
Util().message('warn',
'compression set to LZO but LZO module is not available. Disabling compression.')
self.compression_method = None
self.threads = core.num_threads if threads == 0 else threads
if self.compression_threads == 0:
self.compression_threads = self.threads // 2
if self.compression_threads != 1:
self.compression_pool = ThreadPoolExecutor(
max_workers=max(self.compression_threads, 2))
self.clip = clip
self.frame_queue_buffer = dict()
self.cframe_queue_buffer = dict()
self.last_queued_frame = -1
self.client_connected = False
self.soc = socket.socket(
Util().get_proto_version(host),
socket.SOCK_STREAM)
self.soc.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
Util().message('info', 'socket created.')
try:
self.soc.bind((host, port))
Util().message('info', 'socket bind complete.')
except socket.error:
Util().message('crit', f'bind failed. Error: {sys.exc_info()}')
sys.exit(2)
self.soc.listen(2)
Util().message('info', 'listening the socket.')
while True:
conn, addr = self.soc.accept()
ip, port = str(addr[0]), str(addr[1])
Util().message('info', f'accepting connection from {ip}:{port}.')
try:
if not self.client_connected:
self.conn = conn
self.client_connected = True
Thread(target=self.server_loop, args=(ip, port)).start()
else:
Helper(conn, self.log_level).send(pickle.dumps('busy'))
Util().message('info', 'client already connected, server busy!')
conn.close()
Util().message('info', f'connection {ip}:{port} closed.')
except BaseException:
Util().message(
'crit', f'can\'t start main server loop! {sys.exc_info()}')
self.soc.close()
def server_loop(self, ip: str, port: int) -> None:
""" Process client's requests. """
self.helper = Helper(self.conn, self.log_level)
while True:
input = self.helper.recv()
try:
query = pickle.loads(input)
except BaseException:
query = dict(type=Action.CLOSE)
query_type = query['type']
if query_type == Action.VERSION:
Util().message('debug', f'requested TCPClip version.')
self.helper.send(
pickle.dumps(
(Version.MAJOR, Version.MINOR, Version.BUGFIX)))
Util().message('debug', f'TCPClip version sent.')
elif query_type == Action.CLOSE:
self.helper.send(pickle.dumps('close'))
for frame in list(self.frame_queue_buffer):
del self.frame_queue_buffer[frame]
Util().message('debug', f'frame {frame} freed.')
self.frame_queue_buffer.clear()
self.conn.close()
self.client_connected = False
Util().message('info', f'connection {ip}:{port} closed.')
return
elif query_type == Action.EXIT:
self.helper.send(pickle.dumps('exit'))
self.conn.close()
self.client_connected = False
Util().message(
'info', f'connection {ip}:{port} closed. Exiting, as client asked.')
os._exit(0)
return
elif query_type == Action.HEADER:
Util().message('debug', f'requested clip info header.')
self.get_meta()
Util().message('debug', f'clip info header sent.')
elif query_type == Action.FRAME:
Util().message('debug', f'requested frame # {query["frame"]}.')
self.get_frame(query['frame'], query['pipe'])
Util().message('debug', f'frame # {query["frame"]} sent.')
else:
self.conn.close()
self.client_connected = False
Util().message(
'warn', f'received query has unknown type. Connection {ip}:{port} closed.')
return
def get_meta(self) -> None:
""" Query clip metadata and send to client. """
clip = self.clip
props = dict(clip.get_frame(0).props)
self.helper.send(
pickle.dumps(
dict(
format=dict(
id=clip.format.id,
name=clip.format.name,
color_family=int(clip.format.color_family),
sample_type=int(clip.format.sample_type),
bits_per_sample=clip.format.bits_per_sample,
bytes_per_sample=clip.format.bytes_per_sample,
subsampling_w=clip.format.subsampling_w,
subsampling_h=clip.format.subsampling_h,
num_planes=clip.format.num_planes
),
width=clip.width,
height=clip.height,
num_frames=clip.num_frames,
fps_numerator=clip.fps.numerator,
fps_denominator=clip.fps.denominator,
props=props,
compression_method=self.compression_method
)
)
)
def execute_parallel_lzo(self, frame: int = 0, pipe: bool = False):
""" Compress frames using LZO method. """
Util().message(
'debug', f'execute_parallel_lzo({frame}) called.')
try:
out_frame = self.frame_queue_buffer.pop(frame).result()
except KeyError:
out_frame = self.clip.get_frame_async(frame).result()
self.last_queued_frame = frame
frame_data = []
for plane in out_frame.planes():
frame_data.append(np.asarray(plane))
frame_data = lzo.compress(pickle.dumps(
frame_data), self.compression_level)
if pipe:
return frame_data
else:
frame_props = dict(out_frame.props)
return frame_data, frame_props
def get_frame(self, frame: int = 0, pipe: bool = False) -> None:
""" Query arbitrary frame and send it to Client. """
try:
usable_requests = min(self.threads, get_usable_cpus_count())
usable_compression_requests = min(
self.compression_threads, get_usable_cpus_count())
except BaseException:
usable_requests = self.threads
usable_compression_requests = self.compression_threads
for pf in range(min(usable_requests, self.clip.num_frames - frame)):
frame_to_pf = int(frame + pf)
if frame_to_pf not in self.frame_queue_buffer and self.last_queued_frame < frame_to_pf:
self.frame_queue_buffer[frame_to_pf] = self.clip.get_frame_async(
frame_to_pf)
self.last_queued_frame = frame_to_pf
Util().message(
'debug', f'get_frame_async({frame_to_pf}) called at get_frame({frame}).')
if self.compression_method == 'lzo':
if self.compression_threads != 1:
for cpf in range(min(usable_compression_requests, self.clip.num_frames - frame)):
frame_to_pf = int(frame + cpf)
if frame_to_pf not in self.cframe_queue_buffer:
self.cframe_queue_buffer[frame_to_pf] = self.compression_pool.submit(
self.execute_parallel_lzo, frame_to_pf, pipe)
if pipe:
frame_data = self.cframe_queue_buffer.pop(frame).result()
else:
frame_data, frame_props = self.cframe_queue_buffer.pop(
frame).result()
if self.compression_method == None or self.compression_threads == 1:
try:
out_frame = self.frame_queue_buffer.pop(frame).result()
except KeyError:
out_frame = self.clip.get_frame_async(frame).result()
self.last_queued_frame = frame
frame_data = [np.asarray(plane) for plane in out_frame.planes()]
frame_props = dict(out_frame.props)
if self.compression_method == 'lzo' and self.compression_threads == 1:
frame_data = lzo.compress(pickle.dumps(
frame_data), self.compression_level)
if pipe:
self.helper.send(pickle.dumps(frame_data))
else:
self.helper.send(pickle.dumps((frame_data, frame_props)))
class Client():
""" Client class for retrieving Vapoursynth clips. """
def __init__(
self,
host: str,
port: int = 14322,
log_level: str = 'info',
shutdown: bool = False) -> None:
""" Constructor for Client. """
self.log_level = Util().as_enum(log_level) if isinstance(
log_level, str) else log_level
self.shutdown = shutdown
self.compression_method = None
self._stop = False # workaround for early interrupt
try:
self.soc = socket.socket(
Util().get_proto_version(host),
socket.SOCK_STREAM)
self.soc.connect((host, port))
self.helper = Helper(self.soc, self.log_level)
except ConnectionRefusedError:
Util().message(
'crit',
'connection time-out reached. Probably closed port or server is down.')
sys.exit(2)
def __del__(self) -> None:
""" Destructor for Client. """
if self.shutdown: # kill server on exit
self.exit()
def query(self, data: dict) -> Any:
""" Handle arbitrary queries via single method. """
try:
self.helper.send(pickle.dumps(data))
answer = pickle.loads(self.helper.recv())
if answer == "busy":
Util().message('crit', f'server is busy.')
sys.exit(2)
return answer
except BaseException:
Util().message('crit', f'failed to make query {data}.')
sys.exit(2)
def version(self, minor: bool = False) -> Union[tuple, int]:
""" Wrapper for requesting Server's version. """
v = self.query(dict(type=Action.VERSION))
if minor:
return v
else:
return v[0]
def close(self) -> None:
""" Wrapper for terminating Client's connection. """
self.query(dict(type=Action.CLOSE))
self.soc.close()
def exit(self, code: int = 0) -> None:
""" Wrapper for terminating Client and Server at once. """
try:
self.query(dict(type=Action.EXIT))
self.soc.close()
sys.exit(code)
except BaseException:
pass
def get_meta(self) -> dict:
""" Wrapper for requesting clip's info. """
meta = self.query(dict(type=Action.HEADER))
if meta['compression_method'] == 'lzo':
if not lzo_imported:
raise ValueError(
'got LZO compression from the Server but we can\'t decompress that since no LZO module loaded. Unable to continue.')
else:
self.compression_method = meta['compression_method']
return meta
def get_frame(self, frame: int,
pipe: bool = False) -> Union[Tuple[list, dict], list]:
""" Wrapper for requesting arbitrary frame from the Server. """
return self.query(dict(type=Action.FRAME, frame=frame, pipe=pipe))
def get_y4m_csp(self, clip_format: dict) -> str:
""" Colorspace string builder. """
if clip_format['bits_per_sample'] > 16:
Util().message('crit', 'only 8-16 bit YUV or Gray formats are supported for Y4M outputs.')
self.exit(2)
bits = clip_format['bits_per_sample']
if clip_format['num_planes'] == 3:
y = 4
w = y >> clip_format['subsampling_w']
h = y >> clip_format['subsampling_h']
u = abs(w)
v = abs(y - w - h)
csp = f'{y}{u}{v}'
else:
csp = None
return {1: f'Cmono{bits}', 3: f'C{csp}p{bits}'}.get(
clip_format['num_planes'], 'C420p8')
def sigint_handler(self, *args) -> None:
""" Handle "to_stdout()"'s cancelation. """
self._stop = True
def to_stdout(self) -> None:
""" Pipe frames via stdout. """
if self.log_level >= LL.Info:
start = time.perf_counter()
server_version = self.version()
if server_version != Version.MAJOR:
Util().message(
'crit',
f'version mismatch!\nServer: {server_version} | Client: {Version.MAJOR}')
self.exit(2)
header_info = self.get_meta()
if len(header_info) == 0:
Util().message('crit', 'wrong header info.')
self.exit(2)
if 'format' in header_info:
clip_format = header_info['format']
else:
Util().message('crit', 'missing "Format".')
self.exit(2)
if 'props' in header_info:
props = header_info['props']
else:
Util().message('crit', 'missing "props".')
self.exit(2)
if '_FieldBased' in props:
frameType = {2: 't', 1: 'b', 0: 'p'}.get(props['_FieldBased'], 'p')
else:
frameType = 'p'
if '_SARNum' and '_SARDen' in props:
sar_num, sar_den = props['_SARNum'], props['_SARDen']
else:
sar_num, sar_den = 0, 0
num_frames = header_info['num_frames']
width = header_info['width']
height = header_info['height']
fps_num = header_info['fps_numerator']
fps_den = header_info['fps_denominator']
csp = self.get_y4m_csp(clip_format)
sys.stdout.buffer.write(
bytes(
f'YUV4MPEG2 W{width} H{height} F{fps_num}:{fps_den} I{frameType} A{sar_num}:{sar_den} {csp} XYSCSS={csp} XLENGTH={num_frames}\n',
'UTF-8'))
signal.signal(signal.SIGINT, self.sigint_handler)
for frame_number in range(num_frames):
if self._stop:
break
if self.log_level >= LL.Info:
frameTime = time.perf_counter()
eta = (frameTime - start) * (num_frames -
(frame_number + 1)) / ((frame_number + 1))
frame_data = self.get_frame(frame_number, pipe=True)
if self.compression_method == 'lzo':
frame_data = pickle.loads(lzo.decompress(frame_data))
sys.stdout.buffer.write(bytes('FRAME\n', 'UTF-8'))
for plane in frame_data:
sys.stdout.buffer.write(plane)
if self.log_level >= LL.Info:
sys.stderr.write(
f'Processing {frame_number}/{num_frames} ({frame_number/frameTime:.003f} fps) [{float(100 * frame_number / num_frames):.1f} %] [ETA: {int(eta//3600):d}:{int((eta//60)%60):02d}:{int(eta%60):02d}] \r')
def as_source(self) -> VideoNode:
""" Expose Client as source filter for Vapoursynth. """
def frame_copy(n: int, f: VideoFrame) -> VideoFrame:
fout = f.copy()
frame_data, frame_props = self.get_frame(n, pipe=False)
if self.compression_method == 'lzo':
frame_data = pickle.loads(lzo.decompress(frame_data))
for p in range(fout.format.num_planes):
np.asarray(fout.get_write_array(p))[:] = frame_data[p]
for i in frame_props:
fout.props[i] = frame_props[i]
return fout
server_version = self.version()
assert server_version == Version.MAJOR, f'Version mismatch!\nServer: {server_version} | Client: {Version.MAJOR}'
header_info = self.get_meta()
assert len(header_info) > 0, 'Wrong header info.'
assert 'format' in header_info, 'Missing "Format".'
clip_format = header_info['format']
source_format = core.register_format(
clip_format['color_family'],
clip_format['sample_type'],
clip_format['bits_per_sample'],
clip_format['subsampling_w'],
clip_format['subsampling_h'])
dummy = core.std.BlankClip(
width=header_info['width'],
height=header_info['height'],
format=source_format,
length=header_info['num_frames'],
fpsnum=header_info['fps_numerator'],
fpsden=header_info['fps_denominator'],
keep=True)
source = core.std.ModifyFrame(dummy, dummy, frame_copy)
return source