From bac07e49d9a33635e9ae89ec625b74882223d0d8 Mon Sep 17 00:00:00 2001 From: junjiejiangjjj Date: Thu, 7 Apr 2022 19:20:11 +0800 Subject: [PATCH] update --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4079ae7..5e78c17 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,19 @@ -### Description +# Audio decode implementation with PyAV ---- +*author: Junjie Jiang* + +
+ + +### Description **Audio** **Decode** converts the encoded audio back to uncompressed audio frames. In most cases, audio decoding is the first step of an audio processing pipeline. Using the default audio_decode implementation and writing the pipeline in the simplified way +
+ ### Code Example @@ -16,10 +23,11 @@ Using the default audio_decode implementation and writing the pipeline in the si import towhee towhee.glob('./music.mp3') - .audio_decode().flaten() + .audio_decode().flatten() ``` +
### Factory Constructor @@ -30,6 +38,9 @@ Create the operator via the following factory method audio_decode.ffmpeg() +
+ + ### Interface ---