JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #1001  
Old 28.10.2019, 23:56
Lessen
Guest
 
Posts: n/a
Default

Hey mgpai,

Is it possible to write a script that automatically downloads new photos from an instagram profile as soon as they are posted?
Reply With Quote
  #1002  
Old 29.10.2019, 14:41
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by Lessen View Post
Is it possible to write a script that automatically downloads new photos from an instagram profile as soon as they are posted?
IG does not provide RSS feeds. You will have to use third-party services to generate custom RSS/XML feeds and add them at regular intervals to linkgrabber using a script.

Alternatively, you can also use a script to add native IG urls to the linkgrabber at regular intervals. By default this will fetch all the content from the given url. There is a plugin option where you can specify the 'x' latest items to be fetched. This however does not seem to be currently working as expected.

If you want to avoid adding duplicate urls to linkgrabber, you will have to leave the old urls in the download list or linkgrabber list. If the links are present in linkgrabber, JD will skip them. Links present in the download list will be added to the list and marked (BG color will be red) as duplicate. You can create a linkgrabber filter rule to also skip links which are present in the download list.

Code:
// Add urls to linkgrabber at user-defined intervals
// Trigger: Interval (Recommended 3600000 ms or more)

var urls = [];
urls[urls.length] = "**External links are only visible to Support Staff**;
urls[urls.length] = "**External links are only visible to Support Staff**;
urls[urls.length] = "**External links are only visible to Support Staff**;
urls[urls.length] = "**External links are only visible to Support Staff**;
urls[urls.length] = "**External links are only visible to Support Staff**;

callAPI("linkgrabberv2", "addLinks", {
    "links": urls.join(" ")
});
Reply With Quote
  #1003  
Old 06.11.2019, 03:24
Edwardo270 Edwardo270 is offline
Modem User
 
Join Date: Nov 2019
Posts: 4
Default

Hi mgpai, I love your work!

I've been fiddling around with the event scripter but can't figure this out:

I am hoping to write a script that takes all my pending downloads/links in my downloads tab and organises them into packages by hoster/domain (rapidgator, keep2share, depositfiles, etc). For instance if I had 5 downloads for rapidgator and 6 for depositfiles then ran the script, I would have 2 packages ("rapidgator" and "depositfiles") each containing the 5 and 6 downloads, repectively.


Are you able to assist? Thanks in advance.
Reply With Quote
  #1004  
Old 06.11.2019, 13:48
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by Edwardo270 View Post
... script that takes all my pending downloads/links in my downloads tab and organises them into packages by hoster/domain ...
Code:
// From selected links, move only the pending download links to packages by Host
// Trigger: Downloadlist Contextmenu Button Pressed
// Customize Downloadlist Context menu > Add new "Eventscripter Trigger" button > Rename it to "Move to Packages by Host" > Change Icon (Optional)

if (name == "Move to Packages by Host") {
    var links = [];
    var downloadPath = null; // <- Set download folder (if not specified, default folder will be used)

    dlSelection.getLinks().forEach(function(link) {
        if (!link.getBytesLoaded() && !link.isRunning()) {
            var host = link.getDownloadHost().replace(/(.+)\..+/, "$1");
            if (!links[host]) links[host] = [];
            links[host].push(link.getUUID());
        }
    })

    for (x in links) callAPI("downloadsV2", "movetoNewPackage", links[x], null, x, downloadPath);
}
Reply With Quote
  #1005  
Old 07.11.2019, 02:36
Edwardo270 Edwardo270 is offline
Modem User
 
Join Date: Nov 2019
Posts: 4
Default

Thank you!! It works great!

Edit:
oops!
@mgpai: Thank you!

Last edited by Edwardo270; 08.11.2019 at 04:34.
Reply With Quote
  #1006  
Old 07.11.2019, 11:11
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,339
Default

@mgpai: THANKS!
__________________
JD-Dev & Server-Admin
Reply With Quote
  #1007  
Old 15.11.2019, 14:07
sergrlager
Guest
 
Posts: n/a
Default Script for event

i need help with some scripting for this;
first script for event scripter :
i need script for request of reconnect after one download is finished - i use step by step link download

and what trigger must i use for this script ?

Thanks!
Reply With Quote
  #1008  
Old 15.11.2019, 17:28
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by sergrlager View Post
i need script for request of reconnect after one download is finished ... and what trigger must i use for this script ?
You can use "A Download Stopped" trigger" and check if the download is finished before performing a reconnect.

JD can automatically reconnect when required. Any particular reason you want to use a script for this?
Reply With Quote
  #1009  
Old 18.11.2019, 09:59
ToDDoT ToDDoT is offline
Modem User
 
Join Date: Nov 2019
Posts: 1
Default

Hi,

I have trouble, sometimes hosts block my IP for to many GB download in short time frame, can you create script which adds a delay 60 seconds or more after one download file is finished, before next file will start to be downloaded?
Reply With Quote
  #1010  
Old 26.11.2019, 10:27
d1332973
Guest
 
Posts: n/a
Default

Hi,

I would like to know if it is possible to reset and activate links automatically using EventScripter?

Why I ask, my Raspi runs JD2 in headless mode.
Lately, my multihoster debriditalia often gives me the message that needs to be wait and then often "temporarily unavailable".
If I reset the link a few times (each time after the message came), it will start (sometimes). If i reset it not manually, JD2 ignores this link then always.
A second thing is that I can only load the whole link, so the resume doesn't work, so started and interrupted downloads have also to be reset manually.

I would like to run this as the first script.

The second thing is that I always deactivate all links and then activate the next one as soon as the previous one is finished.
So a package has 10 links, link 2 will be activated when link 1 is finished, etc. until all are finished.

I do this because I only have a bandwidth of 1Mbit and can only run one link over it anyway, and secondly, I noticed that JD2 tries to start all links one after the other (as soon as the previous one doesn't work) and then I have a lot of "link calls" which all count on the contigent and from each package only single files were mostly partially loaded.
Is that also possible?

thx for your help
Reply With Quote
  #1011  
Old 26.11.2019, 13:42
noone1
Guest
 
Posts: n/a
Cool event scripter scripts index

_______________________

message

Spoiler:


[good news everyone]
____________________


Quote:
Originally Posted by Jiaz View Post
Good idea But I don't have time to do this, so anyone is welcome to create such a post and keep it updated. I will make it sticky then.
@mgpai
@fred_gaou
Help is welcome
Some asked for it, here it is:biggrin: Not sure it's a good idea to stick it as is! at least it helped me to learn a bit of event scripting, next step will be to make my first one... been busy:P
note
Spoiler:
It might be a good idea to have a lib of primitive functions, simple tasks, that can be then used in any script, which is kind of the goal of this list/thread. The scripts here are sort of snippets but for specific cases, it is good for learning but then you have to dig in each and every one to find what you need.

mgpai, thecoder2012 can you hear me? (any other users too!) any amount of scripts you've been keeping up your sleeve you could put out of your hat?;)


[not sure if it is a good news or bad news]
_____________________________________


the bad news is forum url t=70525&postcount=NN doesn't work, too late to see that, so I can't create direct links...

Spoiler:

  • the web master will have to use his mysterious wizardry to map the page/post numbers from only thread/postcount number to rebuild a board's url that send us to the post inside the page...

    Meanwhile, post numbers are those seen when not logged in (20/page), so the page number is ceil(NN/20):huh: , it is the first column in the list, but it can differ from the one you see depending on the forum options in your profile.
  • When I remembered some scripts were close, I tried to regroup them but that's far from being finalized or relevant, class list and sorting are dubious:blink: but well, it's a start...



[have fun]
_________

Any way, their is little chance I will keep it up to date, at least regularly, plus the layout is not automated!, but once board links are rebuild it should be more easily usable.

More importantly if any of you have links to scripts in other threads of the forum, we could all share the same 'textup' file for example, anyone can edit it and add a contribution, there will just need to be someone to post it in the forum from time to time :

Quote:
hxxps://textup.fr/385640HK (raw version)
hxxps://textup.fr/385738jj (layout)
pwd are jd
Captcha seems case sensitive and by clicking 'reposter' (duplicate) you make sure to back it up in case of trouble.



_______________________


*************
*event scripter *
*************

for noobs:)


_______________________

Knowledgebase
Add custom Buttons and Scripts to JDownloader
Instructions summary:
Spoiler:


Code:
  • check 'scripts' is installed and activated: in settings tab, down the left panel there is a plugin section, click on scripts, 'intall now' if not and restart and/or check 'scripts' is ticked
  • Add script to event scripter: click on script in left panel, then 'add' in the bottom of right panel then 'edit' (third column in the script list), write/paste your script and save note1: synchroneous execution is to force waiting for the end of the script before JD keeps on running note2: for windows users, you can use simple / inside paths or escape backslash \\ (escape spec char too) note3: list of available api methods is in the show/hide help top button
  • In event scripter list, click trigger event (2nd column) in the line of your script and select the corresponding triggering event that fits your script
  • Tick/activate the script (1st column)
  • Associate action button to the script, for example, here, to linkgrabber contextual menu : Go to Linkgrabber Tab > Context Menu > Open Menu Manager Add Action > EventScripter Trigger In the right-side panel change the name from "EventScripter Trigger" to the exact name of the button used in the script (name == "action name/text to display"). Save
  • now you can test your event (there is also an option for it on top of the event scripter editor) if it is triggered by some action (ex:right click) or it will run automaticaly depending on the kind of triggering event.


_______________________

other script types usage
>

Spoiler:

Code:
Eventscripter [.js]
  • Paste the contents of the file in script editor (Settings > Eventscripter).
  • Follow instructions specified in the script.
Linkcrawler [.json]
  • Paste the contents of the file in settings. (Settings > Advanced Settings > LinkCrawler.linkcrawlerrules)
  • Enable Checkbox (Settings > Advanced Settings > LinkCrawler.linkcrawlerrulesenabled)
Linkgrabber Filter [.filter]
  • Save file to disk and import it. (Settings > Linkgrabber Filter > Filter Tab > Import)
Linkgrabber Filter [.views]
  • Save file to disk and import it. (Settings > Linkgrabber Filter > Views Tab > Import)
Packagizer [.packagizer]
  • Save file to disk and import it. (Settings > Packagizer > Import)
(some are already set when installing JD, ex:disable *.rev and *.par archives)


_______________________

additional doc
  • mgpai github repo hxxps://github.com/mgpai/resources/tree/master/jdownloader
    (event scripter file names referred to helped users, titles have been used in the following list)
  • jdownloader API doc
  • **External links are only visible to Support Staff**jdownloader API spec

_______________________

global API help we find in script editor
(shows in one line, not as in the preview )
Spoiler:
PHP Code:
/* =============== Global API =============== *//* =========  Methods =========*/alert(myObject[]);/*Show a Message Box*//* Example: */alert(JD_HOME);var myObject callAPI(myStringmyStringmyObject[]);/*Call the MyJDownloader API*//* Example: */callAPI("downloadsV2""queryLinks", { "name"true})callAsync(myFunctionmyString[]);/*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);disablePermissionChecks();/*disable permission checks*/var myBoolean doReconnect();/*Perform a reconnect and wait for it*//* Example: */var successdoReconnect();enablePermissionChecks();/*enable permission checks*/var myString experimental_proxybanlist();/*(experimental) Get proxy banlist*//* Example: */experimental_proxybanlist();var myString experimental_proxylist();/*(experimental) Get proxy list*//* Example: */experimental_proxylist();var myCrawledLink[] = getAllCrawledLinks();/*Get a list of all crawledlinks*/var myCrawledPackage[] = getAllCrawledPackages();/*Get a list of all crawledpackages*/var myDownloadLink[] = getAllDownloadLinks();/*Get a list of all downloadlinks*/var myFilePackage[] = getAllFilePackages();/*Get a list of all packages*/var myLong getAverageSpeed();/*Get current average Download Speed in bytes/second*/var myBrowser getBrowser();/*Get an Environment Object*/var myString getChecksum(myStringmyString);/*Create a Checksum for a file. Types: e.g. CRC32, md5, SHA-1, SHA-256*/var myCrawledLink getCrawledLinkByUUID(myLong/*uuid*/);/*Get a CrawledLink Link by it's uuid*/var myCrawledPackage getCrawledPackageByUUID(myLong/*uuid*/);/*Get a CrawledLink Package by it's uuid*/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 getEnv(myString/*environment variable*/);/*Gets the value of the specified environment variable*/var myEnvironment getEnvironment();/*Get an Environment Object*/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 myLong 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)*/var myBoolean isSynchronous();/*is current script run in synchronous mode?*/log(myObject[]);/*Log to stderr and to JDownloader Log Files*/openURL(myString/*URL*/);/*Open a website or path in your default browser/file explorer*//* Example: */openURL("http://jdownloader.org");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);var myBoolean removeCrawledLinkByUUID(myString);/*Remove a crawledlink by uuid*/var myBoolean removeCrawledPackageByUUID(myString);/*Remove a crawledpackage by uuid*/var myBoolean removeDownloadLinkByUUID(myString);/*Remove a downloadlink by uuid*/var myBoolean removeFilePackageByUUID(myString);/*Remove a package by uuid*/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**);setAdvancedAlert(myBoolean);/*enable/disable alert with textbox and copy&paste*/setDisableOnException(myBoolean);/*enable/disable script on exceptions*/setDownloadsPaused(myBoolean);/*Pause/Unpause Downloads*/setNotifyOnException(myBoolean);/*enable/disable notification on exceptions*/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*/sleep(myInt/*milliseconds*/);/*Perform a sleep and wait for x milliseconds*//* Example: */sleep(1000);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 myBoolean = myArchive.equals(myObject);var myString = myArchive.getArchiveType();var myDownloadLink[] = myArchive.getDownloadLinks();var myString = myArchive.getExtractToFolder();var myFilePath[] = myArchive.getExtractedFilePaths();var myString[] = myArchive.getExtractedFiles();var myString = myArchive.getExtractionLog();var myString = myArchive.getFolder();var myObject = myArchive.getInfo();var myString = myArchive.getName();var myList = myArchive.getPasswords();var myString = myArchive.getUsedPassword();var myInt = myArchive.hashCode();var myBoolean = myArchive.isPasswordProtected();myArchive.setPasswords(myList);/* === Browser === *//* =========  Methods =========*/var myBrowser = myBrowser.cloneBrowser();var myBoolean = myBrowser.equals(myObject);var myInt = myBrowser.getConnectTimeout();var myLong = myBrowser.getContentLength();var myString = myBrowser.getContentType();var myString = myBrowser.getCookie(myString, myString);var myBoolean = myBrowser.getDefaultSSLTrustALL();myBrowser.getDownload(myString, myString);var myString = myBrowser.getHTML();var myInt = myBrowser.getLoadLimit();var myString = myBrowser.getPage(myString);var myInt = myBrowser.getReadTimeout();var myString = myBrowser.getRedirectLocation();var myString = myBrowser.getRequestMethod();var myLong = myBrowser.getRequestTime();var myInt = myBrowser.getResponseCode();var myString = myBrowser.getResponseHeader(myString);var myString = myBrowser.getURL();var myInt = myBrowser.hashCode();var myBoolean = myBrowser.isFollowingRedirects();var myBoolean = myBrowser.isSSLTrustALL();var myString = myBrowser.postPage(myString, myString);myBrowser.setConnectTimeout(myInt);myBrowser.setCookie(myString, myString, myString);myBrowser.setDefaultSSLTrustALL(myBoolean);myBrowser.setFollowRedirects(myBoolean);myBrowser.setHeader(myString, myString);myBrowser.setLoadLimit(myInt);var myBoolean = myBrowser.setProxy(myString);myBrowser.setReadTimeout(myInt);/* === ConditionalSkipReason === *//* =========  Methods =========*/var myString = myConditionalSkipReason.getClassName();var myDownloadLink = myConditionalSkipReason.getDownloadLinkCondition();var myString = myConditionalSkipReason.getMessage();var myLong = myConditionalSkipReason.getTimeOutLeft();var myLong = myConditionalSkipReason.getTimeOutTimeStamp();var myString = myConditionalSkipReason.getWaitingSkipReason();var myBoolean = myConditionalSkipReason.isConditionReached();var myBoolean = myConditionalSkipReason.isDownloadLinkCondition();var myBoolean = myConditionalSkipReason.isTimeOutCondition();/* === CrawledLink === *//* The context linkgrabber list link*//* =========  Methods =========*/var myBoolean = myCrawledLink.equals(myObject);var myLong = myCrawledLink.getAddedDate();var myArchive = myCrawledLink.getArchive();var myString = myCrawledLink.getAvailableState();var myLong = myCrawledLink.getBytesTotal();var myString = myCrawledLink.getComment();var myString = myCrawledLink.getContainerURL();var myString = myCrawledLink.getContentURL();var myDownloadLink = myCrawledLink.getDownloadLink();var myString = myCrawledLink.getDownloadPath();var myString = myCrawledLink.getHost();var myLinkInfo = myCrawledLink.getLinkInfo();var myString = myCrawledLink.getName();var myString = myCrawledLink.getOriginURL();var myCrawledPackage = myCrawledLink.getPackage();var myString = myCrawledLink.getPriority();var myMap = myCrawledLink.getProperties();var myObject = myCrawledLink.getProperty(myString);var myString = myCrawledLink.getReferrerURL();var myObject = myCrawledLink.getSessionProperty(myString);var myCrawlerJob = myCrawledLink.getSourceJob();var myString = myCrawledLink.getUUID();var myString = myCrawledLink.getUrl();var myInt = myCrawledLink.hashCode();var myBoolean = myCrawledLink.isEnabled();var myBoolean = myCrawledLink.remove();myCrawledLink.setComment(myString);myCrawledLink.setEnabled(myBoolean);myCrawledLink.setName(myString/*new Name*/);/*Sets a new filename*/myCrawledLink.setPriority(myString);myCrawledLink.setProperty(myString, myObject);myCrawledLink.setSessionProperty(myString, myObject);var myString = myCrawledLink.toString();/* === CrawledPackage === *//* The context linkgabber list package*//* =========  Methods =========*/var myBoolean = myCrawledPackage.equals(myObject);var myLong = myCrawledPackage.getAddedDate();var myArchive[] = myCrawledPackage.getArchives();var myLong = myCrawledPackage.getBytesTotal();var myString = myCrawledPackage.getComment();var myString = myCrawledPackage.getDownloadFolder();var myCrawledLink[] = myCrawledPackage.getDownloadLinks();var myString = myCrawledPackage.getName();var myString = myCrawledPackage.getPriority();var myString = myCrawledPackage.getUUID();var myInt = myCrawledPackage.hashCode();var myBoolean = myCrawledPackage.remove();myCrawledPackage.setComment(myString);myCrawledPackage.setDownloadFolder(myString);myCrawledPackage.setName(myString);myCrawledPackage.setPriority(myString);var myString = myCrawledPackage.toString();/* === CrawlerJob === *//* =========  Methods =========*/var myBoolean = myCrawlerJob.equals(myObject);var myList = myCrawlerJob.getArchivPasswords();var myString = myCrawlerJob.getOrigin();var myString = myCrawlerJob.getPassword();var myString = myCrawlerJob.getSourceUrl();var myString = myCrawlerJob.getText();var myString = myCrawlerJob.getUUID();var myInt = myCrawlerJob.hashCode();var myBoolean = myCrawlerJob.isAssignJobID();var myBoolean = myCrawlerJob.isDeepAnalysisEnabled();myCrawlerJob.setAssignJobID(myBoolean);myCrawlerJob.setDeepAnalysisEnabled(myBoolean);myCrawlerJob.setPassword(myString);myCrawlerJob.setText(myString);/* === DownloadLink === *//* The context download list link*//* =========  Methods =========*/myDownloadLink.abort();var myBoolean = myDownloadLink.equals(myObject);var myLong = myDownloadLink.getAddedDate();var myArchive = myDownloadLink.getArchive();var myLong = myDownloadLink.getBytesLoaded();var myLong = myDownloadLink.getBytesTotal();var myString = myDownloadLink.getComment();var myConditionalSkipReason = myDownloadLink.getConditionalSkipReason();var myString = myDownloadLink.getContainerURL();var myString = myDownloadLink.getContentURL();var myLong = myDownloadLink.getDownloadDuration();var myString = myDownloadLink.getDownloadHost();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 myLinkInfo = myDownloadLink.getLinkInfo();var myString = myDownloadLink.getName();var myString = myDownloadLink.getOriginURL();var myFilePackage = myDownloadLink.getPackage();var myString = myDownloadLink.getPluginURL();var myString = myDownloadLink.getPriority();var myMap = myDownloadLink.getProperties();var myObject = myDownloadLink.getProperty(myString);var myString = myDownloadLink.getReferrerURL();var myObject = myDownloadLink.getSessionProperty(myString);var myString = myDownloadLink.getSkippedReason();var myLong = myDownloadLink.getSpeed();var myString = myDownloadLink.getStatus();var myMap = myDownloadLink.getTempProperties();var myObject = myDownloadLink.getTempProperty(myString);var myString = myDownloadLink.getUUID();var myString = myDownloadLink.getUrl();var myInt = myDownloadLink.hashCode();var myBoolean = myDownloadLink.isEnabled();var myBoolean = myDownloadLink.isFinished();var myBoolean = myDownloadLink.isResumeable();var myBoolean = myDownloadLink.isRunning();var myBoolean = myDownloadLink.isSkipped();var myBoolean = myDownloadLink.remove();myDownloadLink.reset();myDownloadLink.resume();myDownloadLink.setComment(myString);myDownloadLink.setEnabled(myBoolean);myDownloadLink.setName(myString/*new Name*/);/*Sets a new filename*/myDownloadLink.setPriority(myString);myDownloadLink.setProperty(myString, myObject);myDownloadLink.setSessionProperty(myString, myObject);myDownloadLink.setSkipped(myBoolean);myDownloadLink.setTempProperty(myString, myObject);var myString = myDownloadLink.toString();/* === Environment === *//* =========  Methods =========*/var myString = myEnvironment.getARCHFamily();var myLong = myEnvironment.getJavaVersion();var myString = myEnvironment.getNewLine();var myString = myEnvironment.getOS();var myString = myEnvironment.getOSFamily();var myString = myEnvironment.getPathSeparator();var myBoolean = myEnvironment.is64BitArch();var myBoolean = myEnvironment.is64BitJava();var myBoolean = myEnvironment.is64BitOS();var myBoolean = myEnvironment.isBSD();var myBoolean = myEnvironment.isHeadless();var myBoolean = myEnvironment.isLinux();var myBoolean = myEnvironment.isMac();var myBoolean = myEnvironment.isWindows();/* === FilePackage === *//* The context download list package*//* =========  Methods =========*/var myBoolean = myFilePackage.equals(myObject);var myLong = myFilePackage.getAddedDate();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 myLong = myFilePackage.getFinishedDate();var myString = myFilePackage.getName();var myString = myFilePackage.getPriority();var myMap = myFilePackage.getProperties();var myObject = myFilePackage.getProperty(myString);var myString = myFilePackage.getUUID();var myInt = myFilePackage.hashCode();var myBoolean = myFilePackage.isFinished();var myBoolean = myFilePackage.remove();myFilePackage.setComment(myString);myFilePackage.setDownloadFolder(myString);myFilePackage.setName(myString);myFilePackage.setPriority(myString);myFilePackage.setProperty(myString, myObject);var myString = myFilePackage.toString();/* === FilePath === *//* =========  Methods =========*/var myBoolean = myFilePath.copyTo(myString, myString, myBoolean);var myBoolean = myFilePath.copyTo(myString);var myBoolean = myFilePath.delete();var myBoolean = myFilePath.deleteRecursive();var myBoolean = myFilePath.equals(myObject);var myBoolean = myFilePath.exists();var myString = myFilePath.getAbsolutePath();var myFilePath[] = myFilePath.getChildren();var myLong = myFilePath.getCreatedDate();var myString = myFilePath.getExtension();var myLinkInfo = myFilePath.getLinkInfo();var myLong = myFilePath.getModifiedDate();var myString = myFilePath.getName();var myFilePath = myFilePath.getParent();var myString = myFilePath.getPath();var myLong = myFilePath.getSize();var myInt = myFilePath.hashCode();var myBoolean = myFilePath.isDirectory();var myBoolean = myFilePath.isFile();var myBoolean = myFilePath.mkdirs();var myBoolean = myFilePath.moveTo(myString);var myFilePath = myFilePath.rename(myString);var myFilePath = myFilePath.renameName(myString);var myFilePath = myFilePath.renamePath(myString);var myBoolean = myFilePath.renameTo(myString);var myString = myFilePath.toString();/* === LinkInfo === *//* =========  Methods =========*/var myString = myLinkInfo.getDesc();var myString = myLinkInfo.getGroup();var myInt = myLinkInfo.getPartNum();var myString = myLinkInfo.name();// ========= Properties for the EventTrigger 'A Download started'  =========var myFilePackage = package;var myDownloadLink = link; 


_______________________

event scripter repo

Spoiler:


tmplnk postcount title;trigger

use third party program
p0001 0001 Convert AAC/M4A/OGG files to MP3 (ffmpeg) ;A Download Stopped
p0005 0098 start my batch script after JD unrar ;Archive extraction Finished
p0006 0106 Add metadata to image file, using external program (exiftool) ;A Download Stopped
p0010 0191 Run external program if package contains 'pdf' file ;Package finished
p0016 0302 start/stop transmission-gtk
p0019 0366 Run external command on extracted files & delete archive links from list (dxzdxz1.js) ;Archive extraction finished
p0024 0474 Run external program when all packages finished (44nonymous.js) ;Download Controller Stopped
p0025 0490 Convert dts to ac3 and create new video file (ffmpeg) (Tom.js) ;A new file has been created
p0028 0550 ? greasemonkey script to send url to JD?
Use eventscripter to start python-script with arguments
Open container link in browser (guardao.js) ;Downloadlist Contextmenu Button Pressed
Open url in browser(guardao_2.js) ; Downloadlist Contextmenu Button Pressed

update
p0045 0881 Update JD when idle, automatic update + restart after all active downloads ;Interval
p0015 0297 Update JD when idle, automatic update + restart after all active downloads (DaDealer.js) ;Interval
p0016 0305 Update JD when idle, automatic update + restart after all active downloads ;Interval
p0028 0558 Restart and update, if updates are available ;Before a Reconnect (or after)

log/bkup
p0001 0002 Save youtube links and basic information to a html page ;A Download Stopped
p0037 0728 Save youtube links and basic information to a html page ;A Download Stopped
p0001 0007 Simple history of downloaded links in text format ;A Download Stopped
p0001 0010 Simple history of downloaded links in text format ;A Download Stopped
p0019 0378 Simple history of downloaded links in text format ;A Download Stopped
p0001 0019 Export download URLs (Linkgrabber & Download List) ;DownloadList Contextmenu Button Pressed
p0040 0794 Export download URLs, workaround for container
p0041 0808 Export downloadlist urls (new getPluginURL api) ;DownloadList Contextmenu Button Pressed
p0041 0808 Export LinkGrabber list urls (new getPluginURL api) ;LinkGrabber Contextmenu Button Pressed
p0006 0102 Write link comments to 'csv' file ;Package Finished
p0006 0115 Write link comments from a package to 'csv' file ;DownloadList Contextmenu Button Pressed
p0012 0232 Save Link URLs in a text file ;A Download Stopped
p0019 0376 Move all links to download list
p0024 0479 Backup link lists at startup ;JDownloader started
p0031 0618 Daily Backup (7z) ;JDownloader Started
p0048 0958 Get links from finished crawljob ;Remote API Event fired
get list of finished package

p0002 0037 Check for new update logs at user defined intervals and open them in notepad ;Interval
p0011 0210 Clean up and log finished packages at specified interval ;Interval

operations on links, files & folders
p0001 0009 Add single/multiple URL at user defined interval ;Interval
p0003 0048 add direct link to linkgrabber
p0007 0122 Add link at user defined interval ;Interval
p0051 1002 Add urls to linkgrabber at user-defined intervals (skip duplicates) ;Interval

p0002 0039 get packagename of archive ;Archive extraction finished
p0003 0050 link name cleaner : auto clean/format filename during the link grabbing process ;Packagizer Hook
p0003 0058 Set filename as comment / Set comment as file name ;Packagizer Hook

p0041 0808 See new links in the comment field ;A new link has been added
p0007 0127 Set Package Name based on matching host ;Packagizer Hook
p0007 0129 Extract/set package name from file name ;Packagizer Hook
p0009 0165 replace "_" with " " ;Packagizer Hook
Replace characters in file name ";Packagizer Hook (DJwa163.js)"
Filename to lower case (flopodopo.js) ;Packagizer Hook
filename mask replacement ex
p0026 0509 Replace file name with archive name (animus.js) ;Archive extraction finished

p0001 0006 Split packages and create sub-folders ;Linkgrabber Contextmenu Button Pressed
p0002 0029 Move finished non-archive files, to user defined folder ;A Download Stopped
p0006 0104 Delete junk folders ;Archive Extraction Finished
p0006 0109 Delete from extracted files, any file/folder which contains user specified keywords ;Archive Extraction Finished
p0007 0120 Delete 'jpg' and 'txt' files and remove download folder if empty ;A Download Stopped
p0007 0135 ? last extracted archive, remove nested archive? ;Any Extraction Event
p0008 0159 Move media files based on duration (ffprobe) ;A Download Stopped
p0015 0290 Disable matching files (netgearjd.js) ;Toolbar Button Pressed
p0017 0329 Detect duplicate files (netgearjd_2.js) ;Toolbar Button Pressed
p0032 0627 Disable (instagram) links if file exists on disk ;Remote API Event Fired
p0035 0690 Disable (instagram) links if file exists on disk ; Toolbar Buttton Pressed

p0021 0402 If file exists, stop the download and remove the link, else rename it (patriks3.js) ;A Download Started
p0021 0414 Disable download link if file exists in download folder/subfolders (Takhen.js) ;A Download Started
Disable the download if the file already exists on the disk with alternate name ;A Download Started
Change download folder if a file does not already exist in default folder ;A Download Started
If file already exists in other user defined folders disable the download ;A Download Started
p0040 0787 Disable download link, if file exists on disk in specified list of folders ;A Download Started
p0043 0845 Disable all download link(s) of an archive, if the download folder contains a sub-folder with archive name ; A Download Started
p0041 0806 Delete downloaded files from user-specified folder, at user-specified interval ;Interval
p0041 0806 Delete downloaded files from user-specified folder, immediately after it's been downloaded ;A Download Stopped
p0048 0948 Remove finished links older than 'x' days ;JDownloader Started
p0048 0950 Move finished links to user-defined package ;A Download stopped
p0048 0954 Build/update downloaded links history and add comment to finished link ;JDownloader Started
p0048 0954 Disable links, if they exist in history ;A Download Started
p0048 0954 " Move links to to "Already Downloaded" package, if they exist in history" ;Packgizer Hook
Anti duplicates history Script (983)
p0045 0899 file exist function
p0049 0977 generate shortURL
p0051 1004 From selected links, move only the pending download links to packages by Host ;Downloadlist Contextmenu Button Pressed
Set last download destination as download folder for new links (serrato.js) ;Packagizer Hook

p0023 0451 Skip links from specified host when daily limit is reached (peymanch.js) ;Interval
p0026 0519 button to Show/Hide Single Child Packages ;Toolbar Button Pressed
p0030 0590 set download folder based on file size(595,596) ;A new link has been added
p0039 0764 check file downloaded size and conditional deletion, partial code
p0039 0775 check download link status
p0030 0592 Move archive files after extraction ; Archive Extraction Finished
p0036 0714 Move archive files after extraction to a timestamp based sub-folder ; Archive Extraction Finished
p0036 0717 incremente extracted filename if already exist
p0037 0721 Move archive files after extraction ;Archive Extraction Finished
p0043 0847 Move extracted files to base folder and remove empty sub-folders ;Archive Extraction Finished
Flatten Archives (Move extracted files from sub-folders to the main extraction folder) (ehorn.js) ; Archive Extraction Finished
p0041 0808 Get Archive Password (Downloads) ;DownloadList Contextmenu Button Pressed

p0001 0018 Replace 128kbit audio with 192kbit audio in 1080p youtube videos ;Package Finished
p0031 0612 put youtube videos into packages with channel name with packagizer, pseudo-code
p0036 0711 download new vids of youtube's channel everyday / crawl urls at user-specified interval ;Interval
p0037 0730 youyube channel name
p0040 0782 Add alternate url, if current url is offline ;Packagizer Hook
p0043 0843 Use youtube-dl if possible ;New Crawler Job
p0045 0884 Youtube Smart Subtitle Selector Script
Add Playlist Position to file name (LuckyLuciano.js) ;Downloadlist Contextmenu Button Pressed

operations based on time & speed
p0037 0735 set speed limit when a twitch channel is streaming ;Download Controller Started
p0020 0398 Pause downloads during extraction (Biohazmatz.js) ;Any Extraction Event
p0002 0024 Auto stop/restart downloads if the current average speed is below limit ;Interval
p0004 0060 Stop and restart slow links ;Interval
p0004 0066 Skip slow links and resume them after wait time ;Interval
p0015 0288 Pause and resume downloads if average speed is below target speed (Hartm.js) ;Interval
p0015 0300 Stop and restart all downloads if average speed is below target speed (Hartm.js) ;Interval
p0043 0857 Restart JD if download speed is 0 and JD is idle ;Interval
reset a download if the speed is slower than 2mb/s
stop downloads if speed is under 4000kb
p0008 0140 Time based download control ;Interval
p0019 0376 Format Date
p0022 0427 control the time at which a script will run
Force Download to start (with PLUGIN_DEFECT) ;Interval

p0001 0003 Extraction Scheduler (Taobaibai.js) ;Interval
p0018 0349 extract archives at scheduled time/after all downloads have finished (Taobaibai_2.js) ;Interval
Autocheck offline links from user-defined hosts and autostart download when they are online ;Interval
Auto Queue (create Queues that start downloads one after the other)
Auto Shedule (set individual download starting time)

p0002 0031 Request reconnect if the current average speed is below limit ;Interval
p0021 0418 Reconnect if all downloads have been running for at least one minute, and the average (global) download speed is below user specified speed (FlyAway.js) ;Interval
Disable Auto reconnect for user specified period, if downloads fail to start/resume (no bytes downloaded) after an IP change (aiimaim.js) ;Interval
Limit number of reconnects allowed during user defined duration (aiimaim_2.js) ;After a reconnect

notifications
p0002 0022 get notifications on smartphone via pushover ;Package finished
p0012 0235 Script for sending email after package finished (sendemail)
p0024 0469 Send email notification (NAS) (desperado591.js) ;A Download Stopped
p0024 0469 Send email notification (NAS) (desperado591_2.js) ;Archive Extracton Finished
p0029 0574 send packagename to batch file ;Package Finished
p0029 0577 send notification to service using postpage()

unskip
p0005 0083 Unskip 'account missing' links at user specified interval ;Interval
p0005 0093 Unskip 'account missing' and 'skipped - captcha input' links at user specified interval ;Interval
p0027 0526 Unskip links with unsolved captcha (dpinbsp.js) ;Interval
p0050 0985 Unskip and start downloading links with "Invalid download directory" message, if the destination folder is available ;A Download Controller Stopped
p0050 0987 Unskip and start downloading links with "Invalid download directory" message, if the destination folder is available ;a Download Controller Stopped

rss
p0005 0084 Check RSS Feeds (youtube ex) ;Interval
Run filebot on package finished (rednoah.js) ;Remote API Event fired
jdlbot 2 (rss feeds, discontinued > see flexget)

proxy
Automatic free proxy grabber feature (DE)
Automatic free proxy grabber feature (DE)
p0039 0773 LinkGrabber Proxy cycle ;New Crawler Job
p0050 0993 pending: blacklist a proxy via eventscripter when it causes a 403 geoblocking state

misc
p0001 0005 Generate md5 hash file in download folder ;A Download Stopped
p0001 0008 Hide/Unhide Infobar Window ;Traymenu Button Pressed
p0005 0091 set/remove stopmark
p0005 0093 Queue and credits check for 9kw.eu ;Interval
p0029 0575 get source code of webpage using postpage()
p0034 0661 Enable Tray Icon if it is disabled ;Interval
Ping-sensitive download threshold script (unaccessible)

p0041 0802 Enable Folder Watch on user specified dates ;Interval
p0041 0808 Add downloadlinks as speedtest ;Main Menu Button Pressed
p0041 0810 tips: general settings for file mirrordetectiondecision
p0042 0825 tips: output all filenames in a given package to the clipboard
p0043 0843 Scan for NZB urls and grab all data ;New Crawler Job
p0043 0843 Usenet password remover (passwordlist) ;Interval
p0043 0843 Use NZB data and grab all data ;Toolbar Button Pressed
p0043 0843 Scan for FTPs urls ;New Crawler Job
p0043 0851 Util Functions: setTimeout, confirm, prompt
Play sound when new links added (per job) (Tedolly.js) ;Remote API Event fired
When package is removed, do something with the extraction folders of each archive in that package (YenForYang.js);Package Finished

p0011 0217 Get a FilePath Object
p0037 0725 info on path, file names methods
p0039 0776 info on linkstatus
p0039 0773 export json file
usefull scripts from users (sound alert, full urls as link text, jdlbot2)

Packagizer rules:
p0015 0280 tips: you can copy/paste Settings-Advanced Settings, PackagizerSettings.rulelist, for eventscripter, EventScripter.scripts
p0023 0458 change file name
p0024 0472 moves the extracted files
p0031 0612 put videos into packages with youtube channel name
p0040 0797 set dl path for specific file or container


_______________________

last word:
- many things might be wrong, useless, feel free to point out/modify/suggest anything
- np++ can be usefull too highlight keywords if your are looking for something...
- unfortunately there seems to be many good scripts in non international forums but I don't understand anything!
- next step for whom volunteers : do the same for other script types and folderwatch!:dots:

Quote:
raw version : hxxps://textup.fr/385640HK
formatted : hxxps://textup.fr/385738jj
pwd are jd
_______________________

log
27.11.19.21.20.00 added some links;textup updated

Last edited by noone1; 27.11.2019 at 22:24. Reason: img don't show at all;code block shown in 1 line; both unlike the preview; smileys need spaces to convert but are trimed
Reply With Quote
  #1012  
Old 26.11.2019, 15:11
noone1
Guest
 
Posts: n/a
Default

then, I have few questions:

- I collected the triggering events too but I wonder if it's so relevant here since many can be transposed/adapted for other events if function exists (ex: use lgselection if linkgrabber contextual menu or dlselection for download list contextual menu - lost hours to find that:outch: )

Which lead me to my first question: every time someone ask for JD's js function, he is said to look in event scripter help but for example, these lgselection and dlselection functions are not referenced in there (only api methods), so where can we find them and the likes? or I didn't check enough

- As a noob and for basic use, I don't understand how to use the doc but I can roughtly understand a script when I see one, except I can't find other functions that could suits my needs; a basic intro/how to for beginners might help.

2nd question then, perhaps it is more on how to use the doc: where/how can we know which functions and which methods are available for a particular triggering event?
Reply With Quote
  #1013  
Old 27.11.2019, 10:58
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by noone1 View Post
... for example, these lgselection and dlselection functions are not referenced in there (only api methods), so where can we find them and the likes? ...
Select the trigger and scroll to the bottom of the help section in the script editor to view the object/properties returned by that trigger. For e.g. when the "Linkgrabber Contextmenu Button Pressed" trigger is selected, it will list/return the following:

Code:
// ========= Properties for the EventTrigger 'Linkgrabber Bottombar Button Pressed'  =========
var myLinkgrabberSelection = lgSelection;
var myString = shortCutString;
var myString = name;
var myString = icon;
var myString = menu;

Quote:
Originally Posted by noone1 View Post
... I can't find other functions that could suits my needs; a basic intro/how to for beginners might help ...
All available methods are listed in the help section of the script editor. Feel free to post your queries if you are not able to find a suitable method or trigger.

Quote:
Originally Posted by noone1 View Post
...where/how can we know which functions and which methods are available for a particular triggering event?
All Global as well as Object methods listed in the help window can be used in any script.
Reply With Quote
  #1014  
Old 27.11.2019, 13:58
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by d1332973 View Post
I would like to know if it is possible to reset and activate links automatically using EventScripter?

... my multihoster debriditalia often gives me the message that needs to be wait and then often "temporarily unavailable"...

... If I reset the link a few times (each time after the message came), it will start (sometimes) ...
Links can be reset via script, but it should be possible to identify such links accurately by querying the link properties.

Also, if you provide the logs, Jiaz might be able to look into and check if it is possible to adjust the plugins to fix it, in which case you will not need to use the scripts to reset them.

Quote:
Originally Posted by d1332973 View Post
... deactivate all links and then activate the next one as soon as the previous one is finished.
While possible, the download queue will not progress if a link is not "finished" for any reason.
Reply With Quote
  #1015  
Old 27.11.2019, 14:23
noone1
Guest
 
Posts: n/a
Default

THANK YOU for the enlightenment master:) that helps a lot to start with

I may have few other questions still in relation with sort of tuto/first step for beginners:

edit: points 1,2 &3 solved in one go! I feel I can breath now
very nice tips:
Quote:
Originally Posted by mgpai View Post
@Skeeve:
  • If you mean console, a ticket (#84516) is pending for that feature. For trouble shooting you can use alert() (can cause JD to hang if the events are triggered in quick sucession) or log to file using the log() method.
  • You can use external editor to create/view/modify the script. Save it as JS file locally and use the require() method in the JD editor to access/run it. E.g. require("/myFolder/myScript.js");. You can load any local/remote resource using this method.
Spoiler:

+ autocompletion
Quote:
Originally Posted by mgpai View Post
Quote:
Originally Posted by umax View Post
and I do not know whether it's a new feature or a bug
It is a feature of the editorKit (JSyntaxPane) used by JD (updated a few months back). While it is meant to make writing scripts easier, it is doing quite the opposite (at least for me).
Totally agree, way too constraining! plus java is really not comfortable as a gui (at least for me).:P
so, still not possible to disable this autocompletion/highlighting?

+ multimodal editor window

Execution testing is a big pain in the a.. Is it planned in a near future to make the js editor window 'independent'? ('multimodal/unattached') so we can debug scripts in a less painful way without having to exit/re-edit scripts on each and every slightest change... (plus sometimes I would need to minimize the underlying JD window)

+ syntax highlighting
I use custom theme (modified black_eye) for JD and unfortunately it interferes with syntactic colorization in the js editor that make the rendering quite unreadable. Not a big deal since I use np++, but it's a lot of copy/paste!

So, not (yet) possible to modify the highlighting rules independently of the existing LAF settings, or maybe more simply not apply these settings to the js editor pane?


+ make my life easier.
Little confused with all the script types and plugins available, I understand they are all designed for specific use which is thus intended to simplify things but on the other hand it's not very practicable to maintain different scripts in different locations for a same task.

Well, just to know: is there theoretically something js event scripts can't do that link filter or packagizer can?
(I mean with json parsing api and text file i/o it's virtually possible to manage most of the tasks from js only or is it a bad idea)

suggestion for farfaraway feature : kind of firefox's webdev common console;)

Last edited by noone1; 28.11.2019 at 16:38.
Reply With Quote
  #1016  
Old 29.11.2019, 13:19
Tom Tom is offline
JD Adviser
 
Join Date: Jun 2018
Posts: 104
Default

hello mgpai,

i would need an update of my script:

- if audio stream=ger and ac3, just copy the stream -c:a "copy"
Stream #0:1(ger): Audio: ac3,
now it converts it again to ac3

if 2 files have been created and first file progressed by ffmpeg, will second file also executed at the same time file by file? sometimes ffmpeg is extremely slow and cpu usage 90%


thx a lot,
tom

Last edited by Tom; 29.11.2019 at 13:36.
Reply With Quote
  #1017  
Old 29.11.2019, 14:59
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by Tom View Post
- if audio stream=ger and ac3, just copy the stream -c:a "copy"
Stream #0:1(ger): Audio: ac3,
now it converts it again to ac3
While I do not have an updated versions of your script, I think the script converts the file only if the audio is dts.
Code:
if (callSync(ffprobe, "-i", file).indexOf("Audio: dts") == -1) return;

Quote:
Originally Posted by Tom View Post
if 2 files have been created and first file progressed by ffmpeg, will second file also executed at the same time file by file?
I am not sure about it. You can check the list of running processes to see if multiple copies of ffmpeg are running simultaneously.
Reply With Quote
  #1018  
Old 29.11.2019, 16:00
Tom Tom is offline
JD Adviser
 
Join Date: Jun 2018
Posts: 104
Default

ok, i guess you should update the script so we have the same version :-)

with the old version it indeed doesnt convert ac3.
Attached Files
File Type: txt tom.txt (876 Bytes, 0 views)

Last edited by Tom; 29.11.2019 at 16:14.
Reply With Quote
  #1019  
Old 29.11.2019, 21:44
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by Tom View Post
ok, i guess you should update the script so we have the same version :-)

with the old version it indeed doesnt convert ac3.
Only mods can view/download attachments. Can you please paste the script content directly in the post? Or, you can get in touch with me in JD Chat tomorrow.
Reply With Quote
  #1020  
Old 06.12.2019, 12:52
SMS SMS is offline
Mega Loader
 
Join Date: Jun 2019
Posts: 64
Default

How can I rename files? I want to download domain.com/foo/bar.zip as bar_foo.zip rather than as bar.zip. The renaming should happen early. For example as a Packagizer Hook, or within the following call in a script I have:

Code:
myObject = callAPI("linkgrabberv2", "addLinks", {
    "links": theLink
});
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 10:21.
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.