• 0 Posts
  • 6 Comments
Joined 6 months ago
cake
Cake day: March 28th, 2024

help-circle
  • The quality of the tool. Newpipe is mainly here to watch content. Sure, it has the ability to download said content but not in a granular manner.

    Its like climbing mountains in cheap sandals or doing digital paintings in paint. Yt-dlp has a lot of options to get exactly what you want. Seal gives a simple interface which in itself has a bit more than what Newpipe has. The real power of Seal comes from the custom commands. Said commands being the ones you would use in your terminal or scripts using yt-dlp directly without a frontend.

    To top it off, Seal can download everything yt-dlp allows you to download. It is not limited to the few sites that Newpipe support.



  • If the pdf files are properly formatted (no compression/all text selectable), you should be able to open a terminal and do (I know it works the other way around, not sure if libreoffice can actually do the reverse but it doesn’t hurt to try)

    libreoffice --headless --convert-to docx *.pdf
    

    Just know that since docx is a proprietary format by microsoft, the results may be flawed. As a last resort I guess you could run a windows VM and try to convert your files with any big software known to be able to handle such files.



  • Setup:

    Download Seal and go to Settings > General. From there click on the update yt-dlp to make sure you’re on the latest yt-dlp build. No head to Custom command > New template. Put your label of choice and in the “Command template” section put in your custom command.

    To create a good custom command I highly recommend you browse TheFrenchGhosty’s Ultimate YouTube-DL Scripts Collection’s Watch on Mobile Devices Script to get an idea of what you would want (I’ll give an example template later on based on theirs).

    Once your command is done click “Done”. If you have not configured the output directory yet, go to Settings > Download directory > Custom command directory (Usually you’ll want this in the Download folder. On android: /storage/emulated/0/Download/<Name-Of-Your-Choosing> Make sure to have “Configure before download” under Settings > General, enabled. From there, exit the app.

    Go to the app you want to download your media from (ie. Browser, Youtube). If you are in a browser, long press the url bar of your link and click “Share”. You will be presented a menu to share the selected link. Long press on the Seal icon marked as “Quick Download”. You will be presented with a way to pin the app. This will allow this specific app you’re in to have Seal be presented right away when you want to share a link and be prompted with the “Configure before download” menu. From there, select “Commands” as “Download type” and click on the template’s label you created earlier. You can now click “Download” and enjoy.

    You could avoid the hussle of setting up a custom command and tweak a few things in the app’s offered options. I just prefer to use my usual commands that I use to download on my phone as well.

    As for the command, here’s a short template I just made from modifying TheFrenchGhosty’s scripts as mentionned above (haven’t tested it but should theoritically work):

    yt-dlp --format "(bestvideo[vcodec^=avc1][height=1080][fps>30]/bestvideo[vcodec^=avc1][height=1080]/bestvideo[vcodec^=avc1][height=720][fps>30]/bestvideo[vcodec^=avc1][height=720]/bestvideo[vcodec^=avc1][height=480][fps>30]/bestvideo[vcodec^=avc1][height=480]/bestvideo[vcodec^=avc1][height=360][fps>30]/bestvideo[vcodec^=avc1][height=360]/bestvideo[vcodec^=avc1][height=240][fps>30]/bestvideo[vcodec^=avc1][height=240]/bestvideo[vcodec^=avc1][height=144][fps>30]/bestvideo[vcodec^=avc1][height=144]/bestvideo[vcodec^=avc1])+(bestaudio[acodec^=mp4a]/bestaudio)/best" --force-ipv4 --sleep-requests 1 --sleep-interval 5 --max-sleep-interval 30 --ignore-errors --no-continue --no-overwrites --add-metadata --parse-metadata "%(title)s:%(meta_title)s" --parse-metadata "%(uploader)s:%(meta_artist)s" --no-write-description --check-formats --concurrent-fragments 4 --output "%(title)s - %(uploader)s (%(upload_date)s).%(ext)s --merge-output-format "mkv" --throttled-rate 100K

    Not all the info here is relevant for each use cases but I hope this gives ideas and helps even a bit.


  • If you do not download often or don’t mind the longer time it might take you can do the following.

    Before the URI (URL if you prefer) of the post, put view-source:, you can then proceed to search with the “Find in page” tool, or however it might be named for your android browser. In the case of this site you’ll usually search for mp4 files so just search “.mp4” and you should find the file you want to download.

    Sometimes you might find different file extensions on the same site for the same type of post because the uploader’ files are directly the ones being posted and not converted by the site itself. In this case you can browse the source a little by searching for a potential name of the file or a HTML tag.

    If that is too much of a hassle, I believe applications like Seal (found on FDroid) are able to download from such websites. There’s no reason for it not to since it uses yt-dlp.

    Hope that helps.

    PS: If you decide to use Seal I could share a very fast workflow if it happens to work.