-
Notifications
You must be signed in to change notification settings - Fork 17
/
audio-to-pravega.sh
executable file
·41 lines (36 loc) · 1.29 KB
/
audio-to-pravega.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
#
# Copyright (c) Dell Inc., or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Generate audio and write raw audio to Pravega.
set -ex
ROOT_DIR=$(readlink -f $(dirname $0)/..)
pushd ${ROOT_DIR}/gst-plugin-pravega
cargo build
ls -lh ${ROOT_DIR}/target/debug/*.so
export GST_PLUGIN_PATH=${ROOT_DIR}/target/debug:${GST_PLUGIN_PATH}
# log level can be INFO, DEBUG, or LOG (verbose)
export GST_DEBUG=pravegasink:LOG
export RUST_BACKTRACE=1
export GST_DEBUG_DUMP_DOT_DIR=/tmp/gst-dot/audio-to-pravega
mkdir -p ${GST_DEBUG_DUMP_DOT_DIR}
PRAVEGA_STREAM=${PRAVEGA_STREAM:-audio1}
gst-launch-1.0 \
-v \
audiotestsrc name=src is-live=true do-timestamp=true num-buffers=100 \
! "audio/x-raw,format=S16LE,layout=interleaved,rate=44100,channels=1" \
! pravegasink stream=examples/${PRAVEGA_STREAM} sync=false timestamp-mode=realtime-clock \
|& tee /tmp/audio-to-pravega.log
gst-launch-1.0 \
-v \
pravegasrc stream=examples/${PRAVEGA_STREAM} \
! "audio/x-raw,format=S16LE,layout=interleaved,rate=44100,channels=1" \
! audioconvert \
! autoaudiosink \
|& tee /tmp/pravega-to-audio.log