
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
noapi-speech2text
Advanced tools
Speech recognition library that uses web-based services to convert speech to text in multiple languages
A simple speech recognition library that uses Bing Translator's web interface to convert speech to text in multiple languages.
Example video: https://www.youtube.com/embed/-dzRtd6fAqU?si=0KtpN0vDuOISEzuF
npm install noapi-speech2text
const SpeechToText = require('noapi-speech2text');
// Create instance with options (or use defaults)
const speechToText = new SpeechToText('en');
// Listen for speech events
speechToText.on('speech', (text) => {
console.log('Recognized speech:', text);
});
// Start speech recognition
speechToText.start()
.then(() => console.log('Speech recognition service initialized'))
.catch(err => console.error('Failed to start speech recognition:', err));
// When you want to stop:
// speechToText.stop();
/**
* @param {string} languageCode - Language code (e.g., 'en', 'tr', etc.)
* @param {string[]} chromeargs - Additional Chrome arguments (e.g., ['--mute', '--no-stdout'])
* @param {number} checkInterval - Interval to check for new speech in ms (default: 700)
* @param {boolean} debug - Enable debug mode (default: false)
* @example
* const speechToText = new SpeechToText('en', ["--no-sandbox"], 700, true);
*/
This software automates interactions with Microsoft's Bing Translator web interface:
Use at your own risk.
Çoklu dillerde konuşmayı metne dönüştürmek için Bing Translator web arayüzünü kullanan basit bir konuşma tanıma kütüphanesi.
Örnek video: https://www.youtube.com/embed/-dzRtd6fAqU?si=0KtpN0vDuOISEzuF
npm install noapi-speech2text
const SpeechToText = require('noapi-speech2text');
// Seçeneklerle örnek oluşturun (veya varsayılanları kullanın)
const speechToText = new SpeechToText('tr');
// Konuşma olaylarını dinleyin
speechToText.on('speech', (text) => {
console.log('Tanınan konuşma:', text);
});
// Konuşma tanımayı başlatın
speechToText.start()
.then(() => console.log('Konuşma tanıma servisi başlatıldı'))
.catch(err => console.error('Konuşma tanıma başlatılamadı:', err));
// Durdurmak istediğinizde:
// speechToText.stop();
/**
* @param {string} languageCode - Dil kodu (örn. 'en', 'tr', vb.)
* @param {string[]} chromeargs - Ek Chrome argümanları (örn. ['--mute', '--no-stdout'])
* @param {number} checkInterval - Yeni konuşmaları kontrol etme aralığı (ms) (varsayılan: 700)
* @param {boolean} debug - Hata ayıklama modunu etkinleştirme (varsayılan: false)
* @example
* const speechToText = new SpeechToText('tr', ["--no-sandbox"], 700, true);
*/
Bu yazılım, Microsoft'un Bing Translator web arayüzü ile etkileşimleri otomatikleştirir:
Kullanım sorumluluğu size aittir.
FAQs
Speech recognition library that uses web-based services to convert speech to text in multiple languages
We found that noapi-speech2text demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.