-
Content Count
35 -
Joined
-
Last visited
Content Type
Profiles
Forums
Articles
Media Demo
Everything posted by petebocken
-
Is it possible to disable the notifications when a volume is mounted/unmounted?
-
Thanks. Installing xcode command line tools fixed it.
-
Ah sorry. Never actually enabled debugging on a workflow before. Here you go. [08:03:39.469] ERROR: Search Notes[Script Filter] Code 1: xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun Checked my disk and the only folder I have in CommandLineTools/usr is "share". No "bin".
-
Updated and now nothing works. I'm on 10.15.2. 🤷♂️
-
Still working for me on 10.14.6 (with the supplemental update from 8/26).
-
In some way yes. However, I keep all my code snippets in Notes, so simply searching and copying them to the clipboard would work very well.
-
Would it be possible to copy the contents of the selected not to the clipboard?
-
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Even more fun. Added another keyword in the workflow to only download the audio from the YouTube video and then drop it in the "Automatically Add to iTunes" folder. /usr/local/bin/youtube-dl -f m4a --ffmpeg-location /usr/local/bin/ffmpeg -q -o "/Users/peter/Music/iTunes/iTunes Media/Automatically Add to iTunes/%(title)s.%(ext)s" "$url"; echo "Completed"; I could only get m4a working, the rest said the requested format not available. M4A works in iTunes just fine. -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Thanks so much @deanishe! -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
YAHTZEE! IT WORKS! /usr/local/bin/youtube-dl -f bestvideo+bestaudio --ffmpeg-location /usr/local/bin/ffmpeg -q -o "/path-where-files-are-stored/%(title)s.%(ext)s" "$url"; echo "Completed"; -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Ya, figured we were getting into the weeds. Thanks @deanishe -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Must be some permission issue. Since I am calling my own youtube-dl script, I would think it would be able to then find ffmpeg and execute. -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Well, considering that it works fine and expected from the command line directly, it is an issue with how Alfred talks to ffmpeg or rather how it doesn't at all it seems. -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Last piece is figuring out how to have it download the full quality (1080p or 4K). This works just fine when you run youtube-dl from the command line. It downloads the 4K video (if available) and the audio file and then ffmpeg muxes them together into one file. When you just use /usr/local/bin/youtube-dl -q -o "$uhome/Desktop/%(title)s.%(ext)s" "$url"; echo "Completed"; it downloads a single file with audio and video together but it seems to always choose 720p. If I use /usr/local/bin/youtube-dl -f bestvideo+bestaudio -q -o "$uhome/Desktop/%(title)s.%(ext)s" "$url"; e -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Weird, swear I tried that before. Works now, thanks! -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
Ya, not sure what to put in the path to find my local install of youtube-dl: ./youtube-dl -q -o "$uhome/Desktop/%(title)s.%(ext)s" "$url"; echo "Completed"; -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
The one installed on my system. I just now realized that the workflow has it's own version installed with it. I tried replacing the youtube-dl file in the workflow and that doesn't make a difference. I also tried editing the workflow script to point to mine at /usr/local/bin/youtube-dl and still no go. Although not sure I know the correct way to have it look outside of the workflow at the file system for that file besides just putting the full path to it. -
Problem to start a Python script
petebocken replied to Efty.Edge's topic in Workflow Help & Questions
I'm having the same issue that @justcharlie was having with http://cloud.dferg.us/q4Gt I've updated to the latest youtube-dl and also Python 2.7.13. Just pops up the OS X notification saying it's done but no file. youtube-dl works fine when run manually. -
Thanks @deanishe removing worked. No idea why that empty directory was left in /Volumes.
-
For quite some time now I have a USB drive showing up in the Eject list, but it is not currently plugged in. When i try to eject it, it says it's currently busy. How do I get this old hard drive removed from the list?
-
Holding down control to "Open and Archive link" works great, but holding down option to "Archive link" removes it from alfred and displays a notification that it's archived, but does not archive the link in Pocket if I visit the website or my iOS app.
-
I would love to get this to work for US channels. Can't figure out how I could utilize this to do that though.
-
Works for me! Thanks so much!!!!!!!!!!!!