# netty-stream **Repository Path**: samwen2019/netty-stream ## Basic Information - **Project Name**: netty-stream - **Description**: a media server by netty framework , support rtsp httpflv websocketflv - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-07-22 - **Last Updated**: 2023-11-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # netty-stream netty stream a media server by netty framework h264 test file path https://github.com/wangdxh/Desert-Eagle/blob/master/streampushclient/testokmy.h264 format is: 4byte-frame length(Little Endian) follow by h264 raw frame ### client push is : java -jar netty-streampushclient-1.0-SNAPSHOT.jar filepath streamname ip port streamname deault is 123abcdef32153421 ip is 127.0.0.1 port is 1985 ### server : java -jar netty-streamserver-1.0-SNAPSHOT.jar after server is running, there r 5 tcp ports is listening * 1985 accept client push raw h264 stream * 1984 http flv * 1983 websocket flv * 554 rtsp just udp transport * 80 list all the stream and the stream's url. get http://127.0.0.1 to the detail url infor. ``` {"123abcdef32153421": { "wsflv": "ws://127.0.0.1:1983/live/liveflv?deviceid=123abcdef32153421", "httpflv": "http://127.0.0.1:1984/live/liveflv?deviceid=123abcdef32153421", "rtsp": "rtsp://127.0.0.1/live/livestream?deviceid=123abcdef32153421" }} ``` ### play test when u get the flv url,u can test it in : with chrome open http://106.15.184.203:8001/ input the httpflv or the wsflv url in the Stream URL, then u can play the url. rtsp url can use vlc player to play.