-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SLS ERROR: CSLSSrt::libsrt_neterrno, err=5003, Operation not supported: Bad parameters. #1
Comments
maybe srt version is not right? |
hi, chenwdong, please paste your command, or maybe you can add 'sudo' before your command. |
./sls -c ../sls.conf |
srt { |
My account is root |
I am using the latest srt compiled project, tried many times, are the same error, what is the problem? |
I am using the latest srt compiled project, tried many times, are the same error, what is the problem?
…------------------ 原始邮件 ------------------
发件人: "Edward-Wu"<notifications@github.com>;
发送时间: 2019年10月19日(星期六) 晚上8:51
收件人: "Edward-Wu/srt-live-server"<srt-live-server@noreply.github.com>;
抄送: "那片海"<747535023@qq.com>;"Author"<author@noreply.github.com>;
主题: Re: [Edward-Wu/srt-live-server] why (#1)
hi, chenwdong, please paste your command, or maybe you can add 'sudo' before your command.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
hi,what is your os, and version? |
CentOS Linux release 7.2.1511 (Core) |
Are you compiling with the latest version, is the result different? |
Is it where I am doing wrong? |
I really want to try the latency, but I haven’t run it all the time. |
today i will use the lastest version of srt to test. please wait a minute. |
hi, please use the srt 1.3 temporary, i will spent time to resolve this issue on v1.4. |
thank you ! |
hi, chenwdong btw, i test the libsrt v1.4.0 for this issue, the reason is that srt update the result of srt_epoll_wait function , i have consulted with srt-team but no feedback. if you want use the libsrt v1.4.0, you can change the function CSLSGroup::handler() in SLSGroup.cpp file(Line:110): change from: i will wait for srt-team about the reason. |
Stopped for a short while This problem is my operation error, srt1.3 is OK |
Hi, Wu
I have an idea to develop srt-live-server into a nginx plugin, similar to nginx-rtmp-module, so that the uplink uses srt push stream, the downlink can be converted to rtmp, hls, http-flv, srt for streaming, This live broadcast will have udp mode and is compatible with rtmp,what do you think?
…------------------ 原始邮件 ------------------
发件人: "Edward-Wu"<notifications@github.com>;
发送时间: 2019年10月24日(星期四) 下午4:49
收件人: "Edward-Wu/srt-live-server"<srt-live-server@noreply.github.com>;
抄送: "那片海"<747535023@qq.com>;"Author"<author@noreply.github.com>;
主题: Re: [Edward-Wu/srt-live-server] SLS ERROR: CSLSSrt::libsrt_neterrno,err=5003, Operation not supported: Bad parameters. (#1)
hi, chenwdong
can you paste your cmd about flow stopped for a short while?
btw, i test the libsrt v1.4.0 for this issue, the reason is that srt update the result of srt_epoll_wait function , i have consulted with srt-team but no feedback.
if you want use the libsrt v1.4.0, you can change the function CSLSGroup::handler() in SLSGroup.cpp file(Line:110):
change from:
if (ret == SRT_ETIMEOUT)//6003
ret = SLSERROR(EAGAIN);
else
ret = CSLSSrt::libsrt_neterrno();
to
if (ret == SRT_ETIMEOUT)//6003
ret = SLSERROR(EAGAIN);
else{
//ret = CSLSSrt::libsrt_neterrno();
}
i will wait for srt-team about the reason.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
hi, chenwdong. |
I know that epoll is just an engine of nginx. It is completely possible to replace epoll of nginx with epoll of srt. |
i will try |
hi, chenwdong hope your great work about sls with nginx. thank you. |
thank you! |
good |
The text was updated successfully, but these errors were encountered: