The VLS is running on my local machine with following configuration file.
# =======================================
BEGIN "Vls"
LogFile = "vls.log"
ScreenLog = "enable"
SystemLog = "enable"
END
BEGIN "Groups"
monitor = "help|browse|logout"
master = "help|browse|start|resume|suspend|stop|shutdown|logout|config|program|input|channel|show"
END
BEGIN "Users"
admin = "test:master"
END
# Telnet Administration
BEGIN "Telnet"
Domain = "Inet4"
LocalPort = "9999"
Use = "true"
END
# Streams sources declaration
BEGIN "Inputs"
local1 = "local"
END
# Channel (outputs) declaration
BEGIN "Channels"
localhost = "network"
END
# Channels configuration
BEGIN "localhost"
Domain = "inet4"
Type = "unicast"
DstHost = "10.1.2.105"
DstPort = "31000"
END
BEGIN "Input"
FilesPath = "C:\Program Files\VLS"
ProgramCount = "1"
END
BEGIN "1"
Name = "Test"
Type = "Mpeg2-TS"
FileName = "C:\Program Files\VLS\Test.TS"
END
# =======================================
VLS can be connected via telnet, but I am not sure how can control the VLS which starts to stream the mpeg-ts file to the corresponding IP address?
Thank you very much