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 - remizik

#1
General Help Q&A / ML disclaimer screen
April 13, 2016, 01:51:22 PM
hello,

is there a way to disable that screen ?



(couldn't find the info in the FAQ, sticky post, or settings on the camera)

thanks
#2
Raw Video / Convert DNG to JPG with command line ?
March 31, 2016, 10:47:57 AM
Hi all,

i'm trying to automatise the process from MLV files to JPG files
here's my workflow so far

I have this in a folder


I put my MLV files in the "_MLVs" folder, and then run the "BATCH_mlv2dng.bat" batch


This extracts all the DNG images from the MLV files and put them in the "DNG_output" folder


and from there I start manual work :
- batch process images in photoshop to convert the DNG to JPG
- import the JPG in a video software (virtualdub/premiere pro/etc ..) to make the final video

I'd like to automatise the DNG to JPG part too.
Do you know if a simple executable exists ? like mlv_dump.exe

thanks for your help :)
#3
Just place the following files together in a folder

mlv_dump.exe
raw2dng.exe
BATCH_mlv2raw2dng.bat
your MLV file
(optional, you can type its complete path if you want later)



start BATCH_mlv2raw2dng.bat
and fill the informations :



then it should start doing its thing



and then the RAW file is processed in DNG files



after the batch closes, your folder should look like this (if you answered "y" when the batch asked you if you wanted to delete the RAW file) :



your DNG files are in the "DNG_output" folder :



I hope this will be helpful, maybe I didn't search enough and there is a nice GUI around :D

can't find how to add an attachment and I don't want to host it somewhere, so here's the content of the batch !


@echo off
cls

set /p INPUT="Input file (select your MLV file) : "
set /p OUTPUT="Output file : "
set /p COMPRESSION="Compression level (0-9) : "
set /p PREFIX="Prefix for the DNG files : "
set /p DELRAW="Delete RAW file after ? (y/n) : "

mlv_dump.exe -o %OUTPUT%.raw -r -l %COMPRESSION% %INPUT%
raw2dng.exe %OUTPUT%.raw %PREFIX%
mkdir DNG_output
move /y *.dng DNG_output
if "%DELRAW%"=="y" (
del %OUTPUT%.raw
)
#4
Hello,

Is there a way to turn off the display while taking silent DNG photos in intervalometer mode ?
I'm using a 60D.

I found this topic but it's pretty old so I thought I'd ask again, maybe there's a way now ?
http://www.magiclantern.fm/forum/index.php?topic=5629.msg39441

thanks :)
#5
General Help Q&A / Video shortcut gone ? Yes!
September 01, 2012, 04:11:08 PM
Hello,

Before 2.3 I was often using a usefull shortcut to go to video mode, without turning the mode wheel.

It was "Iso" key then "Lv" key if I remember well.

It's not there anymore apparently.

I checked the wiki and the FAQ, I can't find it !

Thanks ! :)