OBS Studioに仮想カメラ出力やAIベースの音声ノイズ削減機能が追加 - PC Watch
こちらのプロジェクトは OBS でまかなえるようになったため、終了しました。
カスタマイズ無しで OBS -> 仮想カメラ出力 -> Momo (HWA) -> WebRTC -> Sora
ができるようになりました。
// ./postinstall.js | |
'use strict'; | |
const fs = require('fs'); | |
const RN_TSD = __dirname + '/node_modules/@types/react-native/index.d.ts'; | |
const raw = fs.readFileSync(RN_TSD); | |
// Fix @types/node conflict | |
// @see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/15960 |
--- | |
Description: AWS AppSync Notes API | |
Parameters: | |
APIName: | |
Type: String | |
Description: Name of the API - used to generate unique names for resources | |
MinLength: 3 | |
MaxLength: 20 | |
AllowedPattern: '^[a-zA-Z][a-zA-Z0-9_]*$' |
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "Envoy Proxy config schema", | |
"description": "JSON Schema for Envoy Proxy config", | |
"type": "object", | |
"properties": { | |
"admin": { | |
"type": "object", | |
"description": "Configuration for the local administration HTTP server", | |
"properties": { |
import base64 | |
import hashlib | |
import hmac | |
import json | |
from flask import Flask, jsonify, request | |
app = Flask(__name__) | |
# From: https://letsencrypt.org/docs/certificates-for-localhost/ | |
openssl req -x509 -out localhost.crt -keyout localhost.key \ | |
-newkey rsa:2048 -nodes -sha256 \ | |
-subj '/CN=localhost' -extensions EXT -config <( \ | |
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth") |
module.exports = function PgUpsertPlugin( | |
builder, | |
{ pgDisableDefaultMutations } | |
) { | |
if (pgDisableDefaultMutations) { | |
return; | |
} | |
builder.hook("inflection", (inflection, build) => | |
build.extend(inflection, { |
/* | |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the |
# Purpose: Shell script to connect a USB connected device via adb over WiFi | |
# | |
# Author: Amanshu Raikwar | |
# | |
# Assumptions: | |
# 1. USB debugging is enabled in the Android device | |
# 2. The Android device is connected to the computer via USB | |
# 3. The Android device is connected to the same wifi as the computer | |
# 4. The Android device is accessible through port 5555 over the wifi network | |
# |
OBS Studioに仮想カメラ出力やAIベースの音声ノイズ削減機能が追加 - PC Watch
こちらのプロジェクトは OBS でまかなえるようになったため、終了しました。
カスタマイズ無しで OBS -> 仮想カメラ出力 -> Momo (HWA) -> WebRTC -> Sora
ができるようになりました。
#!/bin/zsh | |
# pkgAndNotarize.sh | |
# 2019 - Armin Briegel - Scripting OS X | |
# place a copy of this script in in the project folder | |
# when run it will build for installation, | |
# create a pkg from the product, | |
# upload the pkg for notarization and monitor the notarization status |