Dear Users! Please post bug reports about FDM here!

Add-ons

Moderators: Usher, Alex

Alex
FDM Team
Posts: 2918
Joined: Mon Jul 12, 2004 12:17 pm

Re: Add-ons

Postby Alex » Mon Mar 13, 2023 4:46 pm

AE1 wrote:@alex That's a great new feature, I didn't notice it until now...

I've gone through the documentation PDF and example code, is currently no option there to add a settings fields for the plugin itself? Or am I missing something.
For example, I want to create a plugin that will download from websites which require credentials. How can I enable users to enter them for a plugin to use?


For now, the plugins architecture is very simple and limited. We have no motivation to enhance it yet. So, unfortunately, it's not possible for a plugin to have its own settings. But, in your case, I believe there is still a way to do it without FDM support. For example, you can show your settings UI when your add-on's code is invoked and needs password.
Alex,
FDM development team
Guest

Re: Add-ons

Postby Guest » Thu Apr 27, 2023 4:18 pm

Guest wrote:Youtube and smiliar plataforms like DailyMotion, Vimeo, Twitch, Vevo.
randomuser

Re: Add-ons

Postby randomuser » Wed May 17, 2023 3:17 am

Talking about add-ons, can they add a feature/or as an add-on that goes on top of any video in the browser with the extension suggesting to download it? An inspiration from IDM.
Alex
FDM Team
Posts: 2918
Joined: Mon Jul 12, 2004 12:17 pm

Re: Add-ons

Postby Alex » Fri May 19, 2023 3:27 pm

randomuser wrote:Talking about add-ons, can they add a feature/or as an add-on that goes on top of any video in the browser with the extension suggesting to download it? An inspiration from IDM.

Hello,
Please read the documentation (link in the very first message in this topic).
Please feel free to give us any suggestions on the required improvements of the current API.
Alex,

FDM development team
sukar

Re: Add-ons

Postby sukar » Sun Jul 23, 2023 2:14 pm

It needs an youtube video downloader addon badly. Is there any option available ?
KeepDown
Posts: 1
Joined: Tue Oct 17, 2023 2:21 am

Re: Add-ons

Postby KeepDown » Tue Oct 17, 2023 2:35 am

Need an addon to switch use proxy or not.
It should be a button so it can be used easily.
pls.
Peace

Re: Add-ons Elephant addon

Postby Peace » Tue Nov 07, 2023 4:25 am

Hello i have Elephant addon version 1.0.11
Im getting a "SSL certificate is not valid" message when trying to update the Elephant addon. Any ideas please?
Guest

Re: Add-ons

Postby Guest » Tue Nov 28, 2023 7:50 pm

Peace wrote:Hello i have version 1.0.11
Im getting a "SSL certificate is not valid" message when trying to update the Elephant addon. Any ideas please?


The version you are using is very old.
Download the latest:
https://files2.freedownloadmanager.org/ ... _setup.exe
Abdel

Re: Add-ons

Postby Abdel » Sun Jan 28, 2024 2:05 am

top cool
task97
Posts: 1
Joined: Fri Oct 04, 2024 10:33 am

Re: Add-ons

Postby task97 » Fri Oct 04, 2024 10:37 am

Is it possible to automatically subscribe to update trackers? This is very useful
User avatar
Spheres-cu
Posts: 15
Joined: Wed Jan 29, 2025 4:44 am

Re: Add-ons

Postby Spheres-cu » Thu Jan 30, 2025 8:53 pm

Hi here !

I maked a plugin for download videos on the site ( https://picta.cu ) in my country (Cuba) based on the plugin Elephant and picta-dl video downloader for Picta.cu.

But I have various issues with the FDM API (v4)

- The subtitles object is ignoring the File’s extension that I setting (srt)

- Thumbnails don't show in FDM download windows

code: (Based on msabstractparser.js Elephant's code ):

Code: Select all

var myObj = JSON.parse(output);
let Subtitles = {
   ext: "srt",
   name: "Spanish",
   url: myObj.subtitle_url   
};

let Thumbnails = [
   {"url": myObj.thumbnails['url'] + "_100x240",
   "height": "240",
   "width": "100"
   }
]

myObj.subtitles = {"es": [Subtitles]};
myObj.thumbnails = Thumbnails;
resolve(myObj);


The subtitles getting downloaded fine but in this format: "%(title)s.%(ext)s" where title is the video title but ext is the language (es) example: Wicked.es instead of Wicked.es.srt

I haven't published the plugin on Github yet but I need to know how to get the signature for updates

Regards !
Alex
FDM Team
Posts: 2918
Joined: Mon Jul 12, 2004 12:17 pm

Re: Add-ons

Postby Alex » Fri Jan 31, 2025 12:48 pm

Spheres-cu wrote:I maked a plugin for download videos on the site ( https://picta.cu ) in my country (Cuba)

Hello,
Thanks for developing FDM add-on. :)

Spheres-cu wrote:- The subtitles object is ignoring the File’s extension that I setting (srt)

Yes, FDM ignores this field when creating a file. However, we can treat it as a bug and fix it for you.

Spheres-cu wrote:- Thumbnails don't show in FDM download windows

I can try to dig into it, but I'll need the following from you:
1) Your plugin.
2) Steps on how to reproduce the issue (including URL).

Spheres-cu wrote:I haven't published the plugin on Github yet but I need to know how to get the signature for updates

For now we do not have any dedicated architecture for this, and you'll have to send your add-on to our support, or directly to me with the request to sign your add-on.
Alex,

FDM development team
Alex
FDM Team
Posts: 2918
Joined: Mon Jul 12, 2004 12:17 pm

Re: Add-ons

Postby Alex » Fri Jan 31, 2025 1:38 pm

Spheres-cu wrote:The subtitles getting downloaded fine but in this format: "%(title)s.%(ext)s" where title is the video title but ext is the language (es) example: Wicked.es instead of Wicked.es.srt

I think we've fixed it. I can give you a new FDM version with the fix so you can test it if you want to.
Alex,

FDM development team
User avatar
Spheres-cu
Posts: 15
Joined: Wed Jan 29, 2025 4:44 am

Re: Add-ons

Postby Spheres-cu » Fri Jan 31, 2025 5:21 pm

Alex wrote:
Spheres-cu wrote:I maked a plugin for download videos on the site ( https://picta.cu ) in my country (Cuba)

Hello,
Thanks for developing FDM add-on. :)

Spheres-cu wrote:- The subtitles object is ignoring the File’s extension that I setting (srt)

Yes, FDM ignores this field when creating a file. However, we can treat it as a bug and fix it for you.

Spheres-cu wrote:- Thumbnails don't show in FDM download windows

I can try to dig into it, but I'll need the following from you:
1) Your plugin.
2) Steps on how to reproduce the issue (including URL).

Spheres-cu wrote:I haven't published the plugin on Github yet but I need to know how to get the signature for updates

For now we do not have any dedicated architecture for this, and you'll have to send your add-on to our support, or directly to me with the request to sign your add-on.


Hi Alex, thanks for your quick response!

I already have the plugin code on Github: https://github.com/Spheres-cu/picta-fdm

To reproduce the issue it is necessary to have an account on http://www.picta.cu , but for the issue of showing thumbnails with the Elephant plugin you could try with a YouTube video

As well as to test the subtitle extensions with Elephant you could also do it.

I already sent the request email for the digital signature of the plugin yesterday.
User avatar
Spheres-cu
Posts: 15
Joined: Wed Jan 29, 2025 4:44 am

Re: Add-ons

Postby Spheres-cu » Fri Jan 31, 2025 5:22 pm

Alex wrote:
Spheres-cu wrote:The subtitles getting downloaded fine but in this format: "%(title)s.%(ext)s" where title is the video title but ext is the language (es) example: Wicked.es instead of Wicked.es.srt

I think we've fixed it. I can give you a new FDM version with the fix so you can test it if you want to.


That would be great!
How can I get this new version?

Return to “General forum”

Who is online

Users browsing this forum: No registered users and 34 guests