Creative Filmmaker ∩ AI Automation Engineer

Bridges Creative Workflows with Agentic AI & RPA

Holding an MA in Filmmaking and an MBA in Digital Marketing. I specialize in designing native Chrome extensions, automated scraping engines, and local speech pipelines to streamline content operations, copyright audits, and publishing networks.

cloud_agent_session_bash
cheng@mac ~ % python3 -m cloud_agent --list-workflows
=== Automated Cloud Agentic Workflows === [1] Short Drama Views & LTV Forecaster (SciPy / ML) [2] Short Drama Generative Pipeline (Kokoro/SVD) [3] YT-Monitor Copyright Rights Auditor (Pandas) [4] AdPulse AI: Media Buying & Decay Optimizer (React) [5] ChaosGuard Adaptive Bayesian v9.0 (10k Primes)
cheng@mac ~ % python3 -c "click 'Run Demo' buttons below..."

Where Creative Vision Meets Engineering

My background bridges three distinct fields, allowing me to speak the language of creative writers, business strategists, and software architects simultaneously.

🎬

Creative Filmmaking

Equipped with an MA in Filmmaking from NYFA. Deeply understands storytelling structures, script formatting, cliffhanger mechanics, and video editing rhythm.

  • Screenplay adaptation (ZH to EN)
  • Character & scene consistency design
  • Short vertical drama pacing
📈

Strategic Marketing & Ops

Equipped with an MBA. Possesses an advanced operational overview of budget compliance, copyright compliance, media acquisition, and ROI marketing campaign management.

  • OTT/AVOD/FAST Distribution networks
  • UGC ecosystem & RightsID monitoring
  • Campaign metrics auditing
🤖

Agentic AI & Engineering

Builds functional, robust script pipelines, native Chrome Extensions (MV3), and custom scrapers to eliminate operational bottlenecks and automate repetitive workflows.

  • Chrome Extension DOM injection & State Sync
  • Generative AI & LLM integration
  • Pandas copyright claiming automation

High-Impact Automation Pipelines

Detailed technical deep dives and active source-code snippets from systems designed to solve real-world media and operational pain points.

Python 3 SciPy Optimize Scikit-Learn Pandas & NumPy

1. Short-Drama Views & LTV Predictive Forecaster

An analytical machine learning pipeline built to solve ad-pacing and content investment decisions. Fits vertical short-drama viewership decay curves using non-linear least squares optimization over initial free episodes, training a Random Forest Regressor to forecast locked-episode premium paywall unlocks and overall campaign ROI.

95.40% R² Fit Accuracy
SciPy Pop Curve-Fit Optimization
ROI Alert Ad-Pacing Advisory
forecast_engine.py — Curve Fit & ML
def exponential_decay(episode, v1, decay_rate):
    return v1 * np.exp(-decay_rate * (episode - 1))

# Fits early episodes (1-5) retention decay rate
popt, _ = curve_fit(
    lambda e, d_rate: exponential_decay(e, v1, d_rate),
    episodes, views_5, p0=[0.15], bounds=(0.001, 1.5)
)
est_decay_rate = popt[0]
Kokoro MLX ChatTTS API ComfyUI / SVD FFmpeg Shell

2. Short Drama Generative Pipeline

An end-to-end media automation framework for mobile micro-dramas. It parses textual screenplay dialogue, allocates dialogue lines to character-specific voice clones, auto-aligns millisecond-accurate SRT subtitle tracks, and synthesizes character-consistent video blocks using Stable Video Diffusion.

Kokoro High-Speed EN Pipe
Seed Locks ChatTTS Consistency
60% Faster Media Rendering
tts_orchestrator.py — Voice Matcher
def parse_dialog_script(script_text):
    lines = script_text.split('\n')
    dialog_track = []
    for line in lines:
        if line.startswith("F:"): // Lock Chinese Seed 313 (Female)
            dialog_track.append({"voice": "seed_313", "text": line[2:]})
        else:
            dialog_track.append({"voice": "kokoro_v0", "text": line})
    return dialog_track
Python (Pandas) SQLite 3 Audit Logs RightsID

3. YT-Monitor: Copyright Claims & Rights Auditor

An automation pipeline that handles and consolidates massive daily UGC copyright claims reports. It de-duplicates entries across time zones, matches them with Vobile's active policy-driven database schemas, and isolates signals of key intellectual property (IP).

80% Time Saved
99.8% Claims Alignment
Zero Missed High-Val IP
AlwayBClaiming.py — Pandas Merge
import pandas as pd
def consolidate_claims(daily_reports_paths):
    dfs = [pd.read_csv(p) for p in daily_reports_paths]
    merged = pd.concat(dfs, ignore_index=True)
    # Drop strict duplicates across regional rights registers
    clean_df = merged.drop_duplicates(subset=['asset_id', 'claim_time'])
    # Query high-value targets (Rick and Morty / Gumball)
    targets = clean_df[clean_df['title'].str.contains('Morty|Gumball', case=False)]
    return clean_df, targets
React 19 / Vite Google GenAI SDK Tailwind CSS v4 TypeScript AdTech Analytics

4. AdPulse AI: Programmatic Media Buying & Creative Decay Optimizer

An AI-powered AdTech growth and optimization platform. Ingests raw media buying campaign analytics (Spend, CTR, CPC, ROAS) from programmatic DSPs (The Trade Desk, DV360), automatically flags creatives undergoing decay, and runs Gemini-powered optimization pipelines generating 3 optimized ad hook scripts and corresponding Runway Gen-3 text-to-video / Midjourney prompts.

+60% Lift Projected ROAS Lift
Gemini 2.5 Creative Optimizer
@google/genai SDK Pipeline
🚀 Launch Live Web App
geminiService.ts — GenAI SDK
// Call official Google GenAI SDK to diagnose decay
const response = await ai.models.generateContent({
    model: modelName,
    contents: `Analyze this decaying ad payload:\n${jsonInput}`,
    config: {
        systemInstruction: SYSTEM_INSTRUCTION,
        temperature: 0.7,
    }
});
return { text: response.text, usage: response.usageMetadata };
Python 3 Bayesian Inference Inhomogeneous Poisson Cybersecurity

5. ChaosGuard: Adaptive Bayesian Scheduler (v9.0 Flagship)

A production-grade, anti-detection scheduling engine engineered to mimic human-like behavioral entropy. It leverages a 10,000 Prime Domain (1,229 seeds) to neutralize statistical frequency peaks, governed by a Bayesian Feedback Loop that monitors real-time environmental pressure. Integrates Dual-Profile Tactical Switching (Smooth vs. High-Contrast) to adapt to varied cognitive workloads in LLM-driven automation.

1229 Primes Entropy Depth
Dual-Profile Tactical Modes
Zero Detection Risk
chaos_governor.py — Risk Feedback
def observe_and_update(actual_latency):
    # Bayesian update: Adjust risk beliefs based on latency
    if actual_latency > self.latency_baseline * 2.5:
        self.risk_level = (self.risk_level * 1.5) + 0.1
    else:
        self.risk_level *= 0.85
    return min(max(self.risk_level, 0.01), 0.99)

def get_next_delay(profile="smooth"):
    # Tiers: Hyper [0-150s] | Yield [150-400s] | Chaos [2000s+]
    if self.risk_level > 0.7:
        start_idx = random.randint(300, 1200)
    else:
        start_idx = random.randint(0, 60)
    pool = self.all_primes[start_idx : start_idx + 15]
    return poisson_sample(random.choice(pool))

Skills & Technologies Matrix

A rigorous inventory of technologies, platforms, and operational standards I employ on daily basis.

🤖 Agentic & Automation Stack

Python (Pandas/NumPy) Chrome Extensions (MV3) DOM Prototype Overrides Gemini & OpenAI API Integration Greenhouse & Lever ATS APIs Web Scraping (BeautifulSoup/Re) SQLite 3 / SQLite-utils Git & GitHub Actions Shell Scripting (Bash)

🎬 Media Operations & Creative

RightsID Rights Auditing UGC Copyright Compliance Kokoro MLX & ChatTTS Engines ComfyUI & Stable Video Diffusion Final Draft (Hollywood Standard) AVOD / FAST OTT Distribution Adobe Premiere Pro & Photoshop The Trade Desk & DV360 Tableau, Salesforce & GA

🏅 Official Credentials & Verified Badges

BigQuery Badge Compute Engine Badge The Trade Desk Badges Verified via Credly

Professional Roadmap

An evolution bridging elite arts, digital corporate strategy, and automation engineering.

April 2025 – Present

Video Rights Operations / Digital Product Operations

Vobile Inc. — Los Angeles, CA

Monitors massive UGC video streams for major film/TV rights holders using RightsID. Engineered Python data pipelines that consolidated Daily claims into SQLite3 databases, and crafted internal unpacked extensions to automate QA reporting workflows.

2017 – Present

Producer, Screenwriter & Content Automation Architect

FilmSnap LLC / IMC Film — Burbank, CA

Evaluates, adapts, and localizes original Chinese vertical drama scripts for North American audiences. Pioneered end-to-end AI-assisted generation workflows merging Local TTS, SRT subtitling scripts, and ComfyUI video assets to slash post-production timelines by 60%.

2022 – 2025

MBA in Digital & Strategic Marketing

Westcliff University — Irvine, CA

Acquired business governance foundations, corporate data analysis models, and advanced ROI evaluation strategies, directly applying financial and operational overview metrics onto creative industries.

2016 – 2017

Master of Arts (MA) in Filmmaking

New York Film Academy — Burbank, CA

Acquired rigorous Hollywood-standard training in screenwriting, cinematography, and post-production pacing. Established a firm foundation in creative narrative development and visual editing structure.

Initiate an Operational Breakthrough

I am actively exploring strategic roles in AI Product/Media Operations, Generative AI Orchestration, and Content Tech. Let's discuss how my customized RPA solutions can eliminate your team's operational overhead.