you can create your own mini-language, i.e. automate extraction. I did the following to automate the analysis of a proprietary output program
# will match in the order written here tokens = ["num_ref_frames", "Max QP", "Min QP", "Avg QP", "I4x4", "I16x16", "SkipZero", "SkipMV", "16x16", "16x8", "8x16", "8x8", "8x4", "4x8", "4x4"] special = ["Quarterpel MVs"]
Then I just looped around the input and checked the contents of token for each line; if a match is found, I split according to dict-entry to extract the correct field.
special was handled above, as well as a special variable that required reading from several lines.
Update
clone git://gist.github.com/1037403.git to get a copy of the code
usage: ./parser.py all_dec.txt
Hope this helps!
source share