boltframe / aftereffects-aep-parser

✨ An unofficial parser for Adobe After Effects *.aep project files
https://godoc.org/github.com/boltframe/aftereffects-aep-parser
MIT License
85 stars 7 forks source link

implement parsing custom user-defined property labels #3

Closed nugthan closed 2 years ago

nugthan commented 2 years ago

Currently, the library does not extract any of the user-defined property group labels (if you right-click on the group in After Effects, select "rename"). This merge adds parsing of the custom properly labels, a custom label to one of the test files, and a test case.

nugthan commented 2 years ago

Have added some documentation - For some reason, in adobe's great wisdom it defaults to "-0/-" if the user hasn't defined a custom name for an effect.

rioam2 commented 2 years ago

Have added some documentation - For some reason, in adobe's great wisdom it defaults to "-0/-" if the user hasn't defined a custom name for an effect.

I'm anticipating this is an encoding of some other unknown data (which happens to be -_0_/ in ASCII). For now, it doesn't look very important, so let's just ignore it ;)

Thanks again for your contribution, and happy hacking!