๐–๐ž๐›๐‚๐จ๐๐ž๐ซ ๐“๐ž๐š๐ฆ
603 subscribers
272 photos
49 videos
697 files
381 links
โžก๏ธ "W" - Web
โžก๏ธ "C" - Coder
โžก๏ธ "T" - Team

๐Ÿ”ตKELAJAK BIZ BILAN!

โ™ป๏ธ Creator: @mengaliyev_02
โš™๏ธ Admin: @yurakda_qolgan
โ†ช๏ธ Chat: @WebCoder_Chat

Mashiniklarga aldanib qolmang bu offical kanal
Download Telegram
PHP_sintaksisi.pdf
40.4 KB
๐Ÿ‘3
PHP_izohlar.pdf
36.9 KB
๐Ÿ‘4
PHPda_Ozgaruvchilar.pdf
47 KB
๐Ÿ‘3
PHP_echo_va_print_operatorlari.pdf
48.7 KB
๐Ÿ‘4
PHP_malumot_turlari.pdf
51.6 KB
๐Ÿ‘4
Mantiqiy amallar (2).pdf
330.3 KB
๐Ÿ‘5
Shart operatori.pdf
220.1 KB
๐Ÿ‘5
php_davrasida_uzbek.pdf
1.2 MB
๐Ÿ‘5
REAKSIYALARNI

AYAMAYMIZ HOLI BUNDA AJOYIB KITOBLAR VA KODLAR SIZLARNI KUTMOQDA SIZLAR BILAN
๐Ÿ‘‰ @WebCoder_Team kanali
๐Ÿ‘จโ€๐Ÿ’ป5๐Ÿ‘2โคโ€๐Ÿ”ฅ1โšก1๐Ÿ‘1๐Ÿ˜1๐Ÿ†1
Assalomu alaykum!
Bugungi live chatda๐Ÿ—จ๏ธ o'zingizni qiziqtirgan savollarga bilimimiz darajasida javob berib ketamiz, qiziq bo'lsa Reaksiya qoldiring...๐Ÿ‘
๐Ÿ‘5๐ŸŽ…1
Chunmadm ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ
๐Ÿ‘5๐ŸŒš1
Salom
๐Ÿ‘5
This media is not supported in your browser
VIEW IN TELEGRAM
BAHO?โค๏ธ
๐Ÿ‘8๐Ÿณ2โคโ€๐Ÿ”ฅ1๐Ÿ†1
Reaksiya nechta bo'ladiโค๏ธโ€๐Ÿ”ฅ
๐Ÿณ8โšก5๐Ÿ‘4๐Ÿ’ฏ4๐Ÿพ4๐Ÿ†2โคโ€๐Ÿ”ฅ1
This media is not supported in your browser
VIEW IN TELEGRAM
Mening birinchi Python kalkulyatorim , sizga qanday yoqdi ๐Ÿ‘พ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘6โšก3๐Ÿ”ฅ2๐ŸŒš1
๐Ÿ‘5๐Ÿ‘1๐Ÿ˜ฑ1
๐Ÿ‘ค Adminla Kanal Chatmas Yozishadigan!

Lichda yoki Chatda yozishila ok
๐Ÿ‘5
๐Ÿ‘4
http://u14314.xvest4.ru/Animations/index.html

Buniham korvorila

( Bunda sichqoncha yordamida Meduza shaklidagi Animatsiyon obyektni o'ynatish mumkin )
๐Ÿ†7๐Ÿ‘3๐Ÿณ3๐Ÿพ3๐Ÿ’ฏ2
Forwarded from #Blog
VIDEO_TO_MP3_RASM_BACKGROUND.py
2.3 KB
๐ŸŽฆ๐Ÿ‘‰๐ŸŽต VIDEONI MP3 QILADI VA
๐Ÿ–ผ๏ธ๐Ÿ‘‰๐ŸŒ RASMNI ORQA FONINI KESIB BERUVCHI TELEGRAM BOTI๐Ÿค–...
---------------------------------
๐ŸŽ› Dasturlash tili PYTHON
------------------------------------------
๐Ÿ—ƒ Manba @PYTHON_700
๐Ÿ‘จโ€๐Ÿ’ป Dasturchi @PHP555 @PYTHON100
---------------------------------------------
๐Ÿ‘‰VIJDONIZ BOสปLSA MANBA BILAN OLING


@PYTHON_700

@PYTHON_700 KANALI UCHUN MAXSUS TAYYORLANDIโœ…
๐Ÿ‘5
Forwarded from #Blog
import os
from telebot import TeleBot, types
from moviepy.editor import VideoFileClip
from PIL import Image
from rembg import remove
from io import BytesIO

TOKEN = 'Tokenizni_kiriting'
bot = TeleBot(TOKEN)

@bot.message_handler(commands=['start'])
def handle_start(message):
    markup = types.InlineKeyboardMarkup()
    markup.row_width = 2
    markup.add(types.InlineKeyboardButton("VIDEO>MP3", callback_data="video_to_mp3"),
               types.InlineKeyboardButton("PHOTO>BACKGROUND", callback_data="photo_to_background"))
    bot.send_message(message.chat.id, "Quyidagi Tugmani Bosing:", reply_markup=markup)

@bot.callback_query_handler(func=lambda call: True)
def handle_call(call):
    if call.data == "video_to_mp3":
        msg = bot.send_message(call.message.chat.id, "Iltimos 20Mbgacha boสปlgan Videoni Yuboring Uni Audio Shaklida Yuboraman.")
        bot.register_next_step_handler(msg, process_video_step)
    elif call.data == "photo_to_background":
        msg = bot.send_message(call.message.chat.id, "RASM JOสปNATING UNI ORQA FONINI KESIB SIZGA YUBORAMAN .")
        bot.register_next_step_handler(msg, process_photo_step)

def process_video_step(message):
    if message.content_type == 'video':
        file_info = bot.get_file(message.video.file_id)
        downloaded_file = bot.download_file(file_info.file_path)
        temp_video_path = "temp_video.mp4"
        with open(temp_video_path, 'wb') as new_file:
            new_file.write(downloaded_file)

        clip = VideoFileClip(temp_video_path)
        temp_audio_path = "extracted_audio.mp3"
        clip.audio.write_audiofile(temp_audio_path)
        clip.close()

        with open(temp_audio_path, 'rb') as audio:
            bot.send_audio(message.chat.id, audio)

        os.remove(temp_video_path)
        os.remove(temp_audio_path)

def process_photo_step(message):
    if message.content_type == 'photo':
        file_info = bot.get_file(message.photo[-1].file_id)
        downloaded_file = bot.download_file(file_info.file_path)

        input_image = Image.open(BytesIO(downloaded_file))
        output_image = remove(input_image)

        output_image_io = BytesIO()
        output_image.save(output_image_io, 'PNG')
        output_image_io.seek(0)
        bot.send_photo(message.chat.id, output_image_io)

bot.polling(none_stop=True)

FILEDAGI TELEGRAM BOT KODI.PY
๐Ÿ‘‰MANBA: @PYTHON_700
๐Ÿ‘จโ€๐Ÿ’ป DASTURCHI: @PHP555 @PYTHON100
๐Ÿ‘6