Skip to content

Import a Full playlist from Youtube

YouPHPTube edited this page Nov 24, 2017 · 5 revisions

Go to the server where you have hosted the Encoder

Created a directory called /playList

mkdir /playList

then get into the dir

cd /playList

execute the youtube-dl command

youtube-dl -f best -citw -v "https://www.youtube.com/watch?v=Your-PlayList"

Go to the encoder, select the Bulk Encode tab on the right side

On the text field put the absolute path of the directory, in my case "/playList" then click in List Files button

A list of files will appear below, select the files you want to encode and click on add on queue button

Details

The URL must be into quotes

Explanation

-f, --format FORMAT video format code. The special name "best" will pick the best quality.

-c, --continue force resume of partially downloaded files

-i, --ignore-errors continue on download errors, for example to skip unavailable videos in a channel

-t, --title use title in file name (default)

-w, --no-overwrites do not overwrite files

-v, --verbose print various debugging information

Deleting Downloaded files

Make sure you are in the "/playList" dir and type

sudo rm *

Clone this wiki locally