Search results

  1. Max

    webm file (recorded on vp8 stream) using the rest API has no sound

    Seem like all the streams are video only or audio only. For video only streams, there will be no sound in recording unless you mux it using one of the ways recommended in this post
  2. Max

    При подключении наушников к устройству, звук идет через динамики устройства

    Отключить спикерфон можно при помощи метода Flashphoner.getAudioManager().setUseSpeakerPhone(false) Пример использования в исходном коде Media Devices здесь
  3. Max

    Record separately video stream and audio stream and mux them when playing

    Good day. There are two options to do this: 1. (Low cost way) You can record video and audio stream to different files and then mux them using ffmpeg. This way cannot provide audio and video synchronization especially if two different sources are used, so out of lipsync will occur. 2. You can...
  4. Max

    iOS 14 crash after calling play() for each streaming source

    Good day. The ticket WCS-2853 is on testing stage. We'll let you know in this topic when Swift SDK implementation and examples will be ready.
  5. Max

    webm file (recorded on vp8 stream) using the rest API has no sound

    Good day. Please check if audio track is present in the stream to be recorded on statistics page http://wcs:8081/?action=stat&params=streams_synchronization, for example -----Stream Stats----- streams_synchronization=test/-41 Normally, the absolute value should be below 500, otherwise well be...
  6. Max

    Problem with MCU Custom layout Template

    Good day. In the latest builds, picture-in-picture mixer layout is supported. To enable this, update WCS to latest build from this page and add the following mixer option to flashphoner.properties file mixer_video_desktop_fullscreen=true In this case, you don't need custom layout to get this result:
  7. Max

    How can I create phone calling functionality on my webpage

    Good day. Please read this article
  8. Max

    Stream Recording

    You can set the folder to save recording files with the following parameter record_dir=/opt/records Note that in latest WCS builds you should either set the permissions to flashphoner user to the custom recordings folder sudo chown -R flashphoner /opt/records or start WCS as root cd...
  9. Max

    How complete facebook live setup in aws ec2 with web call server.

    We cannot reproduce the issue using your entry point Please describe how do you test step by step. Also please provide SSH access to the server using this private from, we will try to reproduce your test
  10. Max

    2 seconds freeze in stream

    This seems like VP8->H264 transcoding. The stripCodecs option strips the codec from browsers SDP, so this codec is not used any more. We recommend to remove the option from client code or set it to stripCodecs: "VP8" to exclude VP8 codec usage if you need H264 only. Then, if stream quality is...
  11. Max

    RTMP Stream with error of Failed with ICE Timeout

    Good day. Do you publish RTMP stream from MP4 file, for example ffmpeg -i file.mp4 -preset ultrafast -acodec aac -ar 48000 -vcodec h264 -strict -2 -f flv "rtmp://wcs:1935/live/stream1" and then try to play the stream via WebRTC (in Player example) as stream1? If not, please clarify exactly how...
  12. Max

    Hardware requirements for 8 Chat rooms (2 party each) simultaneous

    Please ask the license questions to sales@flashphoner.com
  13. Max

    webm -> mp4

    Допустим, Вы републикуете поток stream1 на тот же сервер по RTMP POST /rest-api/push/startup HTTP/1.1 Host: localhost:8081 Content-Type: application/json { "streamName": "stream1", "rtmpUrl":"rtmp://localhost:1935/live", } По умолчанию, поток будет опубликован на том же сервере под...
  14. Max

    Низкая пропускная способность сети

    Добрый день. Попробуйте включить многопоточное шифрование WebRTC трафика, добавив следующие настройки в файл flashphoner.properties rtp_paced_sender=true rtp_paced_sender_initial_rate=200000 rtp_paced_sender_increase_interval=50 rtp_paced_sender_k_up=0.9 Кроме того, рекомендуем использовать...
  15. Max

    webm -> mp4

    Pushed будет RTMP. В результате будет два стрима: исходный WebRTC и pushed RTMP.
  16. Max

    How complete facebook live setup in aws ec2 with web call server.

    Yes, you should publish stream before republishing it via RTMP You can republish the same stream to a number of RTMP servers simultaneously when using REST API. But, if you're using Stream object option rtmpUrl on client side, you can republish the stream to only one RTMP server. So you can...
  17. Max

    2 seconds freeze in stream

    Please check if there is stripCodecs: "H264" options in client side code. Also, set H264 codec as priotity in the following parameter: codecs=opus,...,h264,vp8,... h264 should be listed before vp8 /stream/startRecording REST query may be applied to a stream published at any moment, not just...
  18. Max

    2 seconds freeze in stream

    We checked your server. Seems like streams are published from your frontend using VP8 video codec. When you republish such stream to Wowza via RTMP, video is transcoded to H264. So if you publishing more than 20 streams simultaneously, the CPU load may be too high depending on streams resolution...
  19. Max

    Stream Recording

    Yes, - using REST methods, or - CLI v2 commands
  20. Max

    Incoming RSPT stream

    FFmpeg is supported for streaming RTMP Please try this way ffmpeg -re -i music.m4a -ar 48000 -acodec aac -strict -2 -f flv rtmp://server-ip:1935/live/stream
Top