Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - piloui

#1
Hi there,

I've seen lots of old topics about the manfrotto MVR911ECCN usb follow focus + 5D2 + ML :

http://www.magiclantern.fm/forum/index.php?topic=2693.0
http://www.magiclantern.fm/forum/index.php?topic=14040.0

Well, hard to have an opinion after that.

So i make this new topic to ask for help.

Can anyone confirm that follow focus works perfectly with 5D2 and ML last release ? All functions ? Like global draw, RAW, MLV, etc ?

Thank you.

;)
#2
Hi there,

I'm trying to create a simple batch, for selecting, right clic and "DNGing" mlv files


@echo off
for %%a in (*.MLV) do ( md "%%~na" 2>nul )&( path_to_mlv_dump\mlv_dump.exe -o %%~na\%%~na_ --dng %%~na.MLV )


It simply creates a directory for each MLV file and then exctracts dngs in it with appropriate names. My .bat file is placed in "C:\Users\NAME\AppData\Roaming\Microsoft\Windows\SendTo"

Then i can right clic my mlvs, in the contextual menu choose sent to > 01_mvl_dum.bat  ( 01 prefix is for placing it at the top of the list )

Works pretty well but :

1: extracts all the mlv present in the folder, i'd like to make it only for selected ones

2: i'd like to add a progress info, like we had with raw2dng, some kind of ( "NAME OF THE MLV" extraction running : current frame / total frames )

Don't know if it's hard to do despite my web research. Any ideas please ?

Thanks ;)