Windows 版の OSS 化に伴い、こちらのツールの販売は終了いたしました。
日時: | 2022-04-19 |
---|---|
作: | 時雨堂 |
バージョン: | 2022.1 |
URL: | https://ayame-labo.shiguredo.app/ |
このサービスに興味がある人はこの資料に Star をつけてもらえると嬉しいです。
OBS Studioに仮想カメラ出力やAIベースの音声ノイズ削減機能が追加 - PC Watch
こちらのプロジェクトは OBS でまかなえるようになったため、終了しました。
カスタマイズ無しで OBS -> 仮想カメラ出力 -> Momo (HWA) -> WebRTC -> Sora
ができるようになりました。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(gen_udp2). | |
-export([open/1, open/2, close/1]). | |
-export([recv/3, send/4]). | |
open(Port) -> | |
open(Port, []). |
https://chromium.googlesource.com/external/webrtc/+log
- トランスポートフィードバックを使用して早期損失検出のサポートを追加
- Wed May 29 13:02:24 2019 +0200
- 845c6aa140662bf5c9c8d8d5c23917cef874e78e
- Add acked bandwidth estimator config for sample uncertainty in ALR.
日時: | 2019-06-01 |
---|---|
作: | voluntas |
バージョン: | 19.06.2 |
URL: | https://voluntas.github.io/ |
更新: | 2021-05-23 |
---|---|
作者: | @voluntas |
バージョン: | 2021.1 |
URL: | https://voluntas.github.io/ |
日時: | 2024-12-15 |
---|---|
作: | 時雨堂 |
バージョン: | 2024.2 |
URL: | https://shiguredo.jp/ |
以前使っていたものをこちらにまとめています。
- 新しいサーバを買ったのですが、オフィスが狭いため古いサーバを保持できないため捨てるよりは欲しい人に貰ってもらいたい
- サーバは償却済みです
@lz650sss さんに譲ることにしました
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Chrome Canary 75.0.3744.0 にて動作確認 | |
(async () => { | |
// クライアント | |
const client = new RTCPeerConnection(); | |
// カメラストリーム取得 | |
const localStream = await navigator.mediaDevices.getUserMedia({audio: true, video: true}); | |
// カメラストリームから音声トラックを取得 | |
// const localAudioTrack = localStream.getAudioTracks()[0]; |