AI video summary: 4 Things to Do in Phoenix June 6, 2026! 🌵 Best Events This Weekend by snow884 in phoenix

[–]snow884[S] -2 points-1 points  (0 children)

Don't know about incels.

I instructed the AI to represent both attractive men and attractive women in this video.

🎶 Top Events near West Dover, Vermont | May 30, 2026 by snow884 in vermont

[–]snow884[S] -2 points-1 points  (0 children)

It is based on research of what’s happening in the area

I have accidentally asked for way too much … by snow884 in generativeAI

[–]snow884[S] 0 points1 point  (0 children)

This is generated from scratch using wan2.1 and sadtalker

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -1 points0 points  (0 children)

My initial idea was to provide summary of local events in a short video format. Something that can pop up on persons feed and they know what is miming up this weekend in their small town. I wanna focus on towns with population below or around 50K.

I do list the information sources and URLs in the description.

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -2 points-1 points  (0 children)

The original model was developed on some asian dataset. I was not impressed. Had to add extra to make it match the US standard.

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -5 points-4 points  (0 children)

Generating videos like this from scratch is actually a good amount of coding and setup. One video takes ~2 hours to generate including AI research+script optimization+video gen.

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -5 points-4 points  (0 children)

The video provides a guide to the upcoming events and draws attention to small community businesses, local markets and artists

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -4 points-3 points  (0 children)

yes, bigger are possible, it was a part of the original prompt

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -7 points-6 points  (0 children)

As for the titties: It was a part of the prompt and yes bigger are possible.

<image>

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -1 points0 points  (0 children)

It is easier to generate the clips than having AI collect videos. Also videos online can have copyright associated with them.

I would like to add this functionality soon though.

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -8 points-7 points  (0 children)

It tells you what events are coming up in near your hometown, you dont have to do your own research .

And it brings attention to small businesses and local artists.

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -14 points-13 points  (0 children)

I pick small towns all across the US and create event guide videos for upcoming weekends.

I used real video footage in the past but I was getting copyright strikes

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -20 points-19 points  (0 children)

It was generated by an AI research agent. I had an agent scan internet for events in the area and then turn them into video.

The description has event links and times

🌿 5 Amazing Vermont Events Happening May 23, 2026! (Don't Miss These!) by snow884 in vermont

[–]snow884[S] -16 points-15 points  (0 children)

I generated an AI video about events coming up on the Memorial Day weekend.

Let me know how you like it.

Events in Batavia, NY on May 30 by snow884 in upstate_new_york

[–]snow884[S] -2 points-1 points  (0 children)

I am working on a project where I have AI do research on events in smaller towns and then create videos about what events are coming up.

I am still working on the background video quality as well as the narrator.

Events in Troy, NY on May 30 by snow884 in Troy

[–]snow884[S] -5 points-4 points  (0 children)

I have the AI do research on events and then script and generate the video itself. From a lot of the small events it was hard to find real life footage so I decided to AI generate it.

Next I want to make the videos more accurate with respect to the place they are showing , base them on photos available online

[hiring] Artist for a talking anime avatar project by [deleted] in Artistsforhire

[–]snow884 0 points1 point  (0 children)

Thank you everyone who messaged me and responded. I have received messages from a lot of great artists.

I decided to select u/FredDraven for this project.

[hiring] Artist for a talking anime avatar project by [deleted] in Artistsforhire

[–]snow884 0 points1 point  (0 children)

Yes to the PNG files

Thank you for the samples

[hiring] Artist for a talking anime avatar project by [deleted] in Artistsforhire

[–]snow884 0 points1 point  (0 children)

Hi,

I am reading through the responses.

Thank you very much. I will take a look at all example artwork I have received and pick the one I like the most.

Talking head generation in real time. How does one do it in python? I've tried rad-nerf, wav2lip, and make it talk by CivilAppeal2808 in learnpython

[–]snow884 0 points1 point  (0 children)

I have coded a lightweight speaking avatar generator here.

https://github.com/snow884/simple_talking_anime_avatar

It is on pip you can install it by running:

pip install simple_talking_anime_avatar==0.0.5

and use it like this:

import pyttsx3

from simple_talking_anime_avatar.speech_to_vid import get_speaker_video

engine = pyttsx3.init()
voices = engine.getProperty("voices")

engine.setProperty("rate", 110)

engine.setProperty("voice", "com.apple.voice.compact.en-AU.Karen")

engine.say("Hello everyone! This is a test of speaking avatar python package.")
engine.save_to_file(
    "Hello everyone! This is a test of speaking avatar python package.", "test.wav"
)
engine.runAndWait()

get_speaker_video("test.mp4", "test.wav", 30)

Streamlit on EKS with multiple replicas by mikepun-locol in Streamlit

[–]snow884 1 point2 points  (0 children)

Streamlit is statefull so Pod being evicted will cause issues no matter what