Search results

  1. H

    Notification Received event: capture images

    I'm using MacroDroid to create security routines, I've also created the https://github.com/SimoneAvogadro/HumanDetection4Tasker plugin to add improved security (e.g. no false positives, no false negatives) I would like to be able to intercept the notifications from Eufy security cameras and pass...
  2. H

    Notifications: extract thumbnails

    I've tried both and AutoNotification can actually do it, whereas I was unable to attain the same result with Notification Listener many thanks!!
  3. H

    Notifications: extract thumbnails

    Many apps (e.g. Eufy security camera, Cloud edge, SmartHome etc...) will send you a notification with a thumbnail image. I would like to be able to extract this image and process it with MacroDroid but I've not been successful in doing that. I've setup a macro that triggers when I receive a...
  4. H

    [Plugin] CloudEdge camera control/events for MacroDroid/Tasker

    I've created a plugin which allows receive events and control CloudEdge (Meari) security cameras which are cheap and reasonably smart (not just motion detection they perform pre-analysis to see if an human is in the image!) I use this in combination with my other plugin so to analyze the event...
  5. H

    [Plugin] HumanDetection - new plugin to analyze images and detect people in them

    As suggested from @Endercraft I've added more permissions + an handy file picker, so that's dramatically easier to pick local files :-)
  6. H

    [Plugin] HumanDetection - new plugin to analyze images and detect people in them

    thanks, I'll try this ASAP Google doesn't like that permission anymore so it might conflict with min/max SDK versions due to other constraints I've met with these parameters. Will update you soon if I can make it easier to access any file
  7. H

    [Plugin] HumanDetection - new plugin to analyze images and detect people in them

    Local paths are specified as file:///<something> but beware that modern systems have substantial access permission limitations Here are some simple values I use with success: file:///sdcard/Pictures/Image1719684270.jpg content://media/external/images/media/1000000035 the number after media is...
  8. H

    [Plugin] HumanDetection - new plugin to analyze images and detect people in them

    Here the direct link to the download page for the pre-compiled APK
  9. H

    Plugins working with MD

    I've just releases (not on Play Store however :-/) a plugin called HumanDetection4Tasker (which I really use mostly with MD so it's extensively tested), here's the link to the plugin: https://github.com/SimoneAvogadro/HumanDetection4Tasker I've also posted a brief description here on the forum...
  10. H

    Plugin which takes as input a variable?

    In the end I come to the conclusion that the only option is to leave to the user to manually enter the "%var_name". I really did not find any way to allow the GUI to popup the "standard" MacroDroid dialog for picking a variable
  11. H

    [Plugin] HumanDetection - new plugin to analyze images and detect people in them

    I've created a plugin which allows to analyze images on the device and tells you if there's a person in the image. This plugin exports an action with: input: an image path, which may be in the form of file:///<something> or content://media/<something> output: detection score: 0-100 for the...
  12. H

    Expand variables in Plugin Input

    Dor anyone looking at this same issue: in the end it's just a matter of naming convention: %varName will work {lv =varName} will not work I don't really see a way to integrate the native Macrodroid helper/editor but that's not a problem once people knows the correct syntax
  13. H

    Expand variables in Plugin Input

    Brief: I'm developing a plugin and would want to be able to provide an input whose value contains a variable reference that get replaced before being passed to the plugin (e.g {lv = cameraID} General aim: allowing chain of plugins to pass each other parameters via variables User case: I'm...
  14. H

    Plugin which takes as input a variable?

    Yes, unfortunately it does not provide any example or explanation on how to do what I'm asking for and this worries me. However his code is very complex and it's not easy to reverse-engineer it: if I can see a plugin which does it I might get an idea on how it happens. If there's such plugin I...
  15. H

    Plugin which takes as input a variable?

    Thanks: I suspected that but tried replying out of hope (already spent too much time into that!) I really wonder how would it be possible to create complex chain of actions without being able to take the output of an action and feed it to the following one :-( mh... Maybe I could ask for a new...
  16. H

    Plugin which takes as input a variable?

    Can you elaborate on that? I'm already using an Action Block but the point is that from within the plugin I cannot "ask things to MacroDroid": I simply have the context info passed in and must produce context info to pass out, no option to "peek inside MacroDroid status", thus either local of...
  17. H

    Plugin which takes as input a variable?

    How exactly may I tell MacroDroid to "pass them to your plugin"? Can you point to some code/samples? This too seems tricky: Android's security model makes so that the two apps (MacroDroid and my plugin) are two separate apps and I don't see any wat to tap into MD variables from my plugin.
  18. H

    Plugin which takes as input a variable?

    Context: I'm trying to build a plugin which would need to take as an input the value of a variable. Issue: I don't see how could receive a variable value rather then a constant value Use case: I'm writing a plugin which collects camera alarms and raises event with cameraID and cameraName...
  19. H

    Help with Tasker plugin Trigger with update data not working?

    thanks @Endercraft : did some more tests and I understand that my plugin was not declaring the output variables correctly, now IinMacroDroid sees the declaration but not yet the values :-/ Will keep working on that
Top