MakerWorld AI input

What are the formats recognised by the AI for video input?
Are there file size limitations?

So far… .avi & .mp4 system says " The video type is not supported or the link is broken."

Which AI is this that you are referring to?

1 Like

Im curious what are some of the good AI video tools that you guys use

Hi…
This one

Did you ever figure this out? I’m getting the same error.

I am having the same issue. I am using the latest Iphone

No… I gave up in the end…

.postdeletedinprotestofdangerousgoods.

The diameter of that pickle :flushed:

Burger looks great though, nice work :+1:

1 Like

I though it was an egg.

1 Like

Maybe it’s both :person_shrugging:

haha thanks - it will not allow me to upload the original 2.5MB mp4 here to the thread so the quality is lost in the webp conversion.

I admit the pickle ha! But it does look much better as in 720p clearer etc on the mp4.

Ai side - I noticed that it likes to convert cartoon shapes more than realistic. It grabs and smooths the edges much better. Good to keep in mind when making or trying to find conversion images.

The following MP4 conversion, (Linux command line example), will create a video file suitable for upload:

ffmpeg -i ‘/path/to/original.mp4’ -an -c:v copy ‘/path/to/ready-for-upload.mp4’

This did not work for me. In my case, my video was around 250 MB, so I ran this much slower command (since it has to re-encode it) to reduce the size down to about 90 MB and it worked for me.

ffmpeg -i '/path/to/original.mp4' -an -c:v libx264 -crf 23 -preset medium '/path/to/reduced-size.mp4'