blob: 0749485f2a4b514bdc64890a8b0344cd99e0e195 (
plain)
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
|
#!/usr/bin/env python2
#import socket
#TCP_IP = '127.0.0.1'
#TCP_PORT = 5005
#BUFFER_SIZE = 1024
#MESSAGE = "process: file1.mid; plugin: Omnisphere.vst; output: file2.wav"
#
#s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#s.connect((TCP_IP, TCP_PORT))
#s.send(MESSAGE)
#data = s.recv(BUFFER_SIZE)
#s.close()
#
#print "received data:", data
import socket
TCP_IP = '127.0.0.1'
TCP_PORT = 5005
BUFFER_SIZE = 20 # Normally 1024, but we want fast response
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((TCP_IP, TCP_PORT))
s.listen(1)
def processData(data_string):
parts = data_string.split(";")
#MESSAGE = "file1.mid;Omnisphere.vst;file2.wav"
process = parts[0];
plugin = parts[1];
output = parts[2];
#call reaper internal functions here
insert = RPR_InsertMedia(parts[0], 1);
conn, addr = s.accept()
print 'Connection address:', addr
while 1:
data = conn.recv(BUFFER_SIZE)
if not data: break
print "received data:", data
processData(data); #what is conn.send(data)?
response_string = "Data recieved! processing...%s" % (data);
conn.send(response_string) # echo...something like this is ok? looks so, test it
# conn.send(data) # echo
conn.close()
#so this is basically it? yep ok I'm just going to look quickly at the reaper api to see if I can find the right functions
#well I'm not seeing what I need right away...do you think I should look for a similar script, or try to study the api intensely? it's python already so it should work well arlight I'll work from here...thanks! no problems
|