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,290
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: 70,922
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: 70,922
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: 70,922
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: 70,922
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: 70,922
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: 70,922
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
  #4741  
Old 31.01.2022, 18:55
Evox Evox is offline
Baby Loader
 
Join Date: Dec 2020
Posts: 6
Default

Quote:
Originally Posted by jeffr View Post
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!
i totally agree with you i have waited for this to be fixed for a year i was legit going to donate at this point to put this issue at the top of the devs list.
Reply With Quote
  #4742  
Old 02.02.2022, 12:41
TheRenegadist TheRenegadist is offline
DSL Light User
 
Join Date: Jan 2022
Posts: 32
Default

Is it a known issue of the LinkGrabber timing out after trying to gather the links for a 500+ channel or playlist? I've been trying to back up a couple channels that have about 1k videos but even though it will read and start crawling for links it usually times out or stops after close to the 500 mark. Is this a setting that can be changed or is this an issue too?

I second that too, if we are able to donate to put issues higher up on the priority list I'd do the same. Fixing the LinkGrabber not grabbing more than a hundred videos and fixing it to where it can read 1,000+ playlists/channels would be nice considering I run an archive to back up YT videos and channels. Can a dev confirm that's the case, that donating can put these issues higher up on the list?
Reply With Quote
  #4743  
Old 02.02.2022, 16:53
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@TheRenegadist
Yes it is a known issue with our yt plugin.
__________________
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
  #4744  
Old 06.02.2022, 14:31
FlyAway FlyAway is offline
JD Beta
 
Join Date: Feb 2013
Posts: 51
Default pleaseeeeeee...download translate subtitle?

HI

Is possible, for example whti this video

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

download the video and the translation in italian language (the default is in english).

Thanks! ^_^
Reply With Quote
  #4745  
Old 06.02.2022, 14:33
aa0mia0aa aa0mia0aa is offline
Vacuum Cleaner
 
Join Date: Jul 2019
Posts: 15
Default

I get: ffmpeg missing, if i wan´t to download a youtube-vid. I can click on install an it tells me that i am already using the most actual version. And after that the messsage occours again, if i try to download a youtube-vid.

Last edited by aa0mia0aa; 06.02.2022 at 14:35.
Reply With Quote
  #4746  
Old 07.02.2022, 16:53
Statter Statter is offline
JD Legend
 
Join Date: Aug 2010
Posts: 541
Default

Hi I have noticed that in some youtube dls it tends to convert the audio to OGG audio files. Is there a way to maybe select through settings somehow to convert such as ogg to either mp3 or m4a audio files when converting.

I ask this as often I have to use another app to convert the ogg file to usually a mp3 audio file.
__________________
OS X !0.6.8 Mac Pro Intel (Workhorse)
OS X 10.13.6 MBP Intel 17" (Secondary)
OS X MBP Intel 15" Dual boot 10.6.8 and 10.13.6 (as needed)
Reply With Quote
  #4747  
Old 08.02.2022, 15:19
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@aa0mia0aa
Please read the following help article:
https://support.jdownloader.org/Know...r-installation

@Statter
Use an EventScripter script for this and/or edit the FFmpeg parameters you can find under Settings -> Advanced Settings -> youtube so that they do the conversion you'd like to have.

-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
  #4748  
Old 08.02.2022, 16:11
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@FlyAway
Merged YT threads.
Ticket regarding your request:


-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
  #4749  
Old 08.02.2022, 20:18
Statter Statter is offline
JD Legend
 
Join Date: Aug 2010
Posts: 541
Default

Quote:
Originally Posted by pspzockerscene View Post

@Statter
Use an EventScripter script for this and/or edit the FFmpeg parameters you can find under Settings -> Advanced Settings -> youtube so that they do the conversion you'd like to have.

-psp-
What would I change in advanced settings exactly?

Looking at both the ffmpg and youtube advanced settings, I am trying to understand what and where I would change something to have ogg auto converted to mp3 or m4a or am I missing something else in understanding such?

I have yet to install event scripter as I have never really needed it for anything todate.
__________________
OS X !0.6.8 Mac Pro Intel (Workhorse)
OS X 10.13.6 MBP Intel 17" (Secondary)
OS X MBP Intel 15" Dual boot 10.6.8 and 10.13.6 (as needed)
Reply With Quote
  #4750  
Old 10.02.2022, 15:32
aa0mia0aa aa0mia0aa is offline
Vacuum Cleaner
 
Join Date: Jul 2019
Posts: 15
Thumbs up

Quote:
Originally Posted by pspzockerscene View Post
@aa0mia0aa
Please read the following help article:
**External links are only visible to Support Staff**...
thank you that worked!
Reply With Quote
  #4751  
Old 14.02.2022, 03:47
TheRenegadist TheRenegadist is offline
DSL Light User
 
Join Date: Jan 2022
Posts: 32
Default

Hey pspzocker, can you confirm if someone donates they can bump a feature or fix to the top of the priority list or if that's incorrect?
Reply With Quote
  #4752  
Old 14.02.2022, 03:52
badbob001 badbob001 is offline
Wind Gust
 
Join Date: Apr 2009
Posts: 44
Default

Please include VTT subtitles as a variant option so to preserve the subtitle formatting.
eg: **External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #4753  
Old 15.02.2022, 17:02
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

Quote:
Originally Posted by TheRenegadist View Post
Hey pspzocker, can you confirm if someone donates they can bump a feature or fix to the top of the priority list or if that's incorrect?
Yes but there are no gurantees that this will "work".

We're a small team and our todo list is always full
Please wait for a reply of other team-members regarding this topic.

I'm not working on our YT plugins at this moment.

-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
  #4754  
Old 26.02.2022, 03:26
GeorgeCostanza GeorgeCostanza is offline
Vacuum Cleaner
 
Join Date: Jun 2017
Posts: 19
Arrow Linkgrabber no longer recognizing already downloaded YouTube videos

1. Add YouTube video to linkgrabber via clipboard monitoring

2. Download

3. Restart JD

4. Try to add same YouTube video to linkgrabber via clipboad monitoring again

Result:
JDownloader will add it to the linkgrabber, but not mark it as already downloaded

i've disabled the dupe manager, restarted JD, then re-enabled the dupe manager and restarted JD multiple times

Last edited by GeorgeCostanza; 26.02.2022 at 10:04.
Reply With Quote
  #4755  
Old 26.02.2022, 06:21
FlashSpazzbo FlashSpazzbo is offline
Baby Loader
 
Join Date: Feb 2022
Location: NA
Posts: 5
Default LinkGrabber not finding YouTube links "Video Unavailable"

As title says, LinkGrabber isn't getting YouTube links and says the "Video Unavailable" even though I can see the video in my browser. Existing links in the Downloader won't DL and throw the same "Video Unavailable" error

EDIT: Log ID: 26.02.22 11.52.17 <--> 26.02.22 11.51.20 jdlog://2795925302851/

Last edited by FlashSpazzbo; 26.02.2022 at 21:54. Reason: Added Debug Log ID
Reply With Quote
  #4756  
Old 26.02.2022, 20:46
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

Merged YT threads.

@GeorgeCostanza and FlashSpazzbo
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
  #4757  
Old 26.02.2022, 21:55
FlashSpazzbo FlashSpazzbo is offline
Baby Loader
 
Join Date: Feb 2022
Location: NA
Posts: 5
Default

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

@GeorgeCostanza and FlashSpazzbo
Please post **External links are only visible to Support Staff**... | bitte poste **External links are only visible to Support Staff**....

-psp-
Added Log ID to my OP, but also here: 26.02.22 11.52.17 <--> 26.02.22 11.51.20 jdlog://2795925302851/

Cheers
Reply With Quote
  #4758  
Old 27.02.2022, 15:27
Perene Perene is offline
JD Adviser
 
Join Date: Jun 2019
Posts: 114
Default

I can't download subtitles from YT videos. Tried this one yesterday and now, no luck.

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

This is the 1st time ever this happened. And I don't think this case fits what was said below, they are probably normal subtitles *:

https://board.jdownloader.org/showthread.php?t=89882

* In my example they were not sent by the uploader. Youtube automatically generated for the content.

JDW says "not found" when we try to download it. Only the video is being recognized.

Important: this site can download this subtitle:

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

Which further proves this is a bug.

Last edited by Perene; 27.02.2022 at 15:32.
Reply With Quote
  #4759  
Old 27.02.2022, 19:44
JDmurphy JDmurphy is offline
Fibre Channel User
 
Join Date: Mar 2012
Posts: 121
Default

Quote:
Originally Posted by GeorgeCostanza View Post
Linkgrabber no longer recognizing already downloaded YouTube videos
came here to report the same bug

also identical links in the Downloads tab don't get recognized as already downloaded = do not get highlighted red anymore in the LinkGrabber tab
edit: sorry that's exactly the case that was reported already

what I meant to say:
not yet downloaded links still in the LinkGrabber tab also don't get recognized as already present

which causes quite a duplicate link mess and lots of duplicate downloads

is it being worked on?

Last edited by JDmurphy; 27.02.2022 at 19:48.
Reply With Quote
  #4760  
Old 28.02.2022, 15:44
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@Perene
Your example link leads to a video without subtitles: It only has auto-generated subtitles available

@JDmurphy
Thanks we'll check this soon.

-psp-
EDIT

@JDmurphy

Please post a log and example URLs.

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

@GeorgeCostanza

Can you watch that video without account?
Please open it in a private window and check this.
__________________
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; 28.02.2022 at 18:28.
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 03:24.
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.