Leanify
Leanify copied to clipboard
mp3 format support
It would be a great improvement if Leanify could utilise the swix console program http://appnee.com/swix/ to convert swf to xml and then optimize embedded base64 streams then restore it back to swf with same program then optimize compression .. you need to include mp3packer support to optimize audio streams
Leanify already support parsing swf files and optimizing the images inside, why should I support swix's custom xml format?
then adding mp3 optimizing is remaining. Audio streams can be found in ms office and OD xml files.
It seems mp3packer is the only thing can do mp3 lossless optimization, but it's written in ocaml and I have no idea how it works. What I can do is probably optimize the images in the id3 tag if the mp3 includes cover.
take a look at https://github.com/bvaugon/ocamlcc
it is an OCaml bytecode executable file to C source code compiler. first compile code to a bytecode executable then use ocamlcc
up
http://wiki.hydrogenaud.io/index.php?title=MP3packer if description is right, only thing mp3packer do is eliminate padding. I can try to do it in C.