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

#1
Share Your Videos / Re: Tango Dragonflies (5D3 raw video)
November 01, 2019, 01:04:19 PM
Wonderful!

Images look fabulous - personally I find the sharpening and saturation not to be problematic.

Wmjhid - stick with your judgement - when it comes to subjective opinion on aesthetics there's no right or wrong choice and I very much approve of what you've done here..
#2
 Great cinematography, really well done in terms of shot selection, framing and overall construction, which while understated actually holds interest.
#3
Feature Requests / Re: Save movie crop upon start up
November 09, 2018, 03:01:51 AM
650D.104 with 50/1.8 running magiclantern-Nightly.2018Oct31.650D104 from https://builds.magiclantern.fm/jenkins/view/Experiments/job/crop_mode_test/

1 go into crop mode open batt door / close bat door = not in crop mode
manually set to crop mode
2 turn off power / turn on power = not in crop mode
manually set to crop mode
3 - go to photo mode - click don't click - crop mode off,
restart camera in movie mode = not in crop mode
manually set to crop mode
4 - in movie mode - click don't click = not in crop mode,
manually set to crop mode
5 - open door remove card / close door = not in crop mode.

So summarising:
1 - No.
2 - No.
3 - No.
4 - No.
5 - No.
#4
General Help Q&A / Re: UHS SD Card recommendation
October 20, 2018, 02:01:39 AM
Use a SanDisk Extreme Pro 95Mb/s - and buy from a reputable vendor. This will give you sufficient speed to capture 1920 x 1080 10bit raw continuous with a 650D providing you can find a SD-card hack for the 650D which seem to have disappeared.
#5
General Chat / Re: Canon 650D and firmware 1.0.5
October 03, 2018, 06:20:36 PM
Depending on your requirements it's very easy to switch between 104 and 105 firmware on the 650D - either stay conservative and use 104 or if you want to try other more experimental builds try 105. I'm back on 104 - functionally there's very little difference between stock 104 and 105.
#6
So - 650.104 running magiclantern-lua_fix.2018Mar31.650D104 - canon 10-18mmEFS seems to get stuck here...



 

Tried twice. So slightly different behaviour than 650D.105.

this is the last chunk from LUATEST.LOG

Testing lens focus functionality...
Autofocus outside LiveView...
Focus distance: 480
Autofocus in LiveView...
Please trigger autofocus (half-shutter / AF-ON / * ).
19...18...17...Autofocus triggered.
Autofocus completed.
Focus distance: 1010
Focusing backward...


doesnt get to the AF change mode or Movie Mode sections.
#7
unfortunately after further testing it appears that there are problems with lua_fix.2018Apr28.650D105.
it works fine with kit lens 18/55 - tests complete as previously reported.
fails to complete with 50.18 EF and 10/18EFS.

The latter presents the following screens before the script switches the camera off.

each time battery out reset all fresh install of ML.

Each of the behaviours is consistent and repeatable.

photo of screen before camera switches off 10-18EFS




#8
Scripting Corner / Re: Lua Scripting (lua.mo)
May 02, 2018, 09:33:43 PM
not sure if this is possible - but would be useful to have a lua scripted beep command so that when the script is waiting for user input - the camera bleeps - saves having to watch the camera on long script runs.
#9
@a1ex

Yes - the 650D.104 & 650D.105 has had this issue, well since the first time I installed ML years ago - its never changed. I've tried all sorts of builds since then and a range of lenses - kit, old glass and others and it only 'magically' disappeared with dforts latest lua_fix.2018Apr28.650D105.zip.

#10
Camera-specific Development / Re: Canon 650D / T4i
April 29, 2018, 10:02:09 PM

looks like you guys had a productive weekend... :)

to confirm - 650D.105 with 18/55 kit lens runs - lua_fix.2018Apr28.650D105 - all the way to the end.
Done!

Also I notice that the annoying live-view window overlay that has been there forever on the 650D has magically disappeared - display now much clearer. see previous post -

https://www.magiclantern.fm/forum/index.php?topic=7473.msg198464#msg198464

#11
Camera-specific Development / Re: Canon 650D / T4i
April 27, 2018, 05:58:26 PM
I've already done that.
#12
Camera-specific Development / Re: Canon 650D / T4i
April 27, 2018, 04:38:27 PM
lua_fix.2018Apr27.650D104

I didn't try the earlier version as Mr. Schulz had reported issues.


#13
Camera-specific Development / Re: Canon 650D / T4i
April 27, 2018, 03:04:48 PM
@dfort - something funny with the latest rebuilds - camera behaves as if bricked - best to avoid these.
#14
Camera-specific Development / Re: Canon 650D / T4i
April 27, 2018, 12:11:51 PM
addenda -

replace: once again the movie test failed to run.

with: once again the movie test failed to complete.
#15
Camera-specific Development / Re: Canon 650D / T4i
April 27, 2018, 11:55:33 AM
@dfort - I haven't checked your revised build as am short on time right now, but would make the point that I reran the entire vanilla api_test.script test again with the potentially offending assert(camera.gui.play_movie == true) commented out and once again the movie test failed to run.

650D.104 1855kit lens with magiclantern-lua_fix.2018Mar31.650D104

My gut feeling is that there is more than one thing at play here - an interaction between two aspects. Quite what, is hard to say..

#16
Camera-specific Development / Re: Canon 650D / T4i
April 27, 2018, 01:19:35 AM
650D.104 with magiclantern-lua_fix.2018Mar31.650D104

    menu.open()
    local s,e = pcall(movie.start)
    assert(s == false)
    assert(e:find("menu"))
    menu.close()
    -- now it should work
    -- hide the console for a nicer look
    console.hide(); assert(not console.visible)
    movie.start()
    assert(movie.recording)
    sleep(5)
        printf("A\n")
    movie.stop()
        printf("B\n")
    assert(not movie.recording)
        printf("C\n")
    console.show(); assert(console.visible)
        printf("D\n")
    -- let's review it
    assert(camera.gui.idle == true)
        printf("E\n")
    camera.gui.play = true
        printf("F\n")
    assert(camera.gui.play == true)
        printf("G\n")
    assert(camera.gui.play_movie == true)
        printf("H\n")
    assert(camera.gui.play_photo == false)
        printf("I\n")

    printf("Movie recording tests completed.\n")
        printf("J\n")
    printf("\n")
        printf("K\n")
end

function api_tests()
    menu.close()
    console.clear()
    console.show()
    test_log = logger("LUATEST.LOG")

    -- note: each test routine must print a blank line at the end
    --   strict_tests()
    --  generic_tests()
   
    printf("Module tests...\n")
    -- test_io()
    -- test_camera_gui()
-- test_menu()
    -- test_camera_take_pics()
    -- sleep(1)
    -- test_multitasking()
    -- test_keys()
    -- test_lv()
    -- test_lens_focus()
    -- test_camera_exposure()
    test_movie()


Result

===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-27 01:01:37
===============================================================================

Module tests...

Testing movie recording...
Please switch to Movie mode.
A
B
C
D
E
F
G



I then repeated the test commenting out the following line:
   -- assert(camera.gui.play_movie == true)

A
B
C
D
E
F
G
H
I
Movie recording tests completed.
J

K
Done!


so: assert(camera.gui.play_movie == true)

appears to be the problem...
#17
Camera-specific Development / Re: Canon 650D / T4i
April 25, 2018, 02:11:49 AM
okay final test for today - just testing   

test_keys()
then
test_lv()

seems fine.
#18
Camera-specific Development / Re: Canon 650D / T4i
April 25, 2018, 02:07:28 AM
tried this combination:

test_key() then test_movie()
seems fine - gets to the end of the movie test loop - prints out     
printf("Movie recording tests completed.\n")
so must get to line 1330
but no Done! (line 1357).

    printf("Module tests...\n")
    -- test_io()
    -- test_camera_gui()
-- test_menu()
    -- test_camera_take_pics()
    -- sleep(1)
    -- test_multitasking()
    test_keys()
    -- test_lv()
    -- test_lens_focus()
    -- test_camera_exposure()
    test_movie()
#19
Camera-specific Development / Re: Canon 650D / T4i
April 25, 2018, 01:52:39 AM
@dfort -

Quoteso the issue is with the half-shutter press?

hmm I'm no expert but I doubt this.

the terms - key.press(KEY.HALFSHUTTER) & key.press(KEY.UNPRESS_HALFSHUTTER)
also appear in lines 241 245 so I dont think that these are problems in themselves.

Also just running test_keys() runs fine - I even get a Done! at the end...

    printf("Module tests...\n")
    -- test_io()
    -- test_camera_gui()
-- test_menu()
    -- test_camera_take_pics()
    -- sleep(1)
    -- test_multitasking()
    test_keys()
    -- test_lv()
    -- test_lens_focus()
    -- test_camera_exposure()
    -- test_movie()
   
    printf("Done!\n")
#20
Camera-specific Development / Re: Canon 650D / T4i
April 24, 2018, 05:34:08 PM
@dfort - this time I commented out only the test_keys() - everything else run

and manage to get to the end with the movie_test() - still no Done! though....

I should mention that there are a lot of messages that flash by during test including cant find xxxx.jpg - its in the log.


all on 650D.104 - with magiclantern-lua_fix.2018Mar31.650D104 18.55kit lens
each time battery out / reset settings /fresh install onto card/
Cam set to Photo M each time and switching to AV / Movie as requested.


===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 16:55:49
===============================================================================

Module tests...
Testing file I/O...
Copy test: autoexec.bin -> tmp.bin
Copy test OK
Append test: tmp.txt
Append test OK
Rename test: apple.txt -> banana.txt
Rename test OK
Rename test: apple.txt -> ML/banana.txt
Rename test OK
File I/O tests completed.

Testing Canon GUI functions...
Enter PLAY mode...
Enter MENU mode...
Enter MENU mode...
Exit MENU mode...
Enter PLAY mode...
Enter PLAY mode...
Enter PLAY mode...
Exit PLAY mode...
Start LiveView...
Enter MENU mode...
Enter MENU mode...
Exit MENU mode...
Enter MENU mode...
Enter PLAY mode...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter MENU mode...
Enter PLAY mode...
Enter MENU mode...
Exit MENU mode...
Enter MENU mode...
Enter MENU mode...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter MENU mode...
Enter PLAY mode...
Enter PLAY mode...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter PLAY mode...
Enter PLAY mode...
Exit PLAY mode...
Enter PLAY mode...
Exit PLAY mode...
Enter MENU mode...
Enter MENU mode...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter MENU mode...
Enter PLAY mode...
Enter PLAY mode...
Exit PLAY mode...
Pause LiveView...
Resume LiveView...
Enter PLAY mode...
Enter PLAY mode...
Enter MENU mode...
Enter PLAY mode...
Exit PLAY mode...
Enter PLAY mode...
Exit PLAY mode...
Enter PLAY mode...
Enter PLAY mode...
Enter MENU mode...
Enter MENU mode...
Enter PLAY mode...
Enter PLAY mode...
Exit PLAY mode...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter PLAY mode...
Enter MENU mode...
Enter PLAY mode...
Enter MENU mode...
Enter MENU mode...
Enter PLAY mode...
Enter MENU mode...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter MENU mode...
Exit MENU mode...
Enter PLAY mode...
Exit PLAY mode...
Pause LiveView...
Enter MENU mode...
Exit MENU mode...
Pause LiveView...
Enter MENU mode...
Canon GUI tests completed.

Testing ML menu API...
Menu tests completed.

Testing picture taking functions...
Snap simulation test...
Single picture...
B:/DCIM/100CANON/IMG_4929.CR2 not found.
B:/DCIM/100CANON/IMG_4929.JPG: 14993942
Two burst pictures...
Ideally, the camera should be in some continuous shooting mode (not checked).
B:/DCIM/100CANON/ABC_4930.CR2 not found.
B:/DCIM/100CANON/ABC_4930.JPG: 3580709
B:/DCIM/100CANON/ABC_4931.CR2 not found.
B:/DCIM/100CANON/ABC_4931.JPG: 5214455
Bracketed pictures...
B:/DCIM/100CANON/IMG_4932.CR2 not found.
B:/DCIM/100CANON/IMG_4932.JPG: 2912206
B:/DCIM/100CANON/IMG_4933.CR2 not found.
B:/DCIM/100CANON/IMG_4933.JPG: 5849954
B:/DCIM/100CANON/IMG_4934.CR2 not found.
B:/DCIM/100CANON/IMG_4934.JPG: 4264484
Bulb picture...
Elapsed time: 12034
B:/DCIM/100CANON/IMG_4935.CR2 not found.
B:/DCIM/100CANON/IMG_4935.JPG: 365721
Picture taking tests completed.

Testing multitasking...
Only one task allowed to interrupt...
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Main task yielding.
Task C started.
Task C finished.
Main task back.
Multitasking tests completed.

Testing module 'lv'...
LiveView is running; stopping...
Starting LiveView...
Overlays: Canon
Overlays: Canon
Overlays: ML
Overlays: ML
Overlays: disabled
Overlays: Canon
Overlays: Canon
Overlays: Canon
Overlays: disabled
Overlays: ML
Overlays: disabled
Overlays: Canon
Overlays: Canon
Overlays: Canon
Overlays: Canon
Setting zoom to x1...
Setting zoom to x5...
Setting zoom to x10...
Setting zoom to x5...
Setting zoom to x1...
Setting zoom to x10...
Setting zoom to x1...
Pausing LiveView...
Resuming LiveView...
Stopping LiveView...
LiveView tests completed.


Testing lens focus functionality...
Autofocus outside LiveView...
Focus distance: 270
Autofocus in LiveView...
Please trigger autofocus (half-shutter / AF-ON / * ).
19...Autofocus triggered.
Autofocus completed.
Focus distance: 250
Focusing backward...
Focus distance: 280
Focus motor position: 0
Focusing forward with step size 3, wait=true...
...
Focus distance: 250
Focus motor position: 0
Focusing backward with step size 3, wait=true...
...........
Focus distance: 655350
Focus motor position: 0
Focus range: 3 steps forward, 11 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 3, wait=false...
................
Focus distance: 480
Focus motor position: 0
Focusing backward with step size 3, wait=false...
..................
Focus distance: 480
Focus motor position: 0
Focus range: 16 steps forward, 18 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 2, wait=true...
.......................................................................
Focus distance: 480
Focus motor position: 0
Focusing backward with step size 2, wait=true...
......................................................................
Focus distance: 480
Focus motor position: 0
Focus range: 71 steps forward, 70 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 2, wait=false...
...............................................................................
Focus distance: 480
Focus motor position: 0
Focusing backward with step size 2, wait=false...
....................................................................................
Focus distance: 480
Focus motor position: 0
Focus range: 79 steps forward, 84 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 1, wait=true...
...
Focus distance: 480
Focus motor position: 0
Focusing backward with step size 1, wait=true...
...
Focus distance: 480
Focus motor position: 0
Focus range: 270 steps forward, 284 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 1, wait=false...
...
Focus distance: 480
Focus motor position: 0
Focusing backward with step size 1, wait=false...
...
Focus distance: 480
Focus motor position: 0
Focus range: 269 steps forward, 283 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.

Focus test completed.

Testing exposure settings...
Camera    : Canon EOS 650D (650D) 1.0.4
Lens      : EF-S18-55mm f/3.5-5.6 IS II
Shoot mode: 3
Shutter   : ‚5 (raw 75, 0.192776s, 193ms, apex 2.375)
Aperture  : 5.6 (raw 48, f/5.6, apex 5.)
Av range  : 4.0..25 (raw 40..83, f/4...f/25.7, apex 4...9.375)
ISO       : €1600 (raw 104, 1600, apex 9.)
EC        : 0.0 (raw 0, 0 EV)
Flash EC  : 0.0 (raw 0, 0 EV)
Setting shutter to random values...
Setting ISO to random values...
Setting aperture to random values...
Please switch to Av mode.
Setting EC to random values...
Setting Flash EC to random values...
Exposure tests completed.


Testing movie recording...
Please switch to Movie mode.
#21
Camera-specific Development / Re: Canon 650D / T4i
April 24, 2018, 04:54:23 PM
so, if I only uncomment test_camera_exposure() (so nothing else is run) and repeat the test, I get a Done! at the end - which is not what happens when I use the test_movie() test.
#22
Camera-specific Development / Re: Canon 650D / T4i
April 24, 2018, 04:48:33 PM
before I try that - retried with just the movie test.
At end I have a short 2 sec movie in the usual folder - so can confirm that a movie is shot.

this is the final screen after recording - camera still operational.

ML/SCRIPTS/api_test.lua:1364: in main chunk [api_test.lua] script finished.

nb. line 1364 is the last line of the script.


===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 16:30:11
===============================================================================

Module tests...

Testing movie recording...
Please switch to Movie mode.


this is my edit

    printf("Module tests...\n")
    --   test_io()
    --   test_camera_gui()
--   test_menu()
    --   test_camera_take_pics()
    --    sleep(1)
    --   test_multitasking()
    --  test_keys()
    --  test_lv()
    --  test_lens_focus()
    --  test_camera_exposure()
    test_movie()
   
    printf("Done!\n")


all on 650D.104 - with magiclantern-lua_fix.2018Mar31.650D104 18.55kit lens
each time battery out / reset settings /fresh install onto card/
Cam set to Photo M each time and switching to AV / Movie as requested.
#23
Camera-specific Development / Re: Canon 650D / T4i
April 24, 2018, 02:33:32 PM
ok - so am incrementally re-running the api_test.lua - uncommenting the commented out tests - working backwards from test_movie.
I've pasted the script segment at the top of each code segment - so its script segment then lua.log -
all on 650D.104 - with magiclantern-lua_fix.2018Mar31.650D104 18.55kit lens
each time battery out / reset settings /fresh install onto card/
Cam set to Photo M each time and switching to AV / Movie as requested.

in summary seems to work until I get to test_keys(). see log 4.

Oh the only other strangeness is that the edited script never gives a Done! in the output, even with just test_movie - which records one movie clip. TBH I'm not really sure what I'm doing here --- just trying to find out why the api_test.lua - fails to run all the scripts.

log 1 -     test_camera_exposure() &  test_movie() nb (test_movie() is same)

    printf("Module tests...\n")
    --   test_io()
    --   test_camera_gui()
--   test_menu()
    --   test_camera_take_pics()
    --    sleep(1)
    --   test_multitasking()
    --   test_keys()
    --   test_lv()
    --   test_lens_focus()
    test_camera_exposure()
    test_movie()
   
    printf("Done!\n")
   
   
===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 12:58:16
===============================================================================

Module tests...
Testing exposure settings...
Camera    : Canon EOS 650D (650D) 1.0.4
Lens      : EF-S18-55mm f/3.5-5.6 IS II
Shoot mode: 3
Shutter   : ‚125 (raw 112, 0.007812s, 8ms, apex 7.)
Aperture  : 5.6 (raw 48, f/5.6, apex 5.)
Av range  : 4.0..25 (raw 40..83, f/4...f/25.7, apex 4...9.375)
ISO       : €Auto (raw 0, 0, apex 0)
EC        : 0.0 (raw 0, 0 EV)
Flash EC  : 0.0 (raw 0, 0 EV)
Setting shutter to random values...
Setting ISO to random values...
Setting aperture to random values...
Please switch to Av mode.
Setting EC to random values...
Setting Flash EC to random values...
Exposure tests completed.


Testing movie recording...
Please switch to Movie mode.

log 2 -     test_lens_focus()  test_camera_exposure()  test_movie()
    printf("Module tests...\n")
    --   test_io()
    --   test_camera_gui()
--   test_menu()
    --   test_camera_take_pics()
    --    sleep(1)
    --   test_multitasking()
    --   test_keys()
    --   test_lv()
    test_lens_focus()
    test_camera_exposure()
    test_movie()
   
    printf("Done!\n")
   
   
===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 13:19:53
===============================================================================

Module tests...

Testing lens focus functionality...
Autofocus outside LiveView...
Focus distance: 270
Autofocus in LiveView...
Please trigger autofocus (half-shutter / AF-ON / * ).
19...18...17...16...15...14...Autofocus triggered.
Autofocus completed.
Focus distance: 370
Focusing backward...
Focus distance: 655350
Focus motor position: 0
Focusing forward with step size 3, wait=true...
...........
Focus distance: 280
Focus motor position: 0
Focusing backward with step size 3, wait=true...
..............
Focus distance: 655350
Focus motor position: 0
Focus range: 11 steps forward, 14 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 3, wait=false...
..............
Focus distance: 250
Focus motor position: 0
Focusing backward with step size 3, wait=false...
........................................
Focus distance: 655350
Focus motor position: 0
Focus range: 14 steps forward, 40 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 2, wait=true...
...........................................................................
Focus distance: 270
Focus motor position: 0
Focusing backward with step size 2, wait=true...
...
Focus distance: 655350
Focus motor position: 0
Focus range: 75 steps forward, 120 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 2, wait=false...
...
Focus distance: 410
Focus motor position: 0
Focusing backward with step size 2, wait=false...
...
Focus distance: 410
Focus motor position: 0
Focus range: 159 steps forward, 399 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 1, wait=true...
...
Focus distance: 410
Focus motor position: 0
Focusing backward with step size 1, wait=true...
...
Focus distance: 410
Focus motor position: 0
Focus range: 367 steps forward, 389 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 1, wait=false...
...
Focus distance: 410
Focus motor position: 0
Focusing backward with step size 1, wait=false...
...
Focus distance: 410
Focus motor position: 0
Focus range: 606 steps forward, 575 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.

Focus test completed.

Testing exposure settings...
Camera    : Canon EOS 650D (650D) 1.0.4
Lens      : EF-S18-55mm f/3.5-5.6 IS II
Shoot mode: 3
Shutter   : ‚125 (raw 112, 0.007812s, 8ms, apex 7.)
Aperture  : 5.6 (raw 48, f/5.6, apex 5.)
Av range  : 4.0..25 (raw 40..83, f/4...f/25.7, apex 4...9.375)
ISO       : €Auto (raw 0, 0, apex 0)
EC        : 0.0 (raw 0, 0 EV)
Flash EC  : 0.0 (raw 0, 0 EV)
Setting shutter to random values...
Setting ISO to random values...
Setting aperture to random values...
Please switch to Av mode.
Setting EC to random values...
Setting Flash EC to random values...
Exposure tests completed.


Testing movie recording...
Please switch to Movie mode.

log 3 -  test_lv() test_lens_focus() test_camera_exposure() test_movie()
seems to be okay.
    printf("Module tests...\n")
    --   test_io()
    --   test_camera_gui()
--   test_menu()
    --   test_camera_take_pics()
    --    sleep(1)
    --   test_multitasking()
    --   test_keys()
    test_lv()
    test_lens_focus()
    test_camera_exposure()
    test_movie()
   
    printf("Done!\n")
   
===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 13:37:57
===============================================================================

Module tests...
Testing module 'lv'...
Starting LiveView...
Overlays: Canon
Overlays: Canon
Overlays: ML
Overlays: ML
Overlays: disabled
Overlays: Canon
Overlays: Canon
Overlays: Canon
Overlays: disabled
Overlays: ML
Overlays: disabled
Overlays: Canon
Overlays: Canon
Overlays: Canon
Overlays: Canon
Setting zoom to x1...
Setting zoom to x5...
Setting zoom to x10...
Setting zoom to x5...
Setting zoom to x1...
Setting zoom to x10...
Setting zoom to x1...
Pausing LiveView...
Resuming LiveView...
Stopping LiveView...
LiveView tests completed.


Testing lens focus functionality...
Autofocus outside LiveView...
Focus distance: 580
Autofocus in LiveView...
Please trigger autofocus (half-shutter / AF-ON / * ).
19...18...Autofocus triggered.
Autofocus completed.
Focus distance: 760
Focusing backward...
Focus distance: 655350
Focus motor position: 0
Focusing forward with step size 3, wait=true...
...............
Focus distance: 250
Focus motor position: 0
Focusing backward with step size 3, wait=true...
.............
Focus distance: 655350
Focus motor position: 0
Focus range: 15 steps forward, 13 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 3, wait=false...
.................
Focus distance: 330
Focus motor position: 0
Focusing backward with step size 3, wait=false...
................
Focus distance: 330
Focus motor position: 0
Focus range: 17 steps forward, 16 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 2, wait=true...
......................................
Focus distance: 330
Focus motor position: 0
Focusing backward with step size 2, wait=true...
.....................................
Focus distance: 330
Focus motor position: 0
Focus range: 38 steps forward, 37 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 2, wait=false...
..................................................................................
Focus distance: 330
Focus motor position: 0
Focusing backward with step size 2, wait=false...
...
Focus distance: 330
Focus motor position: 0
Focus range: 82 steps forward, 137 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 1, wait=true...
...
Focus distance: 330
Focus motor position: 0
Focusing backward with step size 1, wait=true...
...
Focus distance: 330
Focus motor position: 0
Focus range: 282 steps forward, 156 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.
Focusing forward with step size 1, wait=false...
...
Focus distance: 330
Focus motor position: 0
Focusing backward with step size 1, wait=false...
.............................................
Focus distance: 330
Focus motor position: 0
Focus range: 200 steps forward, 45 steps backward.
Motor steps: 0 forward, 0 backward, 0 lost.

Focus test completed.

Testing exposure settings...
Camera    : Canon EOS 650D (650D) 1.0.4
Lens      : EF-S18-55mm f/3.5-5.6 IS II
Shoot mode: 3
Shutter   : ‚125 (raw 112, 0.007812s, 8ms, apex 7.)
Aperture  : 5.6 (raw 48, f/5.6, apex 5.)
Av range  : 4.0..25 (raw 40..83, f/4...f/25.7, apex 4...9.375)
ISO       : €Auto (raw 0, 0, apex 0)
EC        : 0.0 (raw 0, 0 EV)
Flash EC  : 0.0 (raw 0, 0 EV)
Setting shutter to random values...
Setting ISO to random values...
Setting aperture to random values...
Please switch to Av mode.
Setting EC to random values...
Setting Flash EC to random values...
Exposure tests completed.


Testing movie recording...
Please switch to Movie mode.

log 4 - this one seems to be the culprit - adding in test_keys().
    test_keys() test_lv() test_lens_focus() test_camera_exposure() test_movie()


    printf("Module tests...\n")
    --   test_io()
    --   test_camera_gui()
--   test_menu()
    --   test_camera_take_pics()
    --    sleep(1)
    --   test_multitasking()
    test_keys()
    test_lv()
    test_lens_focus()
    test_camera_exposure()
    test_movie()
   
    printf("Done!\n")
   
   
===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 14:07:20
===============================================================================

Module tests...
Testing half-shutter...


#24
Camera-specific Development / Re: Canon 650D / T4i
April 24, 2018, 12:58:42 PM
ooops - forgot 650D.104 - magiclantern-lua_fix.2018Mar31.650D104
#25
Camera-specific Development / Re: Canon 650D / T4i
April 24, 2018, 12:57:59 PM
@dfort - cam was in M photo mode

retried with the following movie only mode:

    printf("Module tests...\n")
    --   test_io()
    --   test_camera_gui()
--   test_menu()
    --   test_camera_take_pics()
    --    sleep(1)
    --   test_multitasking()
    --   test_keys()
    --   test_lv()
    --   test_lens_focus()
    --   test_camera_exposure()
    test_movie()


seemed to get the end but no info in LUATEST.LOG

===============================================================================
ML/SCRIPTS/api_test.lua - 2018-4-24 12:45:24
===============================================================================

Module tests...

Testing movie recording...
Please switch to Movie mode.


started in photo mode M and switched to Movie when asked.