| 更新: | 2024-01-20 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |
概要
| 更新: | 2024-01-20 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |
概要
こちらの資料は古いので WebRTC Simulcast コトハジメ をどうぞ。
WebRTC の Simulcast という仕組みは、複数の品質で映像を配信する仕組みのことです。
P2P で必要かどうかというと、必要ではありません。Simulcast はクライアント・サーバモデル、さらに SFU モデルでの利用を前提としています。
| $elementSeparator: '__'; | |
| $modifierSeparator: '--'; | |
| @function containsModifier($selector) { | |
| $selector: selectorToString($selector); | |
| @if str-index($selector, $modifierSeparator) { | |
| @return true; | |
| } @else { | |
| @return false; | |
| } |
| #!/usr/bin/env ruby | |
| # -*- coding: utf-8 -*- | |
| =begin | |
| bwcheck -- YP4G uptest 用帯域測定クライアント | |
| データは ~/.bwcheckrc に保存します。 | |
| インストール: | |
| 使っているライブラリは Nokogiri と Thor です。 |
| var attempts = 1; | |
| function createWebSocket () { | |
| var connection = new WebSocket(); | |
| connection.onopen = function () { | |
| // reset the tries back to 1 since we have a new connection opened. | |
| attempts = 1; | |
| // ...Your app's logic... |
この記事は Play framework 2.x Java and 1.x Advent Calendar 2013 の21日目の記事です。
昨日は @yuba さんの ステートレスなPlay2でログイン状態を管理する でした。
明日はまだ未定のようです。
ちなみに野暮なつっこみを入れてしまいますが、@yuba さんの ステートレスなPlay2でログイン状態を管理する で
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import csv | |
| import codecs | |
| import numpy as np | |
| import MeCab | |
| from sklearn.feature_extraction.text import TfidfVectorizer | |
| from sklearn.cluster import KMeans, MiniBatchKMeans |