העלאת קובץ tts בAPI עם HTML
-
תגובה: העלאת קובץ tts בAPI
ראיתי במסמך לעיל שהכנת איזה קובץ
אשמח אם תעלה אותו לפורום
כי אני מסתבך עם HTML
תודה רבה! -
@משתמש-טלפוני
במקרה ראיתי את זה, אבל פעם הבאה אתה יכול לתייג בשמחה!
לגופו של עניין, יש לי את הקובץ אבל שדרגתי אותו עבור משהו אחר שאני עושה, כך שאני לא יעביר את הקובץ
אבל אני ישב על זה אולי בערב אי"ה ויעשה.בכ"מ מה רע באתר ניהול החדש?
-
אני רוצה קובץ בנפרד בלי כל הכניסה למערכת!
-
יש לך את הקובץ?
-
@משתמש-טלפוני תנסה את זה (אתה יכול לעשות את זה אצלך במחשב לא צריך שרת)
<!DOCTYPE html> <html lang="he" dir="rtl"> <head> <meta charset="UTF-8"> <title>העלאת קובץ tts</title> <style> input, textarea { border: none; border-bottom: 1px solid #000; outline: none; } </style> </head> <body> <h1>העלאת קובץ tts</h1> <form action="https://www.call2all.co.il/ym/api/UploadTextFile" method="get" onsubmit="return processForm()"> <label for="token">מספר מערכת וסיסמא:</label> <input type="text" id="token" name="token" required placeholder="לדוגמא 073137770:1234" pattern="^[0-9]{9,10}:[0-9]{4,10}$"><br><br> <label for="input1">הקלד שלוחה:</label> <input type="text" id="input1" name="input1" required placeholder="חייב להסתיים בסלאש" pattern="^.*\/$"><br><br> <label for="input2">שם הקובץ:</label> <input type="text" id="input2" name="input2" required placeholder="בלי הסיומת"><br><br> <label for="contents">תוכן:</label> <textarea id="contents" name="contents" required placeholder="הקלד כאן את הטקסט שתרצה להעלות"></textarea><br><br> <input type="hidden" id="what" name="what"> <input type="submit" value="שלח"> </form> <script> function processForm() { var input1 = document.getElementById('input1').value; var input2 = document.getElementById('input2').value; document.getElementById('what').value = "ivr2:" + input1 + ' ' + input2 + '.tts'; return true; } </script> </body> </html>