• Products
    • Isadora
    • Get It
    • ADD-ONS
    • IzzyCast
    • Get It
  • Forum
  • Help
  • Werkstatt
  • Newsletter
  • Impressum
  • Dsgvo
  • Press
  • Isadora
  • Get It
  • ADD-ONS
  • IzzyCast
  • Get It
  • Press
  • Dsgvo
  • Impressum

Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags

    How do i export image?

    Developers
    5
    11
    5364
    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.
    • Skulpture
      Skulpture Izzy Guru last edited by

      Hi Lanz,

      Have a look at the **capture to disk actor**.
      In conjunction with the freeze actor you can grab the still frame and save it.

      Graham Thorne | www.grahamthorne.co.uk
      RIG 1: Custom-built PC: Windows 11. Ryzen 7 7700X, RTX3080, 32G DDR5 RAM. 2 x m.2.
      RIG 2: Laptop Dell G15: Windows 11, Intel i9 12th Gen. RTX3070ti, 16G RAM (DDR5), 2 x NVME M.2 SSD.
      RIG 3: Apple Laptop: rMBP i7, 8gig RAM 256 SSD, HD, OS X 10.12.12

      1 Reply Last reply Reply Quote 0
      • Lanz
        Lanz last edited by

        great thanks ill have a play

        www.lanzpictures.com - London based working worldwide, video and sound designer, programmer, consultant.

        1 Reply Last reply Reply Quote 0
        • Fred
          Fred last edited by

          Actually if you want a still, ie a proper jpg, not a movie with the same frames, the only really way to do it is with screen grab. On a mac you can run an applescript that will do a screen grab- you can run applescripts from osculator, you can also set the destination. This has come up as a feature request a few times, but not enough to get it to the top of the list. Once you make a screen grab, if you want it to come back into Isadora you will need to use another script for autoimport. Again this is for mac, I assume there is an equivalent for windows but I have never tried.

          Let us know how you go.
          Fred

          http://www.fredrodrigues.net/
          https://github.com/fred-dev
          OSX 13.6.4 (22G513) MBP 2019 16" 2.3 GHz 8-Core i9, Radeon Pro 5500M 8 GB, 32g RAM
          Windows 10 7700K, GTX 1080ti, 32g RAM, 2tb raided SSD

          1 Reply Last reply Reply Quote 0
          • Lanz
            Lanz last edited by

            Thanks Fred, i will work on this tomorrow and let you know how i get on, it is a little surprising it isn't already a feature.

            Best
            Lanzo

            www.lanzpictures.com - London based working worldwide, video and sound designer, programmer, consultant.

            1 Reply Last reply Reply Quote 0
            • Lanz
              Lanz last edited by

              Hey, ok I've got this far and its kind of working but needs quite a bit of voodoo magic

              *********************************************
              Step 1
              Make a new folder on the Desktop call it say "importToIzzy"
              Then assign marks automatic Applescript importer to that folder i found the steps at jamie's website
              (thank you mark thank you jamie)
              http://www.jamiegriffiths.com/apple-script-into-isadora/
              Step 2
              Paste this into applescript, and put your bit in the file path.

              set loc to "/Users/ **YOUR NAME HERE ***/Desktop/ImportToIzzy/"

              property N : 0

              set N to N + 1

              set picPath to (loc & "Picture_" & N & ".png") as string

              do shell script "screencapture -tjpg " & quoted form of picPath

              Step 3

              compile and run the script.

              then this happens,

              snapshot > file goes into importToIzzy folder > that gets imported into isadora.

              it seems to take a couple of seconds to complete but it does work

              ***********************************

              it does feel a little clunky and I'm sure this could be done far better however I'm

              still to figure out...

              1. how to get osculator to trigger scripts if that possible

              2. figure out how to get the screen capture to capture different screens i.e. different stages.

              if anyone knows voodoo magic and could help me out here or if I'm going about this the wrong way that would be great to hear.

              thanks in advance

              Lanz

              www.lanzpictures.com - London based working worldwide, video and sound designer, programmer, consultant.

              1 Reply Last reply Reply Quote 0
              • Fred
                Fred last edited by

                Not sure about all versions of OSX but a key controlled screen capture will give you 2 images with a different ending. You can/could also set the screen to grab from in the apple script.

                Agreed, it is very clunky- for sure it would be better done inside izzy but we do not have this feature.

                http://www.fredrodrigues.net/
                https://github.com/fred-dev
                OSX 13.6.4 (22G513) MBP 2019 16" 2.3 GHz 8-Core i9, Radeon Pro 5500M 8 GB, 32g RAM
                Windows 10 7700K, GTX 1080ti, 32g RAM, 2tb raided SSD

                1 Reply Last reply Reply Quote 0
                • Michel
                  Michel Izzy Guru last edited by

                  Well you can do that with syphon and the QC KeyEventEmulator.

                  Install syphon. To the guide: http://troikatronix.com/troikatronixforum/discussion/comment/165#Comment_165
                  Download and Install the SyphonRecorder: http://syphon.v002.info/recorder/
                  Install QC KeyEventEmulator: http://troikatronix.com/troikatronixforum/discussion/158/qc-keyeventemulator#Item_4

                  Via QC KeyEventEmulator in Isadora you can take snapshots with the SyphonRecorder (Keyboard shortcut for that is: Command (⌘)-Option-S

                  Best,
                  Michel

                  Michel Weber | www.filmprojekt.ch | rMBP (2019) i9, 16gig, AMD 5500M 8 GB, OS X 10.15 | located in Winterthur Switzerland.

                  1 Reply Last reply Reply Quote 0
                  • Lanz
                    Lanz last edited by

                    Hey Michel, this is a lot better for my situation.

                    i use syphon already i can't believe i didn't know about the recorder, and the Key event emulator is genius.
                    1 button pressed now saves a JPEG from my stream and imports it into izzys picture folder. 
                    all working thanks Michel! 
                    best,
                    Lanz

                    www.lanzpictures.com - London based working worldwide, video and sound designer, programmer, consultant.

                    1 Reply Last reply Reply Quote 0
                    • Lanz
                      Lanz last edited by

                      Hey Anthony,

                      You'll have to use an apple script to automatically import the pictures then assign it to the folder you want to use, Jamie has a good little tutorial on how to achieve this here...
                      http://www.jamiegriffiths.com/apple-script-into-isadora/
                      Hope this helps any problems let me know.
                      Lanz

                      www.lanzpictures.com - London based working worldwide, video and sound designer, programmer, consultant.

                      1 Reply Last reply Reply Quote 0
                      • AnthonyH
                        AnthonyH last edited by

                        Hi Lanz

                        Don't know why my reply earlier today wasn't posted... but that scripting works very well, thanks! There's a bit of a delay (~2 - 4 seconds) before the bin is refreshed, but in this project that's ok. Really interesting learning how flexible and open the software is - so many possibilities for projects!
                        best,
                        Anthony

                        OSX 10.6 | MBP 17" (early 2011) | 16gb RAM | Isadora 1.3.0f24 | RME Multiface II

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post