Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    DuetLapse available for Alpha testing

    Scheduled Pinned Locked Moved
    Third-party software
    26
    239
    23.1k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • JohnOCFIIundefined
      JohnOCFII @stuartofmt
      last edited by

      @stuartofmt said in DuetLapse available for Alpha testing:

      @JohnOCFII

      I'm pretty well there - doing some final testing now.

      I'm PRETTY sure that the standard Pi ffmpeg does not have tpad - but you can test with the following command to see (required a different syntax than I originally tried) .... I updated ffmpeg before I found this working syntax ....

      I'll try this tomorrow (US Central time - GMT-6).

      stuartofmtundefined 1 Reply Last reply Reply Quote 0
      • stuartofmtundefined
        stuartofmt @JohnOCFII
        last edited by

        @JohnOCFII

        Updated here:

        https://github.com/stuartofmt/DuetLapse

        JohnOCFIIundefined 1 Reply Last reply Reply Quote 0
        • JohnOCFIIundefined
          JohnOCFII @stuartofmt
          last edited by

          @stuartofmt said in DuetLapse available for Alpha testing:

          @JohnOCFII

          Updated here:

          https://github.com/stuartofmt/DuetLapse

          Greetings!

          I was hoping that simply replacing ffmpeg and the new DuetLapse.py would "just work," but sadly, not the case.

          I confirmed that my previous ffmpeg didn't have support for the pad filter, as you suggested.

          I rebuilt ffmpeg according to your instructions. That all went well.

          I then tried to execute the DuetLapse script but you addition of -psutil- wasn't working, so I Googled how to build that, and did so.

          I then went to run DuetLapse, but received the message:

          Process is already running...
          

          Probably because I have DuetLapse starting from -systemd-

          I'll have to see what else is different.

          John

          stuartofmtundefined 1 Reply Last reply Reply Quote 0
          • stuartofmtundefined
            stuartofmt @JohnOCFII
            last edited by

            @JohnOCFII

            If you are using my DuetLapse.py then it will prevent starting twice - so you need to make sure it's stopped before starting it again 🙂
            kill -s <pid> if you are running in background else CTL+C works.

            JohnOCFIIundefined 1 Reply Last reply Reply Quote 0
            • JohnOCFIIundefined
              JohnOCFII @stuartofmt
              last edited by

              @stuartofmt said in DuetLapse available for Alpha testing:

              @JohnOCFII

              If you are using my DuetLapse.py then it will prevent starting twice - so you need to make sure it's stopped before starting it again 🙂
              kill -s <pid> if you are running in background else CTL+C works.

              Heh - yeah, I might switch back to my DuetLapse, but take your ffmpeg command line. I have mine set to run and restart continuously, that way, I'll get a timelapse created every time a print starts.

              John

              stuartofmtundefined 1 Reply Last reply Reply Quote 0
              • stuartofmtundefined
                stuartofmt @JohnOCFII
                last edited by stuartofmt

                @JohnOCFII

                If you are using systemd and it’s set up correctly then you should be fine with my version. All my code does on startup is look to see if there is an instance already running and if so - not create an additional instance (which would case “confusion”). Similarly systemd should not try to start a new instance if there is one already running (if you have it set up that way).
                Bottom line, they should be compatible with each other.

                JohnOCFIIundefined 1 Reply Last reply Reply Quote 0
                • JohnOCFIIundefined
                  JohnOCFII @stuartofmt
                  last edited by

                  @stuartofmt said in DuetLapse available for Alpha testing:

                  @JohnOCFII

                  If you are using systemd and it’s set up correctly then you should be fine with my version. All my code does on startup is look to see if there is an instance already running and if so - not create an additional instance (which would case “confusion”). Similarly systemd should not try to start a new instance if there is one already running (if you have it set up that way).
                  Bottom line, they should be compatible with each other.

                  Yes, you are correct -- but I also have a little test script that attempts to launch an additional copy of DuetLapse that I use when testing new features. And it was attempting to launch THAT that caused my issues. 🙂

                  So, yes, I stuck with your version but did comment out the process related bits for testing.

                  1 Reply Last reply Reply Quote 0
                  • stuartofmtundefined
                    stuartofmt
                    last edited by

                    I’ll add in a switch so you can control with / without the check. May be useful ...

                    JohnOCFIIundefined 1 Reply Last reply Reply Quote 0
                    • JohnOCFIIundefined
                      JohnOCFII @stuartofmt
                      last edited by

                      @stuartofmt said in DuetLapse available for Alpha testing:

                      I’ll add in a switch so you can control with / without the check. May be useful ...

                      Lovely idea!

                      1 Reply Last reply Reply Quote 0
                      • JohnOCFIIundefined
                        JohnOCFII
                        last edited by

                        @stuartofmt My short test runs succeed, but longer runs fail. Looking at syslog, the output from ffmpeg is a bit hard to follow. I'm curious if you've tried any tests with more than 50 layers.

                        I've attached a trimmed section of my Raspberry Pi syslog in case you are interested.

                        There is one point (line 73) where it mentioned it can't find the file that (I think) it should be writing? Then perhaps it gets confused after that... Not sure if my use of a subdirectory is causing an issue there -- I'm taking advantage of one of your new flags.

                        DLVideos/DuetLapse1227201756.mp4: No such file or directory
                        
                        

                        This is the command line I'm using to launch DuetLapse:

                        /home/pi/DuetLapse/DuetLapse.py -duet railcore.localdomain -camera web -weburl http://octocore.localdomain:8081/snapshot -detect layer -basedir DLVideos -extratime 4
                        

                        Thanks!

                        John
                        faillog.txt [0_1609120917817_faillog](Uploading 100%)

                        stuartofmtundefined 2 Replies Last reply Reply Quote 0
                        • stuartofmtundefined
                          stuartofmt @JohnOCFII
                          last edited by

                          @JohnOCFII

                          I'll take a look in the morning but -- the basedir should be an absolute path without the trailing /

                          e.g /home/pi/DLVideos

                          1 Reply Last reply Reply Quote 0
                          • stuartofmtundefined
                            stuartofmt
                            last edited by

                            Made some more changes:

                            Here https://github.com/stuartofmt/DuetLapse

                            Changed from print commands to logging option -logtype [console, file, both] default is both. If -logtype console then only written to the console. If -logtype file then a logfile is written to basedir with the name DuelLapse.log If -logtype both then written to the console and the logfile. Messages are prefixed by the ip address set by -duet. This is to distinguish between printers if multiple are used (see also -instances (below)

                            added a switch for inhibiting multiple instances -instances [single, oneip, many] default is single. If -instances single then the highlander principle applies. If -instances oneip then only one instance per duet ip address (set by -duet ip address). If -instances many then it's the wild west.

                            1 Reply Last reply Reply Quote 0
                            • stuartofmtundefined
                              stuartofmt @JohnOCFII
                              last edited by stuartofmt

                              @JohnOCFII

                              I took a look at the log - I think it's just the path. So try it with -basedir set as an full path i.e. with leading / and no trailing / as I suggested above.

                              Also - as a side note - I saw your systemctl restarting the script. I'm not entirely sure why it would not have worked with the single instance being enforced but I changed the exit(x) commands (apparently more applicable for interactive use) to sys.exit(x). The documentation suggests the latter is better form ...

                              JohnOCFIIundefined 1 Reply Last reply Reply Quote 0
                              • JohnOCFIIundefined
                                JohnOCFII @stuartofmt
                                last edited by

                                @stuartofmt said in DuetLapse available for Alpha testing:

                                @JohnOCFII

                                I took a look at the log - I think it's just the path. So try it with -basedir set as an full path i.e. with leading / and no trailing / as I suggested above.

                                Also - as a side note - I saw your systemctl restarting the script. I'm not entirely sure why it would not have worked with the single instance being enforced but I changed the exit(x) commands (apparently more applicable for interactive use) to sys.exit(x). The documentation suggests the latter is better form ...

                                I'll give the new version a shot. I'll change -basedir to /home/pi/DLVideos

                                Thanks!

                                stuartofmtundefined 1 Reply Last reply Reply Quote 0
                                • stuartofmtundefined
                                  stuartofmt @JohnOCFII
                                  last edited by

                                  @JohnOCFII

                                  I just tried with 264 images - no problems creating the Video file.

                                  JohnOCFIIundefined 1 Reply Last reply Reply Quote 1
                                  • JohnOCFIIundefined
                                    JohnOCFII @stuartofmt
                                    last edited by

                                    @stuartofmt said in DuetLapse available for Alpha testing:

                                    @JohnOCFII

                                    I just tried with 264 images - no problems creating the Video file.

                                    Correcting the -basedir to full path fixed my issues. The "held frame" is working great.

                                    Not the fanciest timelapse, but shows the hold: https://youtu.be/LW6hV-MECns

                                    Thanks!

                                    stuartofmtundefined 1 Reply Last reply Reply Quote 0
                                    • stuartofmtundefined
                                      stuartofmt @JohnOCFII
                                      last edited by

                                      @JohnOCFII

                                      Looks like you have a nice setup.

                                      I'm looking at a couple of other tweaks (e.g. updating the Duet API calls to the newest style) and making the package a single python script rather than two. I am looking at incorporate a capability or two from the other forks.

                                      When that is done - I think we can start another thread without the "alpha" description (DuetLapse2 ?). I suspect the "alpha' bit turns a few folks off.

                                      Will post the changes when I am done.

                                      P.S. Unrelated and from a small side project - I noticed that the mp4 output from ffmpeg (depending on settings) may not be compatible with iphone/ipad e.g if sent as a text or email attachment. Not sure if the output from DueatLapse has the same problem but will check. If it does I'll tweak accordingly.

                                      1 Reply Last reply Reply Quote 2
                                      • PCRundefined
                                        PCR
                                        last edited by

                                        @stuartofmt please add this https://github.com/jaysuk/DuetWebAPI to the Readme. The old one of Danal does not work anymore with Duet 3 + SBC

                                        stuartofmtundefined 1 Reply Last reply Reply Quote 0
                                        • stuartofmtundefined
                                          stuartofmt @PCR
                                          last edited by

                                          @PCR

                                          In the next few days (maybe a week) I will be working on this comment "I'm looking at a couple of other tweaks (e.g. updating the Duet API calls to the newest style) and making the package a single python script rather than two"

                                          Specifically - updating the API calls to the newest Duet standard and doing away with the separate DuetWebAPI. It (the separate API has unneeded calls etc. and use the old API versions).

                                          When done - it should be good to go for Duet # + SBC. As they say in the classics -- "Stay tuned" 🙂

                                          1 Reply Last reply Reply Quote 1
                                          • stuartofmtundefined
                                            stuartofmt
                                            last edited by

                                            I have started a new thread with a new version of DuetLapse here:

                                            https://forum.duet3d.com/topic/20932/duetlapse3

                                            Partly because this thread is quite long and difficult to track through and also because the new version has a lot of modifications.

                                            @PCR This should work fine with Duet 3+ SBC

                                            1 Reply Last reply Reply Quote 2
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA