azure_stt 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/ci.yml +33 -0
- data/.gitignore +56 -0
- data/.rubocop.yml +22 -0
- data/CHANGELOG.md +28 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +24 -0
- data/Gemfile.lock +141 -0
- data/LICENSE +21 -0
- data/README.md +129 -0
- data/Rakefile +27 -0
- data/azure_stt.gemspec +29 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/docs/AzureBatchTranscription.html +301 -0
- data/docs/AzureBatchTranscription/Configuration.html +212 -0
- data/docs/AzureSTT.html +305 -0
- data/docs/AzureSTT/Client.html +1008 -0
- data/docs/AzureSTT/Configuration.html +282 -0
- data/docs/AzureSTT/Error.html +305 -0
- data/docs/AzureSTT/Models.html +135 -0
- data/docs/AzureSTT/Models/Base.html +139 -0
- data/docs/AzureSTT/Models/CombinedRecognizedPhrases.html +538 -0
- data/docs/AzureSTT/Models/File.html +794 -0
- data/docs/AzureSTT/Models/RecognizedPhrase.html +769 -0
- data/docs/AzureSTT/Models/Report.html +384 -0
- data/docs/AzureSTT/Models/Result.html +796 -0
- data/docs/AzureSTT/Models/Sentence.html +615 -0
- data/docs/AzureSTT/Models/Transcription.html +1415 -0
- data/docs/AzureSTT/Models/Word.html +615 -0
- data/docs/AzureSTT/NetError.html +159 -0
- data/docs/AzureSTT/Parsers.html +128 -0
- data/docs/AzureSTT/Parsers/Base.html +404 -0
- data/docs/AzureSTT/Parsers/CombinedRecognizedPhrases.html +156 -0
- data/docs/AzureSTT/Parsers/File.html +156 -0
- data/docs/AzureSTT/Parsers/RecognizedPhrase.html +156 -0
- data/docs/AzureSTT/Parsers/Report.html +156 -0
- data/docs/AzureSTT/Parsers/Result.html +156 -0
- data/docs/AzureSTT/Parsers/Sentence.html +156 -0
- data/docs/AzureSTT/Parsers/Transcription.html +156 -0
- data/docs/AzureSTT/Parsers/Word.html +156 -0
- data/docs/AzureSTT/ServiceError.html +159 -0
- data/docs/AzureSTT/Session.html +767 -0
- data/docs/AzureSTT/Transcription.html +635 -0
- data/docs/AzureSTT/Types.html +116 -0
- data/docs/AzureStt_.html +121 -0
- data/docs/_index.html +392 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +497 -0
- data/docs/file.README.html +201 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +201 -0
- data/docs/js/app.js +314 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +707 -0
- data/docs/top-level-namespace.html +110 -0
- data/env.sample +2 -0
- data/lib/azure_stt.rb +20 -0
- data/lib/azure_stt/client.rb +189 -0
- data/lib/azure_stt/configuration.rb +28 -0
- data/lib/azure_stt/errors.rb +25 -0
- data/lib/azure_stt/models.rb +30 -0
- data/lib/azure_stt/models/base.rb +27 -0
- data/lib/azure_stt/models/combined_recognized_phrases.rb +48 -0
- data/lib/azure_stt/models/file.rb +72 -0
- data/lib/azure_stt/models/recognized_phrase.rb +70 -0
- data/lib/azure_stt/models/report.rb +31 -0
- data/lib/azure_stt/models/result.rb +76 -0
- data/lib/azure_stt/models/sentence.rb +53 -0
- data/lib/azure_stt/models/transcription.rb +185 -0
- data/lib/azure_stt/models/word.rb +54 -0
- data/lib/azure_stt/parsers.rb +19 -0
- data/lib/azure_stt/parsers/base.rb +42 -0
- data/lib/azure_stt/parsers/combined_recognized_phrases.rb +28 -0
- data/lib/azure_stt/parsers/file.rb +28 -0
- data/lib/azure_stt/parsers/recognized_phrase.rb +45 -0
- data/lib/azure_stt/parsers/report.rb +25 -0
- data/lib/azure_stt/parsers/result.rb +56 -0
- data/lib/azure_stt/parsers/sentence.rb +45 -0
- data/lib/azure_stt/parsers/transcription.rb +34 -0
- data/lib/azure_stt/parsers/word.rb +28 -0
- data/lib/azure_stt/session.rb +100 -0
- data/lib/azure_stt/version.rb +5 -0
- metadata +158 -0
metadata
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: azure_stt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- François Pouly
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-06-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: dry_struct
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: httparty
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.17'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.17'
|
41
|
+
description: API Wrapper for the Microsoft Translator Text API 3.0 (Cognitive Services)
|
42
|
+
email:
|
43
|
+
- francois.pouly@perfect-memory.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".github/dependabot.yml"
|
49
|
+
- ".github/workflows/ci.yml"
|
50
|
+
- ".gitignore"
|
51
|
+
- ".rubocop.yml"
|
52
|
+
- CHANGELOG.md
|
53
|
+
- CODE_OF_CONDUCT.md
|
54
|
+
- Gemfile
|
55
|
+
- Gemfile.lock
|
56
|
+
- LICENSE
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- azure_stt.gemspec
|
60
|
+
- bin/console
|
61
|
+
- bin/setup
|
62
|
+
- docs/AzureBatchTranscription.html
|
63
|
+
- docs/AzureBatchTranscription/Configuration.html
|
64
|
+
- docs/AzureSTT.html
|
65
|
+
- docs/AzureSTT/Client.html
|
66
|
+
- docs/AzureSTT/Configuration.html
|
67
|
+
- docs/AzureSTT/Error.html
|
68
|
+
- docs/AzureSTT/Models.html
|
69
|
+
- docs/AzureSTT/Models/Base.html
|
70
|
+
- docs/AzureSTT/Models/CombinedRecognizedPhrases.html
|
71
|
+
- docs/AzureSTT/Models/File.html
|
72
|
+
- docs/AzureSTT/Models/RecognizedPhrase.html
|
73
|
+
- docs/AzureSTT/Models/Report.html
|
74
|
+
- docs/AzureSTT/Models/Result.html
|
75
|
+
- docs/AzureSTT/Models/Sentence.html
|
76
|
+
- docs/AzureSTT/Models/Transcription.html
|
77
|
+
- docs/AzureSTT/Models/Word.html
|
78
|
+
- docs/AzureSTT/NetError.html
|
79
|
+
- docs/AzureSTT/Parsers.html
|
80
|
+
- docs/AzureSTT/Parsers/Base.html
|
81
|
+
- docs/AzureSTT/Parsers/CombinedRecognizedPhrases.html
|
82
|
+
- docs/AzureSTT/Parsers/File.html
|
83
|
+
- docs/AzureSTT/Parsers/RecognizedPhrase.html
|
84
|
+
- docs/AzureSTT/Parsers/Report.html
|
85
|
+
- docs/AzureSTT/Parsers/Result.html
|
86
|
+
- docs/AzureSTT/Parsers/Sentence.html
|
87
|
+
- docs/AzureSTT/Parsers/Transcription.html
|
88
|
+
- docs/AzureSTT/Parsers/Word.html
|
89
|
+
- docs/AzureSTT/ServiceError.html
|
90
|
+
- docs/AzureSTT/Session.html
|
91
|
+
- docs/AzureSTT/Transcription.html
|
92
|
+
- docs/AzureSTT/Types.html
|
93
|
+
- docs/AzureStt_.html
|
94
|
+
- docs/_index.html
|
95
|
+
- docs/class_list.html
|
96
|
+
- docs/css/common.css
|
97
|
+
- docs/css/full_list.css
|
98
|
+
- docs/css/style.css
|
99
|
+
- docs/file.README.html
|
100
|
+
- docs/file_list.html
|
101
|
+
- docs/frames.html
|
102
|
+
- docs/index.html
|
103
|
+
- docs/js/app.js
|
104
|
+
- docs/js/full_list.js
|
105
|
+
- docs/js/jquery.js
|
106
|
+
- docs/method_list.html
|
107
|
+
- docs/top-level-namespace.html
|
108
|
+
- env.sample
|
109
|
+
- lib/azure_stt.rb
|
110
|
+
- lib/azure_stt/client.rb
|
111
|
+
- lib/azure_stt/configuration.rb
|
112
|
+
- lib/azure_stt/errors.rb
|
113
|
+
- lib/azure_stt/models.rb
|
114
|
+
- lib/azure_stt/models/base.rb
|
115
|
+
- lib/azure_stt/models/combined_recognized_phrases.rb
|
116
|
+
- lib/azure_stt/models/file.rb
|
117
|
+
- lib/azure_stt/models/recognized_phrase.rb
|
118
|
+
- lib/azure_stt/models/report.rb
|
119
|
+
- lib/azure_stt/models/result.rb
|
120
|
+
- lib/azure_stt/models/sentence.rb
|
121
|
+
- lib/azure_stt/models/transcription.rb
|
122
|
+
- lib/azure_stt/models/word.rb
|
123
|
+
- lib/azure_stt/parsers.rb
|
124
|
+
- lib/azure_stt/parsers/base.rb
|
125
|
+
- lib/azure_stt/parsers/combined_recognized_phrases.rb
|
126
|
+
- lib/azure_stt/parsers/file.rb
|
127
|
+
- lib/azure_stt/parsers/recognized_phrase.rb
|
128
|
+
- lib/azure_stt/parsers/report.rb
|
129
|
+
- lib/azure_stt/parsers/result.rb
|
130
|
+
- lib/azure_stt/parsers/sentence.rb
|
131
|
+
- lib/azure_stt/parsers/transcription.rb
|
132
|
+
- lib/azure_stt/parsers/word.rb
|
133
|
+
- lib/azure_stt/session.rb
|
134
|
+
- lib/azure_stt/version.rb
|
135
|
+
homepage: https://github.com/PerfectMemory/azure_stt
|
136
|
+
licenses:
|
137
|
+
- MIT
|
138
|
+
metadata: {}
|
139
|
+
post_install_message:
|
140
|
+
rdoc_options: []
|
141
|
+
require_paths:
|
142
|
+
- lib
|
143
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
144
|
+
requirements:
|
145
|
+
- - ">="
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '2.6'
|
148
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
requirements: []
|
154
|
+
rubygems_version: 3.0.3
|
155
|
+
signing_key:
|
156
|
+
specification_version: 4
|
157
|
+
summary: API Wrapper for the Microsoft Translator Text API 3.0
|
158
|
+
test_files: []
|