The 4th Regular Meeting of the Subculture Science Research Group: Sake and Wood

Conversation style

R: Liquor and wood go hand in hand.

Tarky: Oh!

R: When you went to a brewery in Taiwan, you saw a row of sake barrels, right? It’s a common belief that whiskey tastes different depending on the wood of the barrel.

Tarky: Oh, weren’t they burned?

R: Even if it’s burned, some things soak in. And Quercus serrata is good. R: Even if it’s burned, there’s something that soaks in.

[Read More]

落書き

体を丸めたポーズを描きたかった

それはわりとイメージを形にできたんちゃうかな。

足を伸ばして座っている

脚、脚に興味がでてきた。

背中が伸びている?

もうすこし猫背でもいい気もする。

落書きは楽しい

描いてるだけで楽しめるようになってきた。

[Read More]

Subculture Science Research Group Regular Meeting No.3 Wood for electric guitar or anything else?

Conversation style

R: Something about Fender being forced to stop using ash wood

R: I heard that Fender had to stop using ash wood because of climate problems in the southern United States.

R: I was wondering, what’s the point of wood in an electric guitar?

tarky: What do you mean?

R: It doesn’t seem to matter what material it’s made of, but it’s a problem.

tarky: Oh, I see. To sum it up, from the performer’s point of view, it makes sense. But from the audience’s point of view, it doesn’t make much difference.

[Read More]

サブカル科学研究会 こぼれ話 自動文字起こし

こぼれ話

AWS transcribe で音声や動画の文字起こし tarky: 文字起こしも色々サービスあるけど、話者分離はAWSくらいしかないかな?リアルタイムやとSloosもある。まあ、ウェブ会議ツールは色々と文字起こしが導入されてるよね。思ったほど便利なイメージがないけど。それは単に会議の内容に私の理解が追いついてないからかな?

[Read More]

落書き

落書きは楽しい

  • 集中できる
  • 楽しさを感じられる

写真を見ながら描いていると没頭できる

  • うつの気晴らしには丁度いい気がする

資料を漁っていると美人はいるものだなぁと思う

  • pinterestで資料を探す
  • 修正してるかしらんけど、美人が多い気がする
  • 美人じゃなくてもイラストにする分にはあまり関係ない
  • イメージをつかめるようになってきた気がする

画像のリサイズ

  convert sample.PNG -resize 640  resize_sample.png

ffmpegで音声ファイルの音量の正規化(ノーマライゼーション)

  • ffmpegで音声ファイルの音量を調整する方法
  • 音量の正規化のためにffmpegを用いた
    • ffmpegはコマンドラインで利用できるメディアの加工ができる
  • 後々のために使用方法を記録しておく
    • たまに使うときにコマンドを忘れやすい
    • 似たような処理をしたくなることが多いのでメモが役に立つ気がする

ffmpegのインストール

ubuntu 系の場合、以下のコマンドでffmpegのダウンロードとインストールが完了する sudo apt update sudo apt install ffmpeg

[Read More]

定例会こぼれ話

声の変換

R:DeNAのサービス1でオンライン会話もキャラ声に変わるかもねぇ。

ターキー:使ってみた感じ、まだリアルタイムまではいけてないっぽいな。 具体的な変声のギミックよりはサービスとしてどう組み立てるか?というのが技術ブログ的に公開されてた気がする。 声でいくとオタマトーンを人工声帯代わりにする2って話もでてるな。いよいよもってバ美肉が近づいてきている。

[Read More]

Building a python environment with poetry on mac os

Pip is a major method of installing python libraries.

poetry is a more advanced version control tool for development environments.

It seems to have official support for pyenv integration.

I’ll write down how to install it on mac os and what I got stuck.

Advantages of poetry

  • Can organize library dependencies.
    • There are some unexpected side effects depending on the version of the library.
    • Trying to recreate the environment can cause errors with library versions and installation order.
    • Building the environment is an inevitable part of human work, so it should be automated if possible.
    • Also, it seems to be able to update the library version to take dependencies into account.
    • And it keeps a record of the status.
  • Is it possible to separate the dependency records by git branch?
  • The libraries you can install are comparable to pip
    • Does it have the same references as pypy?
  • Usability is not much different from pip
    • Poetry add instead of pip install
  • It recognizes virtual environments created with pyenv and works with them.

I’m going to install it because it seems to be a convenient way to build an environment without much effort.

[Read More]