3 190
Подписчики
-324 часа
-207 дней
-10530 день
Архив постов
3 190
import requests
r = requests.get("http://api.smtv.uz/ai/?text=احبك").json()
print(r['answer'])3 190
import requests url = "" response = requests.post("https://www.clipto.com/api/youtube", json={"url": url}) print(response.json()): Api تحميل من جميع المواقع : : خلي رابط من اي موقع يحمل منه : Ch : @LL_PHP : By : @xZaeem :
3 190
شكد اغبياء العرب هاي موقع تحميل اجنبي صار اسبوع اريد اسحب ال api ماكدر رحت ع موقع عربي نفسه بساع سحبت الايبي 🤣.
3 190
import asyncio from edge_tts import Communicate from io import BytesIO #voice="ar-AE-FatimaNeural" انثى اماراتيه #voice="ar-AE-HamdanNeural" رجل اماراتي async def text2speech(text, voice="ar-AE-HamdanNeural"): communicate = Communicate(text=text, voice=voice, rate="+10%", volume="+50%", pitch="+7Hz") audio_stream = BytesIO() async for ch in communicate.stream(): if ch["type"] == "audio": audio_stream.write(ch["data"]) audio_stream.seek(0) return audio_stream async def m(text): aud_bytes = await text2speech(text) print(f"'طول البايتات ': {len(aud_bytes.getvalue())}") text = "محمد الزعيم رقم واحد" asyncio.run(m(text))
pip install edge_tts: تحويل الكتابة الى صوت بالذكاء الاصطناعي بأستخدام مكتبة edge_tts : Ch : @LL_PHP : By : @xZaeem :
3 190
