├── .gitignore ├── LICENCE ├── README.md ├── api ├── Dockerfile └── api.py ├── docker-compose.yml ├── media └── Screenshot.jpg └── node ├── Dockerfile ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/README.md -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/api/api.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /media/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/media/Screenshot.jpg -------------------------------------------------------------------------------- /node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/node/Dockerfile -------------------------------------------------------------------------------- /node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/node/index.js -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altbert/Whatsapp_speech_to_text/HEAD/node/package.json --------------------------------------------------------------------------------