mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-09 18:55:27 +00:00
gst-plugin-transcribe: implement element
This commit is contained in:
parent
e7d49c45da
commit
a2b3b70f3b
2 changed files with 1040 additions and 1 deletions
|
@ -3,11 +3,15 @@ name = "gst-plugin-transcribe"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Jordan Petridis <jordan@centricular.com>"]
|
authors = ["Jordan Petridis <jordan@centricular.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
description = "AWS Transcribe plugin"
|
||||||
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
||||||
# FIXME: licence
|
# FIXME: licence
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gst = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"], package = "gstreamer" }
|
# FIXME:
|
||||||
|
# gst = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"], package = "gstreamer" }
|
||||||
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"] }
|
||||||
gst_base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"], package ="gstreamer-base" }
|
gst_base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"], package ="gstreamer-base" }
|
||||||
rusoto_core = "0.43.0-beta.1"
|
rusoto_core = "0.43.0-beta.1"
|
||||||
rusoto_credential = "0.43.0-beta.1"
|
rusoto_credential = "0.43.0-beta.1"
|
||||||
|
@ -20,6 +24,10 @@ async-tungstenite = { version = "0.4", features = ["tokio", "tokio-runtime", "to
|
||||||
nom = "5.1.1"
|
nom = "5.1.1"
|
||||||
crc = "1.8.1"
|
crc = "1.8.1"
|
||||||
byteorder = "1.3.4"
|
byteorder = "1.3.4"
|
||||||
|
lazy_static = "1.4.0"
|
||||||
|
serde = "1"
|
||||||
|
serde_derive = "1"
|
||||||
|
serde_json = "1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "gsttranscribe"
|
name = "gsttranscribe"
|
||||||
|
|
1031
audio/transcribe/src/aws_transcribe_parse.rs
Normal file
1031
audio/transcribe/src/aws_transcribe_parse.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue