-
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. - At the
Engine's Name
drop down list, select an engine you want to change its option. - At the "Options To Add" text field, add
--newline --ignore-config --no-playlist -o %(title).200s.%(ext)s
. - Click
Add
. - Click
Save
.
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.
- Set engine name to "yt-dlp".
- At the "Options To Add" text field, add
-o --newline --ignore-config --no-playlist -o %(playlist_title)s/%(title).200s-%(id)s.%(ext)s
. - Click Add.
- Click Save.
- 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.
-
--playlist-items
. Use this option if you want to see only a selected entries in the playlist. An example that will cause media downloader to show playlist entries from the 12th entry to the 15th entry is--playlist-items 12-15
. -
--break-on-existing
. This option should be used if you want the processing of playlist entries to stop when the id of the current entry that is being processed is found in the archive file. -
--skip-on-existing
. This option should be used if you want the entry of a playlist to be displayed in the UI but not get downloaded when its id is found in the archive file. -
--match-filter duration<=300
. This option should be used when you want to filter out all videos that are more than 300 seconds long. -
--encoding utf-8
. Try this option if none Latin characters do not show up as expected.
- If you are using Chrome then install this extension and if you are using Firefox then install this extension.
- Go to the extension's configuration page and then do the following:-
-
Add
Open in Media Downloader
in theDisplay Name
text field. This name will show up in the browser's context menu. -
Add the full path to Media Downloader executable in the
Executable Name
text field. -
Add
-u [HREF]
in the arguments text field if you want a link to simply be added to Media Downloader or add-a -u [HREF]
if you want a link to be added to Media Downloader and Media Downloader to automatically start downloading it. -
Instruction on how to install the native client will be displayed once the toolbar button is clicked.
8. How do i set it up so that a url from a particular website is always managed by a particular extension and with customized options,to be specific, how do i set up "yt-dlp" to be used with download option of "mp4-mobile" with any link from "streamable.com".
- Go to configure tab.
- Go to "engine's default options" sub tab.
- Select the engine you want to configure in the "engine's name" drop down list.
- Right click the table at the bottom of the tab. and then click "Add" entry on the generated list.
- Enter a component of the url(example, streamable.com) you want to be used as a filter in the "Url filter" text field.
- Enter options(optional)(example, mp4-mobile) you want to be applied in with the "Options" text field.
- Click "Add".
- Go to "Playlist downloader" tab.
- Click the right most button that is on the same line as "Enter Playlist Url".
- Select "Manage Subscription".
- Enter a text you want to be seen in the Ui in the "Ui Name" text field.
- Enter a subscription url in the "Url" text field.
- "Get List Options" is optional and FAQ #6 explains what options can be set here.
- Click "Add" to add the entry to the list.
- Click "Done" when done.
- Click the button again explained in step 2 above and the entry you added will be on list.
10. What does "Show All Updated" menu entry do on the menu that is generated when a subscription button is clicked and the button is on the playlist downloader tab.
It goes through all subscriptions and add new entries to the "Url To Download" list.
11. What does "Download All Updated" menu entry do on the menu that is generated when a subscription button is clicked and the button is on the playlist downloader tab.
It does what is explained in FAQ #9 and then automatically start downloading them.
- Go to Configure tab and then click the button that is to the right of dark theme drop down button.
- In the file dialog window that will show up, create a copy of the "Dark.json" file and give the copy a name of your choice.
- Explanations for different options is below.
- A list of Qt::GlobalColor is here.
- You can google for rgba values for colors that you want to use and this link seems to be a good start for gray values
- If you want the url to just be added, use CLI options of
-u ${URL}
- If you want the url to be added and to automatically start downloading it, use CLI option of
-a -u ${URL}
- Set option "configure->general options->actions at startup->show version info and autodownload updates".
- Go to basic downloader tab and look at where the "app data path" is and go to that folder.
- Close Media Downloader.
- While there, go to the "settings" folder and open the settings file in it with a text editor.
- Look for the option "WindowsUpdateChannel" and change its value to "git".Add the option if it is not there. To go back to release channel, set the value to "release".
- Start Media Downloader.