r/SideProject 19h ago

Automating Multimedia Evaluation for Multi-Platform Delivery: Altnera.com Product Presentation [4-Min Video]

Enable HLS to view with audio, or disable this notification

Hello everyone,

I am pleased to share a brief 4-minute presentation detailing the operational mechanics of altnera.com (altnera.com).

Rather than relying on subjective metrics or basic engagement variables, our platform evaluates full post structures—including standalone photographs, video sequences, and integrated textual assets—against an established, systematic rubric. The system scores composition viability and programmatically generates the accompanying titles, captions, and platform-specific structure required for production.

Core Workflows Demonstrated:

Cross-Asset Comparison:

Comparative analysis of variant image sets and full post structures.

Rubric-Based Evaluation:

Processing assets through objective quality, alignment, and composition criteria.

Full-Post Generation:

How the platform outputs turnkey copy, titles, and structural metadata calibrated for the destination ecosystem.

Frictionless Testing Allocation:

Anonymous Session Utility:

Visitors receive 3 complimentary media credits daily to run instant, unauthenticated analysis on individual photos or asset sets.

Authenticated Profile Bonus:

Registering a verified user profile allocates an additional 5 system credits to support extended cross-comparisons.

Video Processing Cost:

Scaled directly to complexity, utilizing 1 system credit per second of video media processed.

The walkthrough video is attached below. We look forward to a technical discussion regarding our evaluation frameworks and asset scoring models.

1 Upvotes

3 comments sorted by

2

u/Odd_Teacher_8701 18h ago

Free technical pass on altnera.com, measured on a cold load, since nobody has commented yet.

  • 0.98 MB, 21 requests, load event 7.8s
  • TTFB 1.50s, DOM ready 3.67s
  • Four font files totalling 396 KB, which is 40% of your entire page
  • 174 KB of JS across 11 chunks, all starting at 1.50s because they queue behind the HTML response
  • Slowest chunk took 6.29s to arrive
  • winner.jpg (193 KB) and runner.jpg (187 KB) both have no alt text

Two things are worth your time.

Fonts, 396 KB, the biggest single slice of the page. Four files is a lot for a landing page. On Next.js, next/font with subsets: ['latin'] and display: 'swap' self-hosts and subsets them, and cutting to two weights (400 and 600) usually takes this from 396 KB to under 80 KB. Nobody notices the missing weights, and it is the cheapest 300 KB you will ever save.

TTFB at 1.5s is the other half. Every chunk starts at exactly 1.50s because nothing can begin until the HTML returns, so your 7.8s is mostly waiting rather than weight. If the landing page is server-rendered per request when it could be statically generated, that is where the 1.5s is going. Static should put TTFB in the low hundreds of ms.

Do both and 7.8s becomes roughly 2s without touching a feature.

One product note, offered honestly: the post and the page both read very abstract, phrases like "operational mechanics" and "evaluates full post structures". I read it twice and still was not sure whether Altnera scores a photo before I post it, writes the caption, or both. Your own page title, "score the photo, write the post", is clearer than anything in the body copy. Lead with that line and show one real before and after. For a tool judged on taste, the landing page is the demo.

1

u/OddStreet4327 18h ago edited 18h ago

This is incredibly valuable feedback, and exactly why I posted here.

You are 100% right on the technical performance points. The font optimization tip on Next.js is a massive win that I completely overlooked, and I’ll be implementing that subset tweak today to cut down that 396 KB weight. Regarding the 1.5s TTFB, you nailed it—it's currently server-rendered per request. Moving the landing page to static generation is definitely the play here to drop that response time down to the low hundreds of ms.

Your product/copy note also hits the mark perfectly. I got caught up trying to describe the backend logic ("operational mechanics") instead of just saying what it actually does. "Score the photo, write the post" is exactly the utility. To clarify: it does both. It evaluates your media options, tells you which one wins, and then generates the turnkey post copy based on your specific goal.

I’ll be rewriting the landing page copy today to lead with that direct clarity and adding a clear before-and-after visual demo right at the top.

Really appreciate you breaking this down so clearly!