Would you give me some detail, pls ?
thanks 
Sure

It's in the description of my YouTube video:
- Converted the .RAW files to .DNG files with RAW2DNG
- Color grading in Adobe Lightroom 4, exported as uncompressed 8-bit .TIF files
- Opened the .TIF files in AviSynth, upscaled them to 1920 X 768 and exported as .AVI files using VirtualDub and Lagarith Codec
- Edited in Magix Video Deluxe MX and exported as .AVI using MJPEG Codec
(You see, a very time consuming, low-budget workflow. I'm using a few selfmade Batch scripts so that I only have to do the color grading)
My AviSynth script looks like this:
[Spoiler]
LoadPlugin(ScriptDir()+"..\Avisynth-plugins\nnedi3.dll")
# Get the Plugin here:
http://web.missouri.edu/~kes25c/nnedi3.zip# Edit the path if necessary
LoadVirtualDubPlugin(ScriptDir()+"..\VirtualDub\plugins\msu_sharpen.vdf", "MSUSmartSharpen", 0)
# Get the Plugin here:
http://www.compression.ru/video/smart_sharpen/src/smart_sharpen.zip# Edit the path if necessary
ImageSource("PATH TO YOU TIFF FILES\%d.tif", FIRST_FRAME'S_NAME, LAST_FRAME'S_NAME, FRAME_RATE, false, false, "RGB24")
# That works only if your TIFF files are named like this: 1, 2, 3, 4, [...], 678
# Example:
# ImageSource("D:\Videos\%d.tif", 1, 300, 24, false, false, "RGB24")
nnedi3_rpow2(rfactor = 4)
ConvertToRGB32()
MSUSmartSharpen(3)
# decrease the number if it looks oversharped. The max. value is 5.
ConvertToRGB24()
Spline36Resize(1920, 768)
# If your aspect ratio isn't 2.5:1 you may want to change the second number

[/Spoiler]
It loads the TIFF files which are created by Lightroom, upscales and sharpen them. Open this script in VirtualDub and export the video. It's easier with a Batch script. But I guess there are a lot less comlicated workflows out there- Just search and decide which one is best for you.
For any other questions you have to relie on the communitie. Tonight I'll fly to England for hollyday
