JDownloader Community - Appwork GmbH
 

Closed Thread
 
Thread Tools Display Modes
  #21  
Old 25.01.2023, 13:47
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 65,589
Default

Es ist nichts hochkomplexes, aber definitiv ist der Downloladprzess komplizierter als bei 99% aller anderen Anbieter, die wir per Plugin unterstützen.

Quote:
Originally Posted by JojoDenver View Post
Ist der Download denn so viel komplizierter als das Hochladen?
Ich habe nicht in die Docs geschaut, aber auch falls der Upload von der "Norm" abweicht: Die z-o-o-m Entwickler haben scheinbar kein Problem mit Zeitmangel.

Ganz simpel ausgedrückt:
Die meisten Anbieter:
- Datei kommt "in einem Stück" und unverschlüsselt (Auch hier Ausnahmen bestätigen die Regel z.B. mega.nz)
- Login mit Username + Passwort

filebit.net:
- Datei kommt gestückelt in verschlüsselten Segmenten
- Login mit "Lizenzschlüssel" (dies stellt jedoch kein Problem dar)

Zusammen mit dem Zeitmangel von Jiaz führte das zu besagter Verzögerung.
Du hast ja sicher gesehen, dass in der Zeit neue Plugins für andere Anbieter hinzugefügt wurden.

Quote:
Originally Posted by JojoDenver View Post
Aber außer warten bleibt einem ja nichts übrig.
Das stimmt so nicht:
Wie schon gesagt sind wir open source und jeder der mag darf das angefangene Plugin finalisieren.

Grüße, psp
__________________
JD Supporter, Plugin Dev. & Community Manager
JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
That's true James
Quote:
Originally Posted by James
Die Leute verstehen einfach nicht dass nur weil man mit einer Waffe auch auf Menschen schießen kann dass ein Schützenver​ein kein Ort für Amoklaufide​en ist
  #22  
Old 25.01.2023, 23:33
JojoDenver JojoDenver is offline
I will play nice!
 
Join Date: Dec 2022
Posts: 7
Wink

Danke für deine Erläuterungen.
Das filebit.net anders funktioniert, habe ich schon begriffen. Das sieht man ja an deren Code.

Ich kann leider kein Java, sonst würde ich euch gerne helfen. Ich kann nur PHP, was man eher nicht vergleichen kann? Ich würde das ja mal probieren, aber ganz checken tue ich das nicht. Also wie ich da rumbastel und das auch selbst teste. Vielleicht hier nochmal Input?

Ich bin nur irritiert, weil filebit.net ja auch Open Source ist?
**External links are only visible to Support Staff**...

Nicht nur in PHP
Code:
include "filebit.php";

$URL = '**External links are only visible to Support Staff**;
$URLParts = \Filebit\Utils\getParts($URL);

$DownloadHandle = new \Filebit\CDownload($URLParts['id'], $URLParts['key']);
$DownloadHandle->setStoragePath('./test.txt');
$DownloadHandle->setProgress(true);
$DownloadHandle->setDebug(false);
$DownloadHandle->download();

sondern auch Python
Code:
import os
from filebit import download
from pathlib import Path
d = download.Download("**External links are only visible to Support Staff**)
d.prepare()
path = Path(os.getcwd())
if path.is_dir():
    path = path.joinpath(d.filename)
d.start(path)
success = d.validate()
if success:
    print("File download successful")
    print("Stored at:")
    print(d.path)
else:
    print("Download failed.")

und NodeJS
Code:
import {
  CDownload,
  Utils
} from 'filebit-node';
const {
  getParts
} = Utils;

const URL = '**External links are only visible to Support Staff**;
const URLParts = getParts(URL);
const Download = new CDownload(URLParts.id, URLParts.hash);
Download.on('finish', (path) => {
  console.log(path)
});
await Download.setStoragePath('./test.txt');
Download.setProgress(true);
await Download.download();

Ihr könnt mir nicht erzählen, dass ihr aus den drei Quellen nichts in Java "konvertieren" könnt oder das so zeitaufwendig ist, dass das noch ewig dauert. Also ne, dafür kann der jD einfach viel zu viel
  #23  
Old 26.01.2023, 13:11
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 65,589
Default

Quote:
Originally Posted by JojoDenver View Post
Ihr könnt mir nicht erzählen, dass ihr aus den drei Quellen nichts in Java "konvertieren" könnt oder das so zeitaufwendig ist, dass das noch ewig dauert. Also ne, dafür kann der jD einfach viel zu viel
Wollen wir dir auch nicht erzählen

Ohne Jiaz werden auch keine Updates released also selbst wenn jetzt alles fertig wäre, könntet ihr das Plugin höchstens in der Entwicklerversion testen.
__________________
JD Supporter, Plugin Dev. & Community Manager
JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
That's true James
Quote:
Originally Posted by James
Die Leute verstehen einfach nicht dass nur weil man mit einer Waffe auch auf Menschen schießen kann dass ein Schützenver​ein kein Ort für Amoklaufide​en ist
  #24  
Old 26.01.2023, 14:02
JojoDenver JojoDenver is offline
I will play nice!
 
Join Date: Dec 2022
Posts: 7
Default

Quote:
Originally Posted by pspzockerscene View Post
Ohne Jiaz werden auch keine Updates released also selbst wenn jetzt alles fertig wäre, könntet ihr das Plugin höchstens in der Entwicklerversion testen.
Und wie genau geht das?
Ich nutze Github immer nur als Source für eigene Projekte. Aber nie was mit Java.
  #25  
Old 01.02.2023, 17:21
JojoDenver JojoDenver is offline
I will play nice!
 
Join Date: Dec 2022
Posts: 7
Default

Quote:
Originally Posted by JojoDenver View Post
Und wie genau geht das?
Ich nutze Github immer nur als Source für eigene Projekte. Aber nie was mit Java.
Naja, großes Interesse scheint eurerseits nicht vorhanden zu sein.
Also bleibt einem tatsächlich doch nur ein abwarten

Gibt es inzwischen Neuigkeiten?
  #26  
Old 02.02.2023, 13:55
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 65,589
Default

Quote:
Originally Posted by JojoDenver View Post
Und wie genau geht das?
Sorry dein Post ging irgendwie unter.
Wie das geht ist hier beschrieben:
https://support.jdownloader.org/Know...up-ide-eclipse

Quote:
Originally Posted by JojoDenver View Post
Gibt es inzwischen Neuigkeiten?
Von unserer Seite aus nicht.
Sollte es welche geben, posten wir diese hier.
Falls weiter nachgefragt wird schließe ich diesen Thread bis es Neuigkeiten gibt.

Kein Post in diesem Thread von uns = Keine Neuigkeiten
__________________
JD Supporter, Plugin Dev. & Community Manager
JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
That's true James
Quote:
Originally Posted by James
Die Leute verstehen einfach nicht dass nur weil man mit einer Waffe auch auf Menschen schießen kann dass ein Schützenver​ein kein Ort für Amoklaufide​en ist
  #27  
Old 14.02.2023, 12:57
BoeseBZ's Avatar
BoeseBZ BoeseBZ is offline
Tornado
 
Join Date: Mar 2009
Posts: 245
Default

Quote:
Originally Posted by JojoDenver View Post
Danke für deine Erläuterungen.
Das filebit.net anders funktioniert, habe ich schon begriffen. Das sieht man ja an deren Code.

Ich kann leider kein Java, sonst würde ich euch gerne helfen. Ich kann nur PHP, was man eher nicht vergleichen kann? Ich würde das ja mal probieren, aber ganz checken tue ich das nicht. Also wie ich da rumbastel und das auch selbst teste. Vielleicht hier nochmal Input?

Ich bin nur irritiert, weil filebit.net ja auch Open Source ist?
**External links are only visible to Support Staff**...

Nicht nur in PHP
Code:
include "filebit.php";

$URL = '**External links are only visible to Support Staff**;
$URLParts = \Filebit\Utils\getParts($URL);

$DownloadHandle = new \Filebit\CDownload($URLParts['id'], $URLParts['key']);
$DownloadHandle->setStoragePath('./test.txt');
$DownloadHandle->setProgress(true);
$DownloadHandle->setDebug(false);
$DownloadHandle->download();

sondern auch Python
Code:
import os
from filebit import download
from pathlib import Path
d = download.Download("**External links are only visible to Support Staff**)
d.prepare()
path = Path(os.getcwd())
if path.is_dir():
    path = path.joinpath(d.filename)
d.start(path)
success = d.validate()
if success:
    print("File download successful")
    print("Stored at:")
    print(d.path)
else:
    print("Download failed.")

und NodeJS
Code:
import {
  CDownload,
  Utils
} from 'filebit-node';
const {
  getParts
} = Utils;

const URL = '**External links are only visible to Support Staff**;
const URLParts = getParts(URL);
const Download = new CDownload(URLParts.id, URLParts.hash);
Download.on('finish', (path) => {
  console.log(path)
});
await Download.setStoragePath('./test.txt');
Download.setProgress(true);
await Download.download();

Ihr könnt mir nicht erzählen, dass ihr aus den drei Quellen nichts in Java "konvertieren" könnt oder das so zeitaufwendig ist, dass das noch ewig dauert. Also ne, dafür kann der jD einfach viel zu viel
Ich hatte dazu mal folgendes gefunden:
Code:
import Filebit.Utils;
import Filebit.CDownload;

String URL = "**External links are only visible to Support Staff**";
Map<String, String> URLParts = Utils.getParts(++URL++);

CDownload DownloadHandle = new CDownload(URLParts.get("id"), URLParts.get("key"));
DownloadHandle.setStoragePath("./test.txt");
DownloadHandle.setProgress(true);
DownloadHandle.setDebug(false);
DownloadHandle.download();
Code:
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import Filebit.download.Download;

public class Main {
    public static void main(String[] args) {
        String url = "++URL++";
        Download d = new Download(url);
        d.prepare();
        Path path = Paths.get(System.getProperty("user.dir"));
        if (Files.isDirectory(path)) {
            path = path.resolve(d.getFilename());
        }
        try {
            d.start(path);
            boolean success = d.validate();
            if (success) {
                System.out.println("File download successful");
                System.out.println("Stored at:");
                System.out.println(d.getPath().toString());
            } else {
                System.out.println("Download failed.");
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
Code:
import java.io.IOException;
import Filebit.CDownload;
import Filebit.Utils;

public class Main {
    public static void main(String[] args) {
        String URL = "++URL++";
        Utils utils = new Utils();
        CDownload Download = new CDownload(utils.getParts(URL).get("id"), utils.getParts(URL).get("hash"));
        Download.on("finish", (path) -> {
            System.out.println(path);
        });
        try {
            Download.setStoragePath("./test.txt");
            Download.setProgress(true);
            Download.download();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
Ich habe aber von sowas Zero-Ahnung
  #28  
Old 14.02.2023, 13:38
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 65,589
Default

Ich schließe diesen Thread nun bis wir Neuigkeiten haben.

Kein Post in diesem Thread von uns = Keine Neuigkeiten

-psp-
__________________
JD Supporter, Plugin Dev. & Community Manager
JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
That's true James
Quote:
Originally Posted by James
Die Leute verstehen einfach nicht dass nur weil man mit einer Waffe auch auf Menschen schießen kann dass ein Schützenver​ein kein Ort für Amoklaufide​en ist
  #29  
Old 14.03.2023, 20:11
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 65,589
Default

Webseite ist down.
__________________
JD Supporter, Plugin Dev. & Community Manager
JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
That's true James
Quote:
Originally Posted by James
Die Leute verstehen einfach nicht dass nur weil man mit einer Waffe auch auf Menschen schießen kann dass ein Schützenver​ein kein Ort für Amoklaufide​en ist
  #30  
Old 15.03.2023, 08:23
Galaktischer Senat Galaktischer Senat is offline
Super Loader
 
Join Date: Nov 2022
Posts: 29
Default

Diesen Hoster gibt es nicht mehr, der hat Dicht gemacht.
  #31  
Old 20.03.2023, 11:18
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 65,589
Default

Korrekt, wie bereits von mir geschrieben.

Thread geschlossen.
__________________
JD Supporter, Plugin Dev. & Community Manager
JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
That's true James
Quote:
Originally Posted by James
Die Leute verstehen einfach nicht dass nur weil man mit einer Waffe auch auf Menschen schießen kann dass ein Schützenver​ein kein Ort für Amoklaufide​en ist
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 19:32.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.