Add-ons 6g5621
s: Alex 1o6z5o
Re: Add-ons 1aj
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
FDM development team
Re: Add-ons 1aj
Guest wrote:Youtube and smiliar plataforms like DailyMotion, Vimeo, Twitch, Vevo.
Re: Add-ons 1aj
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.
Re: Add-ons 1aj
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
FDM development team
Re: Add-ons 1aj
It needs an youtube video er addon badly. Is there any option available ?
Re: Add-ons 1aj
Need an addon to switch use proxy or not.
It should be a button so it can be used easily.
pls.
It should be a button so it can be used easily.
pls.
Re: Add-ons Elephant addon 3f521t
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?
Im getting a "SSL certificate is not valid" message when trying to update the Elephant addon. Any ideas please?
Re: Add-ons 1aj
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.sitesdebloques.org/ ... _setup.exe
Re: Add-ons 1aj
top cool
Re: Add-ons 1aj
Is it possible to automatically subscribe to update trackers? This is very useful
- Spheres-cu
- Posts: 22
- ed: Wed Jan 29, 2025 4:44 am
Re: Add-ons 1aj
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 ):
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 !
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 !
Re: Add-ons 1aj
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
FDM development team
Re: Add-ons 1aj
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
FDM development team
- Spheres-cu
- Posts: 22
- ed: Wed Jan 29, 2025 4:44 am
Re: Add-ons 1aj
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.
- Spheres-cu
- Posts: 22
- ed: Wed Jan 29, 2025 4:44 am
Re: Add-ons 1aj
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?
Who is online 3h4ar
s browsing this forum: No ed s and 20 guests