Maxim Devaev
Maxim Devaev
Please run on PiKVM: ``` python -c 'import socket, pprint; pprint.pprint(socket.getaddrinfo("stun.l.google.com", 0))' ```
In the log: ``` Got new _Netcfg(nat_type='Full Cone NAT', src_ip='xx.xx.xx.xx', ext_ip='xx.xx.xx.xx', stun_host='stun.l.google.com', stun_port=19302) ``` src_ip and ext_ip are IPv4, right?
Okay. I'll try to make some workaround.
Please perform `pikvm-update` and try `kvmd-janus` without `ignore_unreachable_ice_server`.
Reflash and update then.
UPD: You can also try some other mirror, replace hostname in /etc/pacman.d/mirrorlist to de3.mirror.archlinuxarm.org, for example.
I don't think I can fix it on my side. Let's wait for the upstream fix. As for the Janus - glad to hear that this is working now.
I didn't test H.264 with Pi 2 and I'm not sure if this working at all :/
You can try it yourself with very few changes: 1. Add this to `/etc/kvmd/override.yaml`: ```yaml kvmd: streamer: h264_bitrate: default: 5000 cmd_append: - "--jpeg-sink=kvmd::ustreamer::jpeg" - "--jpeg-sink-mode=0660" - "--h264-sink=kvmd::ustreamer::h264" - "--h264-sink-mode=0660" -...