-
Notifications
You must be signed in to change notification settings - Fork 151
Frequently Asked Questions
The options fields can be used to enter the full options list to be sent to youtube-dl with only one requirement of the format code being the first entry on the list, for example:-
- If you want to download an audio file with best audio then enter
bestaudio
in the option field. - If you want to download an audio file with best audio and convert it to mp3 for example then enter
bestaudio -x --audio-format mp3
in the option fields.
Please refer to youtube-dl for all of its available options.
For easy access, you can add your own custom commands to the preset list by going to configure tab
and then preset options
tab. In the Ui Name
field, add a text that will show up in the preset list menu and in the Options
field, add arguments that will be sent to the backend when the preset entry is selected and then press Add
followed by Save
.
By default, youtube-dl and its forks create files that are in title-id.extension
format and
what you seem to not want is the id part and you can remove it by doing the following:-
- Go to "Configure" tab.
- Go to "Engines's Default Options" tab.
- Select the engine's name you want to change its options.
- Go to the default download options' text field.
- Replace
-o %(title)s-%(id)s.%(ext)s
with-o %(title)s.%(ext)s
.
Be aware that the id part is useful and removing it may cause problems as discussed here.
- Go to "Configure" tab.
- Go to "Engines's Default Options" tab.
- Select the engine's name you want to change its options.
- Go to the default download options' text field.
- Replace
-o %(title)s-%(id)s.%(ext)s
with-o %(uploader)s/%(title)s-%(id)s.%(ext)s
.
- Enter the playlist url in the
Enter Playlist URL
text field. - Enter the options necessary to filter out playlist entries you do
not want in the
Get List Options
text field text field. - Press the
Get List
button and observe that only the entries that match the criteria you entered above will show up on the UI. The UI will get disabled until this step is finished. - Enter options necessary to customize what type of media you want to
download in the
Download Options
text field. This is the place where you set what media quality you want to download. - Press the
Download
button to start downloading and the UI will get disabled again until this step is finished.