-
Hi, I've been using PyFLP for a few days. It's really amazing 😄 As far as i understand, PyFLP is meant to parse flp files. I was wondering if it's somehow possible to generate flp files like jukeblocks.io. What features needs to be implemented in order to achieve this ? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
AFAICT Jukeblocks doesn't generate a new FLPs, it takes a base FLP and adds / changes the necessary stuff in it. An FLP cannot be generated from scratch unless you have 100% knowledge of the FLP format (which I don't, and people who do don't share it with the public). If you are familiar with PyFLP's low-level event API, you can copy events of existing items, say a channel to add a new one. I am thinking of ways to make this easier, but the amount of unknowns I keep encountering in every situation is massive. Thanks for the kind words :) |
Beta Was this translation helpful? Give feedback.
AFAICT Jukeblocks doesn't generate a new FLPs, it takes a base FLP and adds / changes the necessary stuff in it.
An FLP cannot be generated from scratch unless you have 100% knowledge of the FLP format (which I don't, and people who do don't share it with the public).
If you are familiar with PyFLP's low-level event API, you can copy events of existing items, say a channel to add a new one. I am thinking of ways to make this easier, but the amount of unknowns I keep encountering in every situation is massive.
Thanks for the kind words :)