https://github.com/goroya/kurento_rtpendpoint_output_test
For testing Kurento RTPEndpoint output
https://github.com/goroya/kurento_rtpendpoint_output_test
kurento nodejs webrtc
Last synced: about 1 month ago
JSON representation
For testing Kurento RTPEndpoint output
- Host: GitHub
- URL: https://github.com/goroya/kurento_rtpendpoint_output_test
- Owner: goroya
- Created: 2017-08-29T02:15:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-29T02:32:08.000Z (almost 9 years ago)
- Last Synced: 2025-07-05T01:04:25.367Z (11 months ago)
- Topics: kurento, nodejs, webrtc
- Language: JavaScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Description
This Repo is RTPEndpoint test program of Kurento Media Server.
This program cannot play RTPEndpoint RTP stream!!!!!!!!!!!!!
I am investigating how to use RTPEndpoint.
This program make following pipline.
PlayerEndpoint -> RTPEndpoint
|
-> RecorderEndpoint
If someone knows the problem, please let me know.
I want to play RTP stream from Kurento Media Server sending from RTPEndpoint.
I attempt
## How to use
Please use the following command.
```
npm install
node main --ws_uri [kurento server url] --file_uri [record file path] --video_file [video file path playing by Player Endpoint ]
example) node main --ws_uri "ws://192.168.7.119:8888/kurento" --file_uri "file:///tmp/recod.webm" --video_file "file:///home/test/Desktop//output.mp4"
```
This program input input.sdp to RtpEndpointForPlayer.processOffer.
This program make output.sdp made by RtpEndpointForPlayer.processOffer.
I attempted play rtp stream using output.sdp by vlc player.
But nothing was played.
The files sent by PlayerEndpoint are as follows.
http://www.gomplayer.jp/img/sample/mp4_h264_aac.mp4
(This is short movie. So I have linked several videos with the following command.)
(ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "concat=n=2:v=1:a=1" output.mp4)
Recording is done.
Why?