JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #4721  
Old 30.12.2021, 21:08
djdiego71 djdiego71 is offline
Modem User
 
Join Date: Mar 2020
Posts: 2
Default

Quote:
Originally Posted by Jiaz View Post
@D68: long term known issue with broken pagination. JDownloader doesn't see the next pages. as a workaround you can scroll in browser and then mass select/copy to clipboard
Why "free youtube download" de Digital Wave can handle more than 100 videos in list? May be the team can take a look how they work.;)
This app is not good (only mp3 or mp4 can handle and poor security) i don't recommend it, but may be digging in their code can resolve this long term issue with more +100 items on playlist.

Last edited by djdiego71; 30.12.2021 at 22:23. Reason: add info
Reply With Quote
  #4722  
Old 04.01.2022, 15:37
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,342
Default

@djdiego71: it's not the missing *how* but missing enough free time to work on this topic
__________________
JD-Dev & Server-Admin
Reply With Quote
  #4723  
Old 05.01.2022, 06:38
djdiego71 djdiego71 is offline
Modem User
 
Join Date: Mar 2020
Posts: 2
Default

Quote:
Originally Posted by Jiaz View Post
@djdiego71: it's not the missing *how* but missing enough free time to work on this topic
Ok. I hope sometime in the future this issue can solve it.
Reply With Quote
  #4724  
Old 11.01.2022, 12:55
jeffr jeffr is offline
Vacuum Cleaner
 
Join Date: Dec 2020
Posts: 17
Default

At this point, we are entitled to an explanation. "Hopefully this will be a Christmas Present" or whatever someone said OVER a year ago. This is Google levels of bug fixing here. We've offered to give donations. What is the excuse at this point? You deny donations, so what's the reason? An entire year... yes, this is on the level of Google still selling Chromecasts that can't play 1080p60 video without 100 percent reproducible audio stutter. If you don't want money, what do you want? It's time for an explanation to be given to loyal Jdownloader users. Not going to lie, I've been waiting too patiently for over a year now. I'm starting to lose faith in this project. At this rate, I'll be a Java dev myself before this gets fixed (yes, I'm actually taking Java classes). I'm not trying to be pushy, I can envision some niche explanation for this absurd turnaround time, but at LEAST, tell us what's actually going on. "I don't have time" doesn't carry the weight it used to A YEAR AGO. We are offering to PAY you. What's going on here? CROWDFUND THE THING!

Last edited by jeffr; 11.01.2022 at 13:01.
Reply With Quote
  #4725  
Old 14.01.2022, 22:57
FaceEater FaceEater is offline
Junior Loader
 
Join Date: Sep 2018
Posts: 10
Default Unable to log in youtube.com account

I can log into gdrive but no into youtube.
(I mention gdrive 'cause it's the same account and same process)
I go into drive.google.com, do the cookie copy, go to jd and paste the cookie data, get "account is OK"
I go into youtube.com, do the cookie copy, go to jd and paste the cookie data, get "Unknow error"

Tryed deleting cookies and log in again (in the browser) and using other browsers (Firefox and Brave).

14.01.22 16.31.13 <--> 14.01.22 17.57.46 jdlog://3273925302851/
Reply With Quote
  #4726  
Old 17.01.2022, 13:39
TheRenegadist TheRenegadist is offline
DSL Light User
 
Join Date: Jan 2022
Posts: 32
Default

Quote:
Originally Posted by mgpai View Post
Workaround using eventscripter, to get 100+ items from playlist.

Script:
Code:
/*
    Get all YT playlist items (Requires youtube-dl)
    Trigger: Linkgrabber contextmenu button pressed
    Customize linkgrabber context menu > Add a new "Eventscripter Trigger" button > Rename it to "Get all playlist items"
*/

var youtube_dl = "d:/apps/youtube-dl/youtube-dl.exe"; // <- set path to yotuube-dl

if (name == "Get all playlist items") {
    var link, playlistId, playlist, title, url, urls = [];

    try {
        link = lgSelection.contextLink;
        playlistId = link.getProperty("YT_PLAYLIST_ID");

        if (!getProperty(playlistId, false)) {
            try {
                setProperty(playlistId, true, false);
                playlist = callSync(youtube_dl, "-J", "--flat-playlist", playlistId);
                playlist = JSON.parse(playlist);
                len = playlist.entries.length;
                title = playlist.title;

                playlist.entries.forEach(function(entry, index) {
                    url = "https" + "://www.youtube.com/watch?v=";
                    url += entry.id;
                    url += "&playlistTitle=" + title;
                    url += "&playlistPosition=" + getIndex(index, len);

                    urls.push(url);
                })

                callAPI("linkgrabberv2", "addLinks", {
                    links: urls.join("<br>")
                })
            } finally {
                setProperty(playlistId, null, false);
            };
        }
    } catch (e) {};
}

function getIndex(index, len) {
    var len = "" + len;
    var index = "" + (index + 1);

    while (index.length < len.length) {
        index = "0" + index;
    }

    return index;
}

Packagizer rule to set playlist title as packagename and append playlist position to filename (Optional):
Code:
If > sourceurls(s) > contains : &playlistTitle=*&playlistPosition=*

then set > Package Name: <jd:source:1>
then set > Filename: <jd:source:2> <jd:orgfilename>

To get all remaining links of a playlist, in the linkgrabber, select existing link belonging to that playlist and run the scirpt by clicking "Get all playlist items" in the context menu.
Ran into the same 100+ playlist issue and attempted to use this script but still can't get it to work. Below I added the script replacing the path to my yt-dlp path, added a new button to the context menu, but pressing it does nothing. Any help in figuring out why this still isn't working?





Reply With Quote
  #4727  
Old 17.01.2022, 18:49
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,140
Default

Merged YT threads.

@FaceEater
Please enable debug mode and post a new log.
Did you visit the YT website (not google/GDrive!) before exporting your cookies?
Please also try chrome for cookie export.

-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
  #4728  
Old 18.01.2022, 02:45
TheRenegadist TheRenegadist is offline
DSL Light User
 
Join Date: Jan 2022
Posts: 32
Default

Nevermind, I found a workaround that Jiaz mentioned but the way it was described was a bit confusing so I'll re-iterate.

To bypass the 100 video playlist limit if you're backing up a whole channel go to their Videos/Uploads tab, scroll all the way down, and then at the bottom start highlighting the first video and just drag up until they're all highlighted (Don't worry if the thumbnail or title is highlisted too) then paste it in JDownloader and filter out everything but the actual video files. Keep in mind, you can't do this in the video itself with the playlist on the right, you have to visit the actual page that shows the entire channel's videos.

For playlists it's the same process except you have to go to the actual URL for the playlist that shows the big thumbnail/description on the left and the videos on the right. Go to the bottom and do the same highlight process to get the entire playlist. It works flawlessly with no scripts required.
Reply With Quote
  #4729  
Old 20.01.2022, 23:13
MisterTheLoaf MisterTheLoaf is offline
Modem User
 
Join Date: Jan 2022
Posts: 2
Default Downloading YouTube Videos - Getting Audio Only

99% of the time, JD2 works perfectly fine for downloading YouTube videos. But every once in a while I will encounter a video like this one:

**External links are only visible to Support Staff****External links are only visible to Support Staff**

The video plays OK in my browser. But if I copy the URL into JD2, it will only allow me to download the audio, not the video.

What is going on?
Reply With Quote
  #4730  
Old 21.01.2022, 14:13
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,140
Default

Merged YT threads.

@MisterTheLoaf
Works fine for me.
Your video is only available in 480p.
Did you maybe disable this resolution in the youtube plugin settings?

-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
  #4731  
Old 23.01.2022, 05:24
MisterTheLoaf MisterTheLoaf is offline
Modem User
 
Join Date: Jan 2022
Posts: 2
Default

Quote:
Originally Posted by pspzockerscene View Post
Merged YT threads.

@MisterTheLoaf
Works fine for me.
Your video is only available in 480p.
Did you maybe disable this resolution in the youtube plugin settings?

-psp-
:outch: OK. You're right. I completely forgot that I disabled resolutions lower than 720p.

Thanks!!
Reply With Quote
  #4732  
Old 26.01.2022, 05:47
TheRenegadist TheRenegadist is offline
DSL Light User
 
Join Date: Jan 2022
Posts: 32
Default

Found a channel with 4,000+ videos that breaks the LinkGrabber after trying to use the 100 video bypass, hope we can get this fixed soon because I'd really like to preserve this entire channel as soon as possible.

**External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #4733  
Old 26.01.2022, 13:19
heinerklingle heinerklingle is offline
I will play nice!
 
Join Date: Jan 2022
Posts: 3
Default

Hi,

Is anyone else having trouble downloading videos with resolution above 720p from YouTube?

I've been facing this issue since a few months back, without having changed any settings in jDowloader.

I have already checked the "YouTube Plugin" settings and every kind of "Image/Video Resolution" is checked.

Any thoughts?

Thank you!
Reply With Quote
  #4734  
Old 26.01.2022, 13:45
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,140
Default

@heinerklingle
Please post example URLs and a log:

Please post your log-ID here | bitte poste deine Log-ID hier.

-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
  #4735  
Old 26.01.2022, 14:24
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,140
Default

Quote:
Originally Posted by TheRenegadist View Post
Found a channel with 4,000+ videos that breaks the LinkGrabber after trying to use the 100 video bypass, hope we can get this fixed soon because I'd really like to preserve this entire channel as soon as possible.
Known issue.
Please read the past 2-3 pages in this thread.

-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
  #4736  
Old 26.01.2022, 21:42
Haidon Haidon is offline
Baby Loader
 
Join Date: Oct 2021
Posts: 6
Default

I have an issue with three different youtube links. all three give a "plugin outdated" error, and leave a 'DASHAUDIO' and 'DASHVIDEO' file in my downloads folder. From reading previous posts in this thread, it seems that it is an FFMPEG failure. Here are the links:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**

And here is my log (only used the first link for the error):
26.01.22 12.56.04 <--> 26.01.22 13.02.33 jdlog://5634925302851/
Reply With Quote
  #4737  
Old 27.01.2022, 14:35
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,140
Default

Please wait for other developers to check on this issue.
__________________
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
  #4738  
Old 28.01.2022, 19:13
heinerklingle heinerklingle is offline
I will play nice!
 
Join Date: Jan 2022
Posts: 3
Default

Quote:
Originally Posted by pspzockerscene View Post
@heinerklingle
Please post example URLs and a log:

Please post **External links are only visible to Support Staff**... | bitte poste **External links are only visible to Support Staff**....

-psp-

@pspzockerscene,

My Log ID is:
28.01.22 18.01.03 <--> 28.01.22 18.08.11 jdlog://7544925302851/

Example URLs:
  • **External links are only visible to Support Staff****External links are only visible to Support Staff**
    (Resolution up to 1080p)
  • **External links are only visible to Support Staff****External links are only visible to Support Staff**
    (Resolution up to 2160p)

Thank you for your support.
Reply With Quote
  #4739  
Old 29.01.2022, 15:59
monoricky monoricky is offline
Modem User
 
Join Date: Jan 2022
Posts: 1
Default Limitación capturador enlaces

Hola

Estoy intentando descargar varios videos de Youtube y cuando pongo una lista se limita a 500 archivos y no puedo descargar el listado completo, ya que cada archivo de Youtube tiene asociado varios archivos (txt, audio, ..) además del propio video. ¿Cómo se puede ampliar de esos 500 archivos?

Gracias!!!
Reply With Quote
  #4740  
Old 31.01.2022, 17:12
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,140
Default

Merged YT threads.

@monoricky
Known issue.
Please read the last few pages in this thread.

@heinerklingle
Please wait for other developers to check your logs.

-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?

Last edited by pspzockerscene; 31.01.2022 at 17:23.
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:49.
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.