Downie: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
(Created page with "Using Downie to Download Multiple Videos from YouTube == Gathering YouTube Video URLs == * Extract URLs from Text * Isolate the 'v' parameter as the video ID, for instance,...")
Tags: Mobile edit Mobile web edit
 
Tags: Mobile edit Mobile web edit
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:


== Configuring Downie.app ==
== Configuring Downie.app ==
* Install [https://software.charliemonroe.net/downie/ Downie - YouTube Video Downloader for macOS - Charlie Monroe Software] $
* Download and install Downie from [https://software.charliemonroe.net/downie/ Downie - YouTube Video Downloader for macOS - Charlie Monroe Software] {{Mac}} $ (This is a paid software.)
* Access Downie's preferences and navigate to the 'Destination' tab.
* Set the file name format to 'Download ID - Title', ensuring the video ID (Download ID) is included in the name of the downloaded file.
* Set the file name format to 'Download ID - Title', ensuring the video ID (Download ID) is included in the name of the downloaded file.


== Downloading the Videos ==
== Downloading the Videos ==
To download, use the following command in the terminal:
To download, use the following command in the terminal. Syntax of command:
<pre>
open -a 'Downie' '<VIDEO_URL>'
</pre>
 
 
Example command:
<pre>
<pre>
open -a 'Downie' 'https://www.youtube.com/watch?v=qJFzOP9jUbM'
open -a 'Downie' 'https://www.youtube.com/watch?v=qJFzOP9jUbM'
</pre>
</pre>


== Alternative methods ==
* [https://github.com/ytdl-org/youtube-dl ytdl-org/youtube-dl: Command-line program to download videos from YouTube.com and other video sites]


[[Category:Tool]]
[[Category:Tool]]

Latest revision as of 14:19, 4 December 2023

Using Downie to Download Multiple Videos from YouTube

Gathering YouTube Video URLs[edit]

Configuring Downie.app[edit]

Downloading the Videos[edit]

To download, use the following command in the terminal. Syntax of command:

open -a 'Downie' '<VIDEO_URL>'


Example command:

open -a 'Downie' 'https://www.youtube.com/watch?v=qJFzOP9jUbM'

Alternative methods[edit]