Problems with the videos format (WinRAR)

Started by michaelkk, July 18, 2013, 01:52:14 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

michaelkk

Hi
I tried to shoot some tests with my 5d mark iii some of the files works fine after the conversion to dng with raw2dng.exe but some them were rar files...
when I try to drag the rar into the raw2dng script it generate all the files but they look bad (all colors smeared)
need help  :-[
thanks

bnvm

Quote from: michaelkk on July 18, 2013, 01:52:14 AM
Hi
I tried to shoot some tests with my 5d mark iii some of the files works fine after the conversion to dng with raw2dng.exe but some them were rar files...
when I try to drag the rar into the raw2dng script it generate all the files but they look bad (all colors smeared)
need help  :-[
thanks

Those are not RAR files they are RAW files. The FAT filesystem that is used on memory cards will not allow a file larger than 4GB to exist on it. When recording RAW, once the RAW file has reached the 4GB limit a new file is created and the recording continues to this new file. These RAW, R00, R01, etc... files are pieces of 1 file that need to be joined before using raw2dng as each one is incomplete on its own.

Joining files
WIN
    Start dialog: cmd
    1. cd C:\Users\my_destination_folder
    2. copy /B xyz.RAW+xyz.R00+xyz.R01 xyz.RAW

OSX/LINUX
    Start Terminal
    1. cd /Volumes/my_destination_folder
    2. cat xyz.RAW xyz.R00 xyz.R01 > xyz.RAW


Redrocks

Quote from: bnvm on July 18, 2013, 11:49:42 PM

Joining files
WIN
    Start dialog: cmd
    1. cd C:\Users\my_destination_folder
    2. copy /B xyz.RAW+xyz.R00+xyz.R01 xyz.RAW

OSX/LINUX
    Start Terminal
    1. cd /Volumes/my_destination_folder
    2. cat xyz.RAW xyz.R00 xyz.R01 > xyz.RAW

Giving him commands to implement might be a bit optimistic!

@michaelkk try this and read the thread if you get stuck:

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

michaelkk

@bnvm + Redrocks  Thanks, the cmd command helped