Youtube_VLC 재생

  • Google Assistant 이용하여 Youtube 검색하여 영상 및 소리 듣기 - 현재 소리만 가능 추후 업데이트 예정

cd ~/MagicMirror/modules
git clone https://github.com/bugsounet/EXT-YouTubeVLC
cd EXT-YouTubeVLC
npm install
npm run token
sudo nano ~/MagicMirror/config/config.js

MMM-GoogleAssistant 먼저 수정합니다.

 {
                        module: "MMM-GoogleAssistant",
                        configDeepMerge: true,
                        config: {
                                                        stopCommand: "고마워",
                                assistantConfig: {
                                        lang: "ko-KR",
                                        latitude: 37.3460,
                                        longitude: 126.550,
                                },
                                recipes: [
                                        "../../EXT-YouTubeVLC/recipe/EXT-YouTubeVLC.js",
                                        ],
                        }
                },

EXT-YouTubeVLC 추가.

 {
                module: 'EXT-YouTubeVLC',
                config: {
                        debug: false,
                        useSearch: true,
                        displayHeader: true,
                        minVolume: 30,
                        maxVolume: 100
                        }
                },

Last updated