Jump to content

Daniele

Member
  • Posts

    52
  • Joined

  • Last visited

Everything posted by Daniele

  1. Ok, sorry. Here there are: 1) Output: Updating Homebrew... ==> Updated Casks epichrome protonmail-bridge sequel-ace swish toolreleases Warning: youtube-dl 2020.11.1.1 already installed 2) Workflow version: 20.10 3)Alfred version 4.2[1180] 4)Catalina 10.15.7 5) URL tested: https://www.youtube.com/watch?v=t8PcvrovE7k 5)Debugger: [15:56:35.733] DownMedia[Script Filter] Queuing argument '' [15:56:36.478] DownMedia[Script Filter] Script with argv '' finished [15:56:36.480] STDERR: DownMedia[Script Filter] /Applications/Alfred.alfredpreferences/workflows/user.workflow.8B093E4E-55DD-4A57-96B2-1773642F9F36/get_title_and_url.js: execution error: Error: Error: You need a supported browser as your frontmost app (-2700) [15:56:36.480] DownMedia[Script Filter] {"items":[{"uid":"downmedia audio","subtitle":"Add to WatchList (βŒ₯): true 𐄁 Full Playlist (⌘): false","valid":true,"variables":{"media_type":"audio","add_to_watchlist":true,"full_playlist":false},"mods":{"cmd":{"subtitle":"Add to WatchList (βŒ₯): true 𐄁 Full Playlist (⌘): true","variables":{"media_type":"audio","Add_to_watchlist":true,"full_playlist":true}},"alt":{"subtitle":"Add to WatchList (βŒ₯): false 𐄁 Full Playlist (⌘): false","variables":{"media_type":"audio","add_to_watchlist":false,"full_playlist":false}},"cmd+alt":{"subtitle":"Add to WatchList (βŒ₯): false 𐄁 Full Playlist (⌘): true","variables":{"media_type":"audio","add_to_watchlist":false,"full_playlist":true}}},"title":"https://www.youtube.com/watch?v=t8PcvrovE7k","arg":"https://www.youtube.com/watch?v=t8PcvrovE7k"}]} [15:56:40.398] DownMedia[Script Filter] Processing complete [15:56:40.400] DownMedia[Script Filter] Passing output 'https://www.youtube.com/watch?v=t8PcvrovE7k' to Run Script [15:56:43.588] ERROR: DownMedia[Run Script] ERROR: Unable to extract JS player URL; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see https://yt-dl.org/update on how to update. Be sure to call youtube-dl with the --verbose flag and include its complete output. [15:56:43.594] DownMedia[Run Script] Processing complete [15:56:43.594] DownMedia[Run Script] Passing output '' to Run Script Thank you πŸ™‚
  2. Hello, today this bug: ERROR: DownMedia[Run Script] ERROR: Unable to extract JS player URL; p Why??
  3. Ok let me explain better. I have a simple workflow that starts a timer via keyword. Basically it's a time tracker. I start/stop the workflow every time I begin/finish working on something. My problem is that sometimes I forget to stop the timer and this is a problem. I supposed to create a gif floating image that will be opened once I start the time tracking, as a reminder of the tracking status. You're solution are good, but the question is: how to do this via workflow or script?
  4. Hello dear πŸ™‚ I would like create a workflow that opens a gif image , and force it to stay always on top and floating on my desktop. Example, if 'd go fullscreen, the image stay always on top. Is that possible? Thanks
  5. Simply this workflow is incredible! Is there a way to split a single audio into tracks? Like a complete album to songs. Thank you
  6. Thank you ! πŸ™‚ ps. your MPD workflow simple saved my life πŸ™‚
  7. Hello, very basic question. I have a script filter in PHP that show something. When I call the Script Filer Alfred shows other result based on query typed . I would like to show ONLY the output of the script php. How do this? thank you
  8. Hello guys, I created a workflow with an external trigger. I would like to launch that trigger when user press the media key "Forward or Next" on Mac Keyboard. My Idea is to launch an applescript that launches the trigger, but how call the script by pressing "Next" button? How Can I do this? thank you very much
  9. Hello mates, thank you for your support. I solved in a simple way. 1) created a external trigger that do something 2) Created a script with AS that call launch the triggger 2) created file .plist to load it into launchd that simple run every 6 hours (21600 seconds) I highly recommend to install LaunchControl app from Brew Cask, that helps you a lot configuring launchd. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>workflow.plist</string> <key>RunAtLoad</key> <true/> <key>StartInterval</key> <integer>21600</integer> <!-- //every 6 hours --> <key>ProgramArguments</key> <array> <string>/usr/bin/osascript</string> <!-- use osascript to launch the script --> <string>/Applications/Alfred.alfredpreferences/workflows/user.workflow.FF774A33-6E03-4D11-9DFB-F88B03455C77/script.scpt</string> <!-- the argument --> </array> </dict> </plist> Thank you πŸ™‚
  10. Tricky question. I would like to launch a my personal workflow once a day , randomly, between two times (example random from 9:PM to 20:00 every day). I read that probably I have to use launchd for Mac . Is there something like this already did? Thank you
  11. Final thing: ALL SOLVED. Simply I put a simple script at the end " tell application "Preview" to quit It works perfectly. Thank you dude. πŸ™‚
  12. Solved the final image about sound playing (thank you for your comment inside the code), but how to close all the image at the end??
  13. Great! Works perfecly. I added my Script Filter and it is awesome. The only thing, I don't know why but it seems the last image doesn't play sound (only the last one) and also stay opened (It should be closed after the time is expired) Anyway this is great . really Thank you you're so kind and gentle
  14. WOWOWWOWOWOW DEAN! You're so great! Thank you very much mate, much appreciated πŸ™‚ May I ask you something to add???? -Can I choose different directory based on a List Filter choice in Alfred? (I assume to have 4 different directory with different images) Example (models, heads, hands, other) -Can you show the image in full screen mode?? -Optional: because I don't have any signal, may you play a sound in the half of time and another one just before the end for every image shown? I hope this don't bother you. Thank you anyway πŸ™‚
  15. wow. So simple? Example: keyword 30 5 this show 5 random images from a specific directory for 30 second each one in preview
  16. Hello mates, recently I would like to create a new workflow with these features: ->type keyword X Y (X Y are numbers) ->select a random image from a specific folder ->show the image for X second then move to the next (always random) -> next to Y images until -> exit What would be a simple way do to that? Thank you very much
  17. Installed. but there's something wrong. I don't know what. When I digit ":anki" how I should use it? How I can insert e new card? I Set the profile with my email address. It seems ok, but when I digit ":anki" it says the same "set some profile for workflow" . How can i fix this? Thank you very much
  18. Yes I obviously tried before contact you. Deleted with AppCleaner, removed items on login items, and installed again new fresh copy. Any remote assistance??? Sorry I don't want to bother you, really
  19. Vero, unfortunately it doesn't work. Create new user -> logout -> login with new user -> launch alfred -> -> wizard of Alfred as first opening -> ask me all permission except for Contacts. Exacly the same with my account. It's a weird story, really. What could I do???
  20. Hello Vero, yes, indeed, I post two times same issue. Sorry for that, first time here for me. About the problem. first of all, thank you for your help. I tried several times with a that command. In specific: -Quit Alfred -in Terminal: sudo tccutil reset AddressBook -Open Alfred : it doesn’t work. I also tried to restart system before open Alfred. nothing. Also tried to erase and reinstall Skype, just to check if it ask for access to my contact, and yes, the popup come and I can put access. Skype yes, but why Alfred can't?? For some weird reason, it seems that Alfred doesn’t ask me to give it access to my contact. Just for curiosity I installed Alfred on my Mac with High Sierra, and it works perfectly. But why on my Macbook with Catalina don't ??? Just sent to Andrew also two video file for better explain. Thank you always for your kind support Daniele
  21. I use Catalina 10.15.4. when i launch workflow debug reports: NSAppleScriptErrorAppName = Caffeine; NSAppleScriptErrorBriefMessage = "Not authorized to send Apple events to Caffeine."; NSAppleScriptErrorMessage = "Not authorized to send Apple events to Caffeine."; NSAppleScriptErrorNumber = "-1743"; How can I fix it? Thanks
  22. Hello, just installed Alfred, wonderful software. I don't know why, Alfred doesn't find contacts in my system. When I try to grant access to contact via preferences it doesn't work. In my Security and privacy settings, Skype are granted in Contacts, but no Alfred. I use 4.0.9 version [1144] and Catalina 10.15.4. Any Idea??
×
×
  • Create New...