Answer the question
In order to leave comments, you need to log in
How to compare sound file with sample in ubuntu?
I want to make voice control on Raspberry (turn on / off the PC, TV, start something on the Raspberry itself). I stopped at Yandex speech, but the question arose - you can’t constantly send all the sound to Yandex, after all, there is a limit on the number of requests. Therefore, I want to do it like "ok google" - a keyword that includes transfer to the cloud is analyzed locally on the machine, for example, by comparing with a sample.
Are there any standard solutions for this task?
Answer the question
In order to leave comments, you need to log in
These are not errors, but warnings.
https://github.com/gulpjs/gulp/issues/1571
The guys have known about the problem for a long time and are working on a solution.
In general, now you need to do the following. You need to completely remove the gallp, which is completely rooted.
# полностью удалить галп из под-рута
sudo npm uninstall -g gulp
# зайти к себе в .npm
cd ~/.npm
# посмотреть, кто чем владеет
ls -la
# аналогичным галпу образом убить все, что было поставлено под рутом
# можно .npm снести целиком, но крайне нежелательно,
# т.к. есть симлинки и упоминания в других местах
# после всей зачистки нужно проверить файлы
# на возможные упоминания директорий с npm
# ~/.profile
cat ~/.profile
# и ~/.bash_profile
cat ~/.bash_profile
# как только вы убедитесь, что
# все, что было поставлено с sudo вычищено
# можно приступать к установке галп под пользователем
# Шаг 1. ЗАБЫТЬ НАХРЕН ПРО sudo
# sudo - это крайний шаг
# Обязательно поставить nvm по инструкции
# https://github.com/creationix/nvm
# теперь можно поставить галп глобально
npm install -g gulp
# в каждом проекте создавать package.json
# и в нем обязательно объявлять gulp в зависимостях
# после этого делать БЕЗ sudo или глобальных установок
cd your/project/dir
npm install
# будет вам щастье
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question