Metamorphose.org
A Catalog of Transformations, Plus Reviews and Alerts
Request an Account
age
animal
female
furry
gender
inanimate
male
mythical
size
were
MSG Board
1   Body swap TV show or
1   Too much AI
3   Old youtube video "W
244   List of Movies with
172   Veo 3
19   Vecinos 19x01
339   AI Video Generator -
Veo 3
Page 1 2 3 4 5 6 7 8 9
From: guest (von) , 30 days, post #1
Curious if anyone has tried it. The graphics look more real and there is audio.

From: guest , 30 days, post #2
I’m pretty sure it’s not available yet and regardless it’ll probably be a while before it’s anywhere near affordable. From what I understood Google Ai Pro users will get it soon but it’s a $250 a month subscription

From: guest (von) , 30 days, post #3
On twitter you are seeing example of Veo 3 and it looks amazing. For one there is actual sound. I asked grok if there was a way you can use it for free and there is a way it described. I asked Grok 3 to summarize the step by step process for another interested and here is what it said:

"Hey everyone! Want to create a cool shapeshifting video (like a character morphing into another form with glowing effects) using Google’s Veo 3, the top-tier AI video generator, without paying a dime? Veo 3 produces stunning 4K videos with realistic visuals and native audio, but it’s locked behind a pricey $249.99/month plan. The good news? You can access it for free using Google Cloud’s $300 free credits for new users. Here’s a step-by-step guide to generate a generic shapeshifting scene (e.g., a person transforming into another character) using Veo 3 via the Vertex AI API. No advanced coding skills needed!
What You’ll Need
A Google account (create one if you don’t have it).

A credit/debit card for Google Cloud signup (no charges during the trial; temporary $0.00–$1.00 hold may apply).

Basic familiarity with running simple scripts (don’t worry, I’ll provide the code).

A computer with Python installed (free from python.org).

Step-by-Step Instructions
Sign Up for Google Cloud Free Credits
Go to cloud.google.com and click “Get Started for Free.”

Sign in with your Google account and follow the prompts to create a Google Cloud account.

Enter a credit/debit card for verification (Google may place a small, temporary hold that’s reversed in 3–4 days).

Upon signup, you’ll get $300 in free credits, valid for 90 days or until used up. These credits cover ~14 minutes of Veo 3 video generation (at ~$0.35/second), enough for multiple shapeshifting clips!

Create a Google Cloud Project
In the Google Cloud Console (console.cloud.google.com), click “Select a Project” > “New Project.”

Name your project (e.g., “Veo3Shapeshift”) and note the Project ID (e.g., my-project-123). You’ll need this for the API.

Google may auto-create a default project (“My First Project”) if you’re new—use that if you prefer.

Enable the Vertex AI API
In the Console, go to “APIs & Services” > “Library.”

Search for “Vertex AI API” and click “Enable.” This unlocks Veo 3 (model ID: veo-3.0-generate-preview).

Set Up Authentication
Go to “IAM & Admin” > “Service Accounts” > “Create Service Account.”

Name it (e.g., “veo3-user”), assign the “Vertex AI User” role, and create a JSON key.

Download the JSON file (e.g., credentials.json) and save it to your computer.

Set the environment variable by noting the file’s path (e.g., C:\Users\YourName\credentials.json).

Install Python and Dependencies
Download and install Python from python.org if you don’t have it.

Open a terminal (Command Prompt on Windows, Terminal on Mac/Linux) and install the requests library:

pip install requests

Run the Veo 3 API Script
Copy the Python script below to generate a shapeshifting video. Save it as veo3_shapeshift.py:
python

import requests
import os

  1. Set path to your JSON credentials file
os.environ["GOOGLE_APPLICATION_CREDENTIALS" = "path/to/your/credentials.json"

  1. Replace YOUR_PROJECT_ID with your actual Project ID
url = "https://us-central1-aiplatform.googleapis.com/v1/projects/YOUR_PROJECT_ID/locations/us-central1/publishers/google/models/veo-3.0-generate-preview:predict"

  1. Prompt for a generic shapeshifting scene
payload = {
"instances": [
{
"prompt": "A cinematic scene in a forest at twilight. A young character stands alone, speaking: ‘I feel strange today.’ Mid-sentence, their voice deepens, and their body transforms into a different character with glowing light effects, changing clothes and appearance. The new character looks surprised, saying, ‘What am I?’ with a confused tone. The camera shows a close-up of their face, then a wide shot of the transformation, with realistic lighting and forest sounds. Duration: 8 seconds, 16:9 aspect ratio.",
"sampleCount": 1,
"videoDuration": "8s",
"aspectRatio": "16:9"
}
,
"safetySettings": {
"personGeneration": "ALLOW_ADULTS_ONLY" # Allows realistic human faces
}
}

  1. Send API request
response = requests.post(url, json=payload)
print(response.json())

Edit the script:
Replace "path/to/your/credentials.json" with the actual path to your JSON file (e.g., C:\\Users\\YourName\\credentials.json).

Replace YOUR_PROJECT_ID with your Project ID from Step 2.

Customize the "prompt" if you want a different shapeshifting scene (e.g., change the setting to a city or add specific effects like “sparkling particles”).

Run the script in your terminal:

python veo3_shapeshift.py

Set Up a Storage Bucket (Optional)
Videos are returned as bytes or saved to a Google Cloud Storage bucket. To save videos automatically:
Go to “Cloud Storage” > “Buckets” in the Console and create a bucket (e.g., gs://my-veo3-videos/).

Add the bucket URI to the script’s payload:
python

"outputGcsUri": "gs://my-veo3-videos/output/"

If you skip this, check the API response for the video data or download link.

Navigate Safety Filters
Veo 3 restricts realistic human faces to prevent misuse. The "ALLOW_ADULTS_ONLY" setting in the script allows realistic faces for your shapeshifting scene but still blocks explicit or harmful content.

Use neutral prompt language (e.g., “character transforms into another form”) to avoid filter rejections. Avoid overly specific or suggestive descriptions.

Monitor Your Credits
Veo 3 costs ~$0.35/second, so $300 credits cover ~14 minutes of video (e.g., ~100 eight-second clips). Check usage in the Console under “Billing” > “Billing Account Overview.”

Credits expire after 90 days, and daily quotas may limit API calls, so plan your generations.

View Your Shapeshifting Video
If you used a bucket, download the video from gs://my-veo3-videos/output/ in the Console.

If no bucket, the API response includes the video data or a temporary link. Save and play it with any video player.

Tips for a Great Shapeshifting Scene
Prompt Tips: Be specific about the setting (e.g., “forest at twilight”), transformation effects (e.g., “glowing lights”), and camera angles (e.g., “close-up of face, wide shot of transformation”). Include dialogue or sounds for Veo 3’s native audio (e.g., “forest ambient sounds”).

Realistic vs. Stylized: The script above uses realistic faces with "ALLOW_ADULTS_ONLY". For a cartoonish/Pixar-style look to avoid filters, add “Pixar-style animated characters” to the prompt.

Test Short Clips: Start with 5–8-second videos (preview mode limit) to save credits, then tweak the prompt for best results.

Limitations
US-Only Access: Veo 3 is currently limited to US users. Non-US users may need a VPN or US-based Google account.

Content Filters: Even with “ALLOW_ADULTS_ONLY,” prompts with sensitive transformations (e.g., gender or explicit details) may be flagged. Keep descriptions neutral.

Short Videos: Preview mode caps videos at 5–8 seconds, which works for quick shapeshifting scenes but may feel tight for complex narratives.

One-Time Credits: The $300 credits are for new Google Cloud users only. If you’ve used them before, you’ll need a new account or consider the Flow waitlist labs.google/fx, though free Veo 3 access there isn’t guaranteed.

Troubleshooting
API Errors: If the script fails, double-check your Project ID, JSON file path, and Vertex AI API enablement. Ensure your account has credits.

Content Rejections: If the prompt is blocked, simplify it (e.g., remove specific character details) or try a stylized prompt (e.g., “animated character transforms”).

Need Help?: Post your issue in this forum thread, and I or others can help tweak the script or prompt!

Why Veo 3?
Veo 3’s 4K resolution, native audio (dialogue, sound effects), and cinematic realism make it perfect for shapeshifting scenes with smooth transformations and emotional reactions. The $300 credits give you plenty of room to experiment, unlike the costly AI Ultra plan. Have fun creating your morphing masterpiece, and share your results here!
Notes for Forum Posting:
This guide is written in a friendly, accessible tone for a broad audience, assuming minimal technical expertise.

It includes a generic shapeshifting prompt to inspire users without replicating your specific scene (man-to-woman transformation with dialogue).

The instructions cover setup, execution, and troubleshooting, with emphasis on the free credits and safety settings to ensure success.

You can post this as-is or tweak it for your forum’s style (e.g., add emojis or bold specific sections). If you want a different tone, more technical details, or a specific forum format, let me know, and I’ll adjust it!"

From: guest (Guest) , 29 days, post #4
I hope someone provides a sample clip made from VEO3

From: guest (von) , 29 days, post #5
I'm learning python right now lol

From: guest (von) , 29 days, post #6
I've been trying but am getting frustrated with the error I've been getting. I'll give up for now. I hope someone figures out how to do this. Veo 3 truly is breathtaking and you can get long scenes up to a minute long. This scene is not transformation related but demonstrates how amazing it is:

https://www.youtube.com/watch?v=q9bHGAD_Auk

From: guest (von) , 28 days, post #7
I think it can be purchased on flow for 125 a month (3 month deal). Also, I don't think it is unlimited the amount of videos you can create. I have faith someone will eventually try it out. I know that much of the stuff we see is cherry-picked.

From: guest (troll) , 28 days, post #8
Thanks for #7, I checked flow. And I made 3 videos with veo 3 I guess.
Veo 3 has great graphic but no TF or shapeshift friendly thing.
It has better direction following, veo 2 doesn't understand what is shapeshift.
Veo 3 seems like it knows what is shapeshift but not what is good shapeshift.
I tried 6 videos and 3 got refused and 2 videos show me scene change without any reasonable effect and 1 gives me a video that just head swap, yes it keeps his fat male body (I asked it that male fat man sits on sofa and transforms into beautiful blond woman but it just gives different female face)
It costs quite high, I think pro ai Google subscription which is about 25$? for a month? IDK but it gives me 1000 credits and which veo 3 made video costs 100 credits.
Yes you can try only 10 videos for a month.
Maybe prompt engineering will make better result, but it's not... Yeah.
Don't be hype, it's not good yet for shapeshift or transform whatever.

From: guest (djdj) , 28 days, post #9
Has anyone tried to do a body swap dialogue one?

From: guest (troll) , 28 days, post #10
Anyway, for all future readers, could you stop upload useless AI generated spam guide or Q&A?
AI doesn't understand or know something, they just pretend to know it.
If you don't know sometihng, It's great to ask AI.
Just please don’t spread the answers like they’re facts or good information, because it sucks.



From: guest (von) , 27 days, post #11
Yeah, I think post #3 should be deleted because AI acts like it has the answers but it doesn't.

Someone posted another way you can do a few free veo3 videos.

https://www.youtube.com/watch?v=ISe_-2m10C8

I haven't tried it but people in the comments seem to think it works. I hope sound goes to other AI programs soon. Many are probably developing them in secret and in a year or two all AI will have sound.

From: guest (Alicia) , 27 days, post #12
I have done some experimenting with Veo 3.

There are a few I've created that are interesting, but this one had the best cohesiveness overall thus far:
https://www.youtube.com/watch?v=ewhQi8E9Ak8

From: guest (von) , 27 days, post #13
lol

From: guest (von) , 26 days, post #14
This video has a compilation of many clips and does give some insight into how good the transformations are. For all we have come, there still is a long way to go. I hope sound AI will be HQ and free (or relatively cheap) soon.

https://www.youtube.com/watch?v=cN4nJPD5qWo

From: guest (von) , 26 days, post #15
This is kind of something that nobody really talks about but the problem with paying for AI is so much of the videos are defective or even trash. Imagine buying a chair (or any product) that had an 80% chance not being good? If people pay good money for these there should be a way to get money back when the result is crap.

From: guest (troll) , 26 days, post #16
I agree with #15 but Google is different case, they don't sell veo3 but they sell ai subscription.
What's best option is finding rival ai video company, this will leads more reasonable price policy.

From: guest (graph) , 26 days, post #17
I did two free trials to experiment with the veo 3 tool. ( Link to Dropbox )
It is pretty amazing, in terms of quality overall a step above Kling I think, but the inclusion of sounds and voices really brings it to another level.



From: guest (von) , 26 days, post #18
wow, that's impressive. How did you do the two free trials?

From: guest (Tea) , 26 days, post #19
Wow, great results. All of them came out great.

From: guest (dnf) , 26 days, post #20
Can you do any possession ones?

Page 1 2 3 4 5 6 7 8 9
Add a New Message to This Thread
Nickname:
Captcha
2
9
0
2
To prove you are not a spambot,
enter this number

Posting Guidelines

Primary

  • ANY POST(s) MAY BE REMOVED at the discretion of moderators for violation of this website's guidelines/rules or any law applicable to this website.
  • All discussions must be transformation related OR of interest to the transformation community.
  • Please try to keep posts appropriate for younger teenage eyes to view (Things you'd be comfortable sharing with a 13 year-old).
  • Do not 'attack' other posters. You may attack an individual's comments but not the individual.
  • Be polite, courteous, and respectful. Please keep the conversations civil.
  • While use of an online alias is ok. Do NOT pretend to be another (or registered) user.

Intellectual Property

  • Do not post direct links to complete copyrighted works. Links provided by (or approved by) the copyright holder may be exempt.
  • Links to content hosted on websites that have a clear, and easy to find, process for dealing with infringement(s); and a known reputation for following through with said process, may be allowed.
  • Please read this site's views on copyrighted content on the FAQ page.
  • Do not plagiarize. Credit your sources.

Helpful

  • For posts and material that are not safe for viewing in a workplace or with younger eyes, please mark the thread or post as either, "MATURE CONTENT", "ADULT CONTENT", or "NSFW".
  • Please post clear SPOILER warnings if you intend to give away details that would spoil the story for those who have not yet seen the material, preferably by using the spoiler tags (don't forget to close the spoiler text with the end tag), like so: <spoiler>Text to be "hidden" </spoiler> -- For additional help, please see: HOW TO: Use Spoiler tags message thread.
  • When starting a New Message Thread, please include details about your topic of discussion or request in the Subject field to help draw in readers who are interested and avoid wasting the time of those who are not. Also helpful in searching for the topic/thread later.
  • If you post a link, please provide some detail as to what it is. Identify the material if possible.
  • Please post in English, or include an English translation, when possible.
  • If seeking material / information, include the results of your own efforts so that others can offer better help (and avoid wasting time and effort on redundant searches).
  • When starting a new thread to request material or information, please begin the subject with "REQ:" or "REQUEST".

Etiquette

  • Do not post messages in ALL CAPITAL LETTERS.
  • Do not attack a user for improper spelling and/or grammar. Not all of our community uses English as their native language.
  • Please do not stray (far) from the topic of the original post.
  • If a poster provides their contact information for any reason, do NOT clutter the Message Board by asking them to contact you. They gave out their contact information for a reason.
  • No begging. Ask nicely.
  • Do not feed the trolls and spammers. Please ignore them.
  • Do not keep asking for clips after others have already posted information on where to obtain the material.
  • Please have some patience. Not everyone visits the board daily. Your post may not be seen (by someone with the correct information or idea) for several days or weeks.
  • No bumping. Bumping will be treated as intentional spamming.

Advertising

  • Do not post advertisements.
  • One exception is for products or services that relate to entries on this site. And even then, only post an announcement once. You should add links or content to the appropriate database entries. Do not repeat this information to the message board. Doing so will be considered spamming.

Miscellaneous

  • This list is neither all-inclusive or all-exclusive in nature, and is meant to guide everyone on appropriate content for and conduct on this Message Board.
  • The purpose of this Message Board is to share information about transformation-related content, news, ideas, etc. Also acceptable, are conversations that are of interest to the transformation community.
  • Moderation of posts for reasons not listed above are at the discretion of the Trusted Users who moderate this website, for the purpose of keeping things within the "spirit" of the owner's wishes and the website's purpose.
  • If you disagree with a moderation decision, please make an argument as to why it should be reinstated. Use the posting guidelines to justify your point. Do not attack the moderator.

[Edit this Page]