Posts

Showing posts from 2025

conver audio to video , so we can upload in youtube

Image
  # === STEP 1: Mount Google Drive (optional but recommended) === from google.colab import drive drive.mount ( '/content/drive' ) # If your files are in Drive, set this path: # BASE_PATH = "/content/drive/MyDrive/your_folder" # If you upload files directly to Colab, use this: BASE_PATH = "/content" # === STEP 2: Install required package === ! pip install moviepy --quiet # === STEP 3: MAIN CODE - Create video from audio + title image === from moviepy.editor import AudioFileClip , ImageClip , concatenate_videoclips from PIL import Image , ImageDraw , ImageFont import os # ────── CONFIGURATION ────── audio_file     = f " { BASE_PATH } /aud.mp3"           # Input audio output_video   = f " { BASE_PATH } /vid1.mp4"           # Output video title_text     = "త్రైత సిద్ధాంత  భగవద్గీత, దైవాసురసంపద్విభాగ యోగము"   # ← CHANGE THIS # Video settings (small & YouTube-friendly) width , height =...

code to be validated.

 class AstrologyAnalyzer:     def __init__(self):         # === HOUSE MEANINGS ===         self.house_meanings = {             "H1": ["body", "self", "health", "birth", "personality", "head", "life force"],             "H2": ["wealth", "family", "speech", "food", "face", "right eye", "education early"],             "H3": ["siblings", "courage", "short travel", "arms", "ears", "communication"],             "H4": ["mother", "home", "vehicle", "education", "heart", "chest", "land"],             "H5": ["children", "intelligence", "love", "purva punya", "stomach", "creativity"],             "H6": ["enem...

astrology logic, with small code. template, without filling h, p properites.

 class AstrologyAnalyzer:     def __init__(self):         # === HOUSE MEANINGS ===         self.house_meanings = {             "H1": ["body", "self", "health", "birth", "personality", "head", "life force"],             "H2": ["wealth", "family", "speech", "food", "face", "right eye", "education early"],             "H3": ["siblings", "courage", "short travel", "arms", "ears", "communication"],             "H4": ["mother", "home", "vehicle", "education", "heart", "chest", "land"],             "H5": ["children", "intelligence", "love", "purva punya", "stomach", "creativity"],             "H6": ["enem...

jagan jyothi, pss

Image
 

pss birth chart vedio

 https://youtu.be/4xqhRWbCfVs

Step by step Registration process of society by grok in andrapradesh.

  similary advita siddantam, our spiritual leader proposed thritha siddantam( 3 soul knowledge), we are thinking this is right spiritual knowledge for liberation of life cycle. but most still following advitya, ditha, vissta advita siddtatams.; we formed 5-6 members who knew knowledge, selling books on weekends to give awareness to public without forcing anybody, only intrested person can come buy our books, we planning to register this (AS ngo), our goal is spread this knowlege ( intrested persons can follow this path for liberation of life cycle at the end). tell me step by step registration process in andrapradesh , registering our activites, as per govement formalities, many org, who did already in the same way, No profit earning , giving awarenss to other peacefully , provide me step by step on this. Certainly! Here's a clear, step-by-step presentation of how to register your NGO (Society) in Andhra Pradesh for your spiritual awareness activities: Step-by-Step Guide to Reg...

praveen xslt requirement 1st logic sort and reading header, traier elements row , for each item 2nd logic: grouping quantity

Image
  second xslt or graphcal logic to be used. ----------------------------------------- after first xslt logic,  you can use graphical mapping, change logic delivery quanty by taking similar delivery number,  or  use another xslt logic. <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">     <!--         1. Define a key (Muenchian Grouping) to group all OrderStatusFromLSP            elements that share the same DELIVERY_NUMBER.     -->     <xsl:key name="delivery-group" match="OrderStatusFromLSP" use="DELIVERY_NUMBER"/>     <!--         Identity Template: A default rule to copy all nodes and attributes.         This ensures the entire document structure remains intact unless         overridden by a more specif...