Code: Select all
vlc --intf telnet -vvvv
Code: Select all
Welcome, Master
> new test vod
> setup test mux mp2t input file.mpg enabled
>
I cheched the output of vlc and noticed that rtsp-module informed me that client_port should be 4431, later on sout-module ignores that port and tries to send stream to corrent client_ip, but on port 0 and also port 1234.
Code: Select all
[00000253] vod_rtsp private debug: created RTSP url: /test
[00000253] vod_rtsp private debug: media has 1 declared ES
[00000253] vod_rtsp private debug: - ES mp2t (/test/trackID=0)
[00000256] main http server debug: Connection from xx.xx.xx.xx
[00000253] vod_rtsp private debug: RtspCallback query: type=7
[00000253] vod_rtsp private debug: RtspCallback query: type=8
[00000253] vod_rtsp private debug: HTTPD_MSG_SETUP: transport=MP2T/H2221/UDP;unicast;client_port=4431
[00000253] vod_rtsp private debug: HTTPD_MSG_SETUP: unicast ip=xx.xx.xx.xx port=4431
[00000253] vod_rtsp private debug: new session: 1804289383, connections: 0
[00000253] vod_rtsp private debug: RtspCallback query: type=9
[00000253] vod_rtsp private debug: HTTPD_MSG_PLAY for session: 1804289383
[00000308] [Media: test] main input debug: waiting for thread completion
[00000309] [Media: test] main stream output debug: stream=`std'
[00000310] [Media: test] main private debug: looking for sout stream module: 1 candidate
[00000308] [Media: test] main input debug: thread 3009399728 (input) created at priority 0 (input/input.c:264)
[00000310] [Media: test] main private debug: set sout option: sout-standard-access to udp
[00000310] [Media: test] main private debug: set sout option: sout-standard-dst to xx.xx.xx.xx:0
[00000310] [Media: test] main private debug: set sout option: sout-standard-mux to ts
[00000310] [Media: test] stream_out_standard private debug: creating `udp/ts://xx.xx.xx.xx:0'
[00000310] [Media: test] stream_out_standard private debug: extension is 243:0
[00000310] [Media: test] stream_out_standard private debug: extension -> mux=(null)
[00000310] [Media: test] stream_out_standard private debug: using `udp/ts://xx.xx.xx.xx:0'
[00000312] [Media: test] main private debug: looking for sout access module: 1 candidate
[00000312] [Media: test] main private debug: net: connecting to xx.xx.xx.xx port 1234
[00000314] [Media: test] main private debug: thread 2998909872 (sout write thread) created at priority 0 (udp.c:268)
[00000312] [Media: test] access_output_udp private debug: udp access output opened(xx.xx.xx.xx:1234)
[00000312] [Media: test] main private debug: using sout access module "access_output_udp"
[00000310] [Media: test] stream_out_standard private debug: access opened
[00000315] [Media: test] main private debug: looking for sout mux module: 1 candidate
...
...
[00000314] [Media: test] access_output_udp private warning: send error: Connection refused
[00000314] [Media: test] access_output_udp private warning: send error: Connection refused
[00000314] [Media: test] access_output_udp private warning: send error: Connection refused
I am not so familiar on vlc-source that I could find the mistake. Can anyone help me on this matter.