-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia_sender.py
55 lines (48 loc) · 2.23 KB
/
media_sender.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
#! /usr/bin/env python
# Copyright (c) 2013-2022, Rethink Robotics Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import socket
import sys
#Default settings
start_delimiter = ";" # Sawyer signal start delimiter
DEFAULT_SAWYER_IP = "172.20.30.188"
DEFAULT_SAWYER_PORT = "4000"
DEFAULT_SERVER_IP = "172.20.30.90"
DEFAULT_SERVER_PORT = "3007"
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(5) # 5 seconds
print ("This is a TCP/IP media sender script for sawyer")
print ("Please type the following details or press enter to use default value")
SAWYER_IP = input("Enter Sawyer IP Address: [Default: " + DEFAULT_SAWYER_IP + "]") or DEFAULT_SAWYER_IP
SAWYER_PORT = input("Enter Sawyer Device Port Number: [Default: " + DEFAULT_SAWYER_PORT + "]") or DEFAULT_SAWYER_PORT
SERVER_IP = input("Enter Media Server IP Address: [Default: " + DEFAULT_SERVER_IP + "]") or DEFAULT_SERVER_IP
SERVER_PORT = input("Enter Media Server Port Number: [Default: " + DEFAULT_SERVER_PORT + "]") or DEFAULT_SERVER_PORT
server_address = (SAWYER_IP, int(SAWYER_PORT))
print('Connecting to the sawyer @ {} on port {}'.format(*server_address))
try:
# Connect the socket to the port where the sawywer is listening
sock.connect(server_address)
except socket.error as msg:
print ("Caught exception Socket Error: %s" % msg)
print ("Error when connecting to the sawyer. Exiting this script")
exit()
print("Connection succeded! (press Ctrl+C anytime to quit)")
print("")
print("")
while True:
filename = input("Enter filename (for example \"4.mp4\"): ")
message = start_delimiter + 'http://' + SERVER_IP + ":" + SERVER_PORT + "/" + filename
print('sending {!r}'.format(message))
sock.send(bytes(message, "utf8"))