converting actually to words per hour so its an int

pull/1183/head
William Jordan-Cooley 2 years ago
parent 875b98cc5e
commit fa0639b5d6

@ -148,18 +148,21 @@ class STTToken {
class Transcript { class Transcript {
final String text; final String text;
final int confidence; final int confidence;
final int wordsPerMinute;
final List<STTToken> sttTokens; final List<STTToken> sttTokens;
final String langCode; final String langCode;
final int? wordsPerHr;
Transcript({ Transcript({
required this.text, required this.text,
required this.confidence, required this.confidence,
required this.sttTokens, required this.sttTokens,
required this.langCode, required this.langCode,
required this.wordsPerMinute, required this.wordsPerHr,
}); });
/// Returns the number of words per minute rounded to one decimal place.
double? get wordsPerMinute => wordsPerHr != null ? wordsPerHr! / 60 : null;
factory Transcript.fromJson(Map<String, dynamic> json) => Transcript( factory Transcript.fromJson(Map<String, dynamic> json) => Transcript(
text: json['transcript'], text: json['transcript'],
confidence: json['confidence'] <= 100 confidence: json['confidence'] <= 100
@ -169,7 +172,7 @@ class Transcript {
.map((e) => STTToken.fromJson(e)) .map((e) => STTToken.fromJson(e))
.toList(), .toList(),
langCode: json['lang_code'], langCode: json['lang_code'],
wordsPerMinute: json['words_per_minute'].round(), wordsPerHr: json['words_per_hr'],
); );
Map<String, dynamic> toJson() => { Map<String, dynamic> toJson() => {
@ -177,7 +180,7 @@ class Transcript {
"confidence": confidence, "confidence": confidence,
"stt_tokens": sttTokens.map((e) => e.toJson()).toList(), "stt_tokens": sttTokens.map((e) => e.toJson()).toList(),
"lang_code": langCode, "lang_code": langCode,
"words_per_minute": wordsPerMinute, "words_per_hr": wordsPerHr,
}; };
Color color(BuildContext context) { Color color(BuildContext context) {

@ -28,7 +28,7 @@ import package_info_plus
import pasteboard import pasteboard
import path_provider_foundation import path_provider_foundation
import purchases_flutter import purchases_flutter
import record_macos import record_darwin
import sentry_flutter import sentry_flutter
import share_plus import share_plus
import shared_preferences_foundation import shared_preferences_foundation
@ -64,7 +64,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PasteboardPlugin.register(with: registry.registrar(forPlugin: "PasteboardPlugin")) PasteboardPlugin.register(with: registry.registrar(forPlugin: "PasteboardPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
PurchasesFlutterPlugin.register(with: registry.registrar(forPlugin: "PurchasesFlutterPlugin")) PurchasesFlutterPlugin.register(with: registry.registrar(forPlugin: "PurchasesFlutterPlugin"))
RecordMacosPlugin.register(with: registry.registrar(forPlugin: "RecordMacosPlugin")) RecordPlugin.register(with: registry.registrar(forPlugin: "RecordPlugin"))
SentryFlutterPlugin.register(with: registry.registrar(forPlugin: "SentryFlutterPlugin")) SentryFlutterPlugin.register(with: registry.registrar(forPlugin: "SentryFlutterPlugin"))
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))

@ -1841,50 +1841,58 @@ packages:
dependency: "direct main" dependency: "direct main"
description: description:
name: record name: record
sha256: f703397f5a60d9b2b655b3acc94ba079b2d9a67dc0725bdb90ef2fee2441ebf7 sha256: "113b368168c49c78902ab37c2b354dea30a0aec5bdeca434073826b6ea73eca1"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "4.4.4" version: "5.0.5"
record_linux: record_android:
dependency: transitive dependency: transitive
description: description:
name: record_linux name: record_android
sha256: "348db92c4ec1b67b1b85d791381c8c99d7c6908de141e7c9edc20dad399b15ce" sha256: "0df98e05873b22b443309e289bf1eb3b5b9a60e7779134334e2073eb0763a992"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.4.1" version: "1.1.0"
record_macos: record_darwin:
dependency: transitive dependency: transitive
description: description:
name: record_macos name: record_darwin
sha256: d1d0199d1395f05e218207e8cacd03eb9dc9e256ddfe2cfcbbb90e8edea06057 sha256: ee8cb1bb1712d7ce38140ecabe70e5c286c02f05296d66043bee865ace7eb1b9
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.2.2" version: "1.0.1"
record_linux:
dependency: transitive
description:
name: record_linux
sha256: "7d0e70cd51635128fe9d37d89bafd6011d7cbba9af8dc323079ae60f23546aef"
url: "https://pub.dev"
source: hosted
version: "0.7.1"
record_platform_interface: record_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: record_platform_interface name: record_platform_interface
sha256: "7a2d4ce7ac3752505157e416e4e0d666a54b1d5d8601701b7e7e5e30bec181b4" sha256: "3a4b56e94ecd2a0b2b43eb1fa6f94c5b8484334f5d38ef43959c4bf97fb374cf"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.5.0" version: "1.0.2"
record_web: record_web:
dependency: transitive dependency: transitive
description: description:
name: record_web name: record_web
sha256: "219ffb4ca59b4338117857db56d3ffadbde3169bcaf1136f5f4d4656f4a2372d" sha256: "24847cdbcf999f7a5762170792f622ac844858766becd0f2370ec8ae22f7526e"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.5.0" version: "1.0.5"
record_windows: record_windows:
dependency: transitive dependency: transitive
description: description:
name: record_windows name: record_windows
sha256: "42d545155a26b20d74f5107648dbb3382dbbc84dc3f1adc767040359e57a1345" sha256: "39998b3ea7d8d28b04159d82220e6e5e32a7c357c6fb2794f5736beea272f6c3"
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.7.1" version: "1.0.2"
remove_emoji: remove_emoji:
dependency: transitive dependency: transitive
description: description:
@ -1945,18 +1953,18 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: sentry name: sentry
sha256: e572d33a3ff1d69549f33ee828a8ff514047d43ca8eea4ab093d72461205aa3e sha256: fd1fbfe860c05f5c52820ec4dbf2b6473789e83ead26cfc18bca4fe80bf3f008
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.20.1" version: "8.2.0"
sentry_flutter: sentry_flutter:
dependency: "direct main" dependency: "direct main"
description: description:
name: sentry_flutter name: sentry_flutter
sha256: ac8cf6bb849f3560353ae33672e17b2713809a4e8de0d3cf372e9e9c42013757 sha256: c64f0aec5332bec87083b61514d1b6b29e435b9045d03ce1575861192b9a5680
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "7.20.1" version: "8.2.0"
share_plus: share_plus:
dependency: "direct main" dependency: "direct main"
description: description:

Loading…
Cancel
Save