RtspServer icon indicating copy to clipboard operation
RtspServer copied to clipboard

RTSP Server , RTSP Pusher

Results 43 RtspServer issues
Sort by recently updated
recently updated
newest added

work done and add file link here https://fatalfeel.blogspot.com/2013/12/rtsp-server-for-h264-h265-aac.html

refer to live555 and use VLC play void H264or5Fragmenter::doGetNextFrame() // case 2 if (fHNumber == 264) { fInputBuffer[0] = (fInputBuffer[1] & 0xE0) | 28; // FU indicator fInputBuffer[1] = 0x80...

#auto add thread predefine and faster code #https://stackoverflow.com/questions/23250863/difference-between-pthread-and-lpthread-while-compiling TARGET1 = rtsp_server TARGET2 = rtsp_pusher TARGET3 = rtsp_h264_file CROSS_COMPILE = CXX = $(CROSS_COMPILE)g++ CC = $(CROSS_COMPILE)gcc #STRIP = $(CROSS_COMPILE)strip INC =...

if(sscanf(url+7, "%[^:]:%hu/%s", ip, &port, suffix) == 3) { } else if(sscanf(url+7, "%[^/]/%s", ip, suffix) == 2) { port = 554; } else { return false; } 这段代码需要调换下顺序,==2在前面,==3在后面。应该是你那边没有模拟到这种情况,正常的工具是不会出现这种情况,如果给过来的path没有带端口,就要出现内存错误,换顺序后就可以解决了,原因是==3放在前面,如果path不带端口,那边ip里面会存在多个字符串(多个\0结尾),那边插入map的时候会存在内存错误

从代码层次上看是把epool的事件和select事件混在一起处理了

如题,请问可以用在UWP项目中吗?

目前以及成功运行h264的码流推送服务,但是初测在局域网延时有2s左右,请问项目中有可能会造成延时的地方吗,还是应该从其它地方查。 应该是vlc有什么信息需要解析,用EasyPlayer的时候延迟在300ms,比较合理

需要怎么改呢?目前我只推视频,只显示第一帧视频就卡住了,麻烦指点一下

写压力测试程序 ,不停的开启/关闭Rtsp服务,出现anon_inode:[eventpoll] 及 pipe 文件句柄泄漏,修改EpollTaskScheduler::~EpollTaskScheduler() 析构函数 增加 if (epollfd_ >= 0) { close(epollfd_); epollfd_ = -1; } TaskScheduler::~TaskScheduler() 析构函数 增加 wakeup_pipe_->Close(); 增加上述代码后问题解决