Skip to content

Instantly share code, notes, and snippets.

@include
Created December 12, 2013 11:26
Show Gist options
  • Save include/7926589 to your computer and use it in GitHub Desktop.
Save include/7926589 to your computer and use it in GitHub Desktop.

Revisions

  1. include revised this gist Dec 12, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion yoump3.sh
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    #!/bin/bash

    URL_LIST=$1
    URL_LIST=$*

    YOUTUBE_DL="/usr/local/bin/youtube-dl"

  2. include created this gist Dec 12, 2013.
    9 changes: 9 additions & 0 deletions yoump3.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    #!/bin/bash

    URL_LIST=$1

    YOUTUBE_DL="/usr/local/bin/youtube-dl"

    YOUTUBE_DL_OPTS="--title --restrict-filenames --write-thumbnail --extract-audio --audio-format mp3 --audio-quality 0 --continue --no-overwrites"

    ${YOUTUBE_DL} ${YOUTUBE_DL_OPTS} ${URL_LIST}