tesla500 said:John DeLonghi said:I have made some raw recordings at different resolutions but didn't make a note of the settings.
How can I find out what length and width to put into the script just from the RAW file?
You'll need to use trial and error for now, unfortunately. Try different values for horizontal resolution, leaving the vertical resolution set to 1024, until you get an image that looks clear. Once you have horizontal resolution set correctly, it's much easier to figure out the proper vertical resolution just by looking at the output image.
This conversion tool is very much a stopgap measure until we have this functionality built into the camera.
how do you execute the script can you post screenshots for us not familiar with terminal?tesla500 said:For those of you itching to shoot RAW on your Chronos, you can now use the raw saving feature in the latest beta software v0.2.5 along with this new conversion tool to make DNG sequences. This is a stopgap solution until we have DNG saving built into the camera.
pyraw2dng converts the .raw files saved by Chronos to standard Adobe DNG files.
The pyraw2dng utility is open source, you can view the source code on Github:
https://github.com/krontech/chronos-utils/tree/master/python_raw2dng
Requirements
Python 2.7, available here: https://www.python.org/downloads/release/python-278/
This might work in Python 3 as well, but it has not been tested.
During the Windows Python 2.7 installation, ?install? "Add Python.exe to Path" as shown below:
![]()
Usage
Save your video using the RAW16bit format on the camera. Raw16RJ works, but the images are dark and need to be fixed in post. RAW12bit packed mode is not yet supported, but is coming soon.
Download the script (see attachment)
Copy the script file, pyraw2dng.py and the raw 16 bit format video into the same directory.
Open a terminal (command prompt), then navigate to the folder with your videos and script
Execute the script as shown in the example below. You will need to update the -w and -l switches with your actual frame size.
pyraw2dng.py -w (width) -l (length) (filename)
Where:
(width) is the horizontal resolution of your recording
(length) is the vertical resolution of your recording
(filename) is the .raw file you want to convert
An example of a complete command is shown below:
pyraw2dng.py -w 1280 -l 1024 vid.raw
The raw video will be converted and saved as a DNG sequence in a folder of the same name as the .raw file.
Let us know how this works for you!
John DeLonghi said:[quote author=patrickrebstock]
how do you execute the script can you post screenshots for us not familiar with terminal?
tesla500 said:Once that's done we'll be working on a better in-camera video pipeline, the primary goals are better democratic (Likely AHD, same as used by Adobe Camera RAW last time I checked), as well as better color processing. I believe this will fix the h264 quality issues.
Sorchey said:I've just seen this thread and I'm symply blown away by the comparison between RAW and h264.
Although it is a very unpopular question, could you predict a rough time schedule for this update? Can we expect something in that direction this year, maybe this summer?
BlackthorneMedia said:Anyone have a tool for formatting SD cards in ext3 on a mac.
I have followed every tutorial out there and cant get any of the mac options to work.
I have tried e2fsprogs (sudo $(brew --prefix e2fsprogs)/sbin/mkfs.ext3 /dev/diskN) and it just errors out. I am troubleshooting as I go but am hoping someone else has a workaround.
Anyone else have a tool or shortcut.
By the way pyraw2dng is working GREAT! The image quality is night and day!
I could not use pyraw2dng on Mac with python3.
Did you use pyraw2dng on Mac?
How can I do?