
Yoshimasa Iwase
- Total activity 200
- Last activity
- Member since
- Following 0 users
- Followed by 2 users
- Votes 5
- Subscriptions 86
Activity overview
Latest activity by Yoshimasa Iwase-
Yoshimasa Iwase commented,
- 4. Bでpeer.call(PEER_ID)もしくはpeer.call(PEER_ID, null)を行い、発信を行う。 のタイミングにて、call時に以下のような映像受信専用オプションを試していただけないでしょうか? peer.call('peerID', null, { videoReceiveEnabled: true, }); (完全に上手くいくか確証がないのですが、改善す...
-
Yoshimasa Iwase commented,
What's you want to implement is I think Parallel forking. The signaling mechanism of SkyWay doesn't support the Parallel forking but you can do some tweak in you app code like: Every time you call...
-
Yoshimasa Iwase commented,
Douglas, Thanks for your comments. Personally I really understand and agree on what you wrote. Especially, the scenario [1] should reflect on the status immediately and SDK should notice developers...
-
Yoshimasa Iwase commented,
> getUserMediaで取得したstreamをSkyWayで送る場合、ライブラリ内で圧縮されたり解像度が変更されたりするのでしょうか。例えば、ネットワーク帯域の状況に応じて安定して通信できるように、など。 はい、変更されます。 ブラウザが内包するWebRTCのライブラリは、ネットワークの状況を確認して動的に送信内容を変更しています。(たとえば、パケットロスが大きい環境では品質を落とすなど)
-
Yoshimasa Iwase commented,
The peer ID used in multiple places is hard. This is because SkyWay prevents the Peer highjacking, like the Peer ID of userA is robbed by someone even though a valid user(userA) is using.
-
Yoshimasa Iwase commented,
SkyWay currently doesn't provide the connection status of the client. If you want to confirm that the peer is already connected, you need to manage the status.
-
Yoshimasa Iwase commented,
This depends on your implementation. Just not calling https://webrtc.ecl.ntt.com/en/android-reference/classio_1_1skyway_1_1_peer_1_1_media_connection.html#ac230466aaee7cf06d554b195b813fc71 when you...
-
Yoshimasa Iwase commented,
This depends on the network condition. Some network equipments might not pass all traffic. One of the ways to find the cause is to change the network environment.
-
Yoshimasa Iwase commented,
P2Pの解釈にも依る部分がございますが、 ・P2Pを仮に"クライアント(ブラウザなど)とクライアントが間にサーバを介さず直接通信すること"という解釈であれば、SFUの場合にはこれに該当しません。すなわち、 "クライアントとSFU"が通信する形になるため、サーバを介していると解釈できるためです。(また、ご質問にはございませんが、TURNサーバを経由した場合も、サーバ経由と解釈できるかもしれませ...
-
Yoshimasa Iwase commented,
以下の組み合わせの場合、 ・AndroidSDK ⇔ Safari(iPad) × 映像コーデックはH.264が利用されます。Safariが H.264 のみ対応のためです。Android端末はH.264の対応に機種依存があり、H.264が正常動作しないケースがあり、今回はそちらに該当している可能性がございます。