File size: 27,746 Bytes
a79bbf5 cad27c5 a79bbf5 cad27c5 a79bbf5 cad27c5 a79bbf5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 | import os
# βββββββββββββ Standard Library
import os
import time
import uuid
import json
import base64
import asyncio
import nest_asyncio
import random
import logging
import atexit
import pathlib
from threading import Thread
from datetime import datetime, timedelta, timezone
from typing import Optional, Tuple, List
# βββββββββββββ Flask
from flask import Flask, render_template, request, redirect, session
# βββββββββββββ MoviePy
from moviepy.editor import (
VideoFileClip,
ImageClip,
ColorClip,
CompositeVideoClip,
concatenate_videoclips
)
from moviepy.video.fx import resize
# βββββββββββββ Pillow (PIL)
from PIL import Image, ImageDraw, ImageFont
# βββββββββββββ NumPy
import numpy as np
# βββββββββββββ Requests
import requests
# βββββββββββββ Emoji Handling
import emoji
# βββββββββββββ MongoDB
from pymongo import MongoClient
# βββββββββββββ YouTube API (Google)
from google.oauth2.credentials import Credentials
from google.auth.transport.requests import Request
from googleapiclient.discovery import build
from googleapiclient.http import MediaFileUpload
# βββββββββββββ yt-dlp
from yt_dlp import YoutubeDL
# βββββββββββββ Telegram Bot
from telegram import Update
from telegram.ext import (
Application,
CommandHandler,
MessageHandler,
filters,
ContextTypes,
JobQueue
)
UPLOAD_TIMES = []
NEXT_RESET = datetime.now().replace(hour=0, minute=0, second=0, microsecond=0) + timedelta(days=1)
def patch_moviepy():
original_resizer = resize.resize
def patched_resizer(clip, *args, **kwargs):
newsize = kwargs.get("newsize", None)
if newsize:
newsize = tuple(map(int, newsize))
clip = clip.fl_image(lambda img: img.resize(newsize, Image.Resampling.LANCZOS))
else:
clip = original_resizer(clip, *args, **kwargs)
return clip
resize.resize = patched_resizer
patch_moviepy()
import emoji
from PIL import Image, ImageDraw, ImageFont
import emoji
import os
import requests
from PIL import Image, ImageDraw, ImageFont
import emoji
import os, requests
import os
import emoji
import requests
from PIL import Image, ImageDraw, ImageFont
def create_text_image_2(
text: str,
width: int,
height: int,
*,
font_size: int = 60,
align: str = "center", # "left" | "center" | "right"
bg_color=(255, 255, 255),
text_color=(0, 0, 0)
):
img = Image.new("RGBA", (width, height), color=bg_color)
draw = ImageDraw.Draw(img)
# Load font
try:
font = ImageFont.truetype("DejaVuSans-Bold.ttf", size=font_size)
except OSError:
font = ImageFont.load_default()
# Extract emojis and plain text
all_emojis = emoji.emoji_list(text)
plain_text = emoji.replace_emoji(text, replace='')
# Measure text size
text_width, text_height = draw.textsize(plain_text, font=font)
total_emoji_width = len(all_emojis) * font_size
full_width = text_width + total_emoji_width + 5 * len(all_emojis)
# Xβoffset based on alignment
if align == "left":
x_start = 20
elif align == "right":
x_start = max(20, width - full_width - 20)
else: # center
x_start = max(20, (width - full_width) // 2)
y_start = (height - text_height) // 2
# Draw the plain text
draw.text((x_start, y_start), plain_text, font=font, fill=text_color)
# Get emoji positions (in original string)
x = x_start + text_width + 5
for em in all_emojis:
char = em["emoji"]
hexcode = "-".join(f"{ord(c):x}" for c in char)
# Emoji image file
emoji_path = f"emoji_pngs/{hexcode}.png"
if not os.path.exists(emoji_path):
url = f"https://github.com/twitter/twemoji/raw/master/assets/72x72/{hexcode}.png"
os.makedirs("emoji_pngs", exist_ok=True)
try:
response = requests.get(url, timeout=5)
if response.ok:
with open(emoji_path, "wb") as f:
f.write(response.content)
except Exception:
continue
# Paste emoji
if os.path.exists(emoji_path):
em_img = Image.open(emoji_path).convert("RGBA").resize((font_size, font_size))
img.paste(em_img, (x, y_start), em_img)
x += font_size + 5
return img
from PIL import Image, ImageDraw, ImageFont
def create_text_image_with_shadow(
text: str,
width: int,
height: int,
*,
font_size: int = 60,
align: str = "center",
bg_color=(0, 0, 0, 0), # transparent
text_color=(255, 255, 255),
shadow_color=(0, 0, 0),
font_name="DejaVuSans-Bold.ttf" # Only font name, not full path
):
# Create image
img = Image.new("RGBA", (width, height), bg_color)
draw = ImageDraw.Draw(img)
# Load font by name only (must be installed system-wide or available in fallback path)
try:
font = ImageFont.truetype(font_name, font_size)
except OSError:
raise ValueError(f"Font '{font_name}' not found. Ensure itβs installed system-wide or available.")
# Get size
text_bbox = draw.textbbox((0, 0), text, font=font)
text_width = text_bbox[2] - text_bbox[0]
text_height = text_bbox[3] - text_bbox[1]
# Alignment
if align == "left":
x = 0
elif align == "right":
x = width - text_width
else: # center
x = (width - text_width) // 2
y = (height - text_height) // 2
# Draw shadow (1px right)
draw.text((x + 1, y), text, font=font, fill=shadow_color)
# Draw actual text
draw.text((x, y), text, font=font, fill=text_color)
return img
def create_text_image(text, width, height):
img = Image.new("RGB", (width, height), color=(255, 255, 255))
draw = ImageDraw.Draw(img)
# Load font
try:
font = ImageFont.truetype("DejaVuSans-Bold.ttf", size=60)
except:
font = ImageFont.load_default()
# Extract emoji and clean text
emojis = emoji.emoji_list(text)
pure_text = emoji.replace_emoji(text, replace='')
# Adjust font size to fit
max_font_size = 70
while True:
font = ImageFont.truetype("DejaVuSans-Bold.ttf", size=max_font_size)
text_width, text_height = draw.textsize(pure_text, font=font)
total_width = text_width + (len(emojis) * 60) + 20
if total_width <= width - 40 or max_font_size <= 30:
break
max_font_size -= 2
# Starting X & Y for centered layout
start_x = (width - total_width) // 2
y = (height - text_height) // 2
# Draw text first
draw.text((start_x, y), pure_text, font=font, fill=(0, 0, 0))
# Then draw emojis to the right of the text
x = start_x + text_width + 10
for e in emojis:
hexcode = '-'.join(f"{ord(c):x}" for c in e['emoji'])
emoji_path = f"emoji_pngs/{hexcode}.png"
if not os.path.exists(emoji_path):
download_emoji_png(e['emoji'])
if os.path.exists(emoji_path):
emoji_img = Image.open(emoji_path).convert("RGBA")
emoji_img = emoji_img.resize((60, 60))
img.paste(emoji_img, (x, y), emoji_img)
x += 60 + 4
return img
from PIL import Image, ImageDraw, ImageFont
import numpy as np
from moviepy.editor import ImageClip
def generate_watermark_img(text, width, height=50):
img = Image.new("RGBA", (width, height), (0, 0, 0, 0))
draw = ImageDraw.Draw(img)
try:
font = ImageFont.truetype("DejaVuSans-Bold.ttf", size=35)
except:
font = ImageFont.load_default()
text_width, text_height = draw.textsize(text, font=font)
draw.text((5, height - text_height - 2), text, fill="white", font=font, stroke_width=1, stroke_fill="black")
return img
def download_emoji_png(emoji_char):
hexcode = '-'.join(f"{ord(c):x}" for c in emoji_char)
url = f"https://github.com/twitter/twemoji/raw/master/assets/72x72/{hexcode}.png"
os.makedirs("emoji_pngs", exist_ok=True)
path = f"emoji_pngs/{hexcode}.png"
try:
r = requests.get(url)
if r.status_code == 200:
with open(path, "wb") as f:
f.write(r.content)
print(f"β
Downloaded emoji: {emoji_char} β {path}")
else:
print(f"β Failed to download emoji: {emoji_char}")
except Exception as e:
print(f"β οΈ Error downloading emoji {emoji_char}: {e}")
def edit_video(video_path):
clip = VideoFileClip(video_path)
video_width = clip.w
video_height = clip.h
bar_height = 120
total_height = video_height + bar_height
# === 1. Background Canvas
final_bg = ColorClip(size=(video_width, total_height), color=(255, 255, 255), duration=clip.duration)
# === 2. Caption Bar (Top)
caption = random.choice(CAPTIONS)
caption_img = create_text_image(caption, video_width, bar_height)
caption_clip = ImageClip(np.array(caption_img)).set_duration(clip.duration).set_position((0, 0))
# === 3. Eye Protection Overlay (6% White Transparent)
eye_protection = ColorClip(size=(video_width, video_height), color=(255, 255, 255), duration=clip.duration)
eye_protection = eye_protection.set_opacity(0.1).set_position((0, bar_height))
# === 4. Watermark (Bottom-left using Pillow + ImageClip)
watermark_img = generate_watermark_img("@fulltosscomedy4u", video_width, height=50)
watermark_clip = ImageClip(np.array(watermark_img)).set_duration(clip.duration).set_position(("left", bar_height + video_height - 50))
# === 5. Position original video below top bar
video_clip = clip.set_position((0, bar_height))
# === 6. Combine everything
final = CompositeVideoClip(
[final_bg, caption_clip, video_clip, eye_protection, watermark_clip],
size=(video_width, total_height)
)
os.makedirs("edited", exist_ok=True)
output_path = f"edited/{uuid.uuid4().hex}.mp4"
final.write_videofile(
output_path,
codec="libx264",
audio_codec="aac",
preset="veryslow",
bitrate="12000k",
verbose=False,
logger=None
)
return output_path
def edit_video_raw(video_path: str) -> str:
import os, uuid, random
import numpy as np
from moviepy.editor import (
VideoFileClip, ImageClip, ColorClip, TextClip,
CompositeVideoClip
)
# Load main video
clip = VideoFileClip(video_path).resize(width=1220)
vw, vh = 1220, 2460
# Pixel-perfect heights
CAPTION_H = 230
LAUGH_H = 508
MID_H = 210
MAIN_H = 1512
if clip.duration < 6:
raise ValueError("Main video must be at least 6 seconds.")
if clip.duration > 180:
clip = clip.subclip(0, 180)
# Top caption
caption = random.choice(CAPTIONS)
caption_img = create_text_image_2(
caption, vw, CAPTION_H,
font_size=72, align="center",
bg_color=(0, 0, 0), text_color=(255, 255, 255)
)
caption_clip = ImageClip(np.array(caption_img)) \
.set_duration(clip.duration) \
.set_position((0, 0))
# Laugh meme (2s + freeze + 2s)
laugh_files = ["laugh/laugh_one.mp4", "laugh/laugh_two.mp4"]
laugh_path = random.choice(laugh_files)
if not os.path.exists(laugh_path):
raise FileNotFoundError(f"β Laugh meme not found: {laugh_path}")
laugh_raw = VideoFileClip(laugh_path).resize(width=1220)
if laugh_raw.duration < 4:
raise ValueError("Laugh meme must be at least 4 seconds.")
laugh_start = (
laugh_raw.subclip(0, 2)
.resize(height=LAUGH_H)
.set_start(0)
.set_position((0, CAPTION_H))
)
freeze_frame = (
laugh_start.to_ImageClip()
.set_start(2)
.set_duration(max(0, clip.duration - 4))
.set_position((0, CAPTION_H))
)
laugh_end = (
laugh_raw.subclip(laugh_raw.duration - 2)
.resize(height=LAUGH_H)
.set_start(clip.duration - 2)
.set_position((0, CAPTION_H))
)
# Mid caption
mid_text = random.choice([
"Pura 1 din laga tab ye reel mili π€£",
"Ye miss mat kr dena π",
"Kha thi ye reel ab tak π€¨π€",
"Wait, ye dekh kr hi janna π₯π₯",
])
mid_img = create_text_image_2(
mid_text, vw, MID_H,
font_size=64, align="center",
bg_color=(0, 0, 0), text_color=(255, 255, 255)
)
mid_caption_clip = ImageClip(np.array(mid_img)) \
.set_duration(clip.duration) \
.set_start(0) \
.set_position((0, CAPTION_H + LAUGH_H))
# Main video
main_video_y = CAPTION_H + LAUGH_H + MID_H
main_video = clip.resize(height=MAIN_H) \
.set_start(0) \
.set_position((0, main_video_y))
# Light filter over main video to reduce copyright detection
overlay = ColorClip(size=(vw, MAIN_H), color=(255, 255, 255), duration=clip.duration) \
.set_opacity(0.06) \
.set_position((0, main_video_y))
# Watermark: center-right inside main video
# Replace watermark_img creation
watermark_img = create_text_image_with_shadow(
"@FullTossComedy4U",
width=vw, height=100,
font_size=48,
align="right",
bg_color=(0, 0, 0, 0),
text_color=(255, 255, 255),
shadow_color=(0, 0, 0)
)
# Final composition
final = CompositeVideoClip([
caption_clip,
laugh_start, freeze_frame, laugh_end,
mid_caption_clip,
main_video,
overlay,
watermark,
], size=(vw, vh))
# Export
os.makedirs("edited", exist_ok=True)
out_path = f"edited/{uuid.uuid4().hex}.mp4"
final.write_videofile(
out_path,
codec="libx264",
audio_codec="aac",
preset="veryslow",
logger=None,
bitrate="15000k",
threads=4,
fps=clip.fps
)
clip.close(), laugh_raw.close(), final.close()
return out_path
# βββββββββββββββββββββββββββββ LOGGING
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s",
handlers=[
logging.FileHandler("app.log"),
logging.StreamHandler()
]
)
logger = logging.getLogger(__name__)
# βββββββββββββββββββββββββββββ CONSTANTS & GLOBALS
CAPTIONS = [
"Wait for it π", "Watch till end π", "Try not to laugh π€£",
"Don't skip this π₯", "You won't expect this! π", "Keep watching π",
"Stay till end! π₯", "Funniest one yet"
]
BLOCKLIST = [
"nsfw", "18+", "xxx", "sexy", "adult", "porn", "onlyfans", "escort",
"betting", "gambling", "iplwin", "1xbet", "winzo", "my11circle", "dream11",
"rummy", "teenpatti", "fantasy", "casino", "promotion"
]
UPLOAD_TIMES: List[datetime] = []
NEXT_RESET: datetime | None = None
first_run = True
# βββββββββββββββββββββββββββββ DATABASE
client = MongoClient(os.getenv("MONGO_URI"))
db1 = client.shortttt # meta for YouTube uploads
meta = db1.meta
botdb = client.teleg4am_reelssss
a_raw = botdb.raw_links # {link:str, used:bool}
a_reacted = botdb.reacted_links
# βββββββββββββββββββββββββββββ FLASK UI
from flask import Flask
app = Flask(__name__)
@app.route("/")
def home():
return "β
Code is running!"
# βββββ Function 1: pick random link ββββββββββββββββββββββββββββββββββ
def get_random_link() -> Tuple[Optional[str], Optional[str]]:
raw_left = list(a_raw.find({"used": False}))
reacted_left = list(a_reacted.find({"used": False}))
if not raw_left and not reacted_left:
return None, None
choice_pool = "raw" if random.random() < 0.7 else "reacted"
if choice_pool == "raw" and not raw_left:
choice_pool = "reacted"
if choice_pool == "reacted" and not reacted_left:
choice_pool = "raw"
col, pool_list = (a_raw, raw_left) if choice_pool == "raw" else (a_reacted, reacted_left)
doc = random.choice(pool_list)
col.update_one({"_id": doc["_id"]}, {"$set": {"used": True}})
return doc["link"], choice_pool
import os
import re
import uuid
import asyncio
import pathlib
import logging
from typing import Optional, Tuple
from telethon import TelegramClient
from telethon.sessions import StringSession
from telethon.tl.types import DocumentAttributeVideo
from moviepy.editor import VideoFileClip
API_ID = int(os.getenv("TG_API_ID", "3704772"))
API_HASH = os.getenv("TG_API_HASH", "b8e50a035abb851c0dd424e14cac4c06")
SESSION_STR = os.getenv("SESSION")
TARGET_BOT = "instasavegrambot"
logger = logging.getLogger(__name__)
def tg_duration_seconds(message) -> Optional[int]:
if not message or not message.media or not message.media.document:
return None
for attr in message.media.document.attributes:
if isinstance(attr, DocumentAttributeVideo):
return attr.duration
return None
import asyncio
import logging
import shutil
async def download_url_mp4(url: str, filename: str, timeout: int = 30) -> bool:
# 1. Ensure wget exists
if not shutil.which("wget"):
logger.error("β wget is not installed or not in PATH.")
return False
# 2. Build wget command
wget_cmd = [
"wget",
"--quiet", # minimal output # still show a progress bar
f"--timeout={timeout}", # seconds
"--header=User-Agent: Mozilla/5.0 (Linux; Android 10)",
"--header=Referer: https://www.instagram.com/",
"-O", filename, # output path
url
]
try:
# 3. Launch wget as an async subprocess
proc = await asyncio.create_subprocess_exec(
*wget_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
# 4. Wait for it to finish
stdout, stderr = await proc.communicate()
if proc.returncode == 0:
logger.info(f"π₯ Downloaded MP4 β {filename}")
return True
else:
logger.error(
f"β wget exited with {proc.returncode}\nSTDERR: {stderr.decode().strip()}"
)
return False
except Exception as e:
logger.error(f"β wget launch failed: {e}")
return False
async def send_to_bot_and_get_video(link: str) -> Tuple[Optional[str], Optional[int]]:
async with TelegramClient(StringSession(SESSION_STR), API_ID, API_HASH) as client:
bot = await client.get_entity(TARGET_BOT)
async def attempt(send_link: str, depth=0) -> Tuple[Optional[str], Optional[int]]:
if depth > 2:
logger.warning("π Retry limit reached.")
return None, None
async with client.conversation(bot, timeout=30) as conv:
await conv.send_message(send_link)
logger.info(f"π€ Sent to {TARGET_BOT}: {send_link}")
try:
reply = await conv.get_response()
except asyncio.TimeoutError:
logger.warning("β° No reply from bot in 30 seconds.")
return None, None
msg = reply
text = msg.message or ""
logger.info(f"π¬ Bot replied: {text[:80]}")
# β
Case 1: Telegram video file
duration = tg_duration_seconds(msg)
if duration:
if 20 <= duration <= 180:
pathlib.Path("reels").mkdir(exist_ok=True)
file_path = await msg.download_media(file="reels/")
logger.info(f"β
Downloaded video β {file_path}")
return file_path, duration
logger.info(f"β© Skipped due to invalid duration = {duration}s")
return None, None
# β
Case 2: CDN link in full text (even if surrounded by message)
urls = re.findall(r"https://[^\s]+", text)
if urls:
cdn_url = urls[0].strip()
pathlib.Path("reels").mkdir(exist_ok=True)
fname = f"reels/{uuid.uuid4().hex}.mp4"
success = await download_url_mp4(cdn_url, fname)
if not success:
return None, None
# Try to get duration using MoviePy
try:
clip = VideoFileClip(fname)
duration = int(clip.duration)
clip.close()
if 20 <= duration <= 180:
return fname, duration
else:
logger.info(f"β© CDN duration = {duration}s β Skipped")
os.remove(fname)
return None, None
except Exception as e:
logger.warning(f"ποΈ Duration read failed: {e}")
return None, None
# β Case 3: Ad or error
if "Request failed" in text:
logger.warning("π Bot said request failed, retrying onceβ¦")
return await attempt(send_link, depth + 1)
if "We are experiencing high" in text:
return await asyncio.sleep(3600)
if "http" in text and (msg.photo or text.count(" ") > 0):
logger.info("β Detected ad/promo. Ignored.")
return None, None
logger.info("β No usable video received from bot.")
return None, None
return await attempt(link)
# ββββββββββ Loop until we get a valid reel ββββββββ
async def fetch_valid_reel() -> Tuple[Optional[str], Optional[str]]:
for _ in range(10):
link, pool = get_random_link()
if not link:
return None, None
logger.info(f"Trying {pool} link: {link}")
video_path, duration = await send_to_bot_and_get_video(link)
if video_path:
return video_path, pool
await asyncio.sleep(15)
return None, None
# βββββββββββββββββββββββββββββ YOUTUBE UPLOAD & META
# (upload_to_youtube, save_to_db) β unchanged from original
def upload_to_youtube(video_path, title, desc):
creds = Credentials(
token=None,
refresh_token=os.getenv("YT_REFRESH_TOKEN", ),
token_uri="https://oauth2.googleapis.com/token",
client_id=os.getenv("YT_CLIENT_ID"),
client_secret=os.getenv("YT_CLIENT_SECRET"),
scopes=["https://www.googleapis.com/auth/youtube.upload"]
)
creds.refresh(Request())
youtube = build("youtube", "v3", credentials=creds)
request = youtube.videos().insert(
part="snippet,status",
body={
"snippet": {
"title": title,
"description": desc,
"tags": ["funny", "memes", "comedy", "shorts"],
"categoryId": "23"
},
"status": {
"privacyStatus": "public",
"madeForKids": False
}
},
media_body=MediaFileUpload(video_path)
)
res = request.execute()
logger.info(f"Uploaded: https://youtube.com/watch?v={res['id']}")
return f"https://youtube.com/watch?v={res['id']}"
def get_next_part():
last = meta.find_one(sort=[("part", -1)])
return 1 if not last else last["part"] + 1
def generate_description(title):
return f"Watch this hilarious clip: {title}"
def save_to_db(part, title, desc, link):
meta.insert_one({"part": part, "title": title, "description": desc, "link": link, "uploaded": time.time()})
# βββββββββββββββββββββββββββββ MAIN AUTO LOOP
def auto_loop():
asyncio.set_event_loop(asyncio.new_event_loop())
global UPLOAD_TIMES, NEXT_RESET
ist = timezone(timedelta(hours=5, minutes=30))
daily_upload_count = random.randint(3, 5)
uploads_done_today = 0
NEXT_RESET = datetime.now(ist).replace(hour=0, minute=0, second=0, microsecond=0) + timedelta(days=1)
logger.info(f"[π
] Today's upload target: {daily_upload_count} reels.")
def wait_until(hour: int, minute: int = 0):
now = datetime.now(ist)
target = now.replace(hour=hour, minute=minute, second=0, microsecond=0)
if target < now:
return
logger.info(f"[π] Waiting until {target.strftime('%H:%M')} IST...")
while datetime.now(ist) < target:
time.sleep(10)
wait_until(8)
while True:
try:
now = datetime.now(ist)
if now >= NEXT_RESET:
UPLOAD_TIMES.clear()
NEXT_RESET = now.replace(hour=0, minute=0, second=0, microsecond=0) + timedelta(days=1)
daily_upload_count = random.randint(3, 5)
uploads_done_today = 0
logger.info(f"[π] Reset for new day. New target: {daily_upload_count} uploads.")
if uploads_done_today >= daily_upload_count:
logger.info("[β
] Daily upload target reached.")
time.sleep(60)
continue
if now.hour < 8 or now.hour >= 23:
time.sleep(60)
continue
if not UPLOAD_TIMES or (now - UPLOAD_TIMES[-1]).total_seconds() >= random.randint(7200, 14400):
video_path, reel_type = asyncio.run(fetch_valid_reel())
if not video_path:
logger.warning("[β οΈ] No valid reel found. Retrying...")
time.sleep(60)
continue
edited = edit_video_raw(video_path) if reel_type == "raw" else edit_video(video_path)
part = get_next_part()
title = f"Try not to laugh || #{part} #funny #memes #comedy #shorts"
desc = generate_description(title)
link = upload_to_youtube(edited, title, desc)
save_to_db(part, title, desc, link)
logger.info(f"[π€] Uploaded #{part}: {link}")
UPLOAD_TIMES.append(now)
uploads_done_today += 1
os.remove(video_path)
os.remove(edited)
if uploads_done_today < daily_upload_count:
gap_seconds = random.randint(7200, 14400)
next_time = datetime.now(ist) + timedelta(seconds=gap_seconds)
if next_time.hour >= 20:
logger.info("[π] Next upload would exceed 8PM. Skipping.")
continue
logger.info(f"[β³] Waiting ~{gap_seconds // 60} minutes before next upload.")
time.sleep(gap_seconds)
else:
time.sleep(60)
except Exception as e:
logger.error(f"Loop error: {e}")
time.sleep(60)
if __name__ == "__main__":
import asyncio
from threading import Thread
Thread(target=lambda: app.run(host="0.0.0.0", port=7860, debug=False, use_reloader=False)).start()
# β
Run uploader loop in background
Thread(target=auto_loop, daemon=True).start()
|