Search results

  1. Max

    Text "Bleeding" on RTSP streams

    Hello. Please send credentials to support@flashphoner.com
  2. Max

    can't ingest RTSP stream

    It seems WCS can't parse SDP v=0 o=- 18467 41 IN IP4 0.0.0.0 c=IN IP4 0.0.0.0 a=control:* a=range:npt=0- t=0 0 m=video 0 RTP/AVP 96 a=rtpmap:96 H264/90000 a=fmtp:96 profile-level-id=0; packetization-mode=2; sprop-parameter-sets=Z2QAKqwsaoHgCJ+XAG4CAgKAAAADAIAAADJC,aO48sA==; a=control:trackID=1...
  3. Max

    Video streams are not recording

    Hello, WCS can record published streams - mediaSessionId of a published stream should be passed to startRecording. In the log, mediaSessionId of a playing subscriber stream is passed. Starting from WCS v. 5.2.654, startRecording returns 404 if mediaSessionId of a subscriber stream is passed as...
  4. Max

    Multiple Players at same page

    Please check 2 Players example https://docs.flashphoner.com/display/WEBSDK2EN/2+Players And demo https://demo.flashphoner.com/client2/examples/demo/streaming/2players/2players.html You can place 50 players the same way. However it will load browser's CPU and RAM too much.
  5. Max

    certificate error downloading WCS5

    Good day. We raised the ticket WCS-2778 to check this. As workaround, you can download WCS installation archive with --no-check-certificate wget option wget --no-check-certificate https://flashphoner.com/download-wcs5.2-server.tar.gz or using web browser.
  6. Max

    Звук на стриме через Bluetooth гарнитуру

    В англоязычной части форума обсуждалась похожая тема, но по выбору камеры. Для выбора микрофона нужно использовать Flashphoner.getMediaDevices() и MediaDeviceList.getAudioList mMicSpinner = (LabelledSpinner) findViewById(R.id.microphone)...
  7. Max

    Free trail license activation issue

    Good day. If you can not activate server using web interface, please try to activate it using command line. Then stop the server, start it again and check if it is running as described here. Please check also that the server met the following condidions: 1. Initial access to...
  8. Max

    Auto start HLS by RTMP

    Good day. There is the parameter to enable auto start HLS cut for all the published streams (not RTMP only) hls_auto_start=true But we do not recommend to use it because this can impact server perfomance. Please use REST API to start HLS cut for certain stream published, for example POST...
  9. Max

    Playing Adverts into the stream

    Good day. Those are probably different users behind the same NAT. Every client can use grey (private) IP only, for example 192.168.0.100, and internet service provider can use one white (public) IP for all those users. In this case, only source port will differ for such clients.
  10. Max

    streaming from ReactNative app

    Please read WebRTC protocol specification here. We have no library for python client, but there is low level Websocket API. You can try to integrate it with this python WebRTC library.
  11. Max

    Звук на стриме через Bluetooth гарнитуру

    Добрый день. Вы можете получить список доступных браузеру устройств ввода и выбрать нужное устройство из списка Flashphoner.getMediaDevices(null, true, MEDIA_DEVICE_KIND.INPUT).then(function (list) { list.audio.forEach(function (device) { ... }); ... }).catch(function (error) {...
  12. Max

    iPhone publisher Failed by DTLS error

    Good day. In latest builds, there were some fixes in DTLS and ICE procedures in addition to IPv6 support. So please update to the build 5.2.673 and check.
  13. Max

    RTMP to SIP/RTP

    Hello This is docs https://docs.flashphoner.com/pages/viewpage.action?pageId=9242392
  14. Max

    Can not start transponder Error

    We have already checked your server, please see this post. Seems like media ports (31003-32000/udp) are blocked on your NAT/router or not forwarded to the server. Please check your NAT/router setup. Also, we recommend to set external IP to ip parameter ip = your_external_ip and to add the...
  15. Max

    Support for using external USB camera instead of device camera

    Good day. Please see Media Devices example (and source code on GitHub). You can use Flashphoner.getMediaDevices() method to get all the input devices visible to the system, then use MediaDeviceList.getVideoList() to list available cameras: mCameraSpinner = (LabelledSpinner)...
  16. Max

    Optimal cloud instance

    By default, HLS is transcoded to resolution 640x480. Please set the following parameters in flashphoner.properties to disable it hls_player_width=0 hls_player_height=0 Note that audio still will be transcoded to AAC 48 kHz if stream is published using PCMA, PCMU audio codecs or AAC with...
  17. Max

    Failed by RTP activity sometimes while broadcast

    alert() function is JavaScript function provided by browser. Probably the browser can not display a message on another window, especially if it is another application window. So this issue is out of WCS WebSDK scope. You can look for some third party libraries which allows to customize...
  18. Max

    Ссылка на записанное видео

    Добрый день. Проблема исправлена в сборке 5.2.673. Сборка включает также фикс на стороне WebSDK 0.5.28.2753.139
  19. Max

    Unable to get stream info on Stream Status Unpublished

    Hello, WCS-2759 has been fixed in WCS v. 5.2.673 (also contains Web SDK fix - v. 0.5.28.2753.139).
  20. Max

    Video streams are not recording

    Hello, Reproduced issues with these settings encode_record_name=true,HEX exclude_record_name_characters=:.,/ Created tickets WCS-2773 (for hexadecimal encoding) and WCS-2774 (for exclude_record_name_characters) for the issues - will inform when there is an update. Each setting should be added...
Top