Skip to content

Instantly share code, notes, and snippets.

@voluntas
voluntas / webrtc_now.rst
Last active May 6, 2022 06:29
WebRTC の今
@voluntas
voluntas / open_ayame.rst
Last active March 1, 2025 07:34
OpenAyame プロジェクト
@voluntas
voluntas / open_momo.rst
Last active September 11, 2025 13:58
OpenMomo プロジェクト
@voluntas
voluntas / webrtc_sfu_simulcast.rst
Last active October 26, 2021 07:16
WebRTC SFU + Simulcast コトハジメ
@voluntas
voluntas / webrtc_ultra_low_latency_streaming.rst
Last active August 6, 2023 21:42
WebRTC 超低遅延配信ノススメ

WebRTC 超低遅延配信ノススメ

日時:2018-08-08
作者:@voluntas
バージョン:18.08.0
url:https://sora.shiguredo.jp/

この記事が良いと思ったらこの記事に Star を是非

@voluntas
voluntas / chrome70webrtc.js
Last active August 11, 2018 06:36
WebRTC Chrome M70 でいろいろ確認
// Unified Plan の最低限のサンプル
const pc1 = new RTCPeerConnection({sdpSemantics: "unified-plan"});
const pc2 = new RTCPeerConnection({sdpSemantics: "unified-plan"});
const stream = await navigator.mediaDevices.getUserMedia({audio: true, video: true});
// pc1.addTrack(stream.getAudioTracks()[0], stream);
pc1.addTrack(stream.getVideoTracks()[0], stream);
@voluntas
voluntas / sora_labo.md
Last active March 28, 2026 01:17
時雨堂 Sora Labo 開発ログ
@voluntas
voluntas / death_march.md
Last active February 13, 2026 13:32
デスマーチが起きる理由 - 3つの指標

デスマーチが起きる理由 - 3つの指標

著者: 青い鴉(ぶるくろ)さん @bluecrow2

これは結城浩さんの運用されていた YukiWiki に当時 Coffee 様 (青い鴉(ぶるくろ)さん)がかかれていた文章です。 ただ 2018 年 3 月 7 日に YukiWiki が運用停止したため消えてしまいました。その記事のバックアップです。

今は 404 ですが、もともとの記事の URL は http://www.hyuki.com/yukiwiki/wiki.cgi?%A5%C7%A5%B9%A5%DE%A1%BC%A5%C1%A4%AC%B5%AF%A4%AD%A4%EB%CD%FD%CD%B3 になります。

昔、自分がとても感銘を受けた文章なので、このまま読めなくなるのはとてももったいないと思い、バックアップとして公開しています。

@voluntas
voluntas / webrtc_online_community.rst
Last active November 13, 2021 11:47
WebRTC オンライン専用コミュニティ

WebRTC オンライン専用コミュニティ (終了)

更新:2020-08-03
作者:@voluntas
バージョン:2020.1
URL:https://voluntas.github.io/

概要

@voluntas
voluntas / chrome_unified_plan.md
Last active June 12, 2018 10:54
Chrome Canary M68 で Unified Plan

Chrome Canary M68 で Unified Plan

  • 68.0.3430.0 (Official Build) canary (64 ビット)
  • new RTCPeerConnection({sdpSemantics: "unified-plan"})
    • sdpSemantics を渡してあげる

サンプルコード   

var pc = new RTCPeerConnection({sdpSemantics: "unified-plan"});