Recent content by Corrado

  1. Corrado

    Using servel for internal use without certificates

    Is it possible to use webcallserver as an internal server in our network? All the work the server does is on a lan and we don't have any cert for it. Would you please advice how we can have it running without certs or how we can get some certs without any domain linked to them? thanks, Corrado
  2. Corrado

    Flashphoner as server for internal calls

    I think it can be done without a SIP server and i am following your guide at the below link, but it doesn't work. What am i missing here? we added enable_local_videochat = true...
  3. Corrado

    Flashphoner as server for internal calls

    Maybe i haven't been clear in my previous post, we only need voice NOT video, so maybe we could setup webcallserver to act as a sip just for internal calls of users attache to our internal vpn network. This way it would be easy to have a sip software working on a raspberry. Basicly we need to...
  4. Corrado

    Flashphoner as server for internal calls

    We need to talk from a webpage to a raspberry, would it be possible to do it using webcallserver? Maybe using it as an internal gateway without a sip server. If so is there any docs around? thanks, Corrado
  5. Corrado

    RTP direct sream

    this works and i can see it in player test: sudo ffmpeg -protocol_whitelist udp,file,h264,rtp -i rtsp.sdp -c:a libopus -ac 2 -ar 48000 -c:v copy -b:a 96K -b:v 500K -f rtsp -rtsp_transport tcp rtsp://127.0.0.1:554/test this doesn't: ffmpeg -re -i rtp://10.8.0.4:5600 -c:a libopus -ac 2 -ar...
  6. Corrado

    RTP direct sream

    ffmpeg -re -i rtp://10.8.0.4:5600 -c:a libopus -ac 2 -ar 48000 -c:v copy -b:a 96K -b:v 500K -f rtsp -rtsp_transport tcp rtsp://127.0.0.1/test output: [rtp @ 0xc4c7a0] Unable to receive RTP payload type 96 without an SDP file describing it
  7. Corrado

    RTP direct sream

    now i have: frame= 54 fps= 33 q=-1.0 Lsize=N/A time=00:00:01.70 bitrate=N/A speed=1.04x so i guess ffmpeg is sending bunny to webcallserver, now to make sure it is restreamed where can i see what comes out of flashphoner?
  8. Corrado

    RTP direct sream

    netstat -nlp | grep 554 tcp 0 0 0.0.0.0:554 0.0.0.0:* LISTEN 1222/java telnet localhost 554 Trying ::1... telnet: connect to address ::1: Connection refused Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. Your version...
  9. Corrado

    RTP direct sream

    if it works i should be able to see it where?
  10. Corrado

    RTP direct sream

    Both are run on same machine as where webcallserver is running
  11. Corrado

    RTP direct sream

    with domain name certified ffmpeg -stream_loop -1 -re -i Big_Buck_Bunny_720_10s_30MB.mp4 -c:a libopus -ac 2 -ar 48000 -c:v copy -b:a 96K -b:v 500K -f rtsp -rtsp_transport tcp rtsp://stream-msh.uav.it:554/test output: [tcp @ 0x985ec0] Connection to tcp://stream-msh.uav.it:554?timeout=0...
  12. Corrado

    RTP direct sream

    ffmpeg -stream_loop -1 -re -i Big_Buck_Bunny_720_10s_30MB.mp4 -c:a libopus -ac 2 -ar 48000 -c:v copy -b:a 96K -b:v 500K -f rtsp -rtsp_transport tcp rtsp://10.8.0.1:554/test output: [rtsp @ 0x1217400] method ANNOUNCE failed: 501 Not Implemented Could not write header for output file #0...
  13. Corrado

    RTP direct sream

    Just to clarify a little. We already have implemented on our site with websdk the player that works no problem, but it retrieves the stream trough rtsp from that board. The same board can output a passive rtp stream that goes point to point to a port and we would like to use it.
  14. Corrado

    RTP direct sream

    i got this message from ffmpeg: Stream #0:0: Video: h264 (Main), yuvj420p(pc, bt709, progressive), 1280x720, 14.99 fps, 14.99 tbr, 90k tbn, 180k tbc [rtsp @ 0x16454e0] method ANNOUNCE failed: 501 Not Implemented Could not write header for output file #0 (incorrect codec parameters ?): Server...
  15. Corrado

    RTP direct sream

    I read it but i still do not understand. Could you write what i should do to publish an h264 stream arriving on port 5600 of webcallserver? I guess i need ffmpeg to decode it but i don't understand exactly how it works. Should i make an sdp file? A more detailed answer would be much appreciated...
Top