- This topic has 17 replies, 3 voices, and was last updated 1 year, 2 months ago by
Maximilian Kisbiro.
-
AuthorPosts
-
7 June 2021 at 6:34 am #1788
Maximilian Kisbiro
ParticipantHey Pb´ers!
currently I am working on an instrument with a custon GUI and hired
a graphics designer for this purpose. As I know Kontakt accepts
animations only as a horizontal or vertical oriented png where all single
frames are stitched togehter?
She made the animated objects with Adobe Aftereffects but isn´t able to
export it this way. So she could give me the animation or an export with the
requested number of pictures.
Do you know any free software or tool where I can convert these two formats
into this png-strip Kontakt wants?Max
7 June 2021 at 8:00 am #3212LochStoch
ParticipantWhat’s the file format of the animation? It’s usually not too hard to achieve these kinds of tasks with a shell script. I could have a go at doing writing one for you if you’re comfortable sharing the file?
Edit: Just saw you said you had all the individual frames as images. I think I already have a script I wrote to join these. Let me dig it out for you.
7 June 2021 at 8:20 am #3213LochStoch
ParticipantActually, you don’t need a script for this task. You can do this quite easily with Image Magick which is a set of command-line tools for processing images in limitless ways. You can download it from here (https://imagemagick.org/script/download.php).
Then if you have a folder with all your animation frames inside it you can stitch them together using this command (this example assumes your images are pngs):
convert -append *.png output.png
This will create a PNG file called output.png which will be a vertically stacked image. The *.png line tells image magick to look for all png files in the folder you are in. The png frames will need to named in a way that means they will be in the correct order if you were to sort by name. For example you could have something like:
file_001.png
file_002.png
file_003.png … etc.If you’re using numbers in the filenames it’s important to zero pad them (i.e. 1 would e 001, not 1) because computers sort alphabetically so file_2 would be sorted. after file_112.
7 June 2021 at 9:05 am #3214Maximilian Kisbiro
ParticipantHey,
thanks! I will try this this afternoon and will let you know, how it worked.
Yes, I alreday have he first animation as single png´s.Max
7 June 2021 at 3:45 pm #3215Maximilian Kisbiro
ParticipantUhm, how exactly do I use/access this command-oriented processing?
7 June 2021 at 10:11 pm #3216LochStoch
ParticipantYeah, it can be a steep learning curve if you haven’t used the command line much before but it’s pretty straightforward once you’ve done it once.
Open your Terminal app (Mac, Linux Shell on Linux or Command Line on Windows). Then the first thing you do is change the directory to your folder with the animation frames. You do this using the “change directory” command (
cd
) This will look like something like…cd path/to/your/folder
Then just run the image magick command.
convert -append *.png output.png
8 June 2021 at 3:00 pm #3218Maximilian Kisbiro
ParticipantI had some trouble getting it to work at all, but dang, that works!
Thanks Mate!
9 June 2021 at 1:30 am #3220LochStoch
ParticipantNo worries! So it did work for you in the end?
9 June 2021 at 6:09 am #3221Maximilian Kisbiro
ParticipantYeah, last time I worked with the console was 10 years ago in the computer science class
during my bachelors.At the beginning it did not work at all. So I installed the library via vc++red as mentioned on their website.
But this still didn´t work. I found a tutorial on properly isntalling it and to use the convert-function
a checkbox for legacy-content had to be activated during installation, which was not activated per default.
And in the console there needs to “magick” to be written before other commands…
If anyone is intereset in this.After this troubleshooting everything worked fine, tahnks.
I would love to give a sneak-peak on the UI but I don´t want to spoiler 😉
And I bet I need some more weeks or even months KSP´ing.10 June 2021 at 4:05 pm #3224Paul Bell
ParticipantI’ve tried several times to download the Orchestral Sample Pack with Northern Film Orchestra but all that happens when I click on the Download Now button is it goes to the next page which is the details about the process and the orchestra, a youtube video and some Soundcloud tracks?? I’ve tried in Chrome and Safari. I’m on a 2019 iMac running Big Sur. Any thoughts?
10 June 2021 at 4:11 pm #3225Maximilian Kisbiro
ParticipantHey,
on this page on the right side is a small section titled DOWNLOADS.
Directly under this caption is the download-link titled “Kontakt 5, DecentSampler”
Click this one and you should be fine.10 June 2021 at 4:42 pm #3226Paul Bell
ParticipantThanks. Do I have to do this even though I already have Kontakt 5 and 6?
10 June 2021 at 5:04 pm #3227Paul Bell
ParticipantI downloaded form that link as you suggested.Any idea how I get it into Logic? I have all my other Sample Libraries including Spitfire stuff there no problem.
10 June 2021 at 5:47 pm #3228Maximilian Kisbiro
ParticipantThis is only the library. As the name of the donload-link suggested you need
the full (paid) version of Kontakt (at least 5) and/or DecentSampler, which is free:Then you can use Kontakt or DS in your DAW and load the presets of NFO within these plugins.
These bibs are not listed in Kontakts library-tab on the left. For Kontakt you have to drag the
.nki´s directly into kontakt.. Or use the the browser within Kontakt.11 June 2021 at 5:05 am #3231Maximilian Kisbiro
ParticipantDid it work out for you?
-
AuthorPosts
- You must be logged in to reply to this topic.