Skip to content

Commit

Permalink
docs: Fix the examples in README.md (#86)
Browse files Browse the repository at this point in the history
None of the examples work because they are not in quotes.
  • Loading branch information
lpender authored and fent committed Apr 5, 2018
1 parent dd78e71 commit 019ed0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -10,15 +10,15 @@ A youtube downloader written in Javascript. To be used with the command line. If

Streams to stdout by default

ytdl http://www.youtube.com/watch?v=_HSylqgVYQI | mpv -
ytdl "http://www.youtube.com/watch?v=_HSylqgVYQI" | mpv -

To save to a file

ytdl http://www.youtube.com/watch?v=_HSylqgVYQI > myvideo.mp4
ytdl "http://www.youtube.com/watch?v=_HSylqgVYQI" > myvideo.mp4

or

ytdl -o "{author.name} - {title}" http://www.youtube.com/watch?v=_HSylqgVYQI
ytdl -o "{author.name} - {title}" "http://www.youtube.com/watch?v=_HSylqgVYQI"

Supported options

Expand Down

0 comments on commit 019ed0d

Please sign in to comment.