View Single Post
  #27  
Old 26.09.2022, 15:00
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 71,121
Default

Okay let's start from the beginning.

This is a blog-style website.
It contains a mainpage which you can scrill down to view more post.
You want to have all videos of all posts.
It will be hard/impossible to auto find all posts but you can tech JD to only find videos when adding single post links.
It looks like all their videos are embedded via "blogger.com/video..." which is then hosting the videos on google servers.

Please disable the filter rule you've created before and continue reading:
Let's drop the filter approach for now and instead of filtering, just grab only what we want straight away using a LinkCrawler Rule:
Code:
[
  {
    "enabled": true,
    "logging": false,
    "maxDecryptDepth": 1,
    "name": "jdownloader.org example rule grab all video urls from 1000manerasdemorirx.blogspot.com",
    "pattern": "https?://1000manerasdemorirx\\.blogspot\\.com/[0-9]{4}/[0-9]{2}/[a-z0-9\\-_]+\\.html",
    "rule": "DEEPDECRYPT",
    "packageNamePattern": null,
    "deepPattern": "\"(https?://(www\\.)?blogger\\.com/video\\.g?[^\"]+)"
  }
]
Rule as plaintext for easier copy & paste:
pastebin.com/raw/fUaDP2QV

Once you got this working you can start thinking about how to collect all links to all individual posts...

Now I know you want to exclude stuff that is already in your downloadlist.
To simplify this, simply use the "Already in downloadlist" view in the linkgrabber and hide those items.

Quote:
Originally Posted by jDoX View Post
Having said that, I want to download such about 400 videos, but it possible I would also like to download each of them with its web page as well (.html or similar like .webarchive, as Safari does). Ideally, each video in a subfolder, or at least all in the same folder with all videos and web pages named with the specific video names, for easier identification, if possible..
Yes and no.
Automated no but you already need to collect all individual post links first so you can do it in 3 total steps:

1. Collect all links to individual posts.
2. Add them to JD to add- and download all video items.
3. Now modify each link and change the ending from ".html" to ".html.jdeatme" (basically just add ".jdeatme").
This will force JD to download that link/html without deep-analyzing it for non-html content.
You can easily modify all links by doing a "search & replace" action using the text-editor of your choice.

-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; 27.09.2022 at 12:59. Reason: Updated LinkCrawler rule to allow underscores in blog post URLs
Reply With Quote