JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 16.03.2010, 23:06
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Lightbulb [JDownloader2] media-stream@extrahieren mit player (vlc)

Zusammenfassung für die Stream-Erweiterung des JD (JD2):

Share:
Code:
bit.ly/jdstream

Streamen mit dem JD
Wir lebe wohl bald im Streaming Zeitalter.
Streaminghoster sowie Amazone Prime, Netflix zeigen den wandel bereits.
Der JD ermöglicht eine viel Zahl von automatischen vorgängen um Dateien von den Servern zu holen, zu kovertieren, entpacken oder zu organisieren.
Wieso sollte der JD-also den umgang mit Archiven der One-Klick-Hoster/Clouds nicht ähnlich behandeln wie Streaming-Dienste?


Wunsch...
Mithilfe der neuen Funktion des JD's soll es möglich sein mit wenigen Klicks eine Medien-Datei welche in Archiven oder Teilarchiven (gesplitteten parts) noch während des downloads automatisch abzuspielen zu lassen.
So steht auch einer Spontanen qualitative Medienpräsentation nichts mehr im Wege, wenn es mal schnell gehen soll.


Idee...
Interne Lösung:
Mit wenigen Klicks könnte der JD mit einer internen Lösung durch einstellungen, Filtern etc. Dateien wärhend des downloads entpacken und mit einem Player starten.
Beispiel mockup - https://board.jdownloader.org/showpo...2&postcount=40

Event-Script:
Durch einen Script des Eventmanagers könnte die funktion experimentell erfolgen.Mehr dazu hier



Was dafür spricht...
  • Zeitgemäß - Andere Downlodmanager haben bereits solch eine Funktion intigriert.
  • mehr angebot und reichweite der Medien durch den umfangreichen Support des JD's.
  • einfache und schnelle Wiedergabe von Medien aus Archiven.
  • unterstützt fast alle gängige Video- und Audioformate (VLC-Player).
  • teils zuverlässigere Wiedergabe im Gegensatz zu Streaming-Hoster und Streaming-Diensten.
  • teils mehr Qualitative Wiedergabe (HD-4K Medienpräsentationen) im vergleich zu Streaming-Hoster.
  • teils Umfangreichere Kontrolle beim abspielen von Medien im vergleich zu Streaming-Hoster oder Streaming-Diensten (VLC-Player).
  • Zeit/Aufwand (des vollständigen entpacken) bis zum Abspielen der Datei werden eingespart.
  • Es wird Festplatten-Speicher eingespart, da das Archiv/Medien-Datei (je nach Option) im Anschluss des entpackens/abspielens automatisch gelöscht werden könnte.

Donate for it!
Wenn du überzeugt bist das diese Funktion sinnvoll ist, dann hilf mit und unterstütze die Entwickler aktiv oder Spende eine Kleinlichkeit

1. Check "Spenden"-Button.
2. Wähle Spendensumme und "Spende für..." das "Streaming"-Addon

Offizieller Status & Entwicklung:
Derzeit hat das JD-Team scheinbar alle Hände voll zutun, deswegen wäre es klasse wenn es jemanden aus der Community geben würde der sich dieser Aufgabe stellen würde.
Offizielle Entiwcklung:


Community Entwicklung:
Spoiler:


...wer also interesse hat mitzuwirken, der kann sich hier beim JD-Team melden oder selbst mal schauen ob so etwas zu ermöglichen wäre.
**External links are only visible to Support Staff**
github.com/jdstream/jd2stream

zur JD Soruce:
Hier gehts zur JD Soruce zum kennenlernen und coden:
http://beta.jdownloader.org/developmentquicktutorial


JD Script Infos:

Script Editor: JD>Erweiterungsmodule>Ereignismanager>Hinzufügen

Hilfe zum erstellen der Scripts findet ihr wenn ihr auf "Bearbeiten" eines Scriptes Klickt und auf den Button "Hilfe zeigen/verstecken" des Editors wählt.
Desweiteren stehen das Forum und der JD-Entwickler-Live-Chat zur verfügung.

Script-API-Hilfe:
Code:
/* =============== Global API =============== */
/* =========  Methods =========*/
alert(myObject[]);/*Show a Message Box*/
/* Example: */alert(JD_HOME);
var myObject = callAPI(myString, myString, myObject[]);/*Call the MyJDownloader API*/
/* Example: */callAPI("downloadsV2", "queryLinks", { "name": true})
callAsync(myFunction, myString[]);/*Call a local Process asynchronous*/
/* Example: */callAsync(function(exitCode,stdOut,errOut){ alert("Closed Notepad");},"notepad.exe",JD_HOME+"\\license.txt");
var myString = callSync(myString[]);/*Call a local Process. Blocks Until the process returns*/
/* Example: */var pingResultString = callSync("ping","jdownloader.org");
var myBoolean = deleteFile(myString/*path*/, myBoolean/*recursive*/);/*Delete a file or a directory*/
/* Example: */var myBooleanResult=deleteFile(JD_HOME+"/mydirectory/",false);
var myBoolean = doReconnect();/*Perform a reconnect and wait for it*/
/* Example: */var success= doReconnect();
var myDownloadLink = getDownloadLinkByUUID(myLong/*uuid*/);/*Get a DownloadList Link by it's uuid*/
var myFilePackage = getDownloadPackageByUUID(myLong/*uuid*/);/*Get a DownloadList Package by it's uuid*/
var myString = getPage(myString/*URL*/);/*Loads a website (Method: GET) and returns the source code*/
/* Example: */var myhtmlSourceString=getPage("http://jdownloader.org");
var myFilePath = getPath(myString/*Path to a file or folder*/);/*Get a FilePath Object*/
var myObject = getProperty(myString/*"key"*/, myBoolean/*global(boolean)*/);/*Get a Property. Set global to true if you want to access a global property*/
/* Example: */var value=getProperty("myobject", false);
var myDownloadLink[] = getRunningDownloadLinks();/*Get a list of all running downloadlinks*/
var myFilePackage[] = getRunningDownloadPackages();/*Get a list of all running packages*/
var myInt = getTotalSpeed();/*Get current total Download Speed in bytes/second*/
var myBoolean = isDownloadControllerIdle();/*Check if Download Controller is in IDLE State*/
var myBoolean = isDownloadControllerPaused();/*Check if Download Controller is in PAUSE State*/
var myBoolean = isDownloadControllerRunning();/*Check if Download Controller is in RUNNING State*/
var myBoolean = isDownloadControllerStopping();/*Check if Download Controller is in STOPPING State (Still running, but stop has been pressed)*/
log(myObject[]);/*Log to stderr and to JDownloader Log Files*/
playWavAudio(myString/*myFilePathOrUrl*/);/*Play a Wav Audio file*/
/* Example: */playWavAudio(JD_HOME+"/themes/standard/org/jdownloader/sounds/captcha.wav");
var myString = postPage(myString/*URL*/, myString/*PostData*/);/*Loads a website (METHOD: POST) and returns the source code*/
/* Example: */var myhtmlSourceString=postPage("http://support.jdownloader.org/index.php","searchquery=captcha");
var myString = readFile(myString/*filepath*/);/*Read a text file*/
/* Example: */var myString=readFile(JD_HOME+"/license.txt");
refreshAccounts(myBoolean/*true|false (Wait for account checks)*/, myBoolean/*true|false (Force Check)*/);/*Refresh all premium accounts*/
/* Example: */refreshAccounts(true,true);
requestReconnect();/*Request a reconnect*/
/* Example: */requestReconnect();
require(myString/*myFilePathOrUrl*/);/*Loads a Javascript file or url. ATTENTION. The loaded script can access the API as well.*/
/* Example: */require("**External links are only visible to Support Staff**);
setDownloadsPaused(myBoolean);/*Pause/Unpause Downloads*/
var myObject = setProperty(myString/*"key"*/, myObject/*anyValue*/, myBoolean/*global(boolean)*/);/*Set a Property. This property will be available until JD-exit or a script overwrites it. if global is true, the property will be available for al scripts*/
/* Example: */var oldValue=setProperty("myobject", { "name": true}, false);
setSpeedlimit(myInt/*speedlimit in bytes/second*/);/*Set the Speedlimit in bytes/second. Values<=0 -> Disable Limiter*/
startDownloads();/*Start Downloads*/
stopDownloads();/*Stop Downloads*/
writeFile(myString/*filepath*/, myString/*myText*/, myBoolean/*append*/);/*Write a text file*/
/* Example: */writeFile(JD_HOME+"/log.txt",JSON.stringify(this)+"\r\n",true);
/* =========  Properties =========*/
//JDownloader Installation Directory;
var myString = JD_HOME;
/* =============== Classes =============== */
/* === Archive === */
/* =========  Methods =========*/
var myString = myArchive.getArchiveType();
var myDownloadLink[] = myArchive.getDownloadLinks();
var myString[] = myArchive.getExtractedFiles();
var myString = myArchive.getExtractionLog();
var myString = myArchive.getFolder();
var myObject = myArchive.getInfo();
var myString = myArchive.getName();
var myString = myArchive.getUsedPassword();
/* === DownloadLink === */
/* The context download list link*/
/* =========  Methods =========*/
myDownloadLink.abort();
var myArchive = myDownloadLink.getArchive();
var myLong = myDownloadLink.getBytesLoaded();
var myLong = myDownloadLink.getBytesTotal();
var myString = myDownloadLink.getComment();
var myLong = myDownloadLink.getDownloadDuration();
var myString = myDownloadLink.getDownloadPath();
var myLong = myDownloadLink.getDownloadSessionDuration();
var myLong = myDownloadLink.getDownloadTime();
var myLong = myDownloadLink.getEta();
var myString = myDownloadLink.getExtractionStatus();
var myString = myDownloadLink.getFinalLinkStatus();
var myLong = myDownloadLink.getFinishedDate();
var myString = myDownloadLink.getHost();
var myString = myDownloadLink.getName();
var myFilePackage = myDownloadLink.getPackage();
var myObject = myDownloadLink.getProperty(myString);
var myObject = myDownloadLink.getSessionProperty(myString);
var myString = myDownloadLink.getSkippedReason();
var myLong = myDownloadLink.getSpeed();
var myString = myDownloadLink.getStatus();
var myString = myDownloadLink.getUUID();
var myString = myDownloadLink.getUrl();
var myBoolean = myDownloadLink.isEnabled();
var myBoolean = myDownloadLink.isFinished();
var myBoolean = myDownloadLink.isRunning();
var myBoolean = myDownloadLink.isSkipped();
myDownloadLink.reset();
myDownloadLink.setEnabled(myBoolean);
myDownloadLink.setName(myString/*new Name*/);/*Sets a new filename*/
myDownloadLink.setProperty(myString, myObject);
myDownloadLink.setSessionProperty(myString, myObject);
myDownloadLink.setSkipped(myBoolean);
var myString = myDownloadLink.toString();
/* === FilePackage === */
/* The context download list package*/
/* =========  Methods =========*/
var myArchive[] = myFilePackage.getArchives();
var myLong = myFilePackage.getBytesLoaded();
var myLong = myFilePackage.getBytesTotal();
var myString = myFilePackage.getComment();
var myString = myFilePackage.getDownloadFolder();
var myDownloadLink[] = myFilePackage.getDownloadLinks();
var myString = myFilePackage.getName();
var myBoolean = myFilePackage.isFinished();
myFilePackage.setComment(myString);
myFilePackage.setName(myString);
var myString = myFilePackage.toString();
/* === FilePath === */
/* =========  Methods =========*/
var myBoolean = myFilePath.delete();
var myBoolean = myFilePath.deleteRecursive();
var myBoolean = myFilePath.exists();
var myFilePath[] = myFilePath.getChildren();
var myString = myFilePath.getExtension();
var myString = myFilePath.getName();
var myFilePath = myFilePath.getParent();
var myString = myFilePath.getPath();
var myLong = myFilePath.getSize();
var myBoolean = myFilePath.isDirectory();
var myBoolean = myFilePath.isFile();
var myBoolean = myFilePath.mkdirs();
var myBoolean = myFilePath.moveTo(myString);
var myBoolean = myFilePath.renameTo(myString);
var myString = myFilePath.toString();

// ========= Eigenschaften für den Ereignisauslöser 'Ein Download hat begonnen'  =========
var myFilePackage = package;
var myDownloadLink = link;
PS: weitere Scripts des Event-Managers findet ihr hier.


Weiteres wissenswertes:
vlc-player 3.0 - selbständiger Umgang mit archiven
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools

Last edited by Spongshga; 24.11.2016 at 17:21.
Reply With Quote
  #2  
Old 17.03.2010, 20:16
drbits's Avatar
drbits drbits is offline
JD English Support (inactive)
 
Join Date: Sep 2009
Location: Physically in Los Angeles, CA, USA
Posts: 4,434
Default

Ich würde die Idee zu erweitern. Jetzt haben wir "Zielordner öffnen". Wir konnte haben "Run aus dem Archiv" und "Datei öffnen". VLC ist ein Beispiel. Dies könnte im Rahmen der neuen Archiv-Plugin.

Was denken Sie?



I would expand the idea. Now we have Open Directory. We could have "Run from archive" and "Open file". VLC is an example. This could be part of the new archive plugin.

What do you think?
Reply With Quote
  #3  
Old 17.03.2010, 21:37
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default

great but openig (videofile) as stream were extract achriv nice functionality. quickly, and everybody has more memory
i know vlc is a example... vlc runnig good and it is great.
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools

Last edited by Spongshga; 17.03.2010 at 21:41.
Reply With Quote
  #4  
Old 19.03.2010, 23:16
drbits's Avatar
drbits drbits is offline
JD English Support (inactive)
 
Join Date: Sep 2009
Location: Physically in Los Angeles, CA, USA
Posts: 4,434
Default

Streaming from a RAR file means to use unrar (or its library form) in a mode that streams the data. That is what I meant about Run from Archive (if it is a data file, Running it means to have the appropriate program run it). As long as the program can read a stream, this works fine. Reading from a stream is available for some windows programs and most Linux programs.

But you want this specifically for video files. As I understand, the file is already downloaded. If you are talking about not saving the RAR file first, that is quite a bit harder. The RAR format (and software) is proprietary. unrar is free and can output to a stream. It cannot read from a stream.
__________________
Please, in each Forum, Read the Rules!.Helpful Links. Read before posting.
Reply With Quote
  #5  
Old 02.05.2010, 14:10
DrakeJosh
Guest
 
Posts: n/a
Default

ich würde es auch klasse finden wenn das mal umgesetzt würde. Für alle download arten gibt es das schon, nzb (der NZBplayer, altbinz), bei torrent (Swarmplayer,bitcomet).Emule hat auch vlc integration. Es fehlt nur noch für Filehoster. wäre also klasse wenn das mal klappen würde.
Reply With Quote
  #6  
Old 02.05.2010, 15:08
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

ist in planung, wird aber wegen zeitmangels einfach noch dauern
__________________
JD-Dev & Server-Admin
Reply With Quote
  #7  
Old 03.05.2010, 12:18
drbits's Avatar
drbits drbits is offline
JD English Support (inactive)
 
Join Date: Sep 2009
Location: Physically in Los Angeles, CA, USA
Posts: 4,434
Default

BitComet und Azeurus bist zu gross.
Einschließlich der Suche und der Spieler im der Programm ist ein Problem.
Reply With Quote
  #8  
Old 23.07.2010, 11:36
DrakeJosh
Guest
 
Posts: n/a
Default

ist schon jemand vom team dabei das zu programmieren? Das is wirklich das was noch fehlt.
Reply With Quote
  #9  
Old 24.07.2010, 08:55
drbits's Avatar
drbits drbits is offline
JD English Support (inactive)
 
Join Date: Sep 2009
Location: Physically in Los Angeles, CA, USA
Posts: 4,434
Default

Es gibt mehrere Projekte mit hoher Priorität. Hätten wir mehr freiwillige Entwickler, Entwicklung von neuen Funktionen wäre schneller.

Gruß
drbits


There are several high priority projects. If we had more volunteer developers, development of new features would be faster.
Reply With Quote
  #10  
Old 24.07.2010, 17:53
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default

Vlt. man könnte User, aus anderen Boards fragen. Wenn du einen Text verfasst in welchen bereichern Seeziele Unterstützung gesucht wird (vlt mit Gegenleistung das man erwähnt wird), bin ich mir sicher das einige diese Texte Veröffentlichen und man auf unterstützen hoffen kann.

Quote:
VLC Player:
Mir ist auch aufgefallen das beim Streamen von "*.avi.parts" etc. nach Fertigstellung des Downloads logischerweise nicht abgespielt werden da die Formastbezeichnung isch ändert.
Beispiel weiße bei einer Playlist... aber das ist ein Problem des VLC-Players
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools
Reply With Quote
  #11  
Old 05.09.2010, 15:44
DrakeJosh
Guest
 
Posts: n/a
Default

könnte dies plugin vielleicht in der der 1.0 version vorhanden sein?
Reply With Quote
  #12  
Old 20.04.2011, 13:46
DrakeJosh
Guest
 
Posts: n/a
Default

es gibt ein programm das heist autoextractor mit dem kann man videos in rars anschauen welche auch passwortgeschützt sind. Könnte man das nicht im jd einbinden?
Reply With Quote
  #13  
Old 20.04.2011, 13:55
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

Sowas ähnliches wird für JD kommen also Videos während dem Entpacken anschauen (immer wenn dann ein weiterer Partt fertig wird, wird dieser auch entpackt).


GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || 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?
Reply With Quote
  #14  
Old 11.08.2011, 13:40
DrakeJosh
Guest
 
Posts: n/a
Default

Hier ein link zu der Seite. autoextractor.enpts.com mit dem Tool mache ich das momentan manuell das ich die videos beim herrunterladen abspiele. Integriert wäre das eine tolle alternative zu den Streaming-Diensten.

ich glaube nicht das das so schwer umzusetzten ist, ist ja schon seit 2 jahren hier in planung, wann gehts denn mal weiter?

Last edited by DrakeJosh; 11.08.2011 at 13:42.
Reply With Quote
  #15  
Old 11.08.2011, 13:50
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

wenn wir für solche *extras* zeit haben. wir kommen ja schon kaum mim jdownloader alleins weiter, wo soll dann die zeit sein für solche sachen
__________________
JD-Dev & Server-Admin
Reply With Quote
  #16  
Old 11.08.2011, 19:05
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default

gibt es denn noch viele Probleme?...
oh ich vergas das der jd für mehrere Systeme ist.
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools
Reply With Quote
  #17  
Old 11.08.2011, 19:39
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

Es wird halt alles Mögliche umgebaut.
Weißt du [da spreche ich fürs Team, da ich selbst nicht genug Erfahrung hab] wenn man anfängt ein Programm zu schreiben und es dann auch beliebt wird ist das toll.
Aber es kann gut sein, dass man später erst sieht was man alles hätte anders machen können oder sollen, aber zu dem Zeitpunkt hat man die benötigte Erfahrung halt noch nicht gehabt.

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || 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?
Reply With Quote
  #18  
Old 12.08.2011, 13:37
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default

Ich verstehe. Man Programmiert im eigenen Sytem und dann kommen Moule die eingebaut werden sollen die dann wiederum nicht passen und man die software wieder umschreiben muss?! - Ist ja fast wie ei der Hardware :(

Aber dennoch klasse. Es wäre doch mal schön wenn mal en Feedback von den Progern selbst hören würde. Was ses bald neues geben wird, woran zurzeit gearbeitet wird und wo noch dringend Unterstützung gesucht wird (in einem Blog Eintrag).

Es gibt viele wie ich die sich für die Entwicklung interessieren :D
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools

Last edited by Spongshga; 28.07.2016 at 02:21.
Reply With Quote
  #19  
Old 12.08.2011, 21:05
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,918
Default

Wir können leider nicht andauernd updates/News dazu raushauen.
Wer unseren SVN Server beobachtet sieht, dass es fast täglich Codeänderungen gibt.

GreeZ psp
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || 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?
Reply With Quote
  #20  
Old 18.08.2011, 00:11
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default

glaub ich gern. Ich dachte dabei nur an die nightly da man dadurch auch mehr helfen kann.
Beispiels weiße habe ich erst jetzt entdeckt das man auf das Icon im JD klicken kann.
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools
Reply With Quote
  #21  
Old 11.07.2012, 21:50
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default


quelle:imgur.com/YGYsH
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools

Last edited by Spongshga; 11.07.2012 at 22:00.
Reply With Quote
  #22  
Old 12.07.2012, 12:47
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

__________________
JD-Dev & Server-Admin
Reply With Quote
  #23  
Old 12.07.2012, 13:11
warmth
Guest
 
Posts: n/a
Default

Guys, why is the VLC revision always saying "unknown"?

The path must be absolute in quotation marks?

Is this extension working with VLC x64? How can I test it?
Reply With Quote
  #24  
Old 12.07.2012, 13:17
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

revision extraction works differently in windows
will disable it for windows
__________________
JD-Dev & Server-Admin
Reply With Quote
  #25  
Old 12.07.2012, 14:06
warmth
Guest
 
Posts: n/a
Default

So it won't be available for Windows?
Reply With Quote
  #26  
Old 12.07.2012, 14:12
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

sure yes, only the version can't be shown
when the addon is enableable, then you can try it with vimeo,youtube,mp3, appletrailer
rightclick and streaming play

maybe auto vlc detection fails, then just enter customized path to vlc.exe
__________________
JD-Dev & Server-Admin
Reply With Quote
  #27  
Old 12.07.2012, 14:28
warmth
Guest
 
Posts: n/a
Default

That path must be absolute in quotation marks? It's important to define the format or maybe put a way to explore and search for the exe file
Reply With Quote
  #28  
Old 12.07.2012, 14:32
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

absolute path, without quotation marks
but auto detection should work under windows
__________________
JD-Dev & Server-Admin
Reply With Quote
  #29  
Old 12.07.2012, 14:47
warmth
Guest
 
Posts: n/a
Default

It didn't work here... maybe because I have both x86 & x64 version installed.
Reply With Quote
  #30  
Old 12.07.2012, 14:48
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

can we do teamviewer session? or check the following regkeys yourself
SOFTWARE\\Classes\\Applications\\vlc.exe\\shell\\Open\\command
for current machine and current user
do those keys exist?
__________________
JD-Dev & Server-Admin
Reply With Quote
  #31  
Old 12.07.2012, 14:59
warmth
Guest
 
Posts: n/a
Default

Yes,

Value data = "C:\Program Files\VideoLAN\VLC\vlc.exe" --started-from-file "%1"
Reply With Quote
  #32  
Old 12.07.2012, 15:09
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

okay, and what does not work? the customized field is not filled by default, only when you want to modify
when jd does not find vlc itself, then it wont start at all
__________________
JD-Dev & Server-Admin
Reply With Quote
  #33  
Old 12.07.2012, 17:26
warmth
Guest
 
Posts: n/a
Default

It was empty until I filled it...
Reply With Quote
  #34  
Old 12.07.2012, 17:36
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

it is meant to be empty thats why it is called customized
by default it will be autofetched
__________________
JD-Dev & Server-Admin
Reply With Quote
  #35  
Old 12.07.2012, 17:52
warmth
Guest
 
Posts: n/a
Default

That's against usability... it should be then filled automatically if detected and disabled... a check box would enable the text box to modify or add it manually...
Reply With Quote
  #36  
Old 12.07.2012, 19:46
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,289
Default

the extension is not finished at all, was a quick proof of concept. of course it will change
__________________
JD-Dev & Server-Admin
Reply With Quote
  #37  
Old 13.07.2012, 01:01
warmth
Guest
 
Posts: n/a
Default

Fine!
Reply With Quote
  #38  
Old 31.10.2012, 11:07
gnoober
Guest
 
Posts: n/a
Default streaming

Hello everyone, I created the RVS (RAR Video Streamer) for exactly this purpose, back in 2007.
There is also a command line version available.
If you would like to include it in JD, I would be willing to help,
maybe some recode is required. let me know!

**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #39  
Old 31.10.2012, 14:43
eisbaer's Avatar
eisbaer eisbaer is offline
Ehrenmitglied
 
Join Date: Mar 2009
Posts: 3,551
Default

When you want to help, write a PM to Jiaz or coalado.
Reply With Quote
  #40  
Old 18.04.2013, 01:31
Spongshga's Avatar
Spongshga Spongshga is offline
JD Legend
 
Join Date: Apr 2009
Location: web
Posts: 1,159
Default

Mögliches Interface/Umfang

Archive und Parts werden mit dem VLC-Player 3 (und höher) unterstützt.
Wäre es möglich dies bei Paketen (Archiv/Part-1) oder bei Archiven verknüpfen?

Eine darauf folgende Regel/Filter wäre auch nicht schlecht.


Einfache Funktionen und ein einfaches Interface würden für den Anfang reichen
__________________
sorry about my gramma (dyslexia).
———————————————————————————————————
SuFu/Google: Inoffizielle JDownloader Plugins, Erweiterungen, Addons & Tools

Last edited by Spongshga; 15.03.2016 at 15:03.
Reply With Quote
Reply

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 13:58.
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 - 2024, Jelsoft Enterprises Ltd.