I might offer some help with the ramping:
Andyshon brought up the idea of changing the expo-Level of the xmps in post by using "exiftool".
Based on that idea i'm working on a way to write out the metadata to a spreadsheet, manipulate it in Excel or "OO Calc" to write it back to the xmps again.
Exiftool can handle that by writing/reading an csv file.
##READOUT to CSVexiftool -csv -exposure2012 -ext xmp c:\timelapse > list.csv
exiftool -csv -exposure2012 -ext xmp . > list.csv #### xmp/ exiftool/ csv in same directory
##WRITE BACK TO XMPexiftool -csv=list.csv c:\timelapse
exiftool -csv=list.csv . #### xmp/ exiftool/ csv in same directory
A rough workflow (for Windows):Software needed: exiftool/ MS Excel, Openoffice calc or sim./ Notepad++ or other editor (only in special cases, see descr. below)
skills needed: medium in all upper three, exiftool is a commandline tool!
1. Read out the Xmps from ML-deflicker to a csv-file
exiftool -csv -exposure2012 -ext xmp . > list.csv
opened in a texteditor the csv looks like this:
SourceFile,Exposure2012
./IMG_4060.XMP,+2.30553 2. open the csv with Excel so you can calculate with it.
(In my country f.e. excel needs a comma instead of point as decimal seperator)
It should look like this:

3. copy the second column with the exposure data to a second sheet for doing the ramping calculation.
4. Open your timelapse in LR or ACR and choose your keyframes i.e. first and last frame.
Adjust "Exposure" to your liking and write the value next to appropriate frame in the calc sheet.
for example: first frame -> orig value = 2.30553, chosen exposure: 1.45 -> ramping difference: -0.85533
last frame -> orig value = 0.82060, chosen exposure: 2.11 -> ramping difference: +1.2894
5. Do the math for the ramping values inbetween: ramping diffence first to last frame divided by frame numbers (or sth like this

)
6. Add the ramping difference to the orig Exposure and copy that column to the second column of your original spreadsheet.
7. Save Excelsheet as csv-File. Open in notepad++ to check if the csv looks like in step 1: comma"," for value separation, point "." for decimal.
8. Write csv file to xmps.
exiftool -csv=list.csv . ("." point is important!)
9. If my workflow is doing right you should have now a flickerfree exposureramping timelapse.
Good Luck
edit: thx finges