pim_term

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

README.md (2842B)


      1 # pim_term
      2 
      3 オンライン(Discord)とオフライン(会場)を同時繋ぐハイブリッド形式のLightning Talk 会における、映像・音声システムの構想。
      4 
      5 ---
      6 
      7 ## 1. システム全体構成
      8 
      9 映像(ミントグリーン)と音声(オレンジ)のルーティング構成は以下の通りです。
     10 なお、Projecterとしているのは会場にあるAVラックを指しています。
     11 
     12 ```mermaid
     13 flowchart TD
     14     Presenter --> Discord
     15     Mic --> Projecter
     16     Mic --> Discord
     17     Discord --> Projecter
     18     Projecter --> offlineAudience
     19     Projecter --> offlineAudience
     20     offlineAudience --> Discord
     21     offlineAudience --> Discord
     22     onlineAudience --> Discord
     23     onlineAudience --> Discord
     24     Presenter --> Mic
     25     Discord --> onlineAudience
     26     Discord --> onlineAudience
     27     Discord --> Projecter
     28 
     29     linkStyle 0 stroke:#7BCCAC,stroke-width:4px
     30     linkStyle 3 stroke:#7BCCAC,stroke-width:4px
     31     linkStyle 4 stroke:#7BCCAC,stroke-width:4px
     32     linkStyle 6 stroke:#7BCCAC,stroke-width:4px
     33     linkStyle 8 stroke:#7BCCAC,stroke-width:4px
     34     linkStyle 11 stroke:#7BCCAC,stroke-width:4px
     35    
     36     linkStyle 1 stroke:#ffa23e,stroke-width:4px
     37     linkStyle 2 stroke:#ffa23e,stroke-width:4px
     38     linkStyle 5 stroke:#ffa23e,stroke-width:4px
     39     linkStyle 7 stroke:#ffa23e,stroke-width:4px
     40     linkStyle 9 stroke:#ffa23e,stroke-width:4px
     41     linkStyle 10 stroke:#ffa23e,stroke-width:4px
     42     linkStyle 12 stroke:#ffa23e,stroke-width:4px
     43     linkStyle 13 stroke:#ffa23e,stroke-width:4px 
     44 
     45 ```
     46 
     47 ### 概要
     48 * 発表者スライド等: 発表者はDiscordにて画面共有を行い、Discord画面をプロジェクターへ出力
     49 * 音声(発表者): 会場マイクから、会場スピーカーとDiscordへ配信します。
     50 * 音声(オンライン参加者): Discordの音声を会場スピーカーへ出力します。
     51 
     52 ## 検討事項
     53 会場マイクからの入力をDiscordと会場スピーカーの二手に分岐する方法が3つあります。
     54 1. 会場マイクをAVラックに接続し、その出力をDiscordに接続しているPCにマイクとして入力、もう一方で会場スピーカーにも出力
     55 2. 会場マイクをDiscordに接続しているPCにマイクとして(オーディオインターフェイスなどを使用して)入力、`このデバイスを聞く`機能でDiscordからの音声と一緒にAVラックに入力し、会場スピーカーから出力
     56 3. 発表者のPCのマイクに喋ってもらい、その音声をDiscord音声として会場スピーカーから出力(遅延が酷そう)
     57 
     58 ## ハウリングの防止について
     59 前項の設定に依ってハウリングの防止策は変わりますが、基本的にどのソースをどこに分岐し、どこに混ぜているかを意識して運用するべきです。