Dear s! Please post bug reports about FDM here!

Add-ons v5914

s: Alex 4wcb

Alex
FDM Team
Posts: 2947
ed: Mon Jul 12, 2004 12:17 pm

Re: Add-ons 202y3z

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 from websites which require credentials. How can I enable s 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 . For example, you can show your settings UI when your add-on's code is invoked and needs .
Alex,
FDM development team
Top
Guest

Re: Add-ons 202y3z

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

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

Re: Add-ons 202y3z

Postby random » 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 it? An inspiration from IDM.
Top
Alex
FDM Team
Posts: 2947
ed: Mon Jul 12, 2004 12:17 pm

Re: Add-ons 202y3z

Alex » Fri May 19, 2023 3:27 pm

random 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 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
Top
sukar

Re: Add-ons 202y3z

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

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

Re: Add-ons 202y3z

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.
Top
Peace

Re: Add-ons Elephant addon n262i

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?
Top
Guest

Re: Add-ons 202y3z

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.
the latest:
https://files2.freemanager.telechargertorrent.org/ ... _setup.exe
Top
Abdel

Re: Add-ons 202y3z

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

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

Re: Add-ons 202y3z

task97 » Fri Oct 04, 2024 10:37 am

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

Re: Add-ons 202y3z

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

Hi here !

I maked a plugin for videos on the site ( https://picta.cu ) in my country (Cuba) based on the plugin Elephant and picta-dl video er 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 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 ed 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 !
Top
Alex
FDM Team
Posts: 2947
ed: Mon Jul 12, 2004 12:17 pm

Re: Add-ons 202y3z

Alex » Fri Jan 31, 2025 12:48 pm

Spheres-cu wrote:I maked a plugin for 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 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 , or directly to me with the request to sign your add-on.
Alex,

FDM development team
Top
Alex
FDM Team
Posts: 2947
ed: Mon Jul 12, 2004 12:17 pm

Re: Add-ons 202y3z

Alex » Fri Jan 31, 2025 1:38 pm

Spheres-cu wrote:The subtitles getting ed 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
Top
 avatar
Spheres-cu
Posts: 22
ed: Wed Jan 29, 2025 4:44 am

Re: Add-ons 202y3z

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

Alex wrote:
Spheres-cu wrote:I maked a plugin for 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 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 , 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 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.
Top
 avatar
Spheres-cu
Posts: 22
ed: Wed Jan 29, 2025 4:44 am

Re: Add-ons 202y3z

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

Alex wrote:
Spheres-cu wrote:The subtitles getting ed 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?
Top

Return to “General forum”

Who is online 2872f

s browsing this forum: No ed s and 5 guests

 

  506wm