自宅でビデオ会議をしていると、空調とか屋外のノイズなどをマイクが拾いがちなので、Voice Meeter Bananaを使ってノイズを軽減するための工夫をあれこれ試してみたメモ。
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
| // https://qiita.com/wdice02136/items/25b2ac3789918c398d43 | |
| // | |
| // M5StickC Plus2でBLE MIDIのテスト | |
| // ボタンを押すとC4のNote ON/OFFを送信するだけ | |
| // | |
| #include <M5Unified.h> | |
| #include <BLEDevice.h> | |
| #include <BLEServer.h> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools"> | |
| <application | |
| android:allowBackup="true" | |
| android:dataExtractionRules="@xml/data_extraction_rules" | |
| android:fullBackupContent="@xml/backup_rules" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" |
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
| # | |
| # clusterのサーバから外部通信を受けるREST API | |
| # | |
| # 参考: https://docs.cluster.mu/script/interfaces/ClusterScript.html#callExternal | |
| # | |
| from firebase_functions import https_fn, options | |
| from firebase_admin import initialize_app | |
| import os | |
| import json |
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
| const particle = $.subNode("particle"); | |
| const se1 = $.audio("EC5227CW-chime"); | |
| const se2 = $.audio("beep"); | |
| // 初期設定 | |
| $.onStart(() => { | |
| $.state.lastUpdatedTime = 0; | |
| $.state.remainingTime = 0; | |
| }); |
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
| #!/usr/bin/python | |
| import serial | |
| import time | |
| import datetime | |
| s = serial.Serial("COM4", 9600) | |
| while True: | |
| line = s.readline().decode("utf-8") |
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
| <IfModule mod_ssl.c> | |
| <VirtualHost *:443> | |
| ServerAdmin webmaster@localhost | |
| DocumentRoot /var/www/html | |
| ErrorLog ${APACHE_LOG_DIR}/error.log | |
| CustomLog ${APACHE_LOG_DIR}/access.log combined | |
| # TLS termination proxy for MinIO |
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
| #!/usr/bin/python3 | |
| # see also... https://twitter.com/oskdgkmgkkk/status/1609832118913503234 | |
| import random | |
| import statistics | |
| import math | |
| count = 100000 | |
| otoshidama_list = [] | |
| for i in range(count): |
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
| syntax enable | |
| filetype plugin indent on | |
| set hidden | |
| set nobackup | |
| set noundofile | |
| set modeline |
NewerOlder