i want to stream mpeg ts stored in a file to the local machine. i created the config file as :
**********************************************************
BEGIN "Vls"
LogFile = "vls.log" # log file
ScreenLog = "enable" # log to the console
SystemLog = "disable" # log to the systemlog
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 = "mstream:master" # password is 'monitor'
END
# Telnet Administration
BEGIN "Telnet"
Domain = "Inet4" # Inet4 or Inet6
LocalPort = "9999" # Port to use for that purpose
Use = "true"
END
# Streams sources declaration
BEGIN "Inputs"
local1 = "local" # Local input example
END
# Channel (outputs) declaration
BEGIN "Channels"
localhost = "network"
END
# Channels configuration
BEGIN "localhost" # The client is on the same host as the server
Domain = "inet4"
Type = "unicast"
DstHost = "localhost"
DstPort = "9888"
END
BEGIN "Input"
FilesPath = "c:\project"
ProgramCount = "1"
END
BEGIN "1"
Name = "ca"
Type = "Mpeg2-TS"
FileName = "c:\project\ca.ts"
END
********************************************************
when i start the program it shows that the program is started but i dont get data at the given port.
plz help me out.........