#4601
|
|||
|
|||
please finally fix the issue that jd only grabs 100 videos of a youtube channel/playlist.
btw the workaround in windows works without additional plugins. 1. open the playlist/videotab completely. 2. mark all videos, best without touching other stuff of the webpage. 3. instead of rightclick + copy you hit ctrl + c .(which should actually be the same, but whatever.) 4. click process playlist and jd adds all the videos. (btw although the playlist has only 455 videos jd says it's analysing 1200+ links. lol.) is there an easier way to download 18+ videos than this cookie odyssey coming? Last edited by B1gD4ddy; 21.09.2021 at 01:11. |
#4602
|
||||
|
||||
Quote:
What's so hard about our cookie login method? -psp-
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
#4603
|
|||
|
|||
Quote:
Could it be my Chrome version..Cant go any newer since this is a old computer.. How come with this issue.. This feature should be integrated into JD... |
#4604
|
|||
|
|||
Quote:
Just Google "Online Youtube downloaders" you will find the links there since I dont want to break any forum rules here in posting the link here.. PS .. Looks like I've answered my own question .LOL... I have a feeling that my Chrome version is too old to run the cookie login plugin that the Dev team has here. .I tried FireFox and it said that I need to newer version FireFox to run the cookie login plugin.. Meantime JD2 is running great except for some MKV VP9 videos from Youtube that get by the linkgrabber. Even with all the boxes are deselected for MKV file types in the Youtube plugin section in the JD2 settings as said are turned off for that file type and some sneak by.. Log 20.09.21 18.10.34 <--> 21.09.21 19.50.25 jdlog://4618825302851/ Last edited by wppcproductions; 22.09.2021 at 02:51. Reason: Add log info................... |
#4605
|
||||
|
||||
Quote:
__________________
JD-Dev & Server-Admin Last edited by Jiaz; 22.09.2021 at 11:49. |
#4606
|
||||
|
||||
I'm sorry but even if we will add such feature in future into JDownloader Browser extension, most likely your browser will still be too old for the new extension to work
__________________
JD-Dev & Server-Admin |
#4607
|
|||
|
|||
Quote:
Hi Jiaz Heres the video that was downloaded as a MKV.. **External links are only visible to Support Staff****External links are only visible to Support Staff** This file came in as a MKV so I went back and redownload it through JD2 and its a MP4 as I want.... Reminder.All the MKV files related stuff in the YT plugin section has been de selected ' unchecked'.. Log. 22.09.21 22.09.13 <--> 22.09.21 22.10.54 jdlog://8028825302851/ Thanks in advance... |
#4608
|
|||
|
|||
Quote:
Thanks for your time.... |
#4609
|
||||
|
||||
So it worked as expected when you retried? Can you still reproduce the issue?
__________________
JD-Dev & Server-Admin |
#4610
|
|||
|
|||
Cannot download age-restricted YouTube videos
Whenever a video is "age restricted" on YouTube, JDownloader gives me a red error message. My YouTube account is registered as an adult, and I am able to watch the videos, but JDownloader won't access them.
|
#4611
|
|||
|
|||
Coming up on an entire year with YouTube Linkgrabber Issues
Hello,
I recently had to archive some things from YouTube, and I was frankly shocked to discover that nearly a year later, the Linkgrabber STILL will stop around 99 packages no matter what. Nearly a year of "it's in the process of being fixed". Many people use this program just for archiving YouTube videos. My offer still stands, I would be willing to contribute to a donation fund to get this going. "Maybe as a Christmas present , it will be fixed". -- 2020 paraphrased quote from one of the mods. At the very least, I do feel as if we are entitled to a detailed update on why this has taken so long. I searched for "YouTube" in this forum and got "sorry no results" so at least I tried, I know there are probably other posts about this. Again, no hate or ill will towards any of the hard working devs. But no matter what kind of a project you run, having such a serious bug exist for so long isn't ideal for optics, I'm sure you can agree. Again, I'm potentially willing to pay money at this point. |
#4612
|
||||
|
||||
@Kurt L:
You have to add your yt account to JDownloader via cookie method, see https://support.jdownloader.org/Know...n-instructions
__________________
JD-Dev & Server-Admin |
#4613
|
||||
|
||||
@jeffr: I'm working on it but I also got other work/support on my hands. I'll try to finally finish the work this year
__________________
JD-Dev & Server-Admin |
#4614
|
|||
|
|||
Hello. I have tried to figure this out while searching for the relevant info, but somehow I can't get my JD to download only audiofiles on Youtube in mp3. I tried Event Scripter, using MGPai's script (https://board.jdownloader.org/showpo...61&postcount=1) but nothing has happened. I'm probably doing something wrong. Can someone help me in this regard?
Also, I thought it would be great if JD had a quick menu to turn this feature on. Thank you very much for your help in advance. kimkayoung |
#4615
|
|||
|
|||
Preferred codec?
Hello. AV1 is provided for the video, but H.264 is detected first. If I disable all codecs except AV1 in YT plugin, I can download AV1 right now. I don't want to disable the all codecs because this way I won't be able to download videos that don't have AV1. Thanks for the advice! |
#4616
|
|||
|
|||
Code:
Settings > Advanced Settings > Youtube.qualitysortidentifierordervideocodec |
#4617
|
|||
|
|||
Quote:
Contact me in JD Chat if it still doesn't work: Code:
kiwiirc.com/nextclient/irc.libera.chat/#jdownloader |
#4618
|
||||
|
||||
@mgpai: thanks again for your time to help
__________________
JD-Dev & Server-Admin |
#4619
|
|||
|
|||
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. |
#4620
|
|||
|
|||
Youtube Playlist 100 Video Limit
Hey Leute
Ja ja, ich weiß. Dieses Thema kam hier schon sehr oft auf und ich hab die Beiträge und deren Beantwortungen auch alle gelesen. Diese lautete dann zumeißt: "Das Crawlen von ü100 Vids funktioniert momentan nicht. Füge die Videos einzeln hinzu oder erstelle selber Playlisten mit je unter 100 Videos" Niemand spricht darüber, WARUM das überhaupt so ist und warum das gefühlt über Jahre nicht behoben werden konnte. Andere Nutzer in diesem Forum haben es scheinbar irgendwann aufgegeben, das Thema überhaupt noch mal anzusprechen Jedoch ist die Funktion für mich wirklich wichtig und es gibt auch nicht wirklich viele Alternativen bis auf den "4K Video Downloader". Den würd ich sogar bezahlen. Jedoch haben die nen Lizenzmodell welches mich extrem stören würde. Wenn ich mich da richtig erinnere arbeitet diese Software mit Hardwarebindung per Aktivierung. Und bei solchen Methoden krieg ich immer Pilz ;-) Also...... Weiß hier jemand mal irgendetwas konkretes zu dem Thema? Ich kann mir nicht vorstellen, daß die besten Opensource Entwickler, die alle an dem Projekt arbeiten über derart lange Zeit so einen Bug nicht beheben können. Oder gibt es da vielleicht sogar irgendeinen Deal mit Youtube das Limit wurde vielleicht sogar absichtlich gesetzt? Ich würde das nach dieser langen Zeit solangsam wirklich gerne wissen. |
#4621
|
||||
|
||||
@Davidbee
Quote:
Quote:
Auf Ideen kommen die Leute....
__________________
JD-Dev & Server-Admin Last edited by Jiaz; 27.09.2021 at 18:48. |
#4622
|
|||
|
|||
Youtube 100 Video Limit
Okay, dann muss ich mich wohl entschuldigen. Ich wusste über die internen Strukturen nicht bescheid und daß scheinbar nur ein einziger entwickler daran Arbeitet. Und wenn dieser dann gleichzeitig auch noch 1000 andere Sachen managen muss, ist natürlich klar, wo die Ursache liegt. Aber dann weiß ich jetzt wenigstens bescheid. Danke für die Antwort!
LG Dave |
#4623
|
||||
|
||||
@Davidbee: Kein Grund für Entschuldigung. Du hattest Fragen und ich hab versucht zu antworten, evtl war eher ich zu *harsch* im Ton, sorry dafür. Ich hab das Thema auf meiner Liste und bastel hier und da dran, aber ich kann noch nicht abschätzen wann es fertig wird
__________________
JD-Dev & Server-Admin |
#4624
|
|||
|
|||
I got it! Thank you
|
#4625
|
|||
|
|||
I have added this to jdownloader **External links are only visible to Support Staff****External links are only visible to Support Staff**
I see two issues with this. first there are two av1 (in each resolution group) with no difference that appear in jdownloader and when I download them they only differ in bitrate and one is almost twice the size of other. it seems to be a youtube issue too because it just give two videos that have no difference except bitrate. but the more important issue is that those two av1 downloaded file variant (in each resolution group) are both hdr but jdownloader doesn't indicate that. youtube-dl command shows the correct info for them 397 mp4 854x450 480p HDR 397k , mp4_dash container, av01.0.04M.10.0.110.09.16.09.0@ 397k, 24fps, video only, 8.35MiB 697 mp4 854x450 480p HDR 736k , mp4_dash container, av01.0.04M.10.0.110.09.16.09.0@ 736k, 24fps, video only, 15.46MiB Last edited by rezad; 29.09.2021 at 04:28. |
#4626
|
||||
|
||||
@rezad: different itag = different/higher bitrate. and JDownloader doesn't highlight/indicate HDR at all
I will check if I can optimize the bitrate stuff and maybe add HDR tag as well
__________________
JD-Dev & Server-Admin |
#4627
|
|||
|
|||
I can't seem to download audio/video from Youtube. It just gets stuck at "Starting...". The text description downloads just fine:
30.09.21 13.59.00 <--> 30.09.21 13.59.00 jdlog://6658825302851/ **External links are only visible to Support Staff****External links are only visible to Support Staff** |
#4628
|
||||
|
||||
@Stargate38: still encounter the issue?
__________________
JD-Dev & Server-Admin |
#4629
|
|||
|
|||
I found out that it's a problem with my modem. Once I get that fixed, then I'll test it out again.
|
#4630
|
||||
|
||||
@Stargate38: Thanks for the followup! Good luck!
__________________
JD-Dev & Server-Admin |
#4631
|
|||
|
|||
I just found out that the modem is fine. Whatever is causing it must be associated with the ISP I'm using (Armstrong). If anyone else is using that ISP, please check if you can download YT videos with it or not.
|
#4632
|
||||
|
||||
@Stargate38: please also check firewall/av
Quote:
__________________
JD-Dev & Server-Admin |
#4633
|
|||
|
|||
YouTube plugin problem
when i copy a YouTube channel link that has more then 5000 videos jd2 only captures 100 videos out of 5000+
i really need to download all the videos this channel has :'( should i wait for a fix ? Last edited by Snookie; 05.10.2021 at 05:57. |
#4634
|
||||
|
||||
@Snookie: this long time issue is known and caused by broken pagination.
__________________
JD-Dev & Server-Admin |
#4635
|
|||
|
|||
06.10.21 02.26.47 <--> 06.10.21 02.30.07 jdlog://3388825302851/
|
#4636
|
||||
|
||||
@SMorris405: any comment on your post? what is the issue? what shall we check?
__________________
JD-Dev & Server-Admin |
#4637
|
|||
|
|||
Quote:
What is going on? If required, here is another log ID: 06.10.21 04.14.28 <--> 06.10.21 04.17.01 jdlog://9388825302851/ Last edited by SMorris405; 06.10.2021 at 11:16. |
#4638
|
|||
|
|||
Quote:
GOSHDANG, thank you SO MUCH! I thought there wasn't even a way to change that, I was going to submit a feature request. Last edited by jeffr; 07.10.2021 at 10:17. |
#4639
|
|||
|
|||
Quote:
Its doing in on and off.I had 4 today..For some reason they leak through. Anything that deals with MKV is deselected in YT plugins.. Retry again and it gets a MP4.. I only want MP4's and AVI's here..Any other file format is shut off in the YT plugin section.... |
#4640
|
||||
|
||||
@wppcproductions: I will add some debugging infos so we can check future logs and find cause for this
__________________
JD-Dev & Server-Admin |
Thread Tools | |
Display Modes | |
|
|