updated README
Browse files
README.md
CHANGED
@@ -27,7 +27,7 @@ import os
|
|
27 |
# Sample data dict with the link to the video file and the desired language for transcription
|
28 |
DATA = {
|
29 |
"inputs": "<base64_encoded_audio>",
|
30 |
-
"language": "
|
31 |
"task": "transcribe"
|
32 |
}
|
33 |
|
@@ -42,7 +42,6 @@ HEADERS = {
|
|
42 |
response = requests.post(API_URL, headers=HEADERS, json=DATA)
|
43 |
print(response)
|
44 |
|
45 |
-
# The response will contain transcribed audio and detected slides if a video link was provided
|
46 |
```
|
47 |
|
48 |
## Logging
|
|
|
27 |
# Sample data dict with the link to the video file and the desired language for transcription
|
28 |
DATA = {
|
29 |
"inputs": "<base64_encoded_audio>",
|
30 |
+
"language": "de",
|
31 |
"task": "transcribe"
|
32 |
}
|
33 |
|
|
|
42 |
response = requests.post(API_URL, headers=HEADERS, json=DATA)
|
43 |
print(response)
|
44 |
|
|
|
45 |
```
|
46 |
|
47 |
## Logging
|