Kodi Community Forum

Full Version: Animated Movie Posters
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Nicely done @mouflo!
@mouflo 

I tried it for an hour now, but I just do not progress in GIMP2 and just can not get it.
All I want is to simply put the clearlogo over the animated poster over it.
Could you help me with this? I believe in a few minutes that is done with your skill. thank you very much.

Image
Image
(2019-03-23, 00:44)chrissix Wrote: [ -> ]@mouflo 

I tried it for an hour now, but I just do not progress in GIMP2 and just can not get it.
All I want is to simply put the clearlogo over the animated poster over it.
Could you help me with this? I believe in a few minutes that is done with your skill. thank you very much.

ImageImage

I'm not sure how to do this in GIMP, but I found tutorial for Photoshop CS5 that worked for me: https://www.youtube.com/watch?v=fQ_suHnRnWk

Still trying to figure out the weird logo flash :-(

Image
@whysoserious 

Thank you very much! I will try this tutorial!
In you example posted there is a graphic glitch on the clearlogo always when the animation is on end and the next loop begin.
Aha! Got it this time....

Image

1. Opened ani gif in Photoshop
2. In top toolbar: Window > Animation. This opened a "Frames" window at bottom of Photoshop showing the gif's frames.
3. I selected the last layer (#61 in this gif) in the Layers window (not the Frames window).
3. Opened the logo png in another Photoshop window. Selected it and copied it to Clipboard.
4. Returned to the ani gif and pasted in the logo as a new layer (#62).
5. Positioned logo as desired.
6. File > Save for Web and Devices, accepted default settings, saved file.

It worked :-)
@whysoserious 

Thank you very much, very usable!


Also thank you very much for the little tutorial!
If that really is that easy i will convert some movie animated keyarts and convert them to collection animated poster.

Regards to @mouflo cause he also post always the animated keyart (textless poster) on his creations
@"chrissix" 

Happy to help, it was a learning experience for me! I'm going to use the poster for my JW collection as well.

Looking forward to seeing more of your work.
@whysoserious  & all

There are not many real! animated collection poster that i found on the whole web.
Mostly I abuse normal movie animated poster as collection animated poster. These are all the real! ones I found:
Most credits go to @mouflo 


https://ibb.co/t2QXf02
Image
https://ibb.co/30rRKN1
Image
https://ibb.co/VV2pCWh
Image
https://ibb.co/KV46DF4
Image
https://ibb.co/tc5Mznp
Image
https://ibb.co/QbmZqkW
Image

#movieset #collection #animatedposter
Has anyone found an animated poster for Grinch and Bumblebee ? Smile
Is it possible to made one with the following example on Alita: Battle Angel?
There are a lot of background lightning wich can be made to a "bling bling effect"
Also the sword can be made with animated "bling" reflections... just an idea

Image
Image
Is it possible to set animated poster to moviesets collection?
If i highlight the collection and choose animated art through the context menu i'm getting a skin helper error.
(2019-03-30, 19:36)skydancer Wrote: [ -> ]Is it possible to set animated poster to moviesets collection?
If i highlight the collection and choose animated art through the context menu i'm getting a skin helper error.
@skydancer 

Definitely possible, but it might depend on the skin you're using. I'm using Aeon Nox 5: SiLVO and I just select the movie collection, bring up the context menu, select "Manage" then "Choose art", then navigate to the folder containing all my Movie Collection animated posters. It works ok for me.

What version of Kodi and what skin are you using?
(2019-03-30, 20:18)whysoserious Wrote: [ -> ]just select the movie collection, bring up the context menu, select "Manage" then "Choose art", then navigate to the folder containing all my Movie Collection animated posters. It works ok for me.

This way is exchanging the animatedposter with the main poster (.jpg) works independent of skin, exchanging works everywhere.
But if you want to have it in contrast as a separate artwork type (without replacing the main poster but in addition) it's indeed skin dependent.
Better late than never.
I finally managed to implement the API for getting the animated gifs programmatically.

It actually works very simple. You need an API and User key, which you can find under your Account in your personal dashboard (you need to register an account).
Oh, forgot to tell...it's free. Yes, it costs absolutely nothing. No yearly fee anymore.

Image
Use the following method:


206647 is the tmdbid for the movie Spectre (https://www.themoviedb.org/movie/206647)

Add the API and User key to your header. Here's a curl example:
Code:
curl -i -H "Application/json" -H "Content-type: application/json" -H "Userkey: 514b36ea1392e8ec" -H "Apikey: 3fda06118c933358f13859e05150e1f0" "https://www.kyradb.com/api10/movie/tmdbid/206647/images/animated"

It gives you the following JSON output (example of the results from an IOS call):
Code:

{
    "base_url_backgrounds" = "https://www.kyradb.com/backgrounds/original";
    "base_url_posters" = "https://www.kyradb.com/posters/w342";
    error = 0;
    message = successful;
    "number_of_backgrounds" = 1;
    "number_of_posters" = 3;
    backgrounds = (
        {
            "date_added" = "2018-11-30 15:57:10";
            name = "284b9e56ebd22b7a5f266aa5d3cf356a2445ae614f1cd027aa3bc9bc7e1988691.gif";
            resolution = "1300 x 544";
        }
    );
    posters =  (
        {
            "date_added" = "2018-11-30 15:57:31";
            name = "4bc3aa9ca5b71b994784bacc1668137a2f0cfa28dde594e4d6e5431ee7e2367a1.gif";
            resolution = "533 x 800";
        },
        {
            "date_added" = "2018-11-30 15:57:41";
            name = "ec0600c3bb52d0ee7d400612f0509a3fe9519bdce06b2aafa6e78b42f7db85b51.gif";
            resolution = "269 x 397";
        },
        {
            "date_added" = "2018-11-30 15:57:52";
            name = "7d251f3b6064176afa93b3cfa29f08e3206e628ca8d446d3a3a19a271ff9fb371.gif";
            resolution = "340 x 510";
        }
    );
    timezone = GMT;
    "timezone_str" = "Europe/London";
}

Simply add the base_url_posters and name together to give you the link https://www.kyradb.com/posters/w342/4bc3...2367a1.gif

You can find the documentation here: https://www.kyradb.com/api
Thanks, possible split resolution = "340 x 510"; to width and height? Or add this value separately?

--
WBR, ajs Smile