I'm completely new to some of this and need help. I've downloaded Python 3.4.2 from python.org/downloads/ and installed YouTube-dl from rg3.github.io/youtube-dl/download.html.
I've created an Automator service that receives selected URL's in Safari where the input is only URL's and created a Run Shell Script Where shell is Bin/Bash and have the following code:
When I pull up any youtube video as I tried multiple and I have the url selected and go to safari and to services and the name of the service I created and click on it nothing happens. No error message, no downloads in my download folder, nothing happens.
I'm pretty lost and unsure if I even need to be using the bin/bash or if I'm so far off base it's laughable however I haven't found much in regards to this for yosemite except for the following three links:
http://nachithree.org/argelia/2015/01/20/youtube-dl-automator-service-in-yosemite/
http://stackoverflow.com/questions/26560841/youtube-dl-automator-service-in-yosemite
http://www.izinc.net/post/83610810824/download-any-youtube-video-from-osx
However none of those examples has worked for me yet.
I've created an Automator service that receives selected URL's in Safari where the input is only URL's and created a Run Shell Script Where shell is Bin/Bash and have the following code:
Code:
cd ~/Downloads
for f in "$@"
do
youtube-dl -x -o "% s.% s" --all-subs -- "$f"
done
When I pull up any youtube video as I tried multiple and I have the url selected and go to safari and to services and the name of the service I created and click on it nothing happens. No error message, no downloads in my download folder, nothing happens.
I'm pretty lost and unsure if I even need to be using the bin/bash or if I'm so far off base it's laughable however I haven't found much in regards to this for yosemite except for the following three links:
http://nachithree.org/argelia/2015/01/20/youtube-dl-automator-service-in-yosemite/
http://stackoverflow.com/questions/26560841/youtube-dl-automator-service-in-yosemite
http://www.izinc.net/post/83610810824/download-any-youtube-video-from-osx
However none of those examples has worked for me yet.