Skip to content

manwar/p5-Google-Cloud-Speech

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

p5-Google-Cloud-Speech

This Perl module allows developers to convert audio to text by applying powerful neural network models.

Quick Start

$ cpanm install Google::Cloud::Speech

Authentication

This library uses Service Account credentials to connect to Google Cloud services.

To create, Google Service Account Key:

* Login to Google Apps Console and select your project
* Click on create credentials-> service account key. 
* Select a service account and key type as JSON and click on create and downlaoded the JSON file.

For more details visit the Authentication Guide.

Example

Asynchronous speech recognition

use Google::Cloud::Speech;
use Data::Dumper;

my $speech = Google::Cloud::Speech->new(
    file    => 'test.wav',
    api_key => 'XXXXXXXXXXXX'
);

my $operation = $speech->asyncrecognize();
my $is_done = $operation->is_done;

until($is_done) {
    if ($is_done = $operation->is_done) {
        print Dumper $operation->results;
    }
}

Synchronous speech recognition

use Google::Cloud::Speech;
use Data::Dumper;

my $speech = Google::Cloud::Speech->new(
    file    => 'test.wav',
    api_key => 'XXXXXXXXXXXX'
);

my $operation = $speech->syncrecognize();
print Dumper $operations->results;

COPYRIGHT AND LICENCE

Copyright (C) 2017 by Prajith P

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

About

Google Cloud Speech Client Library for Perl

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Perl 81.4%
  • Other 18.6%