Giter Site home page Giter Site logo

mideind / fluttersnowboy Goto Github PK

View Code? Open in Web Editor NEW
11.0 11.0 3.0 4.12 MB

Flutter plugin for Snowboy DNN-based hotword detection

License: Other

Dart 19.52% Java 48.08% Ruby 5.25% Objective-C 12.02% C++ 9.58% Objective-C++ 5.54%
android dart flutter flutter-plugin hotword-detection hotword-detector ios snowboy wakeword-activation

fluttersnowboy's Issues

Unable to init Snowboy, required bundled file 'common.res' missing

Hi there,

Thanks for making this package, but I haven't get it working till now, always got 'common.res' missing problem. I downloaded the file from https://github.com/Kitt-AI/snowboy/blob/master/resources/common.res and load it in runtime as well.

What I did:

  1. install all packages
  2. put the pmdl file , common.res , ding.wav in the root's assets folder and declared in pubspec.yml
flutter:
  assets:
     - assets/yoyo.pmdl
     - assets/common.res 
     - assets/ding.wav

The code is learned from the example in https://pub.dev/packages/flutter_snowboy

...

    final directory = await getApplicationDocumentsDirectory();
    final modelPath = "${directory.path}/yoyo.pmdl";
    final commonResPath = "${directory.path}/common.res";
    
    final bytes = await rootBundle.load("assets/yoyo.pmdl");
    final modelData = bytes.buffer.asUint8List();
    await File(modelPath).writeAsBytes(modelData);
    debugPrint('>>> modelPath: $modelPath'); 

    final commonResBytes = await rootBundle.load("assets/common.res");
    final commonResData = commonResBytes.buffer.asUint8List();
    await File(commonResPath).writeAsBytes(commonResData);
    debugPrint('>>> commonResPath: $commonResPath');

    detector = Snowboy();
    await detector.prepare(modelPath); // working, otherwise, it will show the model missing
    detector.hotwordHandler = hotwordHandler;
    await configureAudioSession();
...

The console display:

flutter: >>> modelPath: /var/mobile/Containers/Data/Application/46445C07-C970-468C-B548-D63578DC4BC3/Documents/yoyo.pmdl
flutter: >>> commonResPath: /var/mobile/Containers/Data/Application/46445C07-C970-468C-B548-D63578DC4BC3/Documents/common.res
Unable to init Snowboy, required bundled file 'common.res' missing

I found the similar discussion here: Kitt-AI/snowboy#309
But I don't find a way to pass the common.res path in this lib.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.