Smart Mirror
  • Smart Mirror USER MANUAL
  • 관련 홈페이지
  • IdeaRobot Gitbook
  • Smart Mirror 사양
    • 제원
    • 블록도
    • 중요 부품
  • Smart Mirror 조립 방법
    • Smart Mirror 조립 방법
    • 조립 및 배선 PART 1.
    • 필름 시공 방법
    • 조립 및 배선 PART 2.
  • Smart Mirror 기본 설정
    • Odroid XU4 설정
    • Magic Mirror 설정
      • 한글화
      • Smart Mirror 자동 실행
      • 절전 모드 해제
      • Magic Mirror 화면 회전
      • Wifi 설정
      • 자동 로그인 설정
  • Smart Mirror 사용자 설정
    • Magic Mirror Update
    • Google Api Update
    • Google Api 설정
    • Mirror 설정
      • MMM-Netatmo-Thermostat
      • MMM-Weather
      • MMM-Tools
  • Smart Mirror 활용
    • Mirror 화면 설정
      • 달력 표시하기
      • 구글 캘린더 연동하기
      • 관심 테마 뉴스 설정
    • Youtube_VLC 재생
    • Google Assistant 이용 음성 제어
      • 기존 JS 파일 이용 음성 제어
      • JS 파일 작성하여 음성 제어
Powered by GitBook
On this page
  1. Smart Mirror 활용

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
                        }
                },
Previous관심 테마 뉴스 설정NextGoogle Assistant 이용 음성 제어

Last updated 3 years ago