Update share_btn.py
Browse files- share_btn.py +5 -2
share_btn.py
CHANGED
@@ -76,9 +76,12 @@ share_js = """async () => {
|
|
76 |
|
77 |
const descriptionMd = `
|
78 |
#### Image input:
|
79 |
-
${urlInputImg}
|
80 |
#### Sound Effect:
|
81 |
-
|
|
|
|
|
|
|
82 |
`;
|
83 |
const params = new URLSearchParams({
|
84 |
title: captionTxt,
|
|
|
76 |
|
77 |
const descriptionMd = `
|
78 |
#### Image input:
|
79 |
+
<img src='${urlInputImg}' style='max-height: 350px;'>
|
80 |
#### Sound Effect:
|
81 |
+
<audio controls>
|
82 |
+
<source src="${dataOutputSound}" type="audio/wav">
|
83 |
+
Your browser does not support the audio element.
|
84 |
+
</audio>
|
85 |
`;
|
86 |
const params = new URLSearchParams({
|
87 |
title: captionTxt,
|