Author Topic: Danne's crop_rec_4k experiments for EOS M  (Read 372638 times)

kanenas

  • New to the forum
  • *
  • Posts: 2
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2625 on: September 16, 2020, 04:49:06 PM »
Hi all, does the Touch AF works in movie mode? (15Aug20 build)

clubsoda

  • New to the forum
  • *
  • Posts: 36
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2626 on: September 16, 2020, 08:22:00 PM »
Amazing stuff. Thanks Danne. Let's hope the bugged out area and the black area can be improved. M will be (is a) beast :)


ZEEK

  • Senior
  • ****
  • Posts: 329
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2628 on: September 17, 2020, 07:03:21 AM »
Awesome Danne! 8)
It's all coming together.
- The 5K Anamorphic FRTP Mode LV looks nice, just has the pink flicker strip on the bottom area. Also, seems that it's 2.35:1 or so only. 16:9 isn't possible even with 3.5K Anamorphic.
- X5 Crop, 1920x1280 frtp. Cool mode @1920x1080, nice how the LV Resembles the actual frame. The only issue is that it looks a little pixelated when imported into MLV App.
Great things are happening.
EOS M

theBilalFakhouri

  • Developer
  • Hero Member
  • *****
  • Posts: 1272
  • UHS-I
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2629 on: September 17, 2020, 09:24:36 AM »
Also, seems that it's 2.35:1 or so only. 16:9 isn't possible even with 3.5K Anamorphic.

It's about ~2.50:1 AR, I am planning to make 16:9, not sure if it would possible but worth trying.

- X5 Crop, 1920x1280 frtp. Cool mode @1920x1080, nice how the LV Resembles the actual frame. The only issue is that it looks a little pixelated when imported into MLV App.

@Danne
I think the issue is the Jagged-Lines because of 8183 and 8184, shouldn't be applied in 1:1 Mode, from your code:

Code: [Select]
            case CROP_PRESET_anamorphic_EOSM_frtp:
            case CROP_PRESET_CENTER_Z_EOSM_1920x1280_frtp:
                adtg_new[2] = (struct adtg_new) {6, 0x800C, 0 + reg_800c};
                adtg_new[3] = (struct adtg_new) {6, 0x8000, 6};
                adtg_new[17] = (struct adtg_new) {6, 0x8183, 0x21 + reg_8183};
                adtg_new[18] = (struct adtg_new) {6, 0x8184, 0x7b + reg_8184};
                break;

ZEEK

  • Senior
  • ****
  • Posts: 329
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2630 on: September 17, 2020, 10:05:28 AM »
S
It's about ~2.50:1 AR, I am planning to make 16:9, not sure if it would possible but worth trying.
Right, no problem, doing great stuff here.👍
EOS M

Danne

  • Developer
  • Hero Member
  • *****
  • Posts: 7702
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2631 on: September 17, 2020, 10:22:53 AM »
@Danne
I think the issue is the Jagged-Lines because of 8183 and 8184, shouldn't be applied in 1:1 Mode, from your code:

Code: [Select]
            case CROP_PRESET_anamorphic_EOSM_frtp:
            case CROP_PRESET_CENTER_Z_EOSM_1920x1280_frtp:
                adtg_new[2] = (struct adtg_new) {6, 0x800C, 0 + reg_800c};
                adtg_new[3] = (struct adtg_new) {6, 0x8000, 6};
                adtg_new[17] = (struct adtg_new) {6, 0x8183, 0x21 + reg_8183};
                adtg_new[18] = (struct adtg_new) {6, 0x8184, 0x7b + reg_8184};
                break;

I think it should be this actually:
Code: [Select]
            case CROP_PRESET_anamorphic_EOSM_frtp:
            case CROP_PRESET_CENTER_Z_EOSM_1920x1280_frtp:
                adtg_new[2] = (struct adtg_new) {6, 0x800C, 0 + reg_800c};
                adtg_new[3] = (struct adtg_new) {6, 0x8000, 5};
                break;

New build:
https://bitbucket.org/Dannephoto/magic-lantern_jip_hop_git/downloads/crop_rec_4k_mlv_snd_raw_only_2020Sep17.EOSM202_frtp.zip

EDIT: And of course, focus pixels again ;)

EDIT2: Yet another fix, new upload.

IDA_ML

  • Hero Member
  • *****
  • Posts: 1014
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2632 on: September 17, 2020, 01:00:47 PM »
And 1736x2928 flv anamorphic works too.  At 16 fps and 10bitLL recording is continuous and 12bitLL provides at least 15 sec. recording.  Even 17,134 fps are useable with a few corrupt frames.  Great work!  Thanks everyone involved.

2blackbar

  • Hero Member
  • *****
  • Posts: 514
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2633 on: September 18, 2020, 02:35:48 PM »
New 1920x1280 mode is great, i had to do a bit of steps to get 1920x1080 working from 2.5k mode and it wasnt realtime preview but now it is , this new mode covers exactly my 1/2'' sensor CCTV lens area, its not centered perfectly but its a big improvement, i used these triangles on sides to get it centered/fine tuning, now they dont  move the framing lanymore to left/right/up/down.
Is it possible in this mode to make halfshutter go to closer preview to check focus ? a the moment it goes to framing preview so we basically have 2 same previews, i dont think framing is needed anymore when this one works so good, id prefere to check my focus properly when pressing halfshutter.
Also i cant wait for 2.8k mode with proper realtime framing, even with black bar.

Danne

  • Developer
  • Hero Member
  • *****
  • Posts: 7702
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2634 on: September 18, 2020, 04:04:52 PM »
Enable zoomaid under customized buttons.

2blackbar

  • Hero Member
  • *****
  • Posts: 514
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2635 on: September 18, 2020, 05:11:32 PM »
Thanks ! My memory is really bad these days

Danne

  • Developer
  • Hero Member
  • *****
  • Posts: 7702
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2636 on: September 18, 2020, 05:13:24 PM »
Well, in this build I disabled the function when installing ml. Otherwise default on.

theBilalFakhouri

  • Developer
  • Hero Member
  • *****
  • Posts: 1272
  • UHS-I
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2637 on: September 18, 2020, 06:21:21 PM »
New 1920x1280 mode is great, i had to do a bit of steps to get 1920x1080 working from 2.5k mode and it wasnt realtime preview but now it is , this new mode covers exactly my 1/2'' sensor CCTV lens area, its not centered perfectly but its a big improvement . .

Glad you liked it :), just re-worked on centering for 1920x1280p preset, the Preview is perfectly aligned to RAW data, but the RAW data wasn't centered on sensor, after re-working on it, there is still very little offset (can't be controlled, but also can be ignored), now it's better and more accurate, coming soon on EOS M.

2blackbar

  • Hero Member
  • *****
  • Posts: 514
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2638 on: September 18, 2020, 08:06:01 PM »
Great, in the past i had to make my own custom build cause i used different addresses to reframe it for my CCTV lens, 4-12mm , on 4mm it fit exactly in 1920x1080 without vignetting but it had to be perfect.But its not that a big deal in my case, i can zoom in a bit now.
Cause if ill fix this for my case, it might vignette for others, but no a lot of people test this out like me with cctv lenses and post here.
Here its a bit offside but on that full sensor view it is not that centered so it might be my cctv adapter, or canon sensor mount is not perfectly centered.
Here are my posts about it with more info and addresses, i documented these in case i lost my sourcecode with custom build, which actually happened when i had to update to new build:
https://www.magiclantern.fm/forum/index.php?topic=9741.msg222545#msg222545

https://www.magiclantern.fm/forum/index.php?topic=9741.msg222566#msg222566





Danne

  • Developer
  • Hero Member
  • *****
  • Posts: 7702
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2639 on: September 19, 2020, 09:36:35 AM »
New test build:
https://bitbucket.org/Dannephoto/magic-lantern_jip_hop_git/downloads/crop_rec_4k_mlv_snd_raw_only_2020Sep19.EOSM202_frtp.zip

Added theBilalFakhouri latest achievements from here. The preset list is growing ;).
https://www.magiclantern.fm/forum/index.php?topic=25323.msg231048#msg231048

I guess since we now hace 16:9, if added 2.39:1 and 2.35:1 we would have a real nice set up of ratios.
Adding maybe these two?
1464 x 1836 = 2.39:1
1464 x 1870 = 2.35:1

Grognard

  • Freshman
  • **
  • Posts: 75
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2640 on: September 19, 2020, 01:00:07 PM »
Amazing!
Yes it will be great to add these two. I Nevers use 16/9.

andy kh

  • Hero Member
  • *****
  • Posts: 541
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2641 on: September 19, 2020, 05:07:36 PM »
5D Mark III - 70D

Anaconda_

  • New to the forum
  • *
  • Posts: 21
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2642 on: September 20, 2020, 10:06:46 AM »
These new settings are really exciting, huge thanks to everyone involved!

Is post #1765 still going to be updated for the 'stable' builds? While other releases in other posts are tests?

Danne

  • Developer
  • Hero Member
  • *****
  • Posts: 7702
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2643 on: September 21, 2020, 03:54:18 PM »
New test build:
https://bitbucket.org/Dannephoto/magic-lantern_jip_hop_git/downloads/crop_rec_4k_mlv_snd_raw_only_2020Sep21.EOSM202_frtp.zip

- Added 2.35:1 anamorphic with real time preview

Epic preset coming from theBilalFakhouri.

BatchGordon

  • New to the forum
  • *
  • Posts: 18
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2644 on: September 21, 2020, 07:57:30 PM »
Uhmmm... I'm getting some thin vertical stripes over the realtime preview in this newest anamorphic  2.35 AR, but only during recording.
Still a great job!

masc

  • Contributor
  • Hero Member
  • *****
  • Posts: 2104
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2645 on: September 21, 2020, 11:23:04 PM »
That's indeed epic. Tried this mode: is it for you too continous at 14bit??? I get a green icon here... Awesome.
For the first test it crashed with this kind of console output. After that it worked nicely. Is it normal at the current dev stage, that the lower half of the screen does "anything"? Sometimes I get weird lines, or black white blinking, or a part of the last shown liveview image, or... any idea if it could be possible to make that just black for example?
Another finding: the histogram: while zabras already mark the overexposed highlights, the histogram shows 1..3EV space until overexposure. After a record, it fits again as it should.
But this RT liveview ... just wow!!! So much better than before!
5D3.113 | EOSM.202

Danne

  • Developer
  • Hero Member
  • *****
  • Posts: 7702
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2646 on: September 22, 2020, 06:06:45 AM »
I added cropmarks in Overlay section to match the "dead" parts of the preview.
Yes, development stages. Testing, testing.

masc

  • Contributor
  • Hero Member
  • *****
  • Posts: 2104
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2647 on: September 22, 2020, 09:33:48 AM »
Thanks! I missed that one - works great, no more flickering in the lower part.
5D3.113 | EOSM.202

amitkattal

  • New to the forum
  • *
  • Posts: 35
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2648 on: September 23, 2020, 07:51:52 AM »
The latest 2:35:1 mode is great. Can we have the hdmi option for it too like there was for 2.5k? That one worked very well

theBilalFakhouri

  • Developer
  • Hero Member
  • *****
  • Posts: 1272
  • UHS-I
Re: Danne's crop_rec_4k experiments for EOS M
« Reply #2649 on: September 23, 2020, 08:09:08 AM »
The latest 2:35:1 mode is great. Can we have the hdmi option for it too like there was for 2.5k? That one worked very well

HDMI support is coming soon for all real-time correct preview presets, and of course for the latest 2:35:1 anamorphic mode, glad you liked it :D