diff --git a/python/audio2text/README.md b/python/audio2text/README.md index a960b48..dddc8d9 100644 --- a/python/audio2text/README.md +++ b/python/audio2text/README.md @@ -2,6 +2,8 @@ This Sequence transcribes an audio file to a text using AssemblyAI API. The example audio file is provided with this sample, replacing this audio file with another is possible but the file must be renamed to `song.wav`.
+The audio file +`song.wav` is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. ___ @@ -27,13 +29,13 @@ mkdir __pypackages__ pip3 install -t __pypackages__ -r requirements.txt # Pack the Sequence into a gzip format -si seq pack audio2text_py +si seq pack audio2text # Send the Sequence to the Transform-Hub, with a return value -si seq send audio2text_py.tar.gz +si seq send audio2text.tar.gz # Start a Sequence, with the AssemblyAi-key as an argument parameter -si seq start --args [\"\"] +si seq start --args [\"\"] # Transcription of the audio file as text output si inst output diff --git a/typescript/audio2text/README.md b/typescript/audio2text/README.md index ce19253..44b8e88 100644 --- a/typescript/audio2text/README.md +++ b/typescript/audio2text/README.md @@ -36,5 +36,5 @@ si seq send dist.tar.gz si seq start - --args [\"AssemblyAi-key\"] # Transcription of the audio file as text output -si inst stdout - +si inst output - ```