Magic Lantern Forum

Using Magic Lantern => Raw Video => Raw Video Postprocessing => Topic started by: so-rose on March 05, 2016, 12:10:29 AM

Title: (Linux/Mac) convmlv: Featureful MLV Developer
Post by: so-rose on March 05, 2016, 12:10:29 AM
Hello,

This is, simply enough, an offline image processing tool converting ML formats (RAW, MLV, DNG sequences) to many usable formats (EXR, DPX, and Prores). It runs on Linux and Mac, and focuses on features and output quality (More in the Features section).

It's essentially a huge swath of glue between a bunch of great tools.

I use it myself - these two short films were developed, graded, and edited in a single weekend, made possible due to convmlv (v1.7)!

http://youtu.be/yi-G7sXHB1M (https://youtu.be/yi-G7sXHB1M)
http://youtu.be/yi-G7sXHB1M (https://youtu.be/a7iSjEfch5s)

Huge thanks to @Danne and @bouncyball for figuring out the color management. Thanks to @dfort for his badpixels script and to @dmilligan for MLVFS! Another huge thanks to the whole Magic Lantern community for the tools without which nothing here would be possible

Download/Install

Getting convmlv on your machine goes like this:

Latest Release: https://github.com/so-rose/convmlv/releases/tag/v2.0.3 (https://github.com/so-rose/convmlv/releases/tag/v2.0.3) <-- Download here!
Repository: https://git.sofusrose.com/so-rose/convmlv (https://git.sofusrose.com/so-rose/convmlv) <-- The cutting edge!
GitHub Mirror: https://github.com/so-rose/convmlv (https://github.com/so-rose/convmlv) <-- A simple mirror to GitHub.

Dependencies on other ML tools are bundled in the release. Refer to the help page (under MANPAGE, or run './convmlv.sh -h') for links to these.

Make sure all binaries, and the script, have execution permissions (run 'chmod +x file'), otherwise convmlv will fail! It will tell you what it's missing & where to get it if you try!

General Info

Documentation: You can find an up to date tutorial/documentation PDF I made under 'docs/docs.pdf' in the repository. It's also bundled in the release.

Here's the link to it: https://git.sofusrose.com/so-rose/convmlv/raw/master/docs/docs.pdf?inline=false (https://git.sofusrose.com/so-rose/convmlv/raw/master/docs/docs.pdf?inline=false)


v2.0.3: Some more bug fixes, based on a bug report.
*Fixed bug with split MLV files by piping the FRAMES output through "paste -s -d+ - | bc"
*Fixed the color-ext LUTs, which were unfixed due to laziness.
*Fixed mlv2badpixels.sh when mlv_dump wasn't on the PATH. Requred modding the script; a patch is in the main repo, and is distributed alongside binaries.
*Added documentation that symbolic linking support is required.

Full changelog can be found in the repository, under CHANGELOG.


Bad Pixels File Example: You can find a sample .badpixels file in the repository (the Download link), which you can adapt to remove bad pixels (which all cameras have) from your footage.

Darkframe Information: Read more about darkframe subtraction here: http://magiclantern.fm/forum/index.php?topic=15801.msg164620#msg164620 (http://magiclantern.fm/forum/index.php?topic=15801.msg164620#msg164620)

Config File Examples: You can find example config files in the download repository, under configs/*.conf.

All command line options must go before the list of MLV/RAW files or DNG folders.

Features
convmlv is essentially a big piece of interface glue between many great image processing tools, whose features it in many cases inherits directly!

-Easy usage w/good defaults - specify -m, follow with a list of .MLV files to develop. (Type in terminal: convmlv -m *.MLV)
-Create ready to edit image sequences/video files in all kinds of losslessly compressed formats.
-Offline image quality with good, highly multithreaded performance.
-Develop a specific frame range easily. MLRawViewer is a great companion to find desired frame ranges.
-Complete control over the RAW process itself: Highlight reconstruction, demosaicing, color space, chroma smoothing, white balance, etc. .
-Color managed, with a variety of color space options. The philosophy is one of no quality loss from sensor --> output.
-Several noise reduction techniques, from wavelet to high quality temporal-spatial denoising, to astro derived darkframe subtraction, to experimental FFMPEG modules.
-Easy HDR (Dual ISO) processing, with the -u option.
-Easy bad pixel removal. The -b option (courtesy of @dfort) removes pink dots, and can be combined with our own .badpixels file mapping out the dead pixels on your camera.
-Since the output can be very heavy to edit with, it's simple to create edit-friendly color managed JPG/MP4 proxies alongside.
-Several FFMPEG filters (multiple 3D LUTs, temporal denoising, hqdn3d, removegrain, unsharp, and deshake currently - request more; they're very easy to implement).
-Reads Camera WB, but can also use a homegrown AWB algorithm or no WB at all.
-Extracts MLV sound to to a WAV, and metadata into a settings.txt file.
-Portable Bash script - Fully compatible with Linux and Mac (Windows is untested)
-Production-ready config file format lets you specify any option on a global or per-MLV basis in a single config, saving enormous amounts of time on a deadline.


Documentation/How To

Tutorial: You can find an up to date tutorial/documentation PDF under 'docs/docs.pdf' in the repository. It's also bundled in the release.

Here's a link to it: https://git.sofusrose.com/so-rose/convmlv/raw/master/docs/docs.pdf?inline=false (https://git.sofusrose.com/so-rose/convmlv/raw/master/docs/docs.pdf?inline=false)

Help Page: The primary, most esoteric (but most updated) documentation is the help page. You can access it in docs/MANPAGE in the repo, partially in the code block below, or by typing 'convmlv -h' once it's installed.

Human Help: I tried to cover everything with the above, but if you're still having trouble I'm happy to help. Just respond to the thread or send me a PM somewhere.


Workflow

A typical task is to convert an MLV file to a high quality MOV file for editing. Doing so with convmlv is quite simple:

convmlv -m cool.MLV

Simple as that! My personal preference is to edit using losslessly compressed EXR sequences, like so:

convmlv -i cool.MLV

Of course, you have a very wide range of features available to aid you in this process. Here are a couple

convmlv -i -m -p 3 -C config.conf -s 25% -b -k -d 3 -g 3 -G 2 -o ./output test.MLV test2.MLV cool.RAW

I'll break this specific command apart:


You can of course go crazy. This is a valid command:

convmlv -i -t 2 -p 2 -s 75% -r s-e -d 3 -f -H 2 -c 2 -n 50 -g 3 -w 0 -S 9000 --white-speed 5 -a ../../7D_badpixels.txt --threads 36 --uncompress test.MLV

Avoiding commands like this is the point of Config Files. Configs can specify options globally, but can even do different options depending on the file name!


Bugs
Known Bugs: See Issues in the Repository.

If possible, please report bugs as Issues in the main Repository (GitLab), instead of GitHub. I don't mind if you do it in GitHub; just, the other way makes things easier for me.

Future Ideas
Please see (or make) an Issue in the Repository!

Feedback
I'd appreciate any feedback (especially bugs)!
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: DeafEyeJedi on March 05, 2016, 12:38:30 AM
Impressive. PR4444XQ is a must. Is this for Mac or Windows?
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: reddeercity on March 05, 2016, 12:41:42 AM
Nice , Looks interesting .
QuoteBasically, it takes .MLV files as input and spits out any combination of TIFF or Prores 4444XQ files
Really ?
Not with FFmpeg , best quality is 10bit rgb(444) not 12bit rgb 444xq , can't be done .
Why not use MLP (http://www.magiclantern.fm/forum/index.php?topic=13512.0)  ?
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: DeafEyeJedi on March 05, 2016, 01:27:36 AM
Ha that's what I thought. Anyway, I just asked @Danne if he could and try implement this so called script that can somehow export PR4444XQ into MLP, if possible?
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: so-rose on March 05, 2016, 03:37:32 AM
Ah :) somehow I was under the impression that ffmpeg would put out 4444XQ... I've fixed the description. Is there then any way (as in scriptable), on Linux, to create XQ files from an image sequence?

QuoteWhy not use MLP  ?

Well, mainly because (from what I can see MLP) is tethered to Mac OS. A penguin based workflow is something I need/want!
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: Danne on March 05, 2016, 10:59:25 AM
Nice script.
Since -a auto is applied to every file it,s not suitable for movie sequences as it will be non linear. I solved it by using averaged white balance from one file. Or actually MLP uses 8 files ranging from 1 - 450 and calculates the median value from these files.
MlRawviewer outputs highest FFmpeg prores quality possible. If you find a better output please compare your files with MLP and/or Mlrawviewer.
You can also pipe dcraw through standard output -c which makes creating intermediate to tiff files useless if main goal is to create a prores file.
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: dfort on March 05, 2016, 07:46:48 PM
@so-rose

So nice seeing someone making a contribution to ML on a first post. I had to have hundreds of questions answered before I gave anything back.

Of course you know that what's good for the penguin is good for other Unix-like environments like the OS-X and Cygwin.

I would suggest putting up your script on bitbucket like I did with my script to deal with focus pixels. Check it out, you might find something there that you can use in yours.

https://bitbucket.org/daniel_fort/ml-focus-pixels

Also check out Danne's MLP. Although it is running in a Macintosh Automator environment it is made up of a bunch of bash shell scripts passing arguments to programs like mlv_dump, raw2dng, dcraw, ffmpeg and others.
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: so-rose on March 05, 2016, 09:41:05 PM
@dfort

Thanks for the advice! The repo is live at https://bitbucket.org/so-rose/convmlv .

With regards to the focus pixel issue, I've never experienced it on the 7D - would it perhaps be worth exposing the dead pixels option (-P) available in DCraw, so that a person could use the referenced script? Example: dcraw <options> -P deadpixels.txt <more options>


With regards to MLP, I think I'll go study that for a bit! In the meantime my script can now use LUTs (a bit slowly, but it works :) )!
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: Danne on March 06, 2016, 01:49:04 PM
The dead pixel option is really working well for cameras with focus pixel problems but it works just as good for minor hot/dead pixels on other sensors as well.
http://www.magiclantern.fm/forum/index.php?topic=16054.msg163713;topicseen#msg163713

dfort has a high end script which can be used to automate the pixel issue completely for the cameras with the focus pixel issue. It works best with MLV files but with some minor manual labour also RAW works. He even got it grabbing meta data info through hex numbers.
https://bitbucket.org/daniel_fort/ml-focus-pixels/src

By the way. White balance is hard coded to the dng coming out of mlv_dump so that is what dcraw will grab with -w. I use a wb template ranging from 1500-15000k (don,t get how to calculate AsShotNeutral values from MLV kelvin meta data. Check MLVFS sources for ufraw calcualations) and some easy calculation math for custom white balance. Auto white balance doesn,t apply to MLV meta data.
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: dfort on March 06, 2016, 07:52:17 PM
Quote from: so-rose on March 05, 2016, 09:41:05 PM
With regards to the focus pixel issue, I've never experienced it on the 7D - would it perhaps be worth exposing the dead pixels option (-P) available in DCraw, so that a person could use the referenced script?

You don't need to deal with focus pixels on the 7D, it only affects the EOSM/650D/700D/100D cameras. Making a "deadpixels" list for dcraw is pretty much all that my script does. Of course your script can easily invoke my script so if you get users that have one of these cameras your script will be able to remove the focus pixels.

I noticed that you made a comment about argument parsing and looking at your code it looks like you're working a little too hard on it. I used getopts which was super easy. Also note that your help function can be greatly simplified. I'm not an experienced programmer by any stretch of the imagination, just sharing a few tricks that I learned along the way.
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: so-rose on March 11, 2016, 04:31:40 AM
So I've been playing around with auto white balance algorithms over the past few days (even examining the MLRawViewer source code... In the meantime I've made the 'do nothing' option the default in my script.). Finally, I got a simple one working in Python (with averaging over a sequence) using PIL and numpy, with one caveat: It's limited to 8 bits!

So, does anyone have any ideas about how to read/write 16-bit pixels from a TIFF in either Python or C++ (given a pixel array, I can start to have some fun  :) )?

QuoteOf course your script can easily invoke my script so if you get users that have one of these cameras your script will be able to remove the focus pixels.

I'm pretty confident I can do just that (which seems like it'd be a big help to those experiencing the issue), but I lack any footage to test it on (any links on the forums are long dead) - @dfort is there any chance you have some lying around?

QuoteJust sharing a few tricks that I learned along the way.

I really appreciate it , thank you :) ! I noticed that you use a 'cat' to print your help - I might just follow suit! In regard to getopts, I'll have to play around with that; it looks much better than spamming 'cuts'!
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: dfort on March 11, 2016, 11:47:24 PM
@so-rose

Here's a short MLV shot on a 100D. Plenty of focus pixels on that camera!

https://www.dropbox.com/sh/iz9qsxfpypfghbs/AABPS8ipdz6gdj3-LD0F_GSRa?dl=0

Let me know if you want to play with some more MLV's with focus pixels. I still have some on my hard drive when I was working on the focus pixel maps and my script.
Title: Re: Script: MLV to TIFF/Prores with Proxy
Post by: so-rose on March 12, 2016, 09:30:11 PM
@dfort

QuoteLet me know if you want to play with some more MLV's with focus pixels.

Well, thanks to your script, my script now eats through your sample! If you have any others, I'd love to try those out :) .

Otherwise I fixed some bugs, which were actually quite serious...
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: dfort on March 12, 2016, 11:57:09 PM
Sure--here's some more files with focus pixels. The ones of the test chart are with the 700D (mv1080) at various image sizes and I added one from the EOSM in crop mode (mv1080crop) racking the iris so you can see how the focus pixels appear and disappear depending on the color and brightness.

https://www.dropbox.com/sh/kkrx3k2a2hz8nl2/AADAQS5GoTBNPbfP9bFR4OAZa?dl=0

By the way--I noticed in your description that you're using Blender. Could you elaborate a bit more how you're using that program? I heard it can work with exr files--maybe there's a way to tap into that for Dual ISO and HDR video?

Blender is quite an amazing piece of software. I met with the developer when I visited Amsterdam and we talked about some of the possible uses for Blender in post production.
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 13, 2016, 07:09:33 AM
@dfort

Yup, no focus pixels anywhere! It works! Thank you for the script, and the assistance! The fine print, of course, is that the better the demosaicing the less pink dots will appear in specular highlights.

QuoteI noticed in your description that you're using Blender. Could you elaborate a bit more how you're using that program?

Absolutely! To be honest, I use Blender for everything :) . Besides the obvious 3D aspects, I make frequent use of its compositor (which I've made node groups for many tasks) and video editor (which is surprisingly good) for creative film making. Workflow takes some fiddling, but the power is all there (the node-based compositor is extremely capable, to the point where you can implement many algorithms mathematically in it), for example it's perfect for when I want to take the take a simple RGB difference of two images and examine the result.

The reason I need this script to give me TIFFs/JPGs is that image sequences (as opposed to videos, even ProRes, of any kind) are very optimized. What I do is import both the tiff and the jpg into a "metaclip" (essentially it locks their timing relative to each other), then disable the slow tiff, using the proxy jpgs for fast editing. For color work/the render, I can reenable the tiff sequence seamlessly. I have screenshots of a current project, if you wish.

QuoteI heard it can work with exr files--maybe there's a way to tap into that for Dual ISO and HDR video?

The short answer is yes, Blender lives in EXRs (the standard in the 3D world) - Multilayered, compressed; all can be read and written. In terms of Dual ISO/HDR, I'm not quite sure what you refer to - if you're talking about HDR editing, then I'm 99.99% certain that Blender functions in 32 bit float space (seeing as it's able to write to 32 bit floats at full precision), meaning yes, it's a perfect tool for HDR editing :) .

Long story short, in my little suite of open source filmmaking tools (including Blender, Audacity, djv_view, Krita, and DispCal for monitor calibration), Blender is the all-powerful workhorse!



Otherwise, I finally got auto white balance (averaged over the sequence) working via my numpy-based Python implementation of Grey's World (the simplest AWB I could find). It's a little slow (it actually runs dcraw once, with fast settings, to generate the tiff sequence needed to run dcraw again with proper RGB scaling), but not unusably so!
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: DeafEyeJedi on March 13, 2016, 08:08:02 AM
Digging this project so far guys!
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: Danne on March 13, 2016, 10:50:58 AM
Are all processing going through tiff files coming from dcraw? Check this pipinng lines in that case. Coming from scrax good old raw2dng modified by me and put in MLP. You can even pipe it further going straight to FFplay for previewing.

In short (pipe description)
dcraw *.dng | ffmpeg output

find . -maxdepth 1 -iname '*.dng' -print0 | xargs -0 ~/Library/Services/MLP.workflow/Contents/dcraw $icc +M $br $dpf_a $any $ga -c -6 -W -q 3 $r $wb | ffmpeg $wav -f image2pipe -vcodec ppm -r "$fps" -i pipe:0 $sd $cod -n -r "$fps" -vf $sc"lut3d=$lut3d_1_MLV_e","lut3d=$lut3d_2_MLV_e","lut3d=$lut3d_3_MLV_e","lut3d=$lut3d_4_MLV_e","lut3d=$lut3d_5_MLV_e"$tbl -strict -2 "$output""$outputb/"$file.mov

Regarding white balance. Not sure if you actually have to develop the actual file to get to the multiplier numbers. Check this out.

vit_01e=$(~/Library/Services/MLP.workflow/Contents/dcraw -T -a -v -c ${BASE}_1_"$date_01"_000250.dng 2>&1 | awk '/multipliers/ { print $2 }')

Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: dfort on March 13, 2016, 04:30:34 PM
@so-rose

You got some great stuff going on. It would be fantastic if you could start a new topic on how you use Blender. I think that several ML users would like to have an all open source pipeline but they can't find a suitable editing platform.

Good to hear that my script is penguin friendly. So there was no problem with dependencies? (xxd, exiftool, ???) I should learn how to list dependencies by looking over your script.
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 13, 2016, 10:33:57 PM
QuoteRegarding white balance. Not sure if you actually have to develop the actual file to get to the multiplier numbers.

@Danne Doesn't little snippet of code you provided (which I think I'll spinoff to get the Camera WB multiplier) still develop the image, dumping it into stdout and looking at the verbose output? If it does, then there's no performance advantage: I still want to go through the sequence and average all the multipliers together to get a temporally coherent white balance. If it doesn't, well then it sounds like a great change to make!

Though, I did figure out an optimization for the AWB: If I want to get the average WB of all the frames, there's no need to develop them all - just, say, every 20th frame (you can specify it with an option). The speedup is significant!

QuoteAre all processing going through tiff files coming from dcraw? Check this pipinng lines in that case.

Well, I do actually want the .TIFFs, as they're nicer to Blender :) . However I agree that if someone doesn't want the TIFFs, they shouldn't have to go through them to get to the good stuff. I'm having a bit of trouble writing it though - indeed I don't know what I'm doing! Currently my test snippet looks like this:

VID="vid" #hardcoded for now
SCALE=`echo "($(echo "${PROXY_SCALE}" | sed 's/%//') / 100) * 2" | bc -l` #Get scale as factor, *2 for 50%
FRAMES=302 #hardcoded for now

#Pipe dcraw to stdout like usual. Tee it into the high quality/proxy encoders. Proxy scales correctly based on $PROXY_SCALE.
i=0 #hardcoded dcraw for now
for file in *.dng; do
xargs -0 dcraw -c -q 0 -r 1 1 1 1 -o 0 -4 "${file}" | \
tee >( \
ffmpeg -f image2pipe -vcodec ppm -r 24 -i pipe:0 -vcodec prores_ks -n -alpha_bits 0 -vendor ap4h -c:a copy -strict -2 "${VID}_hq.mov" \
) >( \
ffmpeg -f image2pipe -vcodec ppm -r 24 -i pipe:0 -c:v libx264 -preset fast -vf "scale=trunc(iw/2)*${SCALE}:trunc(ih/2)*${SCALE}" -crf 23 -c:a mp3 "${VID}_lq.mp4" \
) | echo -e "\c"
echo -e "\e[2K\rDNG to ProRes/Proxy: Frame ${i}/${FRAMES}.\c"
let i++
done



Any tips?  ???

QuoteSo there was no problem with dependencies? (xxd, exiftool)

@dfort Well, there might be... I (luckily?) had both of those tools installed (and just added them to the dependency list of the script).  What dependencies, exactly, does your script use, and is there a way to list them?

QuoteIt would be fantastic if you could start a new topic on how you use Blender.
I'd love to! Which forum would I do so in?

QuoteI should learn how to list dependencies by looking over your script.
Not much to say - I put 'em in a string by hand :) !



Thanks everyone for your comments! :D
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: Danne on March 13, 2016, 11:27:15 PM
QuoteThough, I did figure out an optimization for the AWB: If I want to get the average WB of all the frames, there's no need to develop them all - just, say, every 20th frame (you can specify it with an option). The speedup is significant!

That,s exactly what MLP does :)


Linux and mac should be close
find . -maxdepth 1 -iname '*.dng' -print0 | xargs -0 dcraw $icc +M $br $dpf_a $any $ga -c -6 -W -q 3 $r $wb | ffmpeg $wav -f image2pipe -vcodec ppm -r "$fps" -i pipe:0 $sd $cod -n -r "$fps"  "$output""$outputb/"$file.mov


find . -maxdepth 1 -iname '*.dng' -print0 | xargs -0 dcraw
Wildcard find will let bigger amounts of dng files pass in opposite to ls which breaks.

dcraw $icc +M $br $dpf_a $any $ga -c -6 -W -q 3 $r $wb
Settings to dcraw

| ffmpeg $wav -f image2pipe -vcodec ppm -r "$fps" -i pipe:0 $sd $cod -n -r "$fps"  "$output""$outputb/"$file.mov
pipe command to FFmpeg.
$wav=wave file
-r "$fps"=add the frames per second coming from dng metadata
$cod=codec(Prores4444)
"$output""$outputb/"$file.mov=output path


Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 14, 2016, 03:43:31 AM
QuoteThat,s exactly what MLP does :)

That means I'm doing it right! :)



@Danne But yes, I finally got the piping to work! Thanks for the assistance! What kept irking me was that I ended up having to pipe the -print0'ed find through a sort -z; the frames were essentially chosen at random before that. It's a little magical that this works!!

I also managed to run both the main and proxy encoder simultaneously when called for (couldn't figure out how to split the pipe), where vidHQ/LQ are functions:
cat $PIPE | vidLQ & echo "text" | tee $PIPE | vidHQ

I currently, however, have no idea how to read the FPS from the MLV or RAW file... For now, it's specified.


Implementing this, I redid the control flow a bit - you now don't have to generate TIFFs first; -i and -m specify image sequence/movie output, which I think was the most major quirk. So, the question is, what next   :-\?
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: Danne on March 14, 2016, 07:01:48 AM
mlv_dump can provide you with fps information. Something like this should work.
fps=$(mlv_dump -v -m "$FILE" | grep 'FPS' | awk 'FNR == 1 {print $3}')

For RAW it,s a little different since it,s not applied to the dng metadata but it,s shown while processing with raw2dng. While extracing do this.
fps=$(raw2dng *.RAW ${BASE}"$date_08"_ | awk '/FPS/ { print $3; }')

You can get metadata information with exiftool
fps=$(find . -maxdepth 1 -iname '*.dng' -print0 | xargs -0 ~/Library/Services/MLP.workflow/Contents/exiftool | awk '/Frame Rate/ {print $4; exit}')

You can even grab the fps information through hex the way dfort is doing it with his pixel script.



Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: dfort on March 14, 2016, 07:47:27 PM
Quote from: dfort on March 13, 2016, 04:30:34 PM
...It would be fantastic if you could start a new topic on how you use Blender. I think that several ML users would like to have an all open source pipeline but they can't find a suitable editing platform.

Quote from: so-rose on March 13, 2016, 10:33:57 PM
I'd love to! Which forum would I do so in?

Well there's the Post-processing Workflow (http://magiclantern.fm/forum/index.php?board=14.0) area which has a couple of child boards that might also apply, Raw Video Postprocessing (http://www.magiclantern.fm/forum/index.php?board=54) and HDR and Dual ISO Postprocessing (http://magiclantern.fm/forum/index.php?board=56.0). I'd say stick with the Post-processing Workflow area. My suggestion would be putting some screenshots to illustrate how you're using Open Source tools along with some step-by-step instructions sort of like my compiling tutorials (http://magiclantern.fm/forum/index.php?topic=16012.0).

BTW--a while back someone did a video tutorial demonstrating an HDR workflow with blender: http://magiclantern.fm/forum/index.php?topic=1034
Title: Re: Script: MLV to TIFF/Prores with Proxy (Linux/Mac)
Post by: dfort on March 15, 2016, 02:25:33 AM
Quote from: Danne on March 14, 2016, 07:01:48 AM
You can even grab the fps information through hex the way dfort is doing it with his pixel script.

It was a little experiment I was doing but here it is. Simply feed a RAW (not MLV) file into this script:

# 'magic' (192,4) 52 41 57 4d | width (188,2) 00 05 | height (186,2) d0 02 | frameSize (184,4) 00 a0 18 00 |
# Frame count (180,2) 28 00 | Frame skip (178,6) 00 00 01 00 00 00 | FPS (172,2) ac 5d | etc.

fps=`xxd -s -0xac -l 2 -p "$1"`
echo $fps
fps="${fps:2:2}${fps:0:2}"
echo $fps
fps=$((16#$fps))
echo $fps
fps=$(awk "BEGIN {printf \"%.3f\",${fps}/1000}")
echo $fps


Here's the message I sent to Danne about this:

Quoteit starts with a comment on where things are located in the footer. If you start at the end of the file and move back 192 bytes, those next 4 bytes (going forward now) make up the 'magic' number "RAWM"--188 bytes from the end and 2 bytes forward is the width and so on until you get to what you're interested in, the FPS which are the two bytes located 172 bytes from the end of the file. It got a little tricky because you need floating point math for the FPS and bash only does integer. I could have gone with bc but you're more comfortable with awk so I found a way to do it with awk. The echo statements just show the progression of the variable to get it into the format that you need. There's probably a more elegant solution to this but it works and figured that's good enough for now.
Title: Re: MLV/RAW to TIFF/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 15, 2016, 06:08:08 AM
@dfort That's some real neat code!

At the moment, I'm using Danne's suggestion (the fps=$(raw2dng *.RAW ${BASE}"$date_08"_ | awk '/FPS/ { print $3; }') statement) for getting the FPS from the RAW file. Though, I'm not a huge fan of intercepting raw2dng's output as it writes the dngs...

Quote...how you're using Open Source tools along with some step-by-step instructions sort of like my compiling tutorials.

Thanks! Now I gotta think about what to say/how to do this properly... Stay tuned :)



An open question: How does Dual ISO video processing work? And does anyone have any samples...? (My 7D refuses to cooperate; I think I need to put a new ML build in there)
Title: Re: MLV/RAW to TIFF/Prores with Proxy (Linux/Mac)
Post by: Danne on March 15, 2016, 09:27:23 AM
For dual iso movie sequences I use wildcard and 4 parallell conversions. Find command and dual iso processing what was started all that ended up in MLP(command tip from dmilligan).
find . '*.dng' -print0 | xargs -0 -P 4 -n 1 cr2hdr
You want to apply same white level(avoid flicker) to all files in post and I use exiftool to grab that info. This should work.
wl=$(exiftool my.dng | awk '/White Level/ { print $4; }')

Apply white level
find . -maxdepth 1 -mindepth 1 -name '*.dng' -print0 | xargs -0 exiftool "-WhiteLevel=$wl" -overwrite_original


Since you will have to use cr2hdr you might wanna consider developing CR2 files as well. This is also working to grab the correct white balance multiplier from the CR2 file. You could check this source file from MLP
dualiso_to_DNG(CR2 images)
https://drive.google.com/file/d/0B4tCJMlOYfirUTlfWlFFa3BpeE0/view?usp=sharing

Basically it develops the same as for movie sequences
find . -maxdepth 1 -mindepth 1 -name '*.CR2' -print0 | xargs -0 -P 4 -n 1 ~/Library/Services/MLP.workflow/Contents/cr2hdr20bit $CR2 $co_01

You could grab the white balance from the CR2 file itself.
I do this by creating a list and calculate for whitebalance asShotNeutral values(courtesy chmee). Check the script. You could probably make this a lot nicer than in my script. There is also the export path solution if you include binaries outside the system paths(cr2hdr,dcraw,exiftool) but seems you,re dependencies might be put in the system itself. Solution from dfort ,dmilligan ,stackoverflow put in MLP
export PATH=~/Library/Services/MLP.workflow/Contents:$PATH

By the way. I don,t think 7D can shoot dual iso movie sequences.


Title: Re: MLV/RAW to TIFF/Prores with Proxy (Linux/Mac)
Post by: dfort on March 15, 2016, 06:45:19 PM
Quote from: so-rose on March 15, 2016, 06:08:08 AM
An open question: How does Dual ISO video processing work? And does anyone have any samples...? (My 7D refuses to cooperate; I think I need to put a new ML build in there)

Here are some sample Dual ISO files. One from a 100D and another from an EOSM.
https://www.dropbox.com/sh/kkrx3k2a2hz8nl2/AADAQS5GoTBNPbfP9bFR4OAZa?dl=0

I believe that the 7D has the same issue with Dual ISO video as the 5D2. There has been some recent breakthroughs with that on the 5D2. If you can compile ML (easy as π on Linux) you might try adapting it for the 7D.
http://magiclantern.fm/forum/index.php?topic=16854
Title: Re: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 21, 2016, 12:09:25 AM
All right, so I got Dual ISO video to work. However, I'm getting what seems like blinking focus pixels. Here's the proxy video output from the 100D sample:

https://drive.google.com/open?id=0Bx0YaKfeuWSrLU9iY2tUZjJqZFE

I tried running mlv2badpixels.sh on the original MLV file, as well as on a developed (with cr2hdr) DNG, using $raw_buffer --> $video_mode (from @dfort's code) from the MLV to specify the -m option, but they both have the exact same artifacts as above. What the heck is going on?

Besides the blinking pixels  :-\ , the output looks good.

Thanks @Danne for exposing me to the -P option of xargs - I managed to parallelize image sequence and Dual ISO development :) . Things are much faster now.



Finally, the script can now output to TIFF, EXR, DPX, and PNG sequences, all automatically compressed if -c is specified. It's trivial to add more; any requests?  :D
Title: Re: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 21, 2016, 01:31:26 AM
One more question: How does footage archival work with mlv_dump? As in, compressing the MLV file (and being able to decompress it for use)?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: Danne on March 21, 2016, 07:12:53 AM
Nice stuff. On a train atm so can,t check anything yet.
I,m planning to add darkframe subtraction something like this to MLP. Might be of interest here.
http://magiclantern.fm/forum/index.php?topic=15801.msg164620#msg164620

Gotta check how you export to exr and dpx later. How is it done :)?

Exr are created with imagemagick with convert command right?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: dfort on March 21, 2016, 01:09:21 PM
Quote from: so-rose on March 21, 2016, 12:09:25 AM
I tried running mlv2badpixels.sh on the original MLV file, as well as on a developed (with cr2hdr) DNG, using $raw_buffer --> $video_mode (from @dfort's code) from the MLV to specify the -m option, but they both have the exact same artifacts as above. What the heck is going on?

What is going on is that the way dcraw is filling in the "badpixels" isn't working very well with that particular Dual ISO example. I just checked it out and it is also happening on the Mac using MLP with the mlv_dump -> cr2hdr method. This isn't the case when using MLP in combination with MLVFS. dmilligan worked out a pixel blending system specifically for Dual ISO. It should be possible to do something similar with dcraw but that involves some C coding and creating a custom dcraw build. Better yet, it is also be possible to add the focus pixel fixing code into mlv_dump. That would be a better solution because it would fix the focus pixels on the DNG files like MLVFS does.

By the way I shot that Dual ISO shot on the 100D when testing MLVFS. That was before I created the mlv2badpixels.sh script which is used in MLP. Guess I never ran that shot through mlv_dump -> cr2hdr -> dcraw -P -> ffmpeg.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 26, 2016, 11:53:09 PM
@Danne I figured out darkframe subtraction! It's in 1.7.1; thanks for the pointer!

Quotedmilligan worked out a pixel blending system specifically for Dual ISO. It should be possible to do something similar with dcraw but that involves some C coding and creating a custom dcraw build. Better yet, it is also be possible to add the focus pixel fixing code into mlv_dump. That would be a better solution because it would fix the focus pixels on the DNG files like MLVFS does.

A custom dcraw build specifically for Dual ISO is starting to sound a little scary, though it makes a lot of sense if focus pixel removal could be integrated into mlv_dump - or perhaps cr2hdr?


A question for @dmilligan: Looking through the MLVFS source code, I notice a function in 'cs.c' named 'fix_focus_pixels' and another named 'fix_bad_pixels'; I wonder how possible/painful it would be to isolate these little stumps of magic, using the resulting binary to simply take in a bad DNG (from the output of cr2hdr) and output a fixed one?



Also, open question, is there any difference between cr2hdr and cr2hdr20bit? If so where can I find/compile cr2hdr20bit?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: dfort on March 27, 2016, 12:27:26 AM
Quote from: so-rose on March 26, 2016, 11:53:09 PM
Also, open question, is there any difference between cr2hdr and cr2hdr20bit? If so where can I find/compile cr2hdr20bit?

No difference. cr2hdr20bit was merged into the main branch several months ago. People should stop using the old name to avoid confusion.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: DeafEyeJedi on March 27, 2016, 12:40:54 AM
Nice work guys. Been following this thread and as it seems to get best results with Dual-ISO and Focus Pixel to work together is to combine MLP and MLVFS atm, correct?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 27, 2016, 01:14:18 AM
Quote from: DeafEyeJedi on March 27, 2016, 12:40:54 AM
Nice work guys. Been following this thread and as it seems to get best results with Dual-ISO and Focus Pixel to work together is to combine MLP and MLVFS atm, correct?
Thanks :).

It would seem that MLVFS has the golden ticket to badpixel removal in Dual ISO footage, so in a sense yes. However, I'm not quite sure what you mean by combining the two programs - if you're suggesting working on integrating the pixel blending code, then I agree fully! convmlv would benefit from such work as well.
Title: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: DeafEyeJedi on March 27, 2016, 01:27:21 AM
Sorry I forgot to also mention these in conjunction with DarkFraming Avg Process (Dual-ISO, Focus Pixel Fix and DF) all together ... My fault for the typo so-rose!
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: dmilligan on March 27, 2016, 04:54:50 AM
Quote from: so-rose on March 26, 2016, 11:53:09 PM
A question for @dmilligan: Looking through the MLVFS source code, I notice a function in 'cs.c' named 'fix_focus_pixels' and another named 'fix_bad_pixels'; I wonder how possible/painful it would be to isolate these little stumps of magic, using the resulting binary to simply take in a bad DNG (from the output of cr2hdr) and output a fixed one?
the bad pixel fix was pulled straight from cr2hdr, the focus pixel fixing probably needs to be added directly into cr2hdr
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 28, 2016, 09:26:06 PM
Quotethe focus pixel fixing probably needs to be added directly into cr2hdr

I'd be happy to give this a go at some point in time, but as I've never coded in C (only simple code in C++, and never image processing outside of Python), I'm not sure I'd have much success - would anyone be up for trying this?

Quotein conjunction with DarkFraming Avg Process (Dual-ISO, Focus Pixel Fix and DF) all together ... My fault for the typo so-rose!

No problems  :) . Combining MLP and MLVFS does, at the moment, give the best results as far as I can tell; it seems like a bit of a roundabout way to do it, however. Implementing the focus pixel fix in cr2hdr would allow MLP (and convmlv for that matter) to process those three features - Dual-ISO, Focus Pixel Fix and DF - all by itself!
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 28, 2016, 11:46:32 PM
If anyone's interested, I wrote some documentation for convmlv! It's a PDF found in docs->docs.pdf in the source code (https://bitbucket.org/so-rose/convmlv/src).
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: DeafEyeJedi on March 29, 2016, 12:32:32 AM
Quote from: so-rose on March 28, 2016, 09:26:06 PM
No problems  :) . Combining MLP and MLVFS does, at the moment, give the best results as far as I can tell; it seems like a bit of a roundabout way to do it, however. Implementing the focus pixel fix in cr2hdr would allow MLP (and convmlv for that matter) to process those three features - Dual-ISO, Focus Pixel Fix and DF - all by itself!

Exactly. Glad you followed me and I feel better that I'm not alone in this either. Looking forward to this implementation in the near future.

May the force be with you, @so-rose!
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on March 29, 2016, 01:29:59 AM
QuoteMay the force be with you, @so-rose!

Many thanks!

Quotethe focus pixel fixing probably needs to be added directly into cr2hdr

Seems like a challenge. I shall dive. No promises...



...I opened up cr2hdr.c, and cs.c from mlvfs, and I now fear for my life :o ! Though I'm incredibly unsure how to do it, I have an idea of what I need to do (and quite certain I can do it due to the magic of GPL):

From cs.c, I need to take the function fix_focus_pixels(struct frame_headers * frame_headers, uint16_t * image_data, int dual_iso) and all that it needs to function.

This I need to plop into cr2hdr.c next to (or in?) find_and_fix_bad_pixels(int dark_noise, int bright_noise, int* raw2ev, int* ev2raw), in such a way that fix_focus_pixels executed as a step.




The issues I have even at this point are numerous:

@dmilligan and @anyone Any ideas?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: dfort on March 29, 2016, 02:07:48 AM
The pan and crop metadata isn't saved in the DNG files. Since cr2hdr starts with either the CR2 or DNG files it doesn't have access to this information. In order to find crop and pan you'll have to go back to the original MLV file. Actually you only need to find the pan because the crop can be derived from the pan--but not vice versa.

dmilligan provided some instructions on how you can read headers and footers from MLV and RAW files.
http://magiclantern.fm/forum/index.php?topic=16054.msg163145#msg163145

Since you are crossing the line from shell script to C programming I'd suggest abandoning my mlv2badpixels.sh as a reference and looking at the source code for MLVFS.

https://bitbucket.org/dmilligan/mlvfs

If you have any further questions, you already know who to ask!
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: dmilligan on March 29, 2016, 02:50:25 PM
Quote from: so-rose on March 29, 2016, 01:29:59 AM
I assume focus pixel handling is different based on whether the footage is taken with a cropped frame or not (that's how it works in mlv2badpixels.sh). If so, where can I find or get/how can I use what I have in raw_info to get these "panPos" values that I don't have, but seemingly need, to power the focus pixels script?[/li][/list]
Sorry, it's not possible to add the focus pixel stuff to cr2hdr (cr2hdr does not have the required metadata), it needs to be added to mlv_dump instead, where you still have crop information.

Quote from: so-rose on March 29, 2016, 01:29:59 AM
What is the uint16 array image_data, and how might I set the output's pixel data in cr2hdr.c?
read pixel at (x,y): p = image_data[x + y * w];
set pixel at (x,y): image_date[x + y * w] = p;

Quote from: so-rose on March 29, 2016, 01:29:59 AM
Are the raw2ev and ev2raw integer arrays the same in cs.c as in the argument of find_and_fix_bad_pixels()? Oh and what is it  :) ?
LUTs that convert linear raw pixel values to a log scale (EVs in fixed point) and back.

Quote from: so-rose on March 29, 2016, 01:29:59 AM
What is the parameter dual_iso?
Whether or not the footage is dual ISO. If it is dual ISO we have to interpolate pixels differently, we can't use the pixels above or below for interpolation because they will be at a different ISO.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on April 13, 2016, 12:26:58 AM
Status update: I'm trying to modify mlv_dump! No idea when it's going to work, but work it shall!

In any case, I finally made my script aware of Black Levels. It may interest people to know that dcraw apparently doesn't read Black Level info from the DNG file it's processing, leaving a magenta/green color cast. It's all fixed now, though; I compared the output to Darktable and MLRawViewer to be certain.


Thanks for all the support everyone!  :)
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: Danne on April 13, 2016, 12:45:37 AM
Good luck on modifying mlv_dump!

I havn,t had any problems with dcraw black levels. I recall though, some greenish output files on some early messing around of another script I was working on but I changed dcraw build and suddenly the problem was gone. Did you try the setting +M?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: a1ex on April 13, 2016, 12:46:37 AM
I've noticed the dcraw bug with the prepackaged version that came with Ubuntu Wily; recompiled from latest source and the bug was gone.

The bug was also present in ufraw.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on April 13, 2016, 03:53:07 PM
@Danne I did, with no luck... I ended up exiftool'ing the Black Level from the developed DNG (works on Dual ISO footage as well), so that the user doesn't need to deal with it - this seems to be a universally usable solution.

It's interesting that the bug should be present in ufraw too. The dcraw on Debian at least has the bug.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: Danne on April 13, 2016, 03:56:05 PM
The non universal solution(but faster) would be adding black level through hex. Dfort already cracked those numbers for white level.
Did you compile dcraw yourself?

*that was fo mlv files not dng files. My bad.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on April 13, 2016, 06:49:55 PM
Quote from: Danne on April 13, 2016, 03:56:05 PM
The non universal solution(but faster) would be adding black level through hex. Dfort already cracked those numbers for white level.
Did you compile dcraw yourself?

*that was fo mlv files not dng files. My bad.
I'm just using the latest dcraw available in the Debian repository (testing), inserting the extracted BlackLevel tag after the -k option.

I only extract that value from one DNG, however - does it change? You mention that adding the black level through hex would be faster, but wouldn't I still have to specify -k, thus slowing it all down regardless?

Sent from my Nexus 6 using Tapatalk

Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: Danne on April 13, 2016, 07:05:33 PM
Are you adding black level from dcraw or exiftool. Wasn,t aware you could change black level with dcraw. Wouldn,t that be faster than exiftool?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on April 14, 2016, 08:57:51 PM
QuoteWasn,t aware you could change black level with dcraw.

DCraw isn't seeing the BlackLevel tag in the DNG at all, at least on my build of it. The level is correct in the DNG, usually around 2048, but DCraw doesn't automatically integrate it (a bug I expect). However, I'm able to specify the -k option, to manually override the black level that DCraw tries to develop with with the black level I read from the DNG.

Tl;dr I avoid a dcraw bug using exiftool.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on May 19, 2016, 12:04:21 AM
Just updated; I ran into an interesting issue: How to transform a relative path into an absolute one.

On Linux, this is easy; readlink -f "relpath" does the job. Does anyone know if something similar exists on Mac?
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: Danne on May 29, 2016, 11:12:21 AM
Hi so-rose. ffplay seems to respond well to a slight framerate decrease. For better previewing purposes.
Frames
-r $(echo $fps / 1.3 | bc -l)
Audio
-filter:a "atempo=$(echo $fps / 1.3 | bc -l)/$fps"
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: nicholas_carroll on June 09, 2016, 06:50:26 AM
Hey so-rose, I am also using Blender and wondering whether you find limitations when using image sequences? For example, I found that the bundled Import Images as Planes takes movie formats but not image sequences.
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: nicholas_carroll on June 12, 2016, 04:25:58 AM
Tried using convmlv to convert a directory of CinemaDNG files to Prores. Didn't work - am I doing it right?

nick@nick-workstation:~/convmlv-dev$ ls testdng | head -1
BMPC4KNC_1_2016-05-23_0248_C0000_000000.dng
nick@nick-workstation:~/convmlv-dev$ ls
7D_badpixels.txt  convmlv.sh  licence   README.md  testdng
balance.py        docs        mlv_dump  sRange.py
nick@nick-workstation:~/convmlv-dev$ ./convmlv.sh -m testdng
./convmlv.sh: line 310: /home/nick/convmlv.conf: No such file or directory
./raw2dng not found! Execution will continue without .RAW processing capability.
   Get it here: http://www.magiclantern.fm/forum/index.php?topic=5404.0

./mlv2badpixels.sh not found! Execution will continue without badpixel removal capability.
   Get it here: https://bitbucket.org/daniel_fort/ml-focus-pixels/src

./cr2hdr not found! Execution will continue without Dual ISO processing capability.
   Get it here: http://www.magiclantern.fm/forum/index.php?topic=7139.0


1 File Left to Process: testdng

testdng: Using specified folder of RAW sequences...

testdng: Dumping to DNG Sequence...

File not found: /home/nick/convmlv-dev/raw_conv/testdng/tmp_testdng/testdng_000001.dng
File not found: /home/nick/convmlv-dev/raw_conv/testdng/tmp_testdng/testdng_000001.dng
testdng: Retrieving Camera White Balance...
Correction Factor (RGBG): 0.724658 0.551900 1.000000  0.551900

*Not moving .wav, because it doesn't exist.

testdng: Encoding to ProRes...
Non-numeric argument to "-k"

Cleaning Up.


nick@nick-workstation:~/convmlv-dev$ ls raw_conv
testdng
nick@nick-workstation:~/convmlv-dev$ ls raw_conv/testdng/
settings.txt
nick@nick-workstation:~/convmlv-dev$


Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on June 24, 2016, 06:40:59 PM
Ah, been away for a while; apologies!

QuoteHey so-rose, I am also using Blender and wondering whether you find limitations when using image sequences? For example, I found that the bundled Import Images as Planes takes movie formats but not image sequences.

First of all, vanilla Blender seems (in my experience) designed to work extremely well with image sequences over movie files. Especially exr sequences are very fast; the decoder for mov files isn't so great, on the other hand.

Second, it seems you've found a bug with DNG input (you're doing it 100% right)! I'm on it  ;)
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: DeafEyeJedi on June 24, 2016, 07:27:30 PM
Quote from: so-rose on June 24, 2016, 06:40:59 PM
Ah, been away for a while; apologies!

Second, it seems you've found a bug with DNG input (you're doing it 100% right)! I'm on it  ;)

Nice catch @nicholas_carroll and welcome back @so-rose!
Title: Re: convmlv: MLV/RAW to Sequence/Prores with Proxy (Linux/Mac)
Post by: so-rose on June 25, 2016, 02:31:57 AM
All right, @nicholas_carroll, I fixed your bug! In fact, I fixed some other related bugs too, as well as some gotchas with DNG sequences. Let me know if you have any problems!

Quotewelcome back @so-rose!

Thanks! I bring features :) . Probably just made more bugs, though... This is really becoming a beast of a program at 1500 lines!  :-\
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux!!)
Post by: arboldeconfianza on March 03, 2017, 08:24:31 PM
HI!, thank youu for this amazing tool! have really good funcionality in LINUX, but i cant not add LUT VISION LOG!, i have to much problems with the result!, what you think is the way for setting LUT with CONVMLV! and make preview before to process, thank youu!
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: so-rose on March 04, 2017, 11:55:18 PM
Hey @arboldeconfianza ,

You're very welcome :) Glad it can be of use! Adding a LUT is quite simple - just specify -l and the path to the LUT. It can also be done in a config file (see the documentation here: https://github.com/so-rose/convmlv/releases).

To develop an MLV into an MOV while applying a LUT:

convmlv -m -l <path to lut> <path to MLV>

The only way to preview it is to develop a single frame (the 1st for example) of the file. The command below will give you a PNG with the LUT applied:

convmlv -i -t 2 -l <path to lut> -r 1 <path to MLV>


Caveats:
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: michael08 on October 02, 2017, 04:18:19 PM
please help!!!


(http://thumb.ibb.co/bQnvdw/Screenshot_from_2017_10_02_17_15_26.png) (http://ibb.co/bQnvdw)pl
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: Danne on October 02, 2017, 09:33:45 PM
What are you heading for? EXR, ProRes?
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: michael08 on October 02, 2017, 10:43:58 PM
EXR
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: michael08 on October 03, 2017, 06:14:24 PM
Quote from: Danne on October 02, 2017, 09:33:45 PM
What are you heading for? EXR, ProRes?

how do you think the problem is? on which particular Linux system do you work? I have an ubuntu installed
Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: so-rose on October 31, 2017, 10:22:44 PM
Quote from: michael08 on October 03, 2017, 06:14:24 PM
how do you think the problem is? on which particular Linux system do you work? I have an ubuntu installed
You messaged me about this, but I'll respond here.

You're trying to install convmlv's dependencies with:

sudo apt-get install $(convmlv -K 0)

That's only valid for the Debian dependencies, however, which won't be found on your Ubuntu system. You're on Ubuntu, and should try running:

sudo apt-get install $(convmlv -K 1)

I admit, this nuance could be much more clear in the docs. 0 gives you Debian deps, 1 gives you ubuntu deps, 2 gives you Fedora deps, 3 gives you Mac deps. I'll see about updating the PDF.

Sent from my SM-G930T using Tapatalk

Title: Re: convmlv: MLV/RAW to Sequence/Prores (Linux/Mac)
Post by: so-rose on November 02, 2017, 07:09:31 PM
@michael08 I ended up fixing a pretty niche issue that was affecting you. Basically, globbing was turned off in your shell! So running something like:


for f in *.dng; do echo $f; done


Simply doesn't work when globbing is off - it never expands the "*.dng" into all the DNG files. Which is a big issue, not just for convmlv.sh, but probably for any kind of shell script you try to run.

The solution is simple. In your shell, before running convmlv.sh, run:


set +f


That turns globbing back on - as it should be. I pushed a new commit to the repo, where I run 'set +f' at the beginning of convmlv.sh.

If one were to want to turn it off (as was probably done in your case), that'd be 'set -f'. But don't do that, please!
Title: Re: (Linux/Mac) convmlv: Featureful MLV Developer
Post by: so-rose on November 24, 2018, 07:20:21 PM
Regarding any problems with split MLV files or color-ext color spaces having washed out colors, please update to v2.0.3 .