快轉到主要內容

Mac OS 使用虛擬形象參加線上會議

Y Cheung
作者
Y Cheung
Blogger, Programer & Traveler.
目錄

Y Cheung Work From Home 一個多月了已經,每天在家不停地線上開會真的好累,得想個法子為枯燥無味的開會過程增添一點樂趣,於是就有了本篇教學。使用虛擬形象開會真的是超可愛的,哈哈哈哈。

操作環境:
#

  • Mac OS
  • VRoid Studio v1.6.0
  • 3tene Free v2 2.0.19 beta
  • OBS v27.2.4
  • Microsoft Teams 1.5.00.8073

操作步驟:
#

VRoid Studio 創建虛擬形象
#

VRoid Studio 目前Mac上的版本(VRoid Studio v1.6.0)只支持日文和英文介面。新手非常易用,VRoid Studio 的使用介面就像我們玩遊戲時的創建角色。

下載 VRoid Studio 並安裝。

VRoid Studio Application icon
VRoid Studio icon
.

打開VRoid Studio,從編輯 sample avatar 或新建一個開始。

VRoid Studio GUI
VRoid Studio GUI

調整、編輯虛擬形象。

Modify the modal in VRoid Studio GUI
Modify the modal

編輯完成後,點擊導出按鈕,並在下拉選單中選擇「Export as VRM」 導出VRM文件。

VRoid Studio GUI
Click the Export icon and select Export as VRM from dropdown list.

面部識別綁定虛擬形象
#

下載3tene Free 並安裝。

3teneFREE_beta icon
Open 3teneFREE_beta application from the Fjnder.

打開 3teneFREE_beta,在設置中將語言調整為你熟悉的語言,目前版本(3teneFREE_V2_2.0.19_beta_for_Mac)支持簡體中文、繁體中文、英文和日文。

change language setting in 3teneFREE_beta
Click the gear icon on the right sidebar, select System tab and change Language settings.

導入Step 1中創建好的虛擬形象(*.vrm文件)。

import vrm in 3teneFREE_beta
Click Avatar Selection on the Left sidebar and then select new import.

設定場景背景,調整場景攝像頭角度。

adjust the scene in 3teneFREE_beta
Click the icons on the left sidebar to adjust the scene.

開啟人臉識別追蹤,綁定虛擬形象。

Toggle Tracking in 3teneFREE_beta
Toggle Tracking.

此步驟可參考 YouTube 視頻簡單教程Making a 3d Vroid model face-track in 3tene (Become a Vtuber even if you are a Mac user!)(視頻已下架2024-4-26)

啟用OBS虛擬相機代替mac 攝像頭
#

下載OBS 並安裝。

OBS application icon
OBS icon

打開OBS,授予OBS所需要的權限,特別是屏幕錄製的權限。

Grant permissions for OBS
Apple menu > System Preferences, click Security & Privacy , then click Privacy. Select Screen Recording, and grant Screen Recording Access to OBS.

在來源中新添加視窗擷取,視窗屬性選擇Step 2的3tene視窗。

Select 3teneFREE_beta window as source in OBS
Select 3teneFREE_beta window as source.

在預覽中調整畫面。

Resize and adjust source layer in preview window of OBS
Resize and adjust source layer on preview.

授予OBS安裝虛擬相機的權限並啟動OBS虛擬相機。

OBS

在線上會議軟件中設置視頻來源為OBS
#

在Microsoft Teams或者Google Meet等線上會議應用中選擇OBS虛擬相機作為視頻來源,就可以開始你的新鮮體驗啦!

如果設置OBS虛擬相機失敗的話,可以參考官方「MacOS Virtual Camera Compatibility Guide」提供的方法解決喔。

另外,Stream video 除了OBS 外,也可以選擇使用Stream Lab喔!可以參考Youtube 視頻「Streaming + 3tene for Mac(視頻已下架2024-4-26)

相關文章

Drupal 9 Twig 獲取field值速查表

·1006 字·3 分鐘
在Drupal 8 和 Drupal 9 的 twig 模板開發中,常常會需要輸出指定的field,本文列出常見類型的field取值方法,以便查詢。 一般類型 General # Field type How to get value Note Boolean {{ content.field_name[0] }} 值為“On”或“Off”的label Boolean {{ content.field_name['#items'][0].value }} 值為1或0 Date {{ content.field_name[0] }} 值為套用time.html.twig模板的完整日期時間html片段 Date {{ content.field_name[0]['#text] }} 值為完整日期時間格式的純文本 Timestamp {{ content.field_name[0] }} 值為完整日期時間格式的純文本 Timestamp {{ content.field_name['#items'][0].value }} 值為時間戳數字 Email {{ content.field_name[0] }} 值為純文本格式 link {{ content.field_name[0]['#url'] }} 值為連結URL link {{ content.field_name[0]['#title'] }} 值為連結文字 數字類型 Number # Field type How to get value Note Number (float) {{ content.field_name[0] }} 顯示有前綴和後綴並number_decimal格式化 Number (float) {{ content.field_name['#items'][0].value }} 顯示未經格式化的浮點數 Number (integer) {{ content.field_name[0] }} 顯示有前綴和後綴 Number (integer) {{ content.field_name['#items'][0].value }} 顯示未經格式化的整數 Number (decimal) {{ content.field_name[0] }} 顯示有前綴和後綴 Number (decimal) {{ content.field_name['#items'][0].value }} 顯示未經格式化的小數 文字類型 Text # Field type How to get value Note Text (formatted) {{ content.field_name[0] }} 帶格式的文本 Text (formatted) {{ content.field_name[0]['#text'] }} 未經html轉化的文本 Text (formatted) {{ content.field_name['#items'][0].value|striptags }} 純文本 Text (formatted, long) {{ content.field_name[0] }} 帶格式的文本 Text (formatted, long) {{ content.field_name[0]['#text'] }} 未經html轉化的文本 Text (formatted, long) {{ content.field_name['#items'][0].value|striptags }} 純文本 Text (formatted, long with summary) {{ content.field_name[0] }} 帶格式的文本 Text (formatted, long with summary) {{ content.field_name[0]['#text'] }} 未經html轉化的文本 Text (formatted, long with summary) {{ content.field_name['#items'][0].value|striptags }} 純文本 Text (formatted, long with summary) {{ content.field_name['#items'][0].summary }} 摘要 Text (plain) {{content.field_name.0 }} 純文本 Text (plain, long) {{content.field_name.0 }} 純文本 列表類型 List # Field type How to get value Note List (float) {{ content.field_name[0] }} 在管理介面Manage Display中設置該欄位顯示值key或標籤label List (float) {{ content.field_name['#items'][0].value }} 顯示值的key List (integer) {{ content.field_name[0] }} 在管理介面Manage Display中設置該欄位顯示值key或標籤label List (integer) {{ content.field_name['#items'][0].value }} 顯示值的key List (text) {{ content.field_name[0] }} 在管理介面Manage Display中設置該欄位顯示值key或標籤label List (text) {{ content.field_name['#items'][0].value }} 顯示值的key 參照類型 Reference # Field type How to get value Note Fiel {{ content.field_name[0] }} 值為套用file-link.html.twig模板的html片段 File {{ file_url(content.field_name[0]['#file'].uri.value) }} 檔案連結 File {{ content.field_name[0]['#description'] }} 檔案描述 Image {{ file_url(content.field_name[0]['#item'].entity.uri.value) }} 圖片連結 Image {{ content.field_name[0]['#item'].value.alt }} 圖片alt文字 Image {{ content.field_name[0]['#item'].value.title }} 圖片title文字 Image {{ content.field_name[0]['#item'].value.height }} 圖片設置的高度 Image {{ content.field_name[0]['#item'].value.width }} 圖片設置的寬度 Taxonomy Term {{ content.field_taxonomy[0]['#options'].entity.id }} 在Manage display中將format設為Label時顯示term id Taxonomy Term {{ content.field_name[0]['#title'] }} 在Manage display中將format設為Label顯示term label Taxonomy Term {{ content.field_name[0]['#url'] }} 在Manage display中將format設為Label顯示term path 媒體類型 Media # 啟用Media模組後出的media field。

《星之卡比 探索發現》禮物關鍵詞快遞密碼列表

·502 字·2 分鐘
在《星之卡比 探索發現》遊戲關卡中解救50個瓦豆魯迪(Waddle Dee)後,探索據點瓦豆魯迪小鎮中解鎖瓦豆魯迪快遞建築,開始使用禮物關鍵詞獲取大禮包! Go to the Waddle Dee-liveries, confirm to use password, and input your password. 這裡是輸入禮物關鍵詞就能獲得禮物的瓦豆魯迪快遞! 只要連接網路,還能夠使用網路上已公開的禮物關鍵詞喔。 要在瓦豆魯迪快遞使用禮物關鍵詞嗎? 為了確認快遞禮物,正在執行網路連接…… 那麼,就麻煩你輸入禮物關鍵詞了。