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

Messages - nick.p

#51
Tragic Lantern / Re: Re: 7D Test builds with Raw Support
December 10, 2013, 02:07:16 PM
Every frame is fine for me
#52
New battery and it drains 16% per hour
#53
Drag the program onto terminal and then drag the mlv. Then press enter
#54
It's an old battery. I think it's two out of three bars. I just assumed it was a 7d thing. How long do they normally last shooting video?
#55
Quick question. Have any of you noticed that the 7d chews more battery than other canons. Mine regularly pulls around 50%/hour. Is that normal?
#56
Tragic Lantern / Re: 7D Raw Thread
November 15, 2013, 02:42:03 PM
It's pretty darn good
#57
Tragic Lantern / Re: 7D Raw Thread
October 15, 2013, 02:24:10 PM

Quote from: alsey7 on October 15, 2013, 11:17:11 AM
Not sure if this thread would be proper place to ask but.... Any progress being made on silent picture mode recording more then just 2 sec worth of dng? Wouldnt countiunous capture help raw video.
Raw recording is essentially continuous silent pictures, perhaps I'm wrong.
#58
Save you the hard work :D
I've got it setting everything via folder prompts but you could change it to hardcoded strings if you wanted to speed things up.

on run
set these_items to {} as list
set outputfolder to ""
set mlv2dng to (choose file with prompt "Choose the mlv2dng app") as string
set outputfolder to chooseoutputfolder(outputfolder)
set these_items to choosefilesbutton(these_items)
processfileselection(these_items, mlv2dng, outputfolder)
end run
on chooseoutputfolder(outputfolder)
set outputfolder to (choose folder with prompt "Select an output folder:") as list
repeat with i from 1 to (the count of (outputfolder as list))
set this_item to item i of (outputfolder as list)
set the item_info to info for (this_item)
if folder of the item_info is true then
set outputfolder to POSIX path of outputfolder
else
set outputfolder to POSIX path of (container of outputfolder)
end if
end repeat
return outputfolder
end chooseoutputfolder

on choosefilesbutton(these_items)
set these_items to (choose file with prompt "Choose a file or folder to process. Note: you can select any or all files; only the MVL files will be processed." with multiple selections allowed) as list
return these_items
end choosefilesbutton

on processfileselection(these_items, mlv2dng, outputfolder)
repeat with i from 1 to (the count of (these_items as list))
set this_item to item i of (these_items as list)
set the item_info to info for (this_item)
if folder of the item_info is true then
processfolder(this_item, mlv2dng, outputfolder)
else
processfile(this_item, mlv2dng, outputfolder)
end if
end repeat

end processfileselection

on processfolder(this_folder, mlv2dng, outputfolder)
set these_items to list folder (this_folder) without invisibles
repeat with i from 1 to (the count of (these_items as list))
set this_item to (((this_folder as Unicode text) & ((item i of these_items) as Unicode text)) as alias)
set the item_info to info for this_item
if folder of the item_info is true then
processfolder(this_item, mlv2dng, outputfolder)
else
processfile(this_item, mlv2dng, outputfolder)
end if
end repeat
end processfolder

on processfile(this_individual_item, mlv2dnglocation, outputfolder)
set validExtensions to {"MLV"}
set this_extension to "" as string
set AppleScript's text item delimiters to "."
tell application "Finder"
set n to name of file (this_individual_item)
if n contains "." then set this_extension to (text item -1 of n) as text
if n contains "." then set this_name to (text item -2 of n) as text
end tell
tell application "Finder"
end tell
if this_extension is in validExtensions then
tell application "System Events"
set thePath to POSIX path of (container of this_individual_item)
end tell
set myFile to POSIX path of mlv2dnglocation
log "got to here"
set shellscript to "mkdir -p '" & outputfolder & this_name & "'"
log shellscript
do shell script shellscript
log "here"
set thefirstscript to "cp " & quoted form of myFile & " '" & outputfolder & this_name & "'"
log thefirstscript
do shell script thefirstscript
log "copying"
set thescript to "cd '" & outputfolder & this_name & "' && '" & outputfolder & this_name & "/mlv2dng' " & quoted form of (POSIX path of this_individual_item)
log thescript
do shell script thescript
do shell script "rm '" & outputfolder & this_name & "/mlv2dng'"
end if
end processfile
#59
Is this your code?
Edit: The problem I've discovered with getting the filename using Finder is that it often fails. I've got a script obj-c applescript that I can easily convert to a proper applescript if you want it.
#60
Raw Video Postprocessing / Re: Resolve 10 beta is out
September 13, 2013, 02:49:07 PM

Quote from: arrinkiiii on September 13, 2013, 02:17:40 PM
Someone can tell me what is legacy option ??  :-\
Version 9 I do believe
#61

Quote from: bryantnaro on September 09, 2013, 07:36:12 AM
Chiming in to say the 128GB Komputerbay card was total junk. The speeds were all over the place, but it did roll raw for a bit. I kept getting multi-color weird pixel artifacts (weird glitches), that I saw one other person have in this forum. They said the problem went away when their komputerbay card was returned. Mine also stopped working, so that helps my cause. My advice: Don't gamble with Komputerbay, it's not worth the headache.



And here's that weird artifact I got:


I remember seeing something like this on another thread and I think the card died shortly afterwards. It had the same artefacts you experienced
#62
Pretty much they don't want to jeopardise their current work for the masses of dslr users just to benefit a few select users and risk legal action.
#63
Tragic Lantern / Re: Tragic Lantern for EOS M
September 05, 2013, 02:05:05 AM
double post  :(
#64
Tragic Lantern / Re: Tragic Lantern for EOS M
September 05, 2013, 02:04:29 AM

Quote from: zuzukasuma on September 05, 2013, 01:58:40 AM
not everything for EOS M, its only running on 50D and 5D Mark II now, its RAW 2.0 video format.
That makes more sense now. I was compiling the source and it was included by default.
#65
Tragic Lantern / Re: Tragic Lantern for EOS M
September 05, 2013, 01:01:35 AM
I've been trying to use the mlv_rec module. I always get a file creation error and then it fills the buffer but doesn't write to the card. Does the mlv module work?
#66
Tragic Lantern / Re: Tragic Lantern for EOS M
September 02, 2013, 02:02:08 PM
Here's how I did it:
Step 0: Update to version 2.02

Step one: Format the card using the computer
Step two: Format in camera
Step three: Put these files on the card - http://www.nickpotts.com.au/downloads/ML_nick_g3gg0_30_Aug_2013
Step four: Enable the boot flag and eos develop in eoscard - found here: http://pel.hu/eoscard/
Step five: Run software update on camera
Step six: Celebrate?
I'm not 100% this will work but this is approximately what I did.
#67
Tragic Lantern / Re: Tragic Lantern for EOS M
September 02, 2013, 01:46:25 PM
Quote from: tetsu on September 02, 2013, 01:31:42 PM
Good morning folks! Sorry if this is the wrong place to ask! I have a new EOS M that came with firmware 1.06 so I want to know where to find the proper build of ML to use or if its better to update to 2.02. The build I´ve found its for 2.02. Also I´m not sure which tutorial to use, just format the sd card or if I have to use EOSUtility.

Thanks and keep the good work!
I was in the same position a few hours ago. I was trying to avoid updating to 2.02 because I didn't think the boot flag was working. I struggled for about an hour before updating and now everything works perfectly. I was even able to compile the latest version and slap that on.
#68
Tragic Lantern / Re: Tragic Lantern for EOS M
September 02, 2013, 12:42:15 PM
Quote from: Malakai on September 02, 2013, 12:39:18 PM
which file is it? ill put a link up to it for a few days from my server until its updated
It's the UpDaterM.fir file. I can also host it for as long as it is needed.
#69
Tragic Lantern / Re: Tragic Lantern for EOS M
September 02, 2013, 09:51:30 AM
Quote from: yno0o_15 on September 02, 2013, 07:29:33 AM
Just new here.

I just purchased an EOS-M with version1 put ML on it and happy with it.,

now i want to update it to version 2 can ML work on version 2 of eos-M?

what are the steps? and download sites thanks in advance godbless you all guys for developing this wonderful tool ^_^
Can somebody post the file that was located at qfpost.com/file/d?g=NzBmhwaBK I can't download it because the site is down.
#70
Tragic Lantern / Re: 7D Raw Thread
September 01, 2013, 02:45:17 PM

Quote from: _iLiam on September 01, 2013, 01:23:53 PM
I'm not sure if i'm missing something very obvious but which build is the MLV build? I'm currently running the ml_britom_30_aug build.
Is the MLV the nick_g3ggo build? Thanks.
Yes
#71

Quote from: slybugg on August 31, 2013, 08:20:33 AM
Thanks very much.

mlv2dng still not working on my Lion 10.7.  The app puts a file called mlv2ng in the output folder.
It does that in the process of creating the dngs. It's a safe bet that mlv2dng doesn't work on 10.7. Can we have somebody confirm this?
#72
Tragic Lantern / Re: 7D Raw Thread
August 31, 2013, 06:19:34 AM
For those people who want to process mlv files on a mac, I have created a gui wrapper for the mlv2dng program:
http://www.nickpotts.com.au/downloads/mlv2dng.zip
#74

Quote from: gnarr on August 29, 2013, 01:34:26 AM
The "drag'n'drop" feature in windows is just windows being clever and automatically opening a terminal with correct parameters to run. On OsX you will have to use the terminal for now (or some Mac nerd can maybe help you.. I don't know anything about OsX).
on the terminal write:
./mlv2dng inputfile.mlv
I can create an AppleScript GUI if there is a demand for it.
#75
Tragic Lantern / Re: 7D Raw Thread
August 30, 2013, 11:06:01 AM
Quote from: ted ramasola on August 30, 2013, 11:03:26 AM
Using this version, You can't format the card.

The camera would freeze while "reading ML contents" the led would continue to flicker but you can't make selection on lcd, won't turn off.
Battery will have to be removed to unfreeze.
I'm able to format. I think some certain files make it unformatable but I'm not 100% sure.