JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #21  
Old 25.10.2019, 19:12
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

I made a test I download a video youtube he has downloaded in ogg acc mp4 and a message says this:
the remote API : config/yet. Do you want to allow this ? if you are not sur please check your script
Reply With Quote
  #22  
Old 25.10.2019, 19:24
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

add new line with
Quote:
disablePermissionChecks();
before if (link...
__________________
JD-Dev & Server-Admin
Reply With Quote
  #23  
Old 25.10.2019, 19:34
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

it's good it works thank you for everything
Reply With Quote
  #24  
Old 25.10.2019, 19:35
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

Thanks for the feedback and you're welcome
__________________
JD-Dev & Server-Admin
Reply With Quote
  #25  
Old 25.10.2019, 19:59
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

I forget what file format is it converted to is it possible to sort in linkgrabber?
to only have the file to convert and not all other formats
after I will not begrudge you
Reply With Quote
  #26  
Old 25.10.2019, 20:10
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by smokiemamour View Post
I forget what file format is it converted to is it possible to sort in linkgrabber?
to only have the file to convert and not all other formats
after I will not begrudge you
Any file downloaded in 'aac', 'm4a' or 'ogg' format will be automatically converted to 'mp3' file. If you are looking for something different, feel free to ask.
Reply With Quote
  #27  
Old 25.10.2019, 20:24
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

when i copy the link youtube it goes into linkgrabber, it offers several formats how to automatically remove those that I do not need as jpg webm mp4 txt
Reply With Quote
  #28  
Old 25.10.2019, 20:27
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

See Settings-Plugins-search for youtube and scroll down, there you can deselect unwanted groups
__________________
JD-Dev & Server-Admin
Reply With Quote
  #29  
Old 25.10.2019, 20:28
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by smokiemamour View Post
... how to automatically remove those that I do not need as jpg webm mp4 txt
For youtube, you can customize it in: Settings > Plugins > youtube.com
Reply With Quote
  #30  
Old 25.10.2019, 21:04
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

thanks for all that works fine
Reply With Quote
  #31  
Old 29.10.2019, 10:24
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

hello how can i know that the create button works?
Jdownloader gives me an error message:
Syntaxerror: unterminated object literal (#17)

Can you help me?
Thank you
Reply With Quote
  #32  
Old 29.10.2019, 11:46
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

Can you please provide the script? That error looks like error in script.
__________________
JD-Dev & Server-Admin
Reply With Quote
  #33  
Old 29.10.2019, 11:57
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

Code:
// 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 = false; // Set this to true to delete source file after conversion.

        if (bitrate > 0) {
            callSync(ffmpeg, "-y", "-i", sourceFile, "-b:a", bitrate + "k", destFile);
            if (deleteSourceFile && getPath(destFile).exists()) deleteFile(sourceFile, false);
        }
    }
}
disablePermissionChecks();

Last edited by raztoki; 03.12.2019 at 13:06.
Reply With Quote
  #34  
Old 29.10.2019, 12:31
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

does this happen every time or randomly?
__________________
JD-Dev & Server-Admin
Reply With Quote
  #35  
Old 29.10.2019, 12:33
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

every time
Reply With Quote
  #36  
Old 29.10.2019, 12:33
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

Sorry I made a mistake randomly
Reply With Quote
  #37  
Old 29.10.2019, 12:53
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

Thanks for the feedback! Then I already have an idea where this happens
__________________
JD-Dev & Server-Admin
Reply With Quote
  #38  
Old 29.10.2019, 13:00
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

what should i do click here?
it appears in larger I do not understand.
little extra question: when I download youtebe songs in the file explorer it puts me a lot of sub folders is it possible that jdownloader put the file in bulk
Reply With Quote
  #39  
Old 29.10.2019, 13:06
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

You've got to wait till I found/fixed that bug causing the issue you're reported
To disable the subfolders, see https://support.jdownloader.org/Know...ackage-feature
Please know that changing this will only affect new added links!
__________________
JD-Dev & Server-Admin
Reply With Quote
  #40  
Old 06.11.2019, 15:14
smokiemamour smokiemamour is offline
JD Beta
 
Join Date: Sep 2019
Posts: 55
Default

hello, do you have news for the script?
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 11:13.
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.