mediathekviewweb
mediathekviewweb copied to clipboard
Feature request: :Copy all links (of a certain quality)
Hi, By intelligent filtering, you are able to get all (n) titles desired. I'd love to then have the option to get a list of all the n titles in a chosen quality. If not all n titles (that'd be work), all titles displayed (i.e. on that result page) would do. At the bottom of the page could be a mouse over menu such as at a single title with the same quality links containing the list of all High Quality / Medium Quality / ... links, separated by line break. Thanks in advance, comdoxx
That's actually a good idea.
Until that is implemented (I may postpone that for 2.0), you can use alert([...document.querySelectorAll('.movie-icon')].map((a) => a.parentElement.href).join('\n'))
in the developer console. It uses the Quality on the movie-icon (which is medium I guess, by looking at the links), but I can change that to high (I have no idea why I didn't used that).
Putting that to high(est available) would definitely help. Tried to figure out the HQ links, but that hover thing is too dynamic for me... ;-) Thanks!
I also didn't bother extracting the HD links that way, as that would require much more than that single line.
Defaults to highest available quality now :)
Reopen because that's something I want to implement for 2.0.
After I've found this thread via search, I've created a small gist which could be executed via DevTools. There is even a comment how to use it in combination with JDownloader (keeping file names).