#821
|
||||
|
||||
![]()
@manforce: you would need a 3rd party tool that can send mails and call it via eventscripter and specify the file to send. eventscripter then waits for download to finish and then call the 3rd party tool to send the mail
__________________
JD-Dev & Server-Admin |
#822
|
|||
|
|||
![]()
Ok, thanks! Which one do you suggest to use for that? Thanks again!
|
#823
|
||||
|
||||
![]()
what os are you using? I would ask google/search engine of your choice for easy to use commandline tool to send mails
__________________
JD-Dev & Server-Admin |
#824
|
|||
|
|||
![]()
Hi, I'd like a way to output all filenames in a given package to either the clipboard or a text file. I've studied the thread, and it shows ways to export download URLs only (I believe) and disable files with duplicate filenames relative to a text file/actual disk files, and I'll probably experiment with those in the future.
In my case though, copying the same source URL again after some time (not always) creates a whole new package with all the same files (they don't show up as dupes), plus all the changes I'm oblivious about, and I've already done that. I'm wasting so much time right now just trying to find out which files are new, renamed, or even removed out of hundreds and hundreds in there, I believe my best bet right now is copying the 2 different lists (original + new) to Notepad++ and handle it from there. I'm still experimenting with the Packagizer, Event Filter and Advanced Settings, but right now they aren't gonna help, so a file list is the only thing that's gonna untangle this web. Thanks for any help! Last edited by Doughee; 02.07.2019 at 16:19. |
#825
|
|||
|
|||
![]() Quote:
For e.g. To copy just the filenames of the selected links/packages to clipboard, set "Pattern for the links" to "{name}". |
#826
|
|||
|
|||
![]()
Thanks, it worked! Shows how much I don't know about JD2 posting in this thread.
|
#827
|
||||
|
||||
![]()
@Doughee: shows that JDownloader offers sooo much more *under the hood*
![]()
__________________
JD-Dev & Server-Admin |
#828
|
|||
|
|||
![]()
Hi guys!
The checkbox gets removed automatic if I click "OK" on error message. ![]() Quote:
![]() Example: 50 *.dlc files get loaded into LinkGrabber total download size ~4TB I need to correct the error message: It get shown everytime! The files do not get deleted so the fill up my hard drive |
#829
|
||||
|
||||
![]()
broken scripts are auto deactivated
__________________
JD-Dev & Server-Admin |
#830
|
||||
|
||||
![]()
can you show the script for *download stopped* event?
__________________
JD-Dev & Server-Admin |
#831
|
|||
|
|||
![]() Quote:
If you still get errors, contact me in JD Chat. |
#832
|
|||
|
|||
![]()
Win7 or 10.. ok, I try to search, then maybe I'd need help just to write the script correctly..:)
|
#833
|
||||
|
||||
![]()
@manforce: sure, once you've found a tool, we will try to help with the script
![]()
__________________
JD-Dev & Server-Admin |
#834
|
|||
|
|||
![]()
Hi everyone,
I have been using Convert AAC/M4A/OGG files to MP3 script by mgpai for a while, and it has been great. I mainly use it to download newscast and listen them while in the gym/driving. Is it possible to speed up the audio by adding ATEMPO settings? I spent some time trying to add it, but can't get it to work. Can someone help? // Convert aac/m4a/ogg files to mp3. // Trigger required: "A Download Stopped". // Requires ffmpeg/ffprobe. Uses JD ffmpeg/ffprobe settings if available. // Overwrites destination file (mp3) if it already exists. if (link.isFinished()) { var fileName = link.name.replace(/(.+)(\..+$)/, "$1"); var fileType = link.name.replace(/(.+)(\..+$)/, "$2"); var sourceFile = link.getDownloadPath(); var audioFile = /\.(aac|m4a|ogg)$/.test(sourceFile); if (audioFile) { var downloadFolder = package.getDownloadFolder(); var destFile = downloadFolder + "/" + fileName + ".mp3"; var ffmpeg = callAPI("config", "get", "org.jdownloader.controlling.ffmpeg.FFmpegSetup", null, "binarypath"); var ffprobe = callAPI("config", "get", "org.jdownloader.controlling.ffmpeg.FFmpegSetup", null, "binarypathprobe"); var data = JSON.parse(callSync(ffprobe, "-v", "quiet", "-print_format", "json", "-show_streams", "-show_format", sourceFile)); var streamsBitrate = data.streams[0].bit_rate ? data.streams[0].bit_rate : 0; var formatBitrate = data.format.bit_rate ? data.format.bit_rate : 0; var bitrate = Math.max(streamsBitrate, formatBitrate) / 1000; var deleteSourceFile = true; // Set this to true to delete source file after conversion. if (bitrate > 0) { callSync(ffmpeg, "-y", "-i", sourceFile, "-b:a", bitrate + "k", atempo="1.5", destFile); if (deleteSourceFile && getPath(destFile).exists()) deleteFile(sourceFile, false); } } } |
#835
|
||||
|
||||
![]()
try
Quote:
__________________
JD-Dev & Server-Admin |
#836
|
|||
|
|||
![]()
Low-priority question:
How to do the following? If download of zip file is about to start but directory with the same name already exists, don't download (for example disable) that zip file. |
#837
|
|||
|
|||
![]()
Which directory should be compared? Download directory or extraction directory? Please give a working example.
|
#838
|
|||
|
|||
![]()
Dumb question, but how do I utilize this feature in my scenario? Would I disable "download duplicates" while this setting is on? It's still downloading duplicates despite this on..
|
#839
|
||||
|
||||
![]()
@dankmemer: this option tells JDownloader to compare file sizes as well. so different filesize -> different file
__________________
JD-Dev & Server-Admin |
#840
|
|||
|
|||
![]() Quote:
Quote:
|
![]() |
Thread Tools | |
Display Modes | |
|
|